From c265e3eef419b538e872a0dfbf31af228cee29c9 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 26 Aug 2026 16:44:04 +0000 Subject: [PATCH 1/3] feat(examples,tests): nest by adapter and add an Arazzo example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Kubb now supports two adapters, OpenAPI and Arazzo (kubb-labs/kubb#3927), so examples/ and tests/ each need a second layer to say which adapter a project targets. Move every existing project under examples/openapi/ and tests/openapi/, and add examples/arazzo/typescript and tests/arazzo/1.1.0 to exercise the new adapter with plugin-ts end to end. @kubb/adapter-arazzo isn't published yet, so pnpm can't resolve it until kubb-labs/kubb#3927 merges and releases. Verified locally against that PR's branch (adapter-arazzo built from source and linked in): generation succeeds and the vitest suite passes, but the generated output doesn't typecheck — LoginAndReadPetOutputs.ts imports a `Pet` type that the adapter never emits as a top-level schema, even though a workflow's outputs resolve into it. Bumping @kubb/ast to the version that ships with this PR also breaks plugin-ts's own operationParams.test.ts typecheck: the new 'arazzo' protocol widens what Parameters allows through Partial<...>, so the HTTP-only override object no longer satisfies the HTTP overload. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_013suNzME7WSnyEz9kB7JWRa --- .github/workflows/pr.yml | 4 +- CONTRIBUTING.md | 4 +- README.md | 36 +++++--- examples/arazzo/typescript/kubb.config.ts | 22 +++++ examples/arazzo/typescript/package.json | 35 ++++++++ examples/arazzo/typescript/petStore.yaml | 77 ++++++++++++++++ .../typescript/src/gen/models/Credentials.ts | 9 ++ .../src/gen/models/LoginAndReadPet.ts | 27 ++++++ .../src/gen/models/LoginAndReadPetInputs.ts | 9 ++ .../src/gen/models/LoginAndReadPetOutputs.ts | 20 +++++ .../typescript/src/gen/models/ReadPetOnly.ts | 24 +++++ .../src/gen/models/ReadPetOnlyOutputs.ts | 8 ++ .../{faker => arazzo/typescript}/src/index.ts | 0 .../{ => arazzo}/typescript/tsconfig.json | 0 .../arazzo/typescript/workflows.arazzo.yaml | 89 +++++++++++++++++++ examples/{ => openapi}/advanced/.env.example | 0 .../advanced/configs/kubb.config.ts | 0 examples/{ => openapi}/advanced/package.json | 2 +- examples/{ => openapi}/advanced/petStore.yaml | 0 .../advanced/src/gen/.kubb/client.ts | 0 .../advanced/src/gen/.kubb/serializers.ts | 0 .../advanced/src/gen/.kubb/standardSchema.ts | 0 .../advanced/src/gen/clients/axios/index.ts | 0 .../gen/clients/axios/petService/addFiles.ts | 0 .../gen/clients/axios/petService/addPet.ts | 0 .../gen/clients/axios/petService/deletePet.ts | 0 .../axios/petService/findPetsByStatus.ts | 0 .../axios/petService/findPetsByTags.ts | 0 .../clients/axios/petService/getPetById.ts | 0 .../src/gen/clients/axios/petService/index.ts | 0 .../gen/clients/axios/petService/updatePet.ts | 0 .../axios/petService/updatePetWithForm.ts | 0 .../clients/axios/petService/uploadFile.ts | 0 .../clients/axios/petsService/createPets.ts | 0 .../gen/clients/axios/petsService/index.ts | 0 .../gen/clients/axios/streamService/index.ts | 0 .../axios/streamService/streamPetEvents.ts | 0 .../advanced/src/gen/clients/hooks/index.ts | 0 .../src/gen/clients/hooks/pet/index.ts | 0 .../src/gen/clients/hooks/pet/useAddFiles.ts | 0 .../src/gen/clients/hooks/pet/useAddPet.ts | 0 .../src/gen/clients/hooks/pet/useDeletePet.ts | 0 .../clients/hooks/pet/useFindPetsByStatus.ts | 0 .../clients/hooks/pet/useFindPetsByTags.ts | 0 .../hooks/pet/useFindPetsByTagsInfinite.ts | 0 .../gen/clients/hooks/pet/useGetPetById.ts | 0 .../src/gen/clients/hooks/pet/useUpdatePet.ts | 0 .../clients/hooks/pet/useUpdatePetWithForm.ts | 0 .../gen/clients/hooks/pet/useUploadFile.ts | 0 .../src/gen/clients/hooks/pets/index.ts | 0 .../gen/clients/hooks/pets/useCreatePets.ts | 0 .../advanced/src/gen/cypress/pet/addFiles.ts | 0 .../advanced/src/gen/cypress/pet/addPet.ts | 0 .../advanced/src/gen/cypress/pet/deletePet.ts | 0 .../src/gen/cypress/pet/findPetsByStatus.ts | 0 .../src/gen/cypress/pet/findPetsByTags.ts | 0 .../src/gen/cypress/pet/getPetById.ts | 0 .../advanced/src/gen/cypress/pet/updatePet.ts | 0 .../src/gen/cypress/pet/updatePetWithForm.ts | 0 .../src/gen/cypress/pet/uploadFile.ts | 0 .../src/gen/cypress/pets/createPets.ts | 0 .../src/gen/cypress/store/deleteOrder.ts | 0 .../src/gen/cypress/store/getInventory.ts | 0 .../src/gen/cypress/store/getOrderById.ts | 0 .../src/gen/cypress/store/placeOrder.ts | 0 .../src/gen/cypress/store/placeOrderPatch.ts | 0 .../src/gen/cypress/stream/streamPetEvents.ts | 0 .../{ => openapi}/advanced/src/gen/docs.html | 0 .../{ => openapi}/advanced/src/gen/index.ts | 0 .../advanced/src/gen/mcp/pet/addFiles.ts | 0 .../advanced/src/gen/mcp/pet/addPet.ts | 0 .../advanced/src/gen/mcp/pet/deletePet.ts | 0 .../src/gen/mcp/pet/findPetsByStatus.ts | 0 .../src/gen/mcp/pet/findPetsByTags.ts | 0 .../advanced/src/gen/mcp/pet/getPetById.ts | 0 .../advanced/src/gen/mcp/pet/updatePet.ts | 0 .../src/gen/mcp/pet/updatePetWithForm.ts | 0 .../advanced/src/gen/mcp/pet/uploadFile.ts | 0 .../advanced/src/gen/mcp/pets/createPets.ts | 0 .../advanced/src/gen/mcp/server.ts | 0 .../src/gen/mocks/createAddPetRequestFaker.ts | 0 .../createAddPetRequestStatusEnumFaker.ts | 0 .../src/gen/mocks/createAnimalFaker.ts | 0 .../gen/mocks/createAnimalTypeEnumFaker.ts | 0 .../src/gen/mocks/createApiResponseFaker.ts | 0 .../advanced/src/gen/mocks/createCatFaker.ts | 0 .../src/gen/mocks/createCategoryFaker.ts | 0 .../mocks/createCreatePetsBoolParamFaker.ts | 0 .../mocks/createCreatePetsXEXAMPLEFaker.ts | 0 .../advanced/src/gen/mocks/createDogFaker.ts | 0 .../createFindPetsByTagsXEXAMPLEFaker.ts | 0 .../src/gen/mocks/createImageFaker.ts | 0 .../src/gen/mocks/createOrderFaker.ts | 0 .../mocks/createOrderHttpStatusEnumFaker.ts | 0 .../mocks/createOrderOrderTypeEnumFaker.ts | 0 .../mocks/createOrderParamsStatusEnumFaker.ts | 0 .../gen/mocks/createOrderStatusEnumFaker.ts | 0 .../src/gen/mocks/createPetEventFaker.ts | 0 .../gen/mocks/createPetEventTypeEnumFaker.ts | 0 .../advanced/src/gen/mocks/createPetFaker.ts | 0 .../src/gen/mocks/createPetNotFoundFaker.ts | 0 .../src/gen/mocks/createPetStatusEnumFaker.ts | 0 .../src/gen/mocks/createTagTagFaker.ts | 0 .../advanced/src/gen/mocks/index.ts | 0 .../src/gen/mocks/pet/createAddFilesFaker.ts | 0 .../src/gen/mocks/pet/createAddPetFaker.ts | 0 .../src/gen/mocks/pet/createDeletePetFaker.ts | 0 .../mocks/pet/createFindPetsByStatusFaker.ts | 0 .../mocks/pet/createFindPetsByTagsFaker.ts | 0 .../gen/mocks/pet/createGetPetByIdFaker.ts | 0 .../src/gen/mocks/pet/createUpdatePetFaker.ts | 0 .../mocks/pet/createUpdatePetWithFormFaker.ts | 0 .../gen/mocks/pet/createUploadFileFaker.ts | 0 .../advanced/src/gen/mocks/pet/index.ts | 0 .../gen/mocks/pets/createCreatePetsFaker.ts | 0 .../advanced/src/gen/mocks/pets/index.ts | 0 .../stream/createStreamPetEventsFaker.ts | 0 .../advanced/src/gen/mocks/stream/index.ts | 0 .../src/gen/models/ts/AddPetRequest.ts | 0 .../gen/models/ts/AddPetRequestStatusEnum.ts | 0 .../advanced/src/gen/models/ts/Animal.ts | 0 .../src/gen/models/ts/AnimalTypeEnum.ts | 0 .../advanced/src/gen/models/ts/ApiResponse.ts | 0 .../advanced/src/gen/models/ts/Cat.ts | 0 .../advanced/src/gen/models/ts/Category.ts | 0 .../src/gen/models/ts/CreatePetsBoolParam.ts | 0 .../src/gen/models/ts/CreatePetsXEXAMPLE.ts | 0 .../advanced/src/gen/models/ts/Dog.ts | 0 .../gen/models/ts/FindPetsByTagsXEXAMPLE.ts | 0 .../advanced/src/gen/models/ts/Image.ts | 0 .../advanced/src/gen/models/ts/Order.ts | 0 .../src/gen/models/ts/OrderHttpStatusEnum.ts | 0 .../src/gen/models/ts/OrderOrderTypeEnum.ts | 0 .../gen/models/ts/OrderParamsStatusEnum.ts | 0 .../src/gen/models/ts/OrderStatusEnum.ts | 0 .../advanced/src/gen/models/ts/Pet.ts | 0 .../advanced/src/gen/models/ts/PetEvent.ts | 0 .../src/gen/models/ts/PetEventTypeEnum.ts | 0 .../advanced/src/gen/models/ts/PetNotFound.ts | 0 .../src/gen/models/ts/PetStatusEnum.ts | 0 .../advanced/src/gen/models/ts/index.ts | 0 .../src/gen/models/ts/pet/AddFiles.ts | 0 .../advanced/src/gen/models/ts/pet/AddPet.ts | 0 .../src/gen/models/ts/pet/DeletePet.ts | 0 .../src/gen/models/ts/pet/FindPetsByStatus.ts | 0 .../src/gen/models/ts/pet/FindPetsByTags.ts | 0 .../src/gen/models/ts/pet/GetPetById.ts | 0 .../src/gen/models/ts/pet/UpdatePet.ts | 0 .../gen/models/ts/pet/UpdatePetWithForm.ts | 0 .../src/gen/models/ts/pet/UploadFile.ts | 0 .../advanced/src/gen/models/ts/pet/index.ts | 0 .../src/gen/models/ts/pets/CreatePets.ts | 0 .../advanced/src/gen/models/ts/pets/index.ts | 0 .../src/gen/models/ts/store/DeleteOrder.ts | 0 .../src/gen/models/ts/store/GetInventory.ts | 0 .../src/gen/models/ts/store/GetOrderById.ts | 0 .../src/gen/models/ts/store/PlaceOrder.ts | 0 .../gen/models/ts/store/PlaceOrderPatch.ts | 0 .../advanced/src/gen/models/ts/store/index.ts | 0 .../gen/models/ts/stream/StreamPetEvents.ts | 0 .../src/gen/models/ts/stream/index.ts | 0 .../advanced/src/gen/models/ts/tag/Tag.ts | 0 .../advanced/src/gen/models/ts/tag/index.ts | 0 .../advanced/src/gen/msw/handlers.ts | 0 .../advanced/src/gen/msw/index.ts | 0 .../src/gen/msw/pet/addFilesHandler.ts | 0 .../advanced/src/gen/msw/pet/addPetHandler.ts | 0 .../src/gen/msw/pet/deletePetHandler.ts | 0 .../gen/msw/pet/findPetsByStatusHandler.ts | 0 .../src/gen/msw/pet/findPetsByTagsHandler.ts | 0 .../src/gen/msw/pet/getPetByIdHandler.ts | 0 .../advanced/src/gen/msw/pet/index.ts | 0 .../src/gen/msw/pet/updatePetHandler.ts | 0 .../gen/msw/pet/updatePetWithFormHandler.ts | 0 .../src/gen/msw/pet/uploadFileHandler.ts | 0 .../src/gen/msw/pets/createPetsHandler.ts | 0 .../advanced/src/gen/msw/pets/index.ts | 0 .../advanced/src/gen/msw/stream/index.ts | 0 .../gen/msw/stream/streamPetEventsHandler.ts | 0 .../src/gen/zod/addPetRequestSchema.ts | 0 .../gen/zod/addPetRequestStatusEnumSchema.ts | 0 .../advanced/src/gen/zod/animalSchema.ts | 0 .../src/gen/zod/animalTypeEnumSchema.ts | 0 .../advanced/src/gen/zod/apiResponseSchema.ts | 0 .../advanced/src/gen/zod/catSchema.ts | 0 .../advanced/src/gen/zod/categorySchema.ts | 0 .../src/gen/zod/createPetsBoolParamSchema.ts | 0 .../src/gen/zod/createPetsXEXAMPLESchema.ts | 0 .../advanced/src/gen/zod/dogSchema.ts | 0 .../gen/zod/findPetsByTagsXEXAMPLESchema.ts | 0 .../advanced/src/gen/zod/imageSchema.ts | 0 .../advanced/src/gen/zod/index.ts | 0 .../src/gen/zod/orderHttpStatusEnumSchema.ts | 0 .../src/gen/zod/orderOrderTypeEnumSchema.ts | 0 .../gen/zod/orderParamsStatusEnumSchema.ts | 0 .../advanced/src/gen/zod/orderSchema.ts | 0 .../src/gen/zod/orderStatusEnumSchema.ts | 0 .../src/gen/zod/pet/addFilesSchema.ts | 0 .../advanced/src/gen/zod/pet/addPetSchema.ts | 0 .../src/gen/zod/pet/deletePetSchema.ts | 0 .../src/gen/zod/pet/findPetsByStatusSchema.ts | 0 .../src/gen/zod/pet/findPetsByTagsSchema.ts | 0 .../src/gen/zod/pet/getPetByIdSchema.ts | 0 .../advanced/src/gen/zod/pet/index.ts | 0 .../src/gen/zod/pet/updatePetSchema.ts | 0 .../gen/zod/pet/updatePetWithFormSchema.ts | 0 .../src/gen/zod/pet/uploadFileSchema.ts | 0 .../advanced/src/gen/zod/petEventSchema.ts | 0 .../src/gen/zod/petEventTypeEnumSchema.ts | 0 .../advanced/src/gen/zod/petNotFoundSchema.ts | 0 .../advanced/src/gen/zod/petSchema.ts | 0 .../src/gen/zod/petStatusEnumSchema.ts | 0 .../src/gen/zod/pets/createPetsSchema.ts | 0 .../advanced/src/gen/zod/pets/index.ts | 0 .../advanced/src/gen/zod/stream/index.ts | 0 .../gen/zod/stream/streamPetEventsSchema.ts | 0 .../advanced/src/gen/zod/tag/index.ts | 0 .../advanced/src/gen/zod/tag/tagSchema.ts | 0 examples/{ => openapi}/advanced/src/index.ts | 0 .../advanced/src/tanstack-query-hook.ts | 0 examples/{ => openapi}/advanced/tsconfig.json | 0 examples/{ => openapi}/axios/kubb.config.ts | 0 examples/{ => openapi}/axios/package.json | 2 +- examples/{ => openapi}/axios/petStore.yaml | 0 .../axios/src/gen/.kubb/client.ts | 0 .../axios/src/gen/.kubb/serializers.ts | 0 .../axios/src/gen/.kubb/standardSchema.ts | 0 .../axios/src/gen/clients/index.ts | 0 .../axios/src/gen/clients/pet/addPet.ts | 0 .../axios/src/gen/clients/pet/deletePet.ts | 0 .../src/gen/clients/pet/findPetsByStatus.ts | 0 .../src/gen/clients/pet/findPetsByTags.ts | 0 .../axios/src/gen/clients/pet/getPetById.ts | 0 .../axios/src/gen/clients/pet/index.ts | 0 .../axios/src/gen/clients/pet/updatePet.ts | 0 .../src/gen/clients/pet/updatePetWithForm.ts | 0 .../axios/src/gen/clients/pet/uploadFile.ts | 0 .../src/gen/clients/store/deleteOrder.ts | 0 .../src/gen/clients/store/getInventory.ts | 0 .../src/gen/clients/store/getOrderById.ts | 0 .../axios/src/gen/clients/store/index.ts | 0 .../axios/src/gen/clients/store/placeOrder.ts | 0 .../src/gen/clients/store/placeOrderPatch.ts | 0 .../axios/src/gen/clients/user/createUser.ts | 0 .../clients/user/createUsersWithListInput.ts | 0 .../axios/src/gen/clients/user/deleteUser.ts | 0 .../src/gen/clients/user/getUserByName.ts | 0 .../axios/src/gen/clients/user/index.ts | 0 .../axios/src/gen/clients/user/loginUser.ts | 0 .../axios/src/gen/clients/user/logoutUser.ts | 0 .../axios/src/gen/clients/user/updateUser.ts | 0 examples/{ => openapi}/axios/src/gen/index.ts | 0 .../axios/src/gen/models/AddPetRequest.ts | 0 .../axios/src/gen/models/Address.ts | 0 .../axios/src/gen/models/ApiResponse.ts | 0 .../axios/src/gen/models/Category.ts | 0 .../axios/src/gen/models/Customer.ts | 0 .../axios/src/gen/models/Order.ts | 0 .../{ => openapi}/axios/src/gen/models/Pet.ts | 0 .../axios/src/gen/models/PetNotFound.ts | 0 .../{ => openapi}/axios/src/gen/models/Tag.ts | 0 .../axios/src/gen/models/User.ts | 0 .../axios/src/gen/models/UserArray.ts | 0 .../axios/src/gen/models/index.ts | 0 .../axios/src/gen/models/pet/AddPet.ts | 0 .../axios/src/gen/models/pet/DeletePet.ts | 0 .../src/gen/models/pet/FindPetsByStatus.ts | 0 .../src/gen/models/pet/FindPetsByTags.ts | 0 .../axios/src/gen/models/pet/GetPetById.ts | 0 .../axios/src/gen/models/pet/UpdatePet.ts | 0 .../src/gen/models/pet/UpdatePetWithForm.ts | 0 .../axios/src/gen/models/pet/UploadFile.ts | 0 .../axios/src/gen/models/pet/index.ts | 0 .../axios/src/gen/models/store/DeleteOrder.ts | 0 .../src/gen/models/store/GetInventory.ts | 0 .../src/gen/models/store/GetOrderById.ts | 0 .../axios/src/gen/models/store/PlaceOrder.ts | 0 .../src/gen/models/store/PlaceOrderPatch.ts | 0 .../axios/src/gen/models/store/index.ts | 0 .../axios/src/gen/models/user/CreateUser.ts | 0 .../models/user/CreateUsersWithListInput.ts | 0 .../axios/src/gen/models/user/DeleteUser.ts | 0 .../src/gen/models/user/GetUserByName.ts | 0 .../axios/src/gen/models/user/LoginUser.ts | 0 .../axios/src/gen/models/user/LogoutUser.ts | 0 .../axios/src/gen/models/user/UpdateUser.ts | 0 .../axios/src/gen/models/user/index.ts | 0 examples/{ => openapi}/axios/tsconfig.json | 0 examples/{ => openapi}/cypress/kubb.config.js | 0 examples/{ => openapi}/cypress/package.json | 2 +- examples/{ => openapi}/cypress/petStore.yaml | 0 .../cypress/src/gen-v4/cypress/addPet.ts | 0 .../cypress/src/gen-v4/cypress/deleteOrder.ts | 0 .../cypress/src/gen-v4/cypress/deletePet.ts | 0 .../src/gen-v4/cypress/findPetsByStatus.ts | 0 .../src/gen-v4/cypress/findPetsByTags.ts | 0 .../src/gen-v4/cypress/getInventory.ts | 0 .../src/gen-v4/cypress/getOrderById.ts | 0 .../cypress/src/gen-v4/cypress/getPetById.ts | 0 .../gen-v4/cypress/optionsFindPetsByStatus.ts | 0 .../cypress/src/gen-v4/cypress/placeOrder.ts | 0 .../src/gen-v4/cypress/placeOrderPatch.ts | 0 .../cypress/src/gen-v4/cypress/updatePet.ts | 0 .../src/gen-v4/cypress/updatePetWithForm.ts | 0 .../cypress/src/gen-v4/cypress/uploadFile.ts | 0 .../cypress/src/gen-v4/models.ts | 0 .../cypress/src/gen/cypress/index.ts | 0 .../src/gen/cypress/petRequests/addPet.ts | 0 .../src/gen/cypress/petRequests/deletePet.ts | 0 .../cypress/petRequests/findPetsByStatus.ts | 0 .../gen/cypress/petRequests/findPetsByTags.ts | 0 .../src/gen/cypress/petRequests/getPetById.ts | 0 .../src/gen/cypress/petRequests/index.ts | 0 .../petRequests/optionsFindPetsByStatus.ts | 0 .../src/gen/cypress/petRequests/updatePet.ts | 0 .../cypress/petRequests/updatePetWithForm.ts | 0 .../src/gen/cypress/petRequests/uploadFile.ts | 0 .../gen/cypress/storeRequests/deleteOrder.ts | 0 .../gen/cypress/storeRequests/getInventory.ts | 0 .../gen/cypress/storeRequests/getOrderById.ts | 0 .../src/gen/cypress/storeRequests/index.ts | 0 .../gen/cypress/storeRequests/placeOrder.ts | 0 .../cypress/storeRequests/placeOrderPatch.ts | 0 .../{ => openapi}/cypress/src/gen/index.ts | 0 .../{ => openapi}/cypress/src/gen/models.ts | 0 examples/{ => openapi}/cypress/src/index.ts | 0 examples/{ => openapi}/cypress/tsconfig.json | 0 examples/{ => openapi}/faker/kubb.config.cjs | 0 examples/{ => openapi}/faker/package.json | 2 +- examples/{ => openapi}/faker/petStore.yaml | 0 .../faker/src/gen/faker/createCategory.ts | 0 .../faker/src/gen/faker/createPet.ts | 0 .../faker/src/gen/faker/createTag.ts | 0 .../faker/src/gen/faker/createUpdatePet.ts | 0 .../src/gen/faker/createUpdatePetWithForm.ts | 0 .../faker/src/gen/models/AddPet.ts | 0 .../faker/src/gen/models/ApiResponse.ts | 0 .../faker/src/gen/models/Category.ts | 0 .../faker/src/gen/models/DeleteOrder.ts | 0 .../faker/src/gen/models/DeletePet.ts | 0 .../faker/src/gen/models/FindPetsByStatus.ts | 0 .../faker/src/gen/models/FindPetsByTags.ts | 0 .../faker/src/gen/models/GetInventory.ts | 0 .../faker/src/gen/models/GetOrderById.ts | 0 .../faker/src/gen/models/GetPetById.ts | 0 .../faker/src/gen/models/Item.ts | 0 .../faker/src/gen/models/Order.ts | 0 .../{ => openapi}/faker/src/gen/models/Pet.ts | 0 .../faker/src/gen/models/PlaceOrder.ts | 0 .../{ => openapi}/faker/src/gen/models/Tag.ts | 0 .../faker/src/gen/models/UpdatePet.ts | 0 .../faker/src/gen/models/UpdatePetWithForm.ts | 0 .../faker/src/gen/models/UploadFile.ts | 0 .../faker/src/gen/tag/createDeleteOrder.ts | 0 .../faker/src/gen/tag/createGetInventory.ts | 0 .../faker/src/gen/tag/createGetOrderById.ts | 0 .../faker/src/gen/tag/createOrder.ts | 0 .../faker/src/gen/tag/createPlaceOrder.ts | 0 examples/{msw => openapi/faker}/src/index.ts | 0 examples/{ => openapi}/faker/tsconfig.json | 2 +- examples/{ => openapi}/fetch/kubb.config.ts | 0 examples/{ => openapi}/fetch/package.json | 2 +- examples/{ => openapi}/fetch/petStore.yaml | 0 .../fetch/src/gen/.kubb/client.ts | 0 .../fetch/src/gen/.kubb/serializers.ts | 0 .../fetch/src/gen/.kubb/standardSchema.ts | 0 .../fetch/src/gen/clients/index.ts | 0 .../fetch/src/gen/clients/pet/addPet.ts | 0 .../fetch/src/gen/clients/pet/deletePet.ts | 0 .../src/gen/clients/pet/findPetsByStatus.ts | 0 .../src/gen/clients/pet/findPetsByTags.ts | 0 .../fetch/src/gen/clients/pet/getPetById.ts | 0 .../fetch/src/gen/clients/pet/index.ts | 0 .../fetch/src/gen/clients/pet/updatePet.ts | 0 .../src/gen/clients/pet/updatePetWithForm.ts | 0 .../fetch/src/gen/clients/pet/uploadFile.ts | 0 .../src/gen/clients/store/deleteOrder.ts | 0 .../src/gen/clients/store/getInventory.ts | 0 .../src/gen/clients/store/getOrderById.ts | 0 .../fetch/src/gen/clients/store/index.ts | 0 .../fetch/src/gen/clients/store/placeOrder.ts | 0 .../src/gen/clients/store/placeOrderPatch.ts | 0 .../fetch/src/gen/clients/user/createUser.ts | 0 .../clients/user/createUsersWithListInput.ts | 0 .../fetch/src/gen/clients/user/deleteUser.ts | 0 .../src/gen/clients/user/getUserByName.ts | 0 .../fetch/src/gen/clients/user/index.ts | 0 .../fetch/src/gen/clients/user/loginUser.ts | 0 .../fetch/src/gen/clients/user/logoutUser.ts | 0 .../fetch/src/gen/clients/user/updateUser.ts | 0 examples/{ => openapi}/fetch/src/gen/index.ts | 0 .../fetch/src/gen/models/AddPetRequest.ts | 0 .../fetch/src/gen/models/Address.ts | 0 .../fetch/src/gen/models/ApiResponse.ts | 0 .../fetch/src/gen/models/Category.ts | 0 .../fetch/src/gen/models/Customer.ts | 0 .../fetch/src/gen/models/Order.ts | 0 .../{ => openapi}/fetch/src/gen/models/Pet.ts | 0 .../fetch/src/gen/models/PetNotFound.ts | 0 .../{ => openapi}/fetch/src/gen/models/Tag.ts | 0 .../fetch/src/gen/models/User.ts | 0 .../fetch/src/gen/models/UserArray.ts | 0 .../fetch/src/gen/models/index.ts | 0 .../fetch/src/gen/models/pet/AddPet.ts | 0 .../fetch/src/gen/models/pet/DeletePet.ts | 0 .../src/gen/models/pet/FindPetsByStatus.ts | 0 .../src/gen/models/pet/FindPetsByTags.ts | 0 .../fetch/src/gen/models/pet/GetPetById.ts | 0 .../fetch/src/gen/models/pet/UpdatePet.ts | 0 .../src/gen/models/pet/UpdatePetWithForm.ts | 0 .../fetch/src/gen/models/pet/UploadFile.ts | 0 .../fetch/src/gen/models/pet/index.ts | 0 .../fetch/src/gen/models/store/DeleteOrder.ts | 0 .../src/gen/models/store/GetInventory.ts | 0 .../src/gen/models/store/GetOrderById.ts | 0 .../fetch/src/gen/models/store/PlaceOrder.ts | 0 .../src/gen/models/store/PlaceOrderPatch.ts | 0 .../fetch/src/gen/models/store/index.ts | 0 .../fetch/src/gen/models/user/CreateUser.ts | 0 .../models/user/CreateUsersWithListInput.ts | 0 .../fetch/src/gen/models/user/DeleteUser.ts | 0 .../src/gen/models/user/GetUserByName.ts | 0 .../fetch/src/gen/models/user/LoginUser.ts | 0 .../fetch/src/gen/models/user/LogoutUser.ts | 0 .../fetch/src/gen/models/user/UpdateUser.ts | 0 .../fetch/src/gen/models/user/index.ts | 0 examples/{ => openapi}/fetch/src/index.ts | 0 examples/{ => openapi}/fetch/tsconfig.json | 0 examples/{ => openapi}/mcp/kubb.config.ts | 0 examples/{ => openapi}/mcp/package.json | 2 +- examples/{ => openapi}/mcp/petStore.yaml | 0 examples/{ => openapi}/mcp/src/client.ts | 0 .../{ => openapi}/mcp/src/gen/.kubb/client.ts | 0 .../mcp/src/gen/.kubb/serializers.ts | 0 .../mcp/src/gen/.kubb/standardSchema.ts | 0 .../mcp/src/gen/clients/addFiles.ts | 0 .../mcp/src/gen/clients/addPet.ts | 0 .../mcp/src/gen/clients/createPets.ts | 0 .../mcp/src/gen/clients/deleteOrder.ts | 0 .../mcp/src/gen/clients/deletePet.ts | 0 .../mcp/src/gen/clients/findPetsByStatus.ts | 0 .../mcp/src/gen/clients/findPetsByTags.ts | 0 .../mcp/src/gen/clients/getInventory.ts | 0 .../mcp/src/gen/clients/getOrderById.ts | 0 .../mcp/src/gen/clients/getPetById.ts | 0 .../mcp/src/gen/clients/index.ts | 0 .../mcp/src/gen/clients/placeOrder.ts | 0 .../mcp/src/gen/clients/placeOrderPatch.ts | 0 .../mcp/src/gen/clients/updatePet.ts | 0 .../mcp/src/gen/clients/updatePetWithForm.ts | 0 examples/{ => openapi}/mcp/src/gen/index.ts | 0 .../{ => openapi}/mcp/src/gen/mcp/addFiles.ts | 0 .../{ => openapi}/mcp/src/gen/mcp/addPet.ts | 0 .../mcp/src/gen/mcp/createPets.ts | 0 .../mcp/src/gen/mcp/deleteOrder.ts | 0 .../mcp/src/gen/mcp/deletePet.ts | 0 .../mcp/src/gen/mcp/findPetsByStatus.ts | 0 .../mcp/src/gen/mcp/findPetsByTags.ts | 0 .../mcp/src/gen/mcp/getInventory.ts | 0 .../mcp/src/gen/mcp/getOrderById.ts | 0 .../mcp/src/gen/mcp/getPetById.ts | 0 .../{ => openapi}/mcp/src/gen/mcp/index.ts | 0 .../mcp/src/gen/mcp/placeOrder.ts | 0 .../mcp/src/gen/mcp/placeOrderPatch.ts | 0 .../{ => openapi}/mcp/src/gen/mcp/server.ts | 0 .../mcp/src/gen/mcp/updatePet.ts | 0 .../mcp/src/gen/mcp/updatePetWithForm.ts | 0 .../mcp/src/gen/models/ts/AddFiles.ts | 0 .../mcp/src/gen/models/ts/AddPet.ts | 0 .../mcp/src/gen/models/ts/AddPetRequest.ts | 0 .../gen/models/ts/AddPetRequestStatusEnum.ts | 0 .../mcp/src/gen/models/ts/ApiResponse.ts | 0 .../mcp/src/gen/models/ts/Category.ts | 0 .../mcp/src/gen/models/ts/CreatePets.ts | 0 .../src/gen/models/ts/CreatePetsXEXAMPLE.ts | 0 .../mcp/src/gen/models/ts/DeleteOrder.ts | 0 .../mcp/src/gen/models/ts/DeletePet.ts | 0 .../mcp/src/gen/models/ts/FindPetsByStatus.ts | 0 .../mcp/src/gen/models/ts/FindPetsByTags.ts | 0 .../gen/models/ts/FindPetsByTagsXEXAMPLE.ts | 0 .../mcp/src/gen/models/ts/GetInventory.ts | 0 .../mcp/src/gen/models/ts/GetOrderById.ts | 0 .../mcp/src/gen/models/ts/GetPetById.ts | 0 .../mcp/src/gen/models/ts/Order.ts | 0 .../src/gen/models/ts/OrderHttpStatusEnum.ts | 0 .../src/gen/models/ts/OrderOrderTypeEnum.ts | 0 .../mcp/src/gen/models/ts/OrderStatusEnum.ts | 0 .../mcp/src/gen/models/ts/Pet.ts | 0 .../mcp/src/gen/models/ts/PetNotFound.ts | 0 .../mcp/src/gen/models/ts/PetStatusEnum.ts | 0 .../mcp/src/gen/models/ts/PlaceOrder.ts | 0 .../mcp/src/gen/models/ts/PlaceOrderPatch.ts | 0 .../mcp/src/gen/models/ts/UpdatePet.ts | 0 .../src/gen/models/ts/UpdatePetWithForm.ts | 0 .../mcp/src/gen/models/ts/index.ts | 0 .../mcp/src/gen/models/ts/tag/Tag.ts | 0 .../mcp/src/gen/models/ts/tag/index.ts | 0 .../mcp/src/gen/zod/addFilesSchema.ts | 0 .../mcp/src/gen/zod/addPetRequestSchema.ts | 0 .../gen/zod/addPetRequestStatusEnumSchema.ts | 0 .../mcp/src/gen/zod/addPetSchema.ts | 0 .../mcp/src/gen/zod/apiResponseSchema.ts | 0 .../mcp/src/gen/zod/categorySchema.ts | 0 .../mcp/src/gen/zod/createPetsSchema.ts | 0 .../src/gen/zod/createPetsXEXAMPLESchema.ts | 0 .../mcp/src/gen/zod/deleteOrderSchema.ts | 0 .../mcp/src/gen/zod/deletePetSchema.ts | 0 .../mcp/src/gen/zod/findPetsByStatusSchema.ts | 0 .../mcp/src/gen/zod/findPetsByTagsSchema.ts | 0 .../gen/zod/findPetsByTagsXEXAMPLESchema.ts | 0 .../mcp/src/gen/zod/getInventorySchema.ts | 0 .../mcp/src/gen/zod/getOrderByIdSchema.ts | 0 .../mcp/src/gen/zod/getPetByIdSchema.ts | 0 .../{ => openapi}/mcp/src/gen/zod/index.ts | 0 .../src/gen/zod/orderHttpStatusEnumSchema.ts | 0 .../src/gen/zod/orderOrderTypeEnumSchema.ts | 0 .../mcp/src/gen/zod/orderSchema.ts | 0 .../mcp/src/gen/zod/orderStatusEnumSchema.ts | 0 .../mcp/src/gen/zod/petNotFoundSchema.ts | 0 .../mcp/src/gen/zod/petSchema.ts | 0 .../mcp/src/gen/zod/petStatusEnumSchema.ts | 0 .../mcp/src/gen/zod/placeOrderPatchSchema.ts | 0 .../mcp/src/gen/zod/placeOrderSchema.ts | 0 .../mcp/src/gen/zod/tag/index.ts | 0 .../mcp/src/gen/zod/tag/tagSchema.ts | 0 .../mcp/src/gen/zod/updatePetSchema.ts | 0 .../src/gen/zod/updatePetWithFormSchema.ts | 0 examples/{ => openapi}/mcp/src/index.ts | 0 examples/{ => openapi}/mcp/tsconfig.json | 0 examples/{ => openapi}/msw/kubb.config.js | 0 examples/{ => openapi}/msw/package.json | 2 +- examples/{ => openapi}/msw/petStore.yaml | 0 .../msw/src/gen/mocks/createAddPetRequest.ts | 0 .../mocks/createAddPetRequestStatusEnum.ts | 0 .../msw/src/gen/mocks/createApiResponse.ts | 0 .../msw/src/gen/mocks/createCategory.ts | 0 .../gen/mocks/createFindPetsByStatusStatus.ts | 0 .../msw/src/gen/mocks/createOrder.ts | 0 .../gen/mocks/createOrderHttpStatusEnum.ts | 0 .../src/gen/mocks/createOrderStatusEnum.ts | 0 .../msw/src/gen/mocks/createPet.ts | 0 .../msw/src/gen/mocks/createPetNotFound.ts | 0 .../msw/src/gen/mocks/createPetStatusEnum.ts | 0 .../msw/src/gen/mocks/createTag.ts | 0 .../msw/src/gen/mocks/pet/createAddPet.ts | 0 .../msw/src/gen/mocks/pet/createDeletePet.ts | 0 .../gen/mocks/pet/createFindPetsByStatus.ts | 0 .../src/gen/mocks/pet/createFindPetsByTags.ts | 0 .../msw/src/gen/mocks/pet/createGetPetById.ts | 0 .../pet/createOptionsFindPetsByStatus.ts | 0 .../msw/src/gen/mocks/pet/createUpdatePet.ts | 0 .../gen/mocks/pet/createUpdatePetWithForm.ts | 0 .../msw/src/gen/mocks/pet/createUploadFile.ts | 0 .../src/gen/mocks/store/createDeleteOrder.ts | 0 .../src/gen/mocks/store/createGetInventory.ts | 0 .../src/gen/mocks/store/createGetOrderById.ts | 0 .../src/gen/mocks/store/createPlaceOrder.ts | 0 .../gen/mocks/store/createPlaceOrderPatch.ts | 0 .../msw/src/gen/models/AddPet.ts | 0 .../msw/src/gen/models/AddPetRequest.ts | 0 .../src/gen/models/AddPetRequestStatusEnum.ts | 0 .../msw/src/gen/models/ApiResponse.ts | 0 .../msw/src/gen/models/Category.ts | 0 .../msw/src/gen/models/DeleteOrder.ts | 0 .../msw/src/gen/models/DeletePet.ts | 0 .../msw/src/gen/models/FindPetsByStatus.ts | 0 .../src/gen/models/FindPetsByStatusStatus.ts | 0 .../msw/src/gen/models/FindPetsByTags.ts | 0 .../msw/src/gen/models/GetInventory.ts | 0 .../msw/src/gen/models/GetOrderById.ts | 0 .../msw/src/gen/models/GetPetById.ts | 0 .../src/gen/models/OptionsFindPetsByStatus.ts | 0 .../{ => openapi}/msw/src/gen/models/Order.ts | 0 .../msw/src/gen/models/OrderHttpStatusEnum.ts | 0 .../msw/src/gen/models/OrderStatusEnum.ts | 0 .../{ => openapi}/msw/src/gen/models/Pet.ts | 0 .../msw/src/gen/models/PetNotFound.ts | 0 .../msw/src/gen/models/PetStatusEnum.ts | 0 .../msw/src/gen/models/PlaceOrder.ts | 0 .../msw/src/gen/models/PlaceOrderPatch.ts | 0 .../{ => openapi}/msw/src/gen/models/Tag.ts | 0 .../msw/src/gen/models/UpdatePet.ts | 0 .../msw/src/gen/models/UpdatePetWithForm.ts | 0 .../msw/src/gen/models/UploadFile.ts | 0 .../{ => openapi}/msw/src/gen/msw/handlers.ts | 0 .../src/gen/msw/pet/Handlers/addPetHandler.ts | 0 .../gen/msw/pet/Handlers/deletePetHandler.ts | 0 .../pet/Handlers/findPetsByStatusHandler.ts | 0 .../msw/pet/Handlers/findPetsByTagsHandler.ts | 0 .../gen/msw/pet/Handlers/getPetByIdHandler.ts | 0 .../optionsFindPetsByStatusHandler.ts | 0 .../gen/msw/pet/Handlers/updatePetHandler.ts | 0 .../pet/Handlers/updatePetWithFormHandler.ts | 0 .../gen/msw/pet/Handlers/uploadFileHandler.ts | 0 .../msw/store/Handlers/deleteOrderHandler.ts | 0 .../msw/store/Handlers/getInventoryHandler.ts | 0 .../msw/store/Handlers/getOrderByIdHandler.ts | 0 .../msw/store/Handlers/placeOrderHandler.ts | 0 .../store/Handlers/placeOrderPatchHandler.ts | 0 .../msw}/src/index.ts | 0 examples/{ => openapi}/msw/src/server.ts | 0 examples/{ => openapi}/msw/tsconfig.json | 0 .../{ => openapi}/react-query/kubb.config.ts | 0 .../{ => openapi}/react-query/package.json | 2 +- .../{ => openapi}/react-query/petStore.yaml | 0 .../react-query/src/gen/.kubb/client.ts | 0 .../react-query/src/gen/.kubb/serializers.ts | 0 .../src/gen/.kubb/standardSchema.ts | 0 .../react-query/src/gen/clients/index.ts | 0 .../react-query/src/gen/clients/pet/addPet.ts | 0 .../src/gen/clients/pet/deletePet.ts | 0 .../src/gen/clients/pet/findPetsByStatus.ts | 0 .../src/gen/clients/pet/findPetsByTags.ts | 0 .../src/gen/clients/pet/getPetById.ts | 0 .../react-query/src/gen/clients/pet/index.ts | 0 .../src/gen/clients/pet/updatePet.ts | 0 .../src/gen/clients/pet/updatePetWithForm.ts | 0 .../src/gen/clients/pet/uploadFile.ts | 0 .../src/gen/clients/store/deleteOrder.ts | 0 .../src/gen/clients/store/getInventory.ts | 0 .../src/gen/clients/store/getOrderById.ts | 0 .../src/gen/clients/store/index.ts | 0 .../src/gen/clients/store/placeOrder.ts | 0 .../src/gen/clients/store/placeOrderPatch.ts | 0 .../src/gen/clients/user/createUser.ts | 0 .../clients/user/createUsersWithListInput.ts | 0 .../src/gen/clients/user/deleteUser.ts | 0 .../src/gen/clients/user/getUserByName.ts | 0 .../react-query/src/gen/clients/user/index.ts | 0 .../src/gen/clients/user/loginUser.ts | 0 .../src/gen/clients/user/logoutUser.ts | 0 .../src/gen/clients/user/updateUser.ts | 0 .../react-query/src/gen/hooks/index.ts | 0 .../react-query/src/gen/hooks/pet/index.ts | 0 .../src/gen/hooks/pet/useAddPet.ts | 0 .../src/gen/hooks/pet/useDeletePet.ts | 0 .../src/gen/hooks/pet/useFindPetsByStatus.ts | 0 .../src/gen/hooks/pet/useFindPetsByTags.ts | 0 .../src/gen/hooks/pet/useGetPetById.ts | 0 .../src/gen/hooks/pet/useUpdatePet.ts | 0 .../src/gen/hooks/pet/useUpdatePetWithForm.ts | 0 .../src/gen/hooks/pet/useUploadFile.ts | 0 .../react-query/src/gen/hooks/store/index.ts | 0 .../src/gen/hooks/store/useDeleteOrder.ts | 0 .../src/gen/hooks/store/useGetInventory.ts | 0 .../src/gen/hooks/store/useGetOrderById.ts | 0 .../src/gen/hooks/store/usePlaceOrder.ts | 0 .../src/gen/hooks/store/usePlaceOrderPatch.ts | 0 .../react-query/src/gen/hooks/user/index.ts | 0 .../src/gen/hooks/user/useCreateUser.ts | 0 .../hooks/user/useCreateUsersWithListInput.ts | 0 .../src/gen/hooks/user/useDeleteUser.ts | 0 .../src/gen/hooks/user/useGetUserByName.ts | 0 .../src/gen/hooks/user/useLoginUser.ts | 0 .../src/gen/hooks/user/useLogoutUser.ts | 0 .../src/gen/hooks/user/useUpdateUser.ts | 0 .../react-query/src/gen/index.ts | 0 .../src/gen/models/AddPetRequest.ts | 0 .../react-query/src/gen/models/Address.ts | 0 .../react-query/src/gen/models/ApiResponse.ts | 0 .../react-query/src/gen/models/Category.ts | 0 .../react-query/src/gen/models/Customer.ts | 0 .../react-query/src/gen/models/Order.ts | 0 .../react-query/src/gen/models/Pet.ts | 0 .../react-query/src/gen/models/PetNotFound.ts | 0 .../react-query/src/gen/models/Tag.ts | 0 .../react-query/src/gen/models/User.ts | 0 .../react-query/src/gen/models/UserArray.ts | 0 .../react-query/src/gen/models/index.ts | 0 .../react-query/src/gen/models/pet/AddPet.ts | 0 .../src/gen/models/pet/DeletePet.ts | 0 .../src/gen/models/pet/FindPetsByStatus.ts | 0 .../src/gen/models/pet/FindPetsByTags.ts | 0 .../src/gen/models/pet/GetPetById.ts | 0 .../src/gen/models/pet/UpdatePet.ts | 0 .../src/gen/models/pet/UpdatePetWithForm.ts | 0 .../src/gen/models/pet/UploadFile.ts | 0 .../react-query/src/gen/models/pet/index.ts | 0 .../src/gen/models/store/DeleteOrder.ts | 0 .../src/gen/models/store/GetInventory.ts | 0 .../src/gen/models/store/GetOrderById.ts | 0 .../src/gen/models/store/PlaceOrder.ts | 0 .../src/gen/models/store/PlaceOrderPatch.ts | 0 .../react-query/src/gen/models/store/index.ts | 0 .../src/gen/models/user/CreateUser.ts | 0 .../models/user/CreateUsersWithListInput.ts | 0 .../src/gen/models/user/DeleteUser.ts | 0 .../src/gen/models/user/GetUserByName.ts | 0 .../src/gen/models/user/LoginUser.ts | 0 .../src/gen/models/user/LogoutUser.ts | 0 .../src/gen/models/user/UpdateUser.ts | 0 .../react-query/src/gen/models/user/index.ts | 0 .../{ => openapi}/react-query/src/index.ts | 0 .../{ => openapi}/react-query/tsconfig.json | 0 examples/{ => openapi}/sdk/kubb.config.ts | 0 examples/{ => openapi}/sdk/package.json | 2 +- examples/{ => openapi}/sdk/petStore.yaml | 0 .../{ => openapi}/sdk/sandbox.config.json | 0 .../{ => openapi}/sdk/src/gen/.kubb/client.ts | 0 .../sdk/src/gen/.kubb/serializers.ts | 0 .../sdk/src/gen/.kubb/standardSchema.ts | 0 .../sdk/src/gen/models/AddPetRequest.ts | 0 .../src/gen/models/AddPetRequestStatusEnum.ts | 0 .../sdk/src/gen/models/ApiResponse.ts | 0 .../sdk/src/gen/models/Category.ts | 0 .../src/gen/models/FindPetsByStatusStatus.ts | 0 .../{ => openapi}/sdk/src/gen/models/Order.ts | 0 .../sdk/src/gen/models/OrderHttpStatusEnum.ts | 0 .../sdk/src/gen/models/OrderStatusEnum.ts | 0 .../{ => openapi}/sdk/src/gen/models/Pet.ts | 0 .../sdk/src/gen/models/PetNotFound.ts | 0 .../sdk/src/gen/models/PetStatusEnum.ts | 0 .../{ => openapi}/sdk/src/gen/models/Tag.ts | 0 .../sdk/src/gen/models/pet/AddPet.ts | 0 .../sdk/src/gen/models/pet/DeletePet.ts | 0 .../src/gen/models/pet/FindPetsByStatus.ts | 0 .../sdk/src/gen/models/pet/FindPetsByTags.ts | 0 .../sdk/src/gen/models/pet/GetPetById.ts | 0 .../sdk/src/gen/models/pet/UpdatePet.ts | 0 .../src/gen/models/pet/UpdatePetWithForm.ts | 0 .../sdk/src/gen/models/pet/UploadFile.ts | 0 .../sdk/src/gen/models/store/DeleteOrder.ts | 0 .../sdk/src/gen/models/store/GetInventory.ts | 0 .../sdk/src/gen/models/store/GetOrderById.ts | 0 .../sdk/src/gen/models/store/PlaceOrder.ts | 0 .../src/gen/models/store/PlaceOrderPatch.ts | 0 .../{ => openapi}/sdk/src/gen/sdk/index.ts | 0 .../sdk/src/gen/sdk/pet/index.ts | 0 .../{ => openapi}/sdk/src/gen/sdk/pet/pet.ts | 0 .../sdk/src/gen/sdk/petStoreSDK.ts | 0 .../sdk/src/gen/sdk/store/index.ts | 0 .../sdk/src/gen/sdk/store/store.ts | 0 examples/{ => openapi}/sdk/src/index.ts | 0 examples/{ => openapi}/sdk/tsconfig.json | 0 .../simple-single/kubb.config.js | 0 .../{ => openapi}/simple-single/package.json | 2 +- .../{ => openapi}/simple-single/petStore.yaml | 0 .../simple-single/src/gen/.kubb/client.ts | 0 .../src/gen/.kubb/serializers.ts | 0 .../src/gen/.kubb/standardSchema.ts | 0 .../simple-single/src/gen/clients/addPet.ts | 0 .../src/gen/clients/deleteOrder.ts | 0 .../src/gen/clients/deletePet.ts | 0 .../src/gen/clients/findPetsByStatus.ts | 0 .../src/gen/clients/findPetsByTags.ts | 0 .../src/gen/clients/getInventory.ts | 0 .../src/gen/clients/getOrderById.ts | 0 .../src/gen/clients/getPetById.ts | 0 .../simple-single/src/gen/clients/index.ts | 0 .../src/gen/clients/placeOrder.ts | 0 .../src/gen/clients/placeOrderPatch.ts | 0 .../src/gen/clients/updatePet.ts | 0 .../src/gen/clients/updatePetWithForm.ts | 0 .../src/gen/clients/uploadFile.ts | 0 .../simple-single/src/gen/docs/index.html | 0 .../simple-single/src/gen/hooks.ts | 0 .../simple-single/src/gen/index.ts | 0 .../simple-single/src/gen/models.ts | 0 .../simple-single/src/gen/zod.ts | 0 .../simple-single}/src/index.ts | 0 .../{ => openapi}/simple-single/tsconfig.json | 0 examples/{ => openapi}/swr/kubb.config.ts | 0 examples/{ => openapi}/swr/package.json | 2 +- examples/{ => openapi}/swr/petStore.yaml | 0 .../{ => openapi}/swr/src/gen/.kubb/client.ts | 0 .../swr/src/gen/.kubb/serializers.ts | 0 .../swr/src/gen/.kubb/standardSchema.ts | 0 .../swr/src/gen/clients/index.ts | 0 .../swr/src/gen/clients/pet/addPet.ts | 0 .../swr/src/gen/clients/pet/deletePet.ts | 0 .../src/gen/clients/pet/findPetsByStatus.ts | 0 .../swr/src/gen/clients/pet/findPetsByTags.ts | 0 .../swr/src/gen/clients/pet/getPetById.ts | 0 .../swr/src/gen/clients/pet/index.ts | 0 .../swr/src/gen/clients/pet/updatePet.ts | 0 .../src/gen/clients/pet/updatePetWithForm.ts | 0 .../swr/src/gen/clients/pet/uploadFile.ts | 0 .../swr/src/gen/clients/store/deleteOrder.ts | 0 .../swr/src/gen/clients/store/getInventory.ts | 0 .../swr/src/gen/clients/store/getOrderById.ts | 0 .../swr/src/gen/clients/store/index.ts | 0 .../swr/src/gen/clients/store/placeOrder.ts | 0 .../src/gen/clients/store/placeOrderPatch.ts | 0 .../swr/src/gen/clients/user/createUser.ts | 0 .../clients/user/createUsersWithListInput.ts | 0 .../swr/src/gen/clients/user/deleteUser.ts | 0 .../swr/src/gen/clients/user/getUserByName.ts | 0 .../swr/src/gen/clients/user/index.ts | 0 .../swr/src/gen/clients/user/loginUser.ts | 0 .../swr/src/gen/clients/user/logoutUser.ts | 0 .../swr/src/gen/clients/user/updateUser.ts | 0 .../{ => openapi}/swr/src/gen/hooks/index.ts | 0 .../swr/src/gen/hooks/pet/index.ts | 0 .../swr/src/gen/hooks/pet/useAddPet.ts | 0 .../swr/src/gen/hooks/pet/useDeletePet.ts | 0 .../src/gen/hooks/pet/useFindPetsByStatus.ts | 0 .../src/gen/hooks/pet/useFindPetsByTags.ts | 0 .../swr/src/gen/hooks/pet/useGetPetById.ts | 0 .../swr/src/gen/hooks/pet/useUpdatePet.ts | 0 .../src/gen/hooks/pet/useUpdatePetWithForm.ts | 0 .../swr/src/gen/hooks/pet/useUploadFile.ts | 0 .../swr/src/gen/hooks/store/index.ts | 0 .../swr/src/gen/hooks/store/useDeleteOrder.ts | 0 .../src/gen/hooks/store/useGetInventory.ts | 0 .../src/gen/hooks/store/useGetOrderById.ts | 0 .../swr/src/gen/hooks/store/usePlaceOrder.ts | 0 .../src/gen/hooks/store/usePlaceOrderPatch.ts | 0 .../swr/src/gen/hooks/user/index.ts | 0 .../swr/src/gen/hooks/user/useCreateUser.ts | 0 .../hooks/user/useCreateUsersWithListInput.ts | 0 .../swr/src/gen/hooks/user/useDeleteUser.ts | 0 .../src/gen/hooks/user/useGetUserByName.ts | 0 .../swr/src/gen/hooks/user/useLoginUser.ts | 0 .../swr/src/gen/hooks/user/useLogoutUser.ts | 0 .../swr/src/gen/hooks/user/useUpdateUser.ts | 0 examples/{ => openapi}/swr/src/gen/index.ts | 0 .../swr/src/gen/models/AddPetRequest.ts | 0 .../swr/src/gen/models/Address.ts | 0 .../swr/src/gen/models/ApiResponse.ts | 0 .../swr/src/gen/models/Category.ts | 0 .../swr/src/gen/models/Customer.ts | 0 .../{ => openapi}/swr/src/gen/models/Order.ts | 0 .../{ => openapi}/swr/src/gen/models/Pet.ts | 0 .../swr/src/gen/models/PetNotFound.ts | 0 .../{ => openapi}/swr/src/gen/models/Tag.ts | 0 .../{ => openapi}/swr/src/gen/models/User.ts | 0 .../swr/src/gen/models/UserArray.ts | 0 .../{ => openapi}/swr/src/gen/models/index.ts | 0 .../swr/src/gen/models/pet/AddPet.ts | 0 .../swr/src/gen/models/pet/DeletePet.ts | 0 .../src/gen/models/pet/FindPetsByStatus.ts | 0 .../swr/src/gen/models/pet/FindPetsByTags.ts | 0 .../swr/src/gen/models/pet/GetPetById.ts | 0 .../swr/src/gen/models/pet/UpdatePet.ts | 0 .../src/gen/models/pet/UpdatePetWithForm.ts | 0 .../swr/src/gen/models/pet/UploadFile.ts | 0 .../swr/src/gen/models/pet/index.ts | 0 .../swr/src/gen/models/store/DeleteOrder.ts | 0 .../swr/src/gen/models/store/GetInventory.ts | 0 .../swr/src/gen/models/store/GetOrderById.ts | 0 .../swr/src/gen/models/store/PlaceOrder.ts | 0 .../src/gen/models/store/PlaceOrderPatch.ts | 0 .../swr/src/gen/models/store/index.ts | 0 .../swr/src/gen/models/user/CreateUser.ts | 0 .../models/user/CreateUsersWithListInput.ts | 0 .../swr/src/gen/models/user/DeleteUser.ts | 0 .../swr/src/gen/models/user/GetUserByName.ts | 0 .../swr/src/gen/models/user/LoginUser.ts | 0 .../swr/src/gen/models/user/LogoutUser.ts | 0 .../swr/src/gen/models/user/UpdateUser.ts | 0 .../swr/src/gen/models/user/index.ts | 0 examples/{ => openapi}/swr/src/index.ts | 0 examples/{ => openapi}/swr/tsconfig.json | 0 .../{ => openapi}/typescript/kubb.config.ts | 0 .../{ => openapi}/typescript/package.json | 2 +- .../{ => openapi}/typescript/petStore.yaml | 0 .../typescript/src/gen/models.ts | 0 .../src/gen10/models/AddPetRequest.ts | 0 .../gen10/models/AddPetRequestStatusEnum.ts | 0 .../typescript/src/gen10/models/Address.ts | 0 .../src/gen10/models/ApiResponse.ts | 0 .../typescript/src/gen10/models/Cat.ts | 0 .../typescript/src/gen10/models/Category.ts | 0 .../typescript/src/gen10/models/Customer.ts | 0 .../gen10/models/CustomerParamsStatusEnum.ts | 0 .../gen10/models/DeletePetStatus200Enum.ts | 0 .../typescript/src/gen10/models/Dog.ts | 0 .../gen10/models/FindPetsByStatusStatus.ts | 0 .../src/gen10/models/FullAddress.ts | 0 .../src/gen10/models/HappyCustomer.ts | 0 .../typescript/src/gen10/models/Order.ts | 0 .../src/gen10/models/OrderHttpStatusEnum.ts | 0 .../src/gen10/models/OrderParamsStatusEnum.ts | 0 .../src/gen10/models/OrderStatus.ts | 0 .../typescript/src/gen10/models/Pet.ts | 0 .../src/gen10/models/PetNotFound.ts | 0 .../src/gen10/models/PetStatusEnum.ts | 0 .../src/gen10/models/PetTypeEnum.ts | 0 .../typescript/src/gen10/models/Tag.ts | 0 .../src/gen10/models/UnhappyCustomer.ts | 0 .../typescript/src/gen10/models/pet/AddPet.ts | 0 .../src/gen10/models/pet/DeletePet.ts | 0 .../src/gen10/models/pet/FindPetsByStatus.ts | 0 .../src/gen10/models/pet/FindPetsByTags.ts | 0 .../src/gen10/models/pet/GetPetById.ts | 0 .../src/gen10/models/pet/UpdatePet.ts | 0 .../src/gen10/models/pet/UpdatePetWithForm.ts | 0 .../src/gen10/models/pet/UploadFile.ts | 0 .../src/gen10/models/store/DeleteOrder.ts | 0 .../src/gen10/models/store/GetInventory.ts | 0 .../src/gen10/models/store/GetOrderById.ts | 0 .../src/gen10/models/store/PlaceOrder.ts | 0 .../src/gen10/models/store/PlaceOrderPatch.ts | 0 .../src/gen11/modelsPascalCaseKeys.ts | 0 .../src/gen12/modelsCamelCaseKeys.ts | 0 .../typescript/src/gen2/modelsConst.ts | 0 .../typescript/src/gen3/modelsPascalConst.ts | 0 .../typescript/src/gen4/modelsConstEnum.ts | 0 .../typescript/src/gen5/modelsLiteral.ts | 0 .../typescript/src/gen6/ts/models/AddPet.ts | 0 .../src/gen6/ts/models/AddPetRequest.ts | 0 .../gen6/ts/models/AddPetRequestStatusEnum.ts | 0 .../typescript/src/gen6/ts/models/Address.ts | 0 .../src/gen6/ts/models/ApiResponse.ts | 0 .../typescript/src/gen6/ts/models/Cat.ts | 0 .../typescript/src/gen6/ts/models/Category.ts | 0 .../typescript/src/gen6/ts/models/Customer.ts | 0 .../ts/models/CustomerParamsStatusEnum.ts | 0 .../src/gen6/ts/models/DeleteOrder.ts | 0 .../src/gen6/ts/models/DeletePet.ts | 0 .../gen6/ts/models/DeletePetStatus200Enum.ts | 0 .../typescript/src/gen6/ts/models/Dog.ts | 0 .../src/gen6/ts/models/FindPetsByStatus.ts | 0 .../gen6/ts/models/FindPetsByStatusStatus.ts | 0 .../src/gen6/ts/models/FindPetsByTags.ts | 0 .../src/gen6/ts/models/FullAddress.ts | 0 .../src/gen6/ts/models/GetInventory.ts | 0 .../src/gen6/ts/models/GetOrderById.ts | 0 .../src/gen6/ts/models/GetPetById.ts | 0 .../src/gen6/ts/models/HappyCustomer.ts | 0 .../typescript/src/gen6/ts/models/Order.ts | 0 .../src/gen6/ts/models/OrderHttpStatusEnum.ts | 0 .../gen6/ts/models/OrderParamsStatusEnum.ts | 0 .../src/gen6/ts/models/OrderStatus.ts | 0 .../typescript/src/gen6/ts/models/Pet.ts | 0 .../src/gen6/ts/models/PetNotFound.ts | 0 .../src/gen6/ts/models/PetStatusEnum.ts | 0 .../src/gen6/ts/models/PetTypeEnum.ts | 0 .../src/gen6/ts/models/PlaceOrder.ts | 0 .../src/gen6/ts/models/PlaceOrderPatch.ts | 0 .../typescript/src/gen6/ts/models/Tag.ts | 0 .../src/gen6/ts/models/UnhappyCustomer.ts | 0 .../src/gen6/ts/models/UpdatePet.ts | 0 .../src/gen6/ts/models/UpdatePetWithForm.ts | 0 .../src/gen6/ts/models/UploadFile.ts | 0 .../src/gen7/modelsInlineLiteral.ts | 0 .../src/gen8/modelsOptionalUndefined.ts | 0 .../typescript/src/gen9/modelsOptionalBoth.ts | 0 .../{zod => openapi/typescript}/src/index.ts | 0 .../typescript/src/legacy/models.ts | 0 examples/openapi/typescript/tsconfig.json | 23 +++++ .../{ => openapi}/vue-query/kubb.config.ts | 0 examples/{ => openapi}/vue-query/package.json | 2 +- .../{ => openapi}/vue-query/petStore.yaml | 0 .../vue-query/src/gen/.kubb/client.ts | 0 .../vue-query/src/gen/.kubb/serializers.ts | 0 .../vue-query/src/gen/.kubb/standardSchema.ts | 0 .../vue-query/src/gen/clients/index.ts | 0 .../vue-query/src/gen/clients/pet/addPet.ts | 0 .../src/gen/clients/pet/deletePet.ts | 0 .../src/gen/clients/pet/findPetsByStatus.ts | 0 .../src/gen/clients/pet/findPetsByTags.ts | 0 .../src/gen/clients/pet/getPetById.ts | 0 .../vue-query/src/gen/clients/pet/index.ts | 0 .../src/gen/clients/pet/updatePet.ts | 0 .../src/gen/clients/pet/updatePetWithForm.ts | 0 .../src/gen/clients/pet/uploadFile.ts | 0 .../src/gen/clients/store/deleteOrder.ts | 0 .../src/gen/clients/store/getInventory.ts | 0 .../src/gen/clients/store/getOrderById.ts | 0 .../vue-query/src/gen/clients/store/index.ts | 0 .../src/gen/clients/store/placeOrder.ts | 0 .../src/gen/clients/store/placeOrderPatch.ts | 0 .../src/gen/clients/user/createUser.ts | 0 .../clients/user/createUsersWithListInput.ts | 0 .../src/gen/clients/user/deleteUser.ts | 0 .../src/gen/clients/user/getUserByName.ts | 0 .../vue-query/src/gen/clients/user/index.ts | 0 .../src/gen/clients/user/loginUser.ts | 0 .../src/gen/clients/user/logoutUser.ts | 0 .../src/gen/clients/user/updateUser.ts | 0 .../vue-query/src/gen/hooks/index.ts | 0 .../vue-query/src/gen/hooks/pet/index.ts | 0 .../vue-query/src/gen/hooks/pet/useAddPet.ts | 0 .../src/gen/hooks/pet/useDeletePet.ts | 0 .../src/gen/hooks/pet/useFindPetsByStatus.ts | 0 .../src/gen/hooks/pet/useFindPetsByTags.ts | 0 .../src/gen/hooks/pet/useGetPetById.ts | 0 .../src/gen/hooks/pet/useUpdatePet.ts | 0 .../src/gen/hooks/pet/useUpdatePetWithForm.ts | 0 .../src/gen/hooks/pet/useUploadFile.ts | 0 .../vue-query/src/gen/hooks/store/index.ts | 0 .../src/gen/hooks/store/useDeleteOrder.ts | 0 .../src/gen/hooks/store/useGetInventory.ts | 0 .../src/gen/hooks/store/useGetOrderById.ts | 0 .../src/gen/hooks/store/usePlaceOrder.ts | 0 .../src/gen/hooks/store/usePlaceOrderPatch.ts | 0 .../vue-query/src/gen/hooks/user/index.ts | 0 .../src/gen/hooks/user/useCreateUser.ts | 0 .../hooks/user/useCreateUsersWithListInput.ts | 0 .../src/gen/hooks/user/useDeleteUser.ts | 0 .../src/gen/hooks/user/useGetUserByName.ts | 0 .../src/gen/hooks/user/useLoginUser.ts | 0 .../src/gen/hooks/user/useLogoutUser.ts | 0 .../src/gen/hooks/user/useUpdateUser.ts | 0 .../{ => openapi}/vue-query/src/gen/index.ts | 0 .../vue-query/src/gen/models/AddPetRequest.ts | 0 .../vue-query/src/gen/models/Address.ts | 0 .../vue-query/src/gen/models/ApiResponse.ts | 0 .../vue-query/src/gen/models/Category.ts | 0 .../vue-query/src/gen/models/Customer.ts | 0 .../vue-query/src/gen/models/Order.ts | 0 .../vue-query/src/gen/models/Pet.ts | 0 .../vue-query/src/gen/models/PetNotFound.ts | 0 .../vue-query/src/gen/models/Tag.ts | 0 .../vue-query/src/gen/models/User.ts | 0 .../vue-query/src/gen/models/UserArray.ts | 0 .../vue-query/src/gen/models/index.ts | 0 .../vue-query/src/gen/models/pet/AddPet.ts | 0 .../vue-query/src/gen/models/pet/DeletePet.ts | 0 .../src/gen/models/pet/FindPetsByStatus.ts | 0 .../src/gen/models/pet/FindPetsByTags.ts | 0 .../src/gen/models/pet/GetPetById.ts | 0 .../vue-query/src/gen/models/pet/UpdatePet.ts | 0 .../src/gen/models/pet/UpdatePetWithForm.ts | 0 .../src/gen/models/pet/UploadFile.ts | 0 .../vue-query/src/gen/models/pet/index.ts | 0 .../src/gen/models/store/DeleteOrder.ts | 0 .../src/gen/models/store/GetInventory.ts | 0 .../src/gen/models/store/GetOrderById.ts | 0 .../src/gen/models/store/PlaceOrder.ts | 0 .../src/gen/models/store/PlaceOrderPatch.ts | 0 .../vue-query/src/gen/models/store/index.ts | 0 .../src/gen/models/user/CreateUser.ts | 0 .../models/user/CreateUsersWithListInput.ts | 0 .../src/gen/models/user/DeleteUser.ts | 0 .../src/gen/models/user/GetUserByName.ts | 0 .../src/gen/models/user/LoginUser.ts | 0 .../src/gen/models/user/LogoutUser.ts | 0 .../src/gen/models/user/UpdateUser.ts | 0 .../vue-query/src/gen/models/user/index.ts | 0 examples/{ => openapi}/vue-query/src/index.ts | 0 .../{ => openapi}/vue-query/tsconfig.json | 0 examples/{ => openapi}/zod/kubb.config.js | 0 .../{ => openapi}/zod/operationsPlugin.ts | 0 examples/{ => openapi}/zod/package.json | 2 +- examples/{ => openapi}/zod/petStore.yaml | 0 .../zod/src/gen3/zod/createItemSchema.ts | 0 .../zod/src/gen3/zod/itemSchema.ts | 0 .../zod/src/gen3/zod/itemTypeASchema.ts | 0 .../zod/src/gen3/zod/itemTypeBSchema.ts | 0 .../zod/src/gen3/zod/updateItemSchema.ts | 0 examples/openapi/zod/src/index.ts | 0 .../zod/src/mini/zod/addPetRequestSchema.ts | 0 .../zod/src/mini/zod/addPetSchema.ts | 0 .../zod/src/mini/zod/apiResponseSchema.ts | 0 .../zod/src/mini/zod/categorySchema.ts | 0 .../zod/src/mini/zod/createPetsSchema.ts | 0 .../zod/src/mini/zod/deleteOrderSchema.ts | 0 .../zod/src/mini/zod/deletePetSchema.ts | 0 .../src/mini/zod/findPetsByStatusSchema.ts | 0 .../zod/src/mini/zod/findPetsByTagsSchema.ts | 0 .../zod/src/mini/zod/getInventorySchema.ts | 0 .../zod/src/mini/zod/getOrderByIdSchema.ts | 0 .../zod/src/mini/zod/getPetByIdSchema.ts | 0 .../zod/src/mini/zod/getThingsSchema.ts | 0 .../zod/src/mini/zod/orderSchema.ts | 0 .../zod/src/mini/zod/petNotFoundSchema.ts | 0 .../zod/src/mini/zod/petSchema.ts | 0 .../zod/src/mini/zod/phoneNumberSchema.ts | 0 .../zod/phoneWithMaxLengthExplicitSchema.ts | 0 .../src/mini/zod/phoneWithMaxLengthSchema.ts | 0 .../zod/src/mini/zod/placeOrderPatchSchema.ts | 0 .../zod/src/mini/zod/placeOrderSchema.ts | 0 .../zod/src/mini/zod/tagSchema.ts | 0 .../zod/src/mini/zod/updatePetSchema.ts | 0 .../src/mini/zod/updatePetWithFormSchema.ts | 0 .../zod/src/mini/zod/uploadFileSchema.ts | 0 examples/{ => openapi}/zod/src/zod.ts | 0 .../{ => openapi}/zod/src/zod/ts/AddPet.ts | 0 .../zod/src/zod/ts/AddPetRequest.ts | 0 .../zod/src/zod/ts/ApiResponse.ts | 0 .../{ => openapi}/zod/src/zod/ts/Category.ts | 0 .../zod/src/zod/ts/CreatePets.ts | 0 .../zod/src/zod/ts/DeleteOrder.ts | 0 .../{ => openapi}/zod/src/zod/ts/DeletePet.ts | 0 .../zod/src/zod/ts/FindPetsByStatus.ts | 0 .../zod/src/zod/ts/FindPetsByTags.ts | 0 .../zod/src/zod/ts/GetInventory.ts | 0 .../zod/src/zod/ts/GetOrderById.ts | 0 .../zod/src/zod/ts/GetPetById.ts | 0 .../{ => openapi}/zod/src/zod/ts/GetThings.ts | 0 .../{ => openapi}/zod/src/zod/ts/Order.ts | 0 examples/{ => openapi}/zod/src/zod/ts/Pet.ts | 0 .../zod/src/zod/ts/PetNotFound.ts | 0 .../zod/src/zod/ts/PhoneNumber.ts | 0 .../zod/src/zod/ts/PhoneWithMaxLength.ts | 0 .../src/zod/ts/PhoneWithMaxLengthExplicit.ts | 0 .../zod/src/zod/ts/PlaceOrder.ts | 0 .../zod/src/zod/ts/PlaceOrderPatch.ts | 0 examples/{ => openapi}/zod/src/zod/ts/Tag.ts | 0 .../{ => openapi}/zod/src/zod/ts/UpdatePet.ts | 0 .../zod/src/zod/ts/UpdatePetWithForm.ts | 0 .../zod/src/zod/ts/UploadFile.ts | 0 .../zod/src/zod/zod/addPetRequestSchema.ts | 0 .../zod/src/zod/zod/addPetSchema.ts | 0 .../zod/src/zod/zod/apiResponseSchema.ts | 0 .../zod/src/zod/zod/categorySchema.ts | 0 .../zod/src/zod/zod/createPetsSchema.ts | 0 .../zod/src/zod/zod/deleteOrderSchema.ts | 0 .../zod/src/zod/zod/deletePetSchema.ts | 0 .../zod/src/zod/zod/findPetsByStatusSchema.ts | 0 .../zod/src/zod/zod/findPetsByTagsSchema.ts | 0 .../zod/src/zod/zod/getInventorySchema.ts | 0 .../zod/src/zod/zod/getOrderByIdSchema.ts | 0 .../zod/src/zod/zod/getPetByIdSchema.ts | 0 .../zod/src/zod/zod/getThingsSchema.ts | 0 .../zod/src/zod/zod/operationsSchema.ts | 0 .../zod/src/zod/zod/orderSchema.ts | 0 .../zod/src/zod/zod/petNotFoundSchema.ts | 0 .../zod/src/zod/zod/petSchema.ts | 0 .../zod/src/zod/zod/phoneNumberSchema.ts | 0 .../zod/phoneWithMaxLengthExplicitSchema.ts | 0 .../src/zod/zod/phoneWithMaxLengthSchema.ts | 0 .../zod/src/zod/zod/placeOrderPatchSchema.ts | 0 .../zod/src/zod/zod/placeOrderSchema.ts | 0 .../zod/src/zod/zod/tagSchema.ts | 0 .../zod/src/zod/zod/updatePetSchema.ts | 0 .../src/zod/zod/updatePetWithFormSchema.ts | 0 .../zod/src/zod/zod/uploadFileSchema.ts | 0 examples/{ => openapi}/zod/tsconfig.json | 0 .../{ => openapi}/zod/unionWithReadOnly.yaml | 0 package.json | 8 +- pnpm-workspace.yaml | 5 +- tests/3.0.x/tsconfig.json | 7 -- .../pluginTs/workflows/types/Credentials.ts | 9 ++ .../workflows/types/LoginAndReadPet.ts | 27 ++++++ .../workflows/types/LoginAndReadPetInputs.ts | 9 ++ .../workflows/types/LoginAndReadPetOutputs.ts | 20 +++++ .../pluginTs/workflows/types/ReadPetOnly.ts | 24 +++++ .../workflows/types/ReadPetOnlyOutputs.ts | 8 ++ tests/arazzo/1.1.0/mocks/petStore.yaml | 77 ++++++++++++++++ .../arazzo/1.1.0/mocks/workflows.arazzo.yaml | 89 +++++++++++++++++++ tests/arazzo/1.1.0/package.json | 35 ++++++++ tests/arazzo/1.1.0/pluginTs.test.ts | 71 +++++++++++++++ tests/arazzo/1.1.0/tsconfig.json | 7 ++ .../cypress/findPetsByStatus.ts | 0 .../cypress/getInventory.ts | 0 .../cypress/getPetById.ts | 0 .../cypress/placeOrder.ts | 0 .../cypress/uploadFile.ts | 0 .../excludeByOperationId/types/AddPet.ts | 0 .../types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../excludeByOperationId/types/ApiResponse.ts | 0 .../excludeByOperationId/types/Category.ts | 0 .../excludeByOperationId/types/DeletePet.ts | 0 .../types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../types/GetInventory.ts | 0 .../excludeByOperationId/types/GetPetById.ts | 0 .../excludeByOperationId/types/Order.ts | 0 .../types/OrderStatusEnum.ts | 0 .../excludeByOperationId/types/Pet.ts | 0 .../types/PetStatusEnum.ts | 0 .../excludeByOperationId/types/PlaceOrder.ts | 0 .../excludeByOperationId/types/Tag.ts | 0 .../excludeByOperationId/types/UploadFile.ts | 0 .../includeByTag/cypress/addPet.ts | 0 .../includeByTag/cypress/deletePet.ts | 0 .../includeByTag/cypress/findPetsByStatus.ts | 0 .../includeByTag/cypress/getPetById.ts | 0 .../includeByTag/cypress/uploadFile.ts | 0 .../includeByTag/types/AddPet.ts | 0 .../includeByTag/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../includeByTag/types/ApiResponse.ts | 0 .../includeByTag/types/Category.ts | 0 .../includeByTag/types/DeletePet.ts | 0 .../includeByTag/types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../includeByTag/types/GetInventory.ts | 0 .../includeByTag/types/GetPetById.ts | 0 .../cypressPlugin/includeByTag/types/Order.ts | 0 .../includeByTag/types/OrderStatusEnum.ts | 0 .../cypressPlugin/includeByTag/types/Pet.ts | 0 .../includeByTag/types/PetStatusEnum.ts | 0 .../includeByTag/types/PlaceOrder.ts | 0 .../cypressPlugin/includeByTag/types/Tag.ts | 0 .../includeByTag/types/UploadFile.ts | 0 .../cypress/config/createConfigV20250.ts | 0 .../cypress/config/getConfigIdV20250.ts | 0 .../cypressPlugin/noTagsGroup/types/Config.ts | 0 .../noTagsGroup/types/ConfigCreate.ts | 0 .../noTagsGroup/types/CreateConfigV20250.ts | 0 .../noTagsGroup/types/GetConfigIdV20250.ts | 0 .../main/asConstEnum/types/Priority.ts | 0 .../main/asConstEnum/types/Status.ts | 0 .../main/asConstEnum/types/Task.ts | 0 .../main/caseSensitivity/types/CreateOrder.ts | 0 .../main/caseSensitivity/types/GetProducts.ts | 0 .../main/caseSensitivity/types/GetVariants.ts | 0 .../caseSensitivity/types/OrderRequest.ts | 0 .../main/caseSensitivity/types/OrderSchema.ts | 0 .../caseSensitivity/types/ProductResponse.ts | 0 .../caseSensitivity/types/ProductSchema.ts | 0 .../main/caseSensitivity/types/Variant.ts | 0 .../main/caseSensitivity/types/Variant2.ts | 0 .../types/Variant2CategoryEnum.ts | 0 .../caseSensitivity/types/VariantTypeEnum.ts | 0 .../types/BankTransferPayment.ts | 0 .../types/BankTransferPaymentMapped.ts | 0 .../types/BankTransferPaymentUnion.ts | 0 .../discriminatorAllOf/types/CardPayment.ts | 0 .../types/CardPaymentMapped.ts | 0 .../types/CardPaymentUnion.ts | 0 .../types/ExtendedPaymentMethodUnion.ts | 0 .../discriminatorAllOf/types/PaymentMethod.ts | 0 .../types/PaymentMethodMapped.ts | 0 .../types/PaymentMethodMappedTypeEnum.ts | 0 .../types/PaymentMethodUnion.ts | 0 .../discriminatorAllOf/types/WalletPayment.ts | 0 .../types/WalletPaymentMapped.ts | 0 .../zod/bankTransferPaymentMappedSchema.ts | 0 .../zod/bankTransferPaymentSchema.ts | 0 .../zod/bankTransferPaymentUnionSchema.ts | 0 .../zod/cardPaymentMappedSchema.ts | 0 .../zod/cardPaymentSchema.ts | 0 .../zod/cardPaymentUnionSchema.ts | 0 .../zod/extendedPaymentMethodUnionSchema.ts | 0 .../zod/paymentMethodMappedSchema.ts | 0 .../zod/paymentMethodMappedTypeEnumSchema.ts | 0 .../zod/paymentMethodSchema.ts | 0 .../zod/paymentMethodUnionSchema.ts | 0 .../zod/walletPaymentMappedSchema.ts | 0 .../zod/walletPaymentSchema.ts | 0 .../main/discriminatorAnyOf/types/Car.ts | 0 .../discriminatorAnyOf/types/ElectricCar.ts | 0 .../main/discriminatorAnyOf/types/SUV.ts | 0 .../main/discriminatorAnyOf/types/Sedan.ts | 0 .../main/discriminatorAnyOf/types/TypeEnum.ts | 0 .../main/discriminatorAnyOf/types/Vehicle.ts | 0 .../discriminatorAnyOf/types/VehicleChoice.ts | 0 .../main/discriminatorAnyOf/zod/SUVSchema.ts | 0 .../main/discriminatorAnyOf/zod/carSchema.ts | 0 .../zod/electricCarSchema.ts | 0 .../discriminatorAnyOf/zod/sedanSchema.ts | 0 .../discriminatorAnyOf/zod/typeEnumSchema.ts | 0 .../zod/vehicleChoiceSchema.ts | 0 .../discriminatorAnyOf/zod/vehicleSchema.ts | 0 .../discriminatorImplicit/zod/animalSchema.ts | 0 .../discriminatorImplicit/zod/catSchema.ts | 0 .../discriminatorImplicit/zod/dogSchema.ts | 0 .../discriminatorImplicit/zod/petSchema.ts | 0 .../main/discriminatorOneOf/types/Car.ts | 0 .../discriminatorOneOf/types/ElectricCar.ts | 0 .../types/ElectricCarTypeEnum.ts | 0 .../main/discriminatorOneOf/types/SUV.ts | 0 .../discriminatorOneOf/types/SUVTypeEnum.ts | 0 .../main/discriminatorOneOf/types/Sedan.ts | 0 .../discriminatorOneOf/types/SedanTypeEnum.ts | 0 .../main/discriminatorOneOf/types/Vehicle.ts | 0 .../discriminatorOneOf/types/VehicleChoice.ts | 0 .../main/discriminatorOneOf/zod/SUVSchema.ts | 0 .../zod/SUVTypeEnumSchema.ts | 0 .../main/discriminatorOneOf/zod/carSchema.ts | 0 .../zod/electricCarSchema.ts | 0 .../zod/electricCarTypeEnumSchema.ts | 0 .../discriminatorOneOf/zod/sedanSchema.ts | 0 .../zod/sedanTypeEnumSchema.ts | 0 .../zod/vehicleChoiceSchema.ts | 0 .../discriminatorOneOf/zod/vehicleSchema.ts | 0 .../zod/notificationTypeSchema.ts | 0 .../zod/orderCreatedNotificationDTOSchema.ts | 0 .../zod/pingNotificationDTOSchema.ts | 0 .../zod/sendNotificationRequestSchema.ts | 0 .../discriminatorOneOfMini/zod/SUVSchema.ts | 0 .../zod/SUVTypeEnumSchema.ts | 0 .../discriminatorOneOfMini/zod/carSchema.ts | 0 .../zod/electricCarSchema.ts | 0 .../zod/electricCarTypeEnumSchema.ts | 0 .../discriminatorOneOfMini/zod/sedanSchema.ts | 0 .../zod/sedanTypeEnumSchema.ts | 0 .../zod/vehicleChoiceSchema.ts | 0 .../zod/vehicleSchema.ts | 0 .../duplicateEnum/types/GetNotifications.ts | 0 .../duplicateEnum/types/NotificationTypeA.ts | 0 .../NotificationTypeAParamsChannelEnum.ts | 0 .../duplicateEnum/types/NotificationTypeB.ts | 0 .../NotificationTypeBParamsChannelEnum.ts | 0 .../issue2619/zod/contactDetailsTypeSchema.ts | 0 .../issue2619/zod/createReturnTypeASchema.ts | 0 .../issue2619/zod/createReturnTypeBSchema.ts | 0 .../main/issue2619/zod/parcelSchema.ts | 0 .../issue2619/zod/productDetailsSchema.ts | 0 .../main/issue2619/zod/resultSchema.ts | 0 .../issue2619/zod/resultStateEnumSchema.ts | 0 .../main/issue2619/zod/typeARequestSchema.ts | 0 .../main/issue2619/zod/typeBRequestSchema.ts | 0 .../main/issue2696/types/AppState.ts | 0 .../main/issue2696/types/Employer.ts | 0 .../main/issue2696/types/GetEmployers.ts | 0 .../main/issue2696/types/GetMe.ts | 0 .../main/issue2696/types/User.ts | 0 .../main/noTagsDotOperationId/types/Config.ts | 0 .../types/ConfigCreate.ts | 0 .../types/config/CreateConfigV20250.ts | 0 .../types/config/GetConfigIdV20250.ts | 0 .../main/petStore/types/AddPet.ts | 0 .../main/petStore/types/AddPetRequest.ts | 0 .../petStore/types/AddPetRequestStatusEnum.ts | 0 .../main/petStore/types/ApiResponse.ts | 0 .../main/petStore/types/Category.ts | 0 .../main/petStore/types/DeletePet.ts | 0 .../main/petStore/types/FindPetsByStatus.ts | 0 .../petStore/types/FindPetsByStatusStatus.ts | 0 .../main/petStore/types/GetInventory.ts | 0 .../main/petStore/types/GetPetById.ts | 0 .../main/petStore/types/Order.ts | 0 .../main/petStore/types/OrderStatusEnum.ts | 0 .../__snapshots__/main/petStore/types/Pet.ts | 0 .../main/petStore/types/PetStatusEnum.ts | 0 .../main/petStore/types/PlaceOrder.ts | 0 .../__snapshots__/main/petStore/types/Tag.ts | 0 .../main/petStore/types/UploadFile.ts | 0 .../main/printerNodesZod/zod/getItemSchema.ts | 0 .../main/printerNodesZod/zod/itemSchema.ts | 0 .../resolverCustomPrefix/types/GetItem.ts | 0 .../main/resolverCustomPrefix/types/Item.ts | 0 .../__snapshots__/main/simple/types/AddPet.ts | 0 .../main/simple/types/AddPetRequest.ts | 0 .../simple/types/AddPetRequestStatusEnum.ts | 0 .../main/simple/types/ApiResponse.ts | 0 .../main/simple/types/Category.ts | 0 .../main/simple/types/DeletePet.ts | 0 .../main/simple/types/FindPetsByStatus.ts | 0 .../simple/types/FindPetsByStatusStatus.ts | 0 .../main/simple/types/GetInventory.ts | 0 .../main/simple/types/GetPetById.ts | 0 .../__snapshots__/main/simple/types/Order.ts | 0 .../main/simple/types/OrderStatusEnum.ts | 0 .../__snapshots__/main/simple/types/Pet.ts | 0 .../main/simple/types/PetStatusEnum.ts | 0 .../main/simple/types/PlaceOrder.ts | 0 .../__snapshots__/main/simple/types/Tag.ts | 0 .../main/simple/types/UploadFile.ts | 0 .../types/GetItem.ts | 0 .../types/Item.ts | 0 .../pluginAxios/default/.kubb/client.ts | 0 .../pluginAxios/default/.kubb/serializers.ts | 0 .../default/.kubb/standardSchema.ts | 0 .../pluginAxios/default/clients/addPet.ts | 0 .../pluginAxios/default/clients/deletePet.ts | 0 .../default/clients/findPetsByStatus.ts | 0 .../default/clients/getInventory.ts | 0 .../pluginAxios/default/clients/getPetById.ts | 0 .../pluginAxios/default/clients/placeOrder.ts | 0 .../pluginAxios/default/clients/uploadFile.ts | 0 .../pluginAxios/default/types/AddPet.ts | 0 .../default/types/AddPetRequest.ts | 0 .../default/types/AddPetRequestStatusEnum.ts | 0 .../pluginAxios/default/types/ApiResponse.ts | 0 .../pluginAxios/default/types/Category.ts | 0 .../pluginAxios/default/types/DeletePet.ts | 0 .../default/types/FindPetsByStatus.ts | 0 .../default/types/FindPetsByStatusStatus.ts | 0 .../pluginAxios/default/types/GetInventory.ts | 0 .../pluginAxios/default/types/GetPetById.ts | 0 .../pluginAxios/default/types/Order.ts | 0 .../default/types/OrderStatusEnum.ts | 0 .../pluginAxios/default/types/Pet.ts | 0 .../default/types/PetStatusEnum.ts | 0 .../pluginAxios/default/types/PlaceOrder.ts | 0 .../pluginAxios/default/types/Tag.ts | 0 .../pluginAxios/default/types/UploadFile.ts | 0 .../pluginAxios/paramsCasing/.kubb/client.ts | 0 .../paramsCasing/.kubb/serializers.ts | 0 .../paramsCasing/.kubb/standardSchema.ts | 0 .../paramsCasing/clients/updatePet.ts | 0 .../pluginAxios/paramsCasing/types/Pet.ts | 0 .../paramsCasing/types/PetUpdate.ts | 0 .../paramsCasing/types/UpdatePet.ts | 0 .../pluginAxios/sdkClass/.kubb/client.ts | 0 .../pluginAxios/sdkClass/.kubb/serializers.ts | 0 .../sdkClass/.kubb/standardSchema.ts | 0 .../pluginAxios/sdkClass/clients/petClient.ts | 0 .../sdkClass/clients/storeClient.ts | 0 .../pluginAxios/sdkClass/types/AddPet.ts | 0 .../sdkClass/types/AddPetRequest.ts | 0 .../sdkClass/types/AddPetRequestStatusEnum.ts | 0 .../pluginAxios/sdkClass/types/ApiResponse.ts | 0 .../pluginAxios/sdkClass/types/Category.ts | 0 .../pluginAxios/sdkClass/types/DeletePet.ts | 0 .../sdkClass/types/FindPetsByStatus.ts | 0 .../sdkClass/types/FindPetsByStatusStatus.ts | 0 .../sdkClass/types/GetInventory.ts | 0 .../pluginAxios/sdkClass/types/GetPetById.ts | 0 .../pluginAxios/sdkClass/types/Order.ts | 0 .../sdkClass/types/OrderStatusEnum.ts | 0 .../pluginAxios/sdkClass/types/Pet.ts | 0 .../sdkClass/types/PetStatusEnum.ts | 0 .../pluginAxios/sdkClass/types/PlaceOrder.ts | 0 .../pluginAxios/sdkClass/types/Tag.ts | 0 .../pluginAxios/sdkClass/types/UploadFile.ts | 0 .../sdkClassWithName/.kubb/client.ts | 0 .../sdkClassWithName/.kubb/serializers.ts | 0 .../sdkClassWithName/.kubb/standardSchema.ts | 0 .../sdkClassWithName/clients/petClient.ts | 0 .../sdkClassWithName/clients/petStore.ts | 0 .../sdkClassWithName/clients/storeClient.ts | 0 .../sdkClassWithName/types/AddPet.ts | 0 .../sdkClassWithName/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../sdkClassWithName/types/ApiResponse.ts | 0 .../sdkClassWithName/types/Category.ts | 0 .../sdkClassWithName/types/DeletePet.ts | 0 .../types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../sdkClassWithName/types/GetInventory.ts | 0 .../sdkClassWithName/types/GetPetById.ts | 0 .../sdkClassWithName/types/Order.ts | 0 .../sdkClassWithName/types/OrderStatusEnum.ts | 0 .../pluginAxios/sdkClassWithName/types/Pet.ts | 0 .../sdkClassWithName/types/PetStatusEnum.ts | 0 .../sdkClassWithName/types/PlaceOrder.ts | 0 .../pluginAxios/sdkClassWithName/types/Tag.ts | 0 .../sdkClassWithName/types/UploadFile.ts | 0 .../pluginAxios/sdkSingle/.kubb/client.ts | 0 .../sdkSingle/.kubb/serializers.ts | 0 .../sdkSingle/.kubb/standardSchema.ts | 0 .../pluginAxios/sdkSingle/clients/petStore.ts | 0 .../pluginAxios/sdkSingle/types/AddPet.ts | 0 .../sdkSingle/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../sdkSingle/types/ApiResponse.ts | 0 .../pluginAxios/sdkSingle/types/Category.ts | 0 .../pluginAxios/sdkSingle/types/DeletePet.ts | 0 .../sdkSingle/types/FindPetsByStatus.ts | 0 .../sdkSingle/types/FindPetsByStatusStatus.ts | 0 .../sdkSingle/types/GetInventory.ts | 0 .../pluginAxios/sdkSingle/types/GetPetById.ts | 0 .../pluginAxios/sdkSingle/types/Order.ts | 0 .../sdkSingle/types/OrderStatusEnum.ts | 0 .../pluginAxios/sdkSingle/types/Pet.ts | 0 .../sdkSingle/types/PetStatusEnum.ts | 0 .../pluginAxios/sdkSingle/types/PlaceOrder.ts | 0 .../pluginAxios/sdkSingle/types/Tag.ts | 0 .../pluginAxios/sdkSingle/types/UploadFile.ts | 0 .../dateParserDayjs/faker/createAddPet.ts | 0 .../faker/createAddPetRequest.ts | 0 .../faker/createAddPetRequestStatusEnum.ts | 0 .../faker/createApiResponse.ts | 0 .../dateParserDayjs/faker/createCategory.ts | 0 .../dateParserDayjs/faker/createDeletePet.ts | 0 .../faker/createFindPetsByStatus.ts | 0 .../faker/createFindPetsByStatusStatus.ts | 0 .../faker/createGetInventory.ts | 0 .../dateParserDayjs/faker/createGetPetById.ts | 0 .../dateParserDayjs/faker/createOrder.ts | 0 .../faker/createOrderStatusEnum.ts | 0 .../dateParserDayjs/faker/createPet.ts | 0 .../faker/createPetStatusEnum.ts | 0 .../dateParserDayjs/faker/createPlaceOrder.ts | 0 .../dateParserDayjs/faker/createTag.ts | 0 .../dateParserDayjs/faker/createUploadFile.ts | 0 .../dateParserDayjs/types/AddPet.ts | 0 .../dateParserDayjs/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../dateParserDayjs/types/ApiResponse.ts | 0 .../dateParserDayjs/types/Category.ts | 0 .../dateParserDayjs/types/DeletePet.ts | 0 .../dateParserDayjs/types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../dateParserDayjs/types/GetInventory.ts | 0 .../dateParserDayjs/types/GetPetById.ts | 0 .../dateParserDayjs/types/Order.ts | 0 .../dateParserDayjs/types/OrderStatusEnum.ts | 0 .../pluginFaker/dateParserDayjs/types/Pet.ts | 0 .../dateParserDayjs/types/PetStatusEnum.ts | 0 .../dateParserDayjs/types/PlaceOrder.ts | 0 .../pluginFaker/dateParserDayjs/types/Tag.ts | 0 .../dateParserDayjs/types/UploadFile.ts | 0 .../faker/createAddPetRequest.ts | 0 .../faker/createAddPetRequestStatusEnum.ts | 0 .../faker/createApiResponse.ts | 0 .../faker/createCategory.ts | 0 .../faker/createFindPetsByStatus.ts | 0 .../faker/createFindPetsByStatusStatus.ts | 0 .../faker/createGetInventory.ts | 0 .../faker/createGetPetById.ts | 0 .../excludeByOperationId/faker/createOrder.ts | 0 .../faker/createOrderStatusEnum.ts | 0 .../excludeByOperationId/faker/createPet.ts | 0 .../faker/createPetStatusEnum.ts | 0 .../faker/createPlaceOrder.ts | 0 .../excludeByOperationId/faker/createTag.ts | 0 .../faker/createUploadFile.ts | 0 .../excludeByOperationId/types/AddPet.ts | 0 .../types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../excludeByOperationId/types/ApiResponse.ts | 0 .../excludeByOperationId/types/Category.ts | 0 .../excludeByOperationId/types/DeletePet.ts | 0 .../types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../types/GetInventory.ts | 0 .../excludeByOperationId/types/GetPetById.ts | 0 .../excludeByOperationId/types/Order.ts | 0 .../types/OrderStatusEnum.ts | 0 .../excludeByOperationId/types/Pet.ts | 0 .../types/PetStatusEnum.ts | 0 .../excludeByOperationId/types/PlaceOrder.ts | 0 .../excludeByOperationId/types/Tag.ts | 0 .../excludeByOperationId/types/UploadFile.ts | 0 .../groupByTag/faker/createAddPetRequest.ts | 0 .../faker/createAddPetRequestStatusEnum.ts | 0 .../groupByTag/faker/createApiResponse.ts | 0 .../groupByTag/faker/createCategory.ts | 0 .../faker/createFindPetsByStatusStatus.ts | 0 .../groupByTag/faker/createOrder.ts | 0 .../groupByTag/faker/createOrderStatusEnum.ts | 0 .../pluginFaker/groupByTag/faker/createPet.ts | 0 .../groupByTag/faker/createPetStatusEnum.ts | 0 .../pluginFaker/groupByTag/faker/createTag.ts | 0 .../groupByTag/faker/pet/createAddPet.ts | 0 .../groupByTag/faker/pet/createDeletePet.ts | 0 .../faker/pet/createFindPetsByStatus.ts | 0 .../groupByTag/faker/pet/createGetPetById.ts | 0 .../groupByTag/faker/pet/createUploadFile.ts | 0 .../faker/store/createGetInventory.ts | 0 .../faker/store/createPlaceOrder.ts | 0 .../pluginFaker/groupByTag/types/AddPet.ts | 0 .../groupByTag/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../groupByTag/types/ApiResponse.ts | 0 .../pluginFaker/groupByTag/types/Category.ts | 0 .../pluginFaker/groupByTag/types/DeletePet.ts | 0 .../groupByTag/types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../groupByTag/types/GetInventory.ts | 0 .../groupByTag/types/GetPetById.ts | 0 .../pluginFaker/groupByTag/types/Order.ts | 0 .../groupByTag/types/OrderStatusEnum.ts | 0 .../pluginFaker/groupByTag/types/Pet.ts | 0 .../groupByTag/types/PetStatusEnum.ts | 0 .../groupByTag/types/PlaceOrder.ts | 0 .../pluginFaker/groupByTag/types/Tag.ts | 0 .../groupByTag/types/UploadFile.ts | 0 .../includeByTag/faker/createAddPet.ts | 0 .../includeByTag/faker/createAddPetRequest.ts | 0 .../faker/createAddPetRequestStatusEnum.ts | 0 .../includeByTag/faker/createApiResponse.ts | 0 .../includeByTag/faker/createCategory.ts | 0 .../includeByTag/faker/createDeletePet.ts | 0 .../faker/createFindPetsByStatus.ts | 0 .../faker/createFindPetsByStatusStatus.ts | 0 .../includeByTag/faker/createGetPetById.ts | 0 .../includeByTag/faker/createPet.ts | 0 .../includeByTag/faker/createPetStatusEnum.ts | 0 .../includeByTag/faker/createTag.ts | 0 .../includeByTag/faker/createUploadFile.ts | 0 .../pluginFaker/includeByTag/types/AddPet.ts | 0 .../includeByTag/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../includeByTag/types/ApiResponse.ts | 0 .../includeByTag/types/Category.ts | 0 .../includeByTag/types/DeletePet.ts | 0 .../includeByTag/types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../includeByTag/types/GetInventory.ts | 0 .../includeByTag/types/GetPetById.ts | 0 .../pluginFaker/includeByTag/types/Order.ts | 0 .../includeByTag/types/OrderStatusEnum.ts | 0 .../pluginFaker/includeByTag/types/Pet.ts | 0 .../includeByTag/types/PetStatusEnum.ts | 0 .../includeByTag/types/PlaceOrder.ts | 0 .../pluginFaker/includeByTag/types/Tag.ts | 0 .../includeByTag/types/UploadFile.ts | 0 .../pluginFaker/locale/faker/createAddPet.ts | 0 .../locale/faker/createAddPetRequest.ts | 0 .../faker/createAddPetRequestStatusEnum.ts | 0 .../locale/faker/createApiResponse.ts | 0 .../locale/faker/createCategory.ts | 0 .../locale/faker/createDeletePet.ts | 0 .../locale/faker/createFindPetsByStatus.ts | 0 .../faker/createFindPetsByStatusStatus.ts | 0 .../locale/faker/createGetInventory.ts | 0 .../locale/faker/createGetPetById.ts | 0 .../pluginFaker/locale/faker/createOrder.ts | 0 .../locale/faker/createOrderStatusEnum.ts | 0 .../pluginFaker/locale/faker/createPet.ts | 0 .../locale/faker/createPetStatusEnum.ts | 0 .../locale/faker/createPlaceOrder.ts | 0 .../pluginFaker/locale/faker/createTag.ts | 0 .../locale/faker/createUploadFile.ts | 0 .../pluginFaker/locale/types/AddPet.ts | 0 .../pluginFaker/locale/types/AddPetRequest.ts | 0 .../locale/types/AddPetRequestStatusEnum.ts | 0 .../pluginFaker/locale/types/ApiResponse.ts | 0 .../pluginFaker/locale/types/Category.ts | 0 .../pluginFaker/locale/types/DeletePet.ts | 0 .../locale/types/FindPetsByStatus.ts | 0 .../locale/types/FindPetsByStatusStatus.ts | 0 .../pluginFaker/locale/types/GetInventory.ts | 0 .../pluginFaker/locale/types/GetPetById.ts | 0 .../pluginFaker/locale/types/Order.ts | 0 .../locale/types/OrderStatusEnum.ts | 0 .../pluginFaker/locale/types/Pet.ts | 0 .../pluginFaker/locale/types/PetStatusEnum.ts | 0 .../pluginFaker/locale/types/PlaceOrder.ts | 0 .../pluginFaker/locale/types/Tag.ts | 0 .../pluginFaker/locale/types/UploadFile.ts | 0 .../pluginFaker/macros/faker/createAddPet.ts | 0 .../macros/faker/createAddPetRequest.ts | 0 .../faker/createAddPetRequestStatusEnum.ts | 0 .../macros/faker/createApiResponse.ts | 0 .../macros/faker/createCategory.ts | 0 .../macros/faker/createDeletePet.ts | 0 .../macros/faker/createFindPetsByStatus.ts | 0 .../faker/createFindPetsByStatusStatus.ts | 0 .../macros/faker/createGetInventory.ts | 0 .../macros/faker/createGetPetById.ts | 0 .../pluginFaker/macros/faker/createOrder.ts | 0 .../macros/faker/createOrderStatusEnum.ts | 0 .../pluginFaker/macros/faker/createPet.ts | 0 .../macros/faker/createPetStatusEnum.ts | 0 .../macros/faker/createPlaceOrder.ts | 0 .../pluginFaker/macros/faker/createTag.ts | 0 .../macros/faker/createUploadFile.ts | 0 .../pluginFaker/macros/types/AddPet.ts | 0 .../pluginFaker/macros/types/AddPetRequest.ts | 0 .../macros/types/AddPetRequestStatusEnum.ts | 0 .../pluginFaker/macros/types/ApiResponse.ts | 0 .../pluginFaker/macros/types/Category.ts | 0 .../pluginFaker/macros/types/DeletePet.ts | 0 .../macros/types/FindPetsByStatus.ts | 0 .../macros/types/FindPetsByStatusStatus.ts | 0 .../pluginFaker/macros/types/GetInventory.ts | 0 .../pluginFaker/macros/types/GetPetById.ts | 0 .../pluginFaker/macros/types/Order.ts | 0 .../macros/types/OrderStatusEnum.ts | 0 .../pluginFaker/macros/types/Pet.ts | 0 .../pluginFaker/macros/types/PetStatusEnum.ts | 0 .../pluginFaker/macros/types/PlaceOrder.ts | 0 .../pluginFaker/macros/types/Tag.ts | 0 .../pluginFaker/macros/types/UploadFile.ts | 0 .../paramsCasing/faker/createPet.ts | 0 .../paramsCasing/faker/createPetUpdate.ts | 0 .../paramsCasing/faker/createUpdatePet.ts | 0 .../pluginFaker/paramsCasing/types/Pet.ts | 0 .../paramsCasing/types/PetUpdate.ts | 0 .../paramsCasing/types/UpdatePet.ts | 0 .../petStore/faker/createAddPet.ts | 0 .../petStore/faker/createAddPetRequest.ts | 0 .../faker/createAddPetRequestStatusEnum.ts | 0 .../petStore/faker/createApiResponse.ts | 0 .../petStore/faker/createCategory.ts | 0 .../petStore/faker/createDeletePet.ts | 0 .../petStore/faker/createFindPetsByStatus.ts | 0 .../faker/createFindPetsByStatusStatus.ts | 0 .../petStore/faker/createGetInventory.ts | 0 .../petStore/faker/createGetPetById.ts | 0 .../pluginFaker/petStore/faker/createOrder.ts | 0 .../petStore/faker/createOrderStatusEnum.ts | 0 .../pluginFaker/petStore/faker/createPet.ts | 0 .../petStore/faker/createPetStatusEnum.ts | 0 .../petStore/faker/createPlaceOrder.ts | 0 .../pluginFaker/petStore/faker/createTag.ts | 0 .../petStore/faker/createUploadFile.ts | 0 .../pluginFaker/petStore/types/AddPet.ts | 0 .../petStore/types/AddPetRequest.ts | 0 .../petStore/types/AddPetRequestStatusEnum.ts | 0 .../pluginFaker/petStore/types/ApiResponse.ts | 0 .../pluginFaker/petStore/types/Category.ts | 0 .../pluginFaker/petStore/types/DeletePet.ts | 0 .../petStore/types/FindPetsByStatus.ts | 0 .../petStore/types/FindPetsByStatusStatus.ts | 0 .../petStore/types/GetInventory.ts | 0 .../pluginFaker/petStore/types/GetPetById.ts | 0 .../pluginFaker/petStore/types/Order.ts | 0 .../petStore/types/OrderStatusEnum.ts | 0 .../pluginFaker/petStore/types/Pet.ts | 0 .../petStore/types/PetStatusEnum.ts | 0 .../pluginFaker/petStore/types/PlaceOrder.ts | 0 .../pluginFaker/petStore/types/Tag.ts | 0 .../pluginFaker/petStore/types/UploadFile.ts | 0 .../faker/createAddPet.ts | 0 .../faker/createAddPetRequest.ts | 0 .../faker/createAddPetRequestStatusEnum.ts | 0 .../faker/createApiResponse.ts | 0 .../faker/createCategory.ts | 0 .../faker/createDeletePet.ts | 0 .../faker/createFindPetsByStatus.ts | 0 .../faker/createFindPetsByStatusStatus.ts | 0 .../faker/createGetInventory.ts | 0 .../faker/createGetPetById.ts | 0 .../faker/createOrder.ts | 0 .../faker/createOrderStatusEnum.ts | 0 .../regexGeneratorRandexp/faker/createPet.ts | 0 .../faker/createPetStatusEnum.ts | 0 .../faker/createPlaceOrder.ts | 0 .../regexGeneratorRandexp/faker/createTag.ts | 0 .../faker/createUploadFile.ts | 0 .../regexGeneratorRandexp/types/AddPet.ts | 0 .../types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../types/ApiResponse.ts | 0 .../regexGeneratorRandexp/types/Category.ts | 0 .../regexGeneratorRandexp/types/DeletePet.ts | 0 .../types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../types/GetInventory.ts | 0 .../regexGeneratorRandexp/types/GetPetById.ts | 0 .../regexGeneratorRandexp/types/Order.ts | 0 .../types/OrderStatusEnum.ts | 0 .../regexGeneratorRandexp/types/Pet.ts | 0 .../types/PetStatusEnum.ts | 0 .../regexGeneratorRandexp/types/PlaceOrder.ts | 0 .../regexGeneratorRandexp/types/Tag.ts | 0 .../regexGeneratorRandexp/types/UploadFile.ts | 0 .../pluginFaker/seed/faker/createAddPet.ts | 0 .../seed/faker/createAddPetRequest.ts | 0 .../faker/createAddPetRequestStatusEnum.ts | 0 .../seed/faker/createApiResponse.ts | 0 .../pluginFaker/seed/faker/createCategory.ts | 0 .../pluginFaker/seed/faker/createDeletePet.ts | 0 .../seed/faker/createFindPetsByStatus.ts | 0 .../faker/createFindPetsByStatusStatus.ts | 0 .../seed/faker/createGetInventory.ts | 0 .../seed/faker/createGetPetById.ts | 0 .../pluginFaker/seed/faker/createOrder.ts | 0 .../seed/faker/createOrderStatusEnum.ts | 0 .../pluginFaker/seed/faker/createPet.ts | 0 .../seed/faker/createPetStatusEnum.ts | 0 .../seed/faker/createPlaceOrder.ts | 0 .../pluginFaker/seed/faker/createTag.ts | 0 .../seed/faker/createUploadFile.ts | 0 .../pluginFaker/seed/types/AddPet.ts | 0 .../pluginFaker/seed/types/AddPetRequest.ts | 0 .../seed/types/AddPetRequestStatusEnum.ts | 0 .../pluginFaker/seed/types/ApiResponse.ts | 0 .../pluginFaker/seed/types/Category.ts | 0 .../pluginFaker/seed/types/DeletePet.ts | 0 .../seed/types/FindPetsByStatus.ts | 0 .../seed/types/FindPetsByStatusStatus.ts | 0 .../pluginFaker/seed/types/GetInventory.ts | 0 .../pluginFaker/seed/types/GetPetById.ts | 0 .../pluginFaker/seed/types/Order.ts | 0 .../pluginFaker/seed/types/OrderStatusEnum.ts | 0 .../pluginFaker/seed/types/Pet.ts | 0 .../pluginFaker/seed/types/PetStatusEnum.ts | 0 .../pluginFaker/seed/types/PlaceOrder.ts | 0 .../pluginFaker/seed/types/Tag.ts | 0 .../pluginFaker/seed/types/UploadFile.ts | 0 .../pluginFetch/default/.kubb/client.ts | 0 .../pluginFetch/default/.kubb/serializers.ts | 0 .../default/.kubb/standardSchema.ts | 0 .../pluginFetch/default/clients/addPet.ts | 0 .../pluginFetch/default/clients/deletePet.ts | 0 .../default/clients/findPetsByStatus.ts | 0 .../default/clients/getInventory.ts | 0 .../pluginFetch/default/clients/getPetById.ts | 0 .../pluginFetch/default/clients/placeOrder.ts | 0 .../pluginFetch/default/clients/uploadFile.ts | 0 .../pluginFetch/default/types/AddPet.ts | 0 .../default/types/AddPetRequest.ts | 0 .../default/types/AddPetRequestStatusEnum.ts | 0 .../pluginFetch/default/types/ApiResponse.ts | 0 .../pluginFetch/default/types/Category.ts | 0 .../pluginFetch/default/types/DeletePet.ts | 0 .../default/types/FindPetsByStatus.ts | 0 .../default/types/FindPetsByStatusStatus.ts | 0 .../pluginFetch/default/types/GetInventory.ts | 0 .../pluginFetch/default/types/GetPetById.ts | 0 .../pluginFetch/default/types/Order.ts | 0 .../default/types/OrderStatusEnum.ts | 0 .../pluginFetch/default/types/Pet.ts | 0 .../default/types/PetStatusEnum.ts | 0 .../pluginFetch/default/types/PlaceOrder.ts | 0 .../pluginFetch/default/types/Tag.ts | 0 .../pluginFetch/default/types/UploadFile.ts | 0 .../pluginFetch/paramsCasing/.kubb/client.ts | 0 .../paramsCasing/.kubb/serializers.ts | 0 .../paramsCasing/.kubb/standardSchema.ts | 0 .../paramsCasing/clients/updatePet.ts | 0 .../pluginFetch/paramsCasing/types/Pet.ts | 0 .../paramsCasing/types/PetUpdate.ts | 0 .../paramsCasing/types/UpdatePet.ts | 0 .../pluginFetch/sdkClass/.kubb/client.ts | 0 .../pluginFetch/sdkClass/.kubb/serializers.ts | 0 .../sdkClass/.kubb/standardSchema.ts | 0 .../pluginFetch/sdkClass/clients/petClient.ts | 0 .../sdkClass/clients/storeClient.ts | 0 .../pluginFetch/sdkClass/types/AddPet.ts | 0 .../sdkClass/types/AddPetRequest.ts | 0 .../sdkClass/types/AddPetRequestStatusEnum.ts | 0 .../pluginFetch/sdkClass/types/ApiResponse.ts | 0 .../pluginFetch/sdkClass/types/Category.ts | 0 .../pluginFetch/sdkClass/types/DeletePet.ts | 0 .../sdkClass/types/FindPetsByStatus.ts | 0 .../sdkClass/types/FindPetsByStatusStatus.ts | 0 .../sdkClass/types/GetInventory.ts | 0 .../pluginFetch/sdkClass/types/GetPetById.ts | 0 .../pluginFetch/sdkClass/types/Order.ts | 0 .../sdkClass/types/OrderStatusEnum.ts | 0 .../pluginFetch/sdkClass/types/Pet.ts | 0 .../sdkClass/types/PetStatusEnum.ts | 0 .../pluginFetch/sdkClass/types/PlaceOrder.ts | 0 .../pluginFetch/sdkClass/types/Tag.ts | 0 .../pluginFetch/sdkClass/types/UploadFile.ts | 0 .../sdkClassWithName/.kubb/client.ts | 0 .../sdkClassWithName/.kubb/serializers.ts | 0 .../sdkClassWithName/.kubb/standardSchema.ts | 0 .../sdkClassWithName/clients/petClient.ts | 0 .../sdkClassWithName/clients/petStore.ts | 0 .../sdkClassWithName/clients/storeClient.ts | 0 .../sdkClassWithName/types/AddPet.ts | 0 .../sdkClassWithName/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../sdkClassWithName/types/ApiResponse.ts | 0 .../sdkClassWithName/types/Category.ts | 0 .../sdkClassWithName/types/DeletePet.ts | 0 .../types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../sdkClassWithName/types/GetInventory.ts | 0 .../sdkClassWithName/types/GetPetById.ts | 0 .../sdkClassWithName/types/Order.ts | 0 .../sdkClassWithName/types/OrderStatusEnum.ts | 0 .../pluginFetch/sdkClassWithName/types/Pet.ts | 0 .../sdkClassWithName/types/PetStatusEnum.ts | 0 .../sdkClassWithName/types/PlaceOrder.ts | 0 .../pluginFetch/sdkClassWithName/types/Tag.ts | 0 .../sdkClassWithName/types/UploadFile.ts | 0 .../pluginFetch/sdkSingle/.kubb/client.ts | 0 .../sdkSingle/.kubb/serializers.ts | 0 .../sdkSingle/.kubb/standardSchema.ts | 0 .../pluginFetch/sdkSingle/clients/petStore.ts | 0 .../pluginFetch/sdkSingle/types/AddPet.ts | 0 .../sdkSingle/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../sdkSingle/types/ApiResponse.ts | 0 .../pluginFetch/sdkSingle/types/Category.ts | 0 .../pluginFetch/sdkSingle/types/DeletePet.ts | 0 .../sdkSingle/types/FindPetsByStatus.ts | 0 .../sdkSingle/types/FindPetsByStatusStatus.ts | 0 .../sdkSingle/types/GetInventory.ts | 0 .../pluginFetch/sdkSingle/types/GetPetById.ts | 0 .../pluginFetch/sdkSingle/types/Order.ts | 0 .../sdkSingle/types/OrderStatusEnum.ts | 0 .../pluginFetch/sdkSingle/types/Pet.ts | 0 .../sdkSingle/types/PetStatusEnum.ts | 0 .../pluginFetch/sdkSingle/types/PlaceOrder.ts | 0 .../pluginFetch/sdkSingle/types/Tag.ts | 0 .../pluginFetch/sdkSingle/types/UploadFile.ts | 0 .../excludeByOperationId/.kubb/client.ts | 0 .../excludeByOperationId/.kubb/config.ts | 0 .../excludeByOperationId/.kubb/serializers.ts | 0 .../.kubb/standardSchema.ts | 0 .../excludeByOperationId/clients/addPet.ts | 0 .../excludeByOperationId/clients/deletePet.ts | 0 .../clients/findPetsByStatus.ts | 0 .../clients/getInventory.ts | 0 .../clients/getPetById.ts | 0 .../clients/placeOrder.ts | 0 .../clients/uploadFile.ts | 0 .../excludeByOperationId/mcp/.mcp.json | 0 .../mcp/findPetsByStatus.ts | 0 .../excludeByOperationId/mcp/getInventory.ts | 0 .../excludeByOperationId/mcp/getPetById.ts | 0 .../excludeByOperationId/mcp/placeOrder.ts | 0 .../excludeByOperationId/mcp/server.ts | 0 .../excludeByOperationId/mcp/uploadFile.ts | 0 .../excludeByOperationId/types/AddPet.ts | 0 .../types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../excludeByOperationId/types/ApiResponse.ts | 0 .../excludeByOperationId/types/Category.ts | 0 .../excludeByOperationId/types/DeletePet.ts | 0 .../types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../types/GetInventory.ts | 0 .../excludeByOperationId/types/GetPetById.ts | 0 .../excludeByOperationId/types/Order.ts | 0 .../types/OrderStatusEnum.ts | 0 .../excludeByOperationId/types/Pet.ts | 0 .../types/PetStatusEnum.ts | 0 .../excludeByOperationId/types/PlaceOrder.ts | 0 .../excludeByOperationId/types/Tag.ts | 0 .../excludeByOperationId/types/UploadFile.ts | 0 .../zod/addPetRequestSchema.ts | 0 .../zod/addPetRequestStatusEnumSchema.ts | 0 .../excludeByOperationId/zod/addPetSchema.ts | 0 .../zod/apiResponseSchema.ts | 0 .../zod/categorySchema.ts | 0 .../zod/deletePetSchema.ts | 0 .../zod/findPetsByStatusSchema.ts | 0 .../zod/findPetsByStatusStatusSchema.ts | 0 .../zod/getInventorySchema.ts | 0 .../zod/getPetByIdSchema.ts | 0 .../excludeByOperationId/zod/orderSchema.ts | 0 .../zod/orderStatusEnumSchema.ts | 0 .../excludeByOperationId/zod/petSchema.ts | 0 .../zod/petStatusEnumSchema.ts | 0 .../zod/placeOrderSchema.ts | 0 .../excludeByOperationId/zod/tagSchema.ts | 0 .../zod/uploadFileSchema.ts | 0 .../pluginMcp/groupByTag/.kubb/client.ts | 0 .../pluginMcp/groupByTag/.kubb/config.ts | 0 .../pluginMcp/groupByTag/.kubb/serializers.ts | 0 .../groupByTag/.kubb/standardSchema.ts | 0 .../pluginMcp/groupByTag/clients/addPet.ts | 0 .../pluginMcp/groupByTag/clients/deletePet.ts | 0 .../groupByTag/clients/findPetsByStatus.ts | 0 .../groupByTag/clients/getInventory.ts | 0 .../groupByTag/clients/getPetById.ts | 0 .../groupByTag/clients/placeOrder.ts | 0 .../groupByTag/clients/uploadFile.ts | 0 .../pluginMcp/groupByTag/mcp/.mcp.json | 0 .../pluginMcp/groupByTag/mcp/pet/addPet.ts | 0 .../pluginMcp/groupByTag/mcp/pet/deletePet.ts | 0 .../groupByTag/mcp/pet/findPetsByStatus.ts | 0 .../groupByTag/mcp/pet/getPetById.ts | 0 .../groupByTag/mcp/pet/uploadFile.ts | 0 .../pluginMcp/groupByTag/mcp/server.ts | 0 .../groupByTag/mcp/store/getInventory.ts | 0 .../groupByTag/mcp/store/placeOrder.ts | 0 .../pluginMcp/groupByTag/types/AddPet.ts | 0 .../groupByTag/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../pluginMcp/groupByTag/types/ApiResponse.ts | 0 .../pluginMcp/groupByTag/types/Category.ts | 0 .../pluginMcp/groupByTag/types/DeletePet.ts | 0 .../groupByTag/types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../groupByTag/types/GetInventory.ts | 0 .../pluginMcp/groupByTag/types/GetPetById.ts | 0 .../pluginMcp/groupByTag/types/Order.ts | 0 .../groupByTag/types/OrderStatusEnum.ts | 0 .../pluginMcp/groupByTag/types/Pet.ts | 0 .../groupByTag/types/PetStatusEnum.ts | 0 .../pluginMcp/groupByTag/types/PlaceOrder.ts | 0 .../pluginMcp/groupByTag/types/Tag.ts | 0 .../pluginMcp/groupByTag/types/UploadFile.ts | 0 .../groupByTag/zod/addPetRequestSchema.ts | 0 .../zod/addPetRequestStatusEnumSchema.ts | 0 .../pluginMcp/groupByTag/zod/addPetSchema.ts | 0 .../groupByTag/zod/apiResponseSchema.ts | 0 .../groupByTag/zod/categorySchema.ts | 0 .../groupByTag/zod/deletePetSchema.ts | 0 .../groupByTag/zod/findPetsByStatusSchema.ts | 0 .../zod/findPetsByStatusStatusSchema.ts | 0 .../groupByTag/zod/getInventorySchema.ts | 0 .../groupByTag/zod/getPetByIdSchema.ts | 0 .../pluginMcp/groupByTag/zod/orderSchema.ts | 0 .../groupByTag/zod/orderStatusEnumSchema.ts | 0 .../pluginMcp/groupByTag/zod/petSchema.ts | 0 .../groupByTag/zod/petStatusEnumSchema.ts | 0 .../groupByTag/zod/placeOrderSchema.ts | 0 .../pluginMcp/groupByTag/zod/tagSchema.ts | 0 .../groupByTag/zod/uploadFileSchema.ts | 0 .../pluginMcp/includeByTag/.kubb/client.ts | 0 .../pluginMcp/includeByTag/.kubb/config.ts | 0 .../includeByTag/.kubb/serializers.ts | 0 .../includeByTag/.kubb/standardSchema.ts | 0 .../pluginMcp/includeByTag/clients/addPet.ts | 0 .../includeByTag/clients/deletePet.ts | 0 .../includeByTag/clients/findPetsByStatus.ts | 0 .../includeByTag/clients/getInventory.ts | 0 .../includeByTag/clients/getPetById.ts | 0 .../includeByTag/clients/placeOrder.ts | 0 .../includeByTag/clients/uploadFile.ts | 0 .../pluginMcp/includeByTag/mcp/.mcp.json | 0 .../pluginMcp/includeByTag/mcp/addPet.ts | 0 .../pluginMcp/includeByTag/mcp/deletePet.ts | 0 .../includeByTag/mcp/findPetsByStatus.ts | 0 .../pluginMcp/includeByTag/mcp/getPetById.ts | 0 .../pluginMcp/includeByTag/mcp/server.ts | 0 .../pluginMcp/includeByTag/mcp/uploadFile.ts | 0 .../pluginMcp/includeByTag/types/AddPet.ts | 0 .../includeByTag/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../includeByTag/types/ApiResponse.ts | 0 .../pluginMcp/includeByTag/types/Category.ts | 0 .../pluginMcp/includeByTag/types/DeletePet.ts | 0 .../includeByTag/types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../includeByTag/types/GetInventory.ts | 0 .../includeByTag/types/GetPetById.ts | 0 .../pluginMcp/includeByTag/types/Order.ts | 0 .../includeByTag/types/OrderStatusEnum.ts | 0 .../pluginMcp/includeByTag/types/Pet.ts | 0 .../includeByTag/types/PetStatusEnum.ts | 0 .../includeByTag/types/PlaceOrder.ts | 0 .../pluginMcp/includeByTag/types/Tag.ts | 0 .../includeByTag/types/UploadFile.ts | 0 .../includeByTag/zod/addPetRequestSchema.ts | 0 .../zod/addPetRequestStatusEnumSchema.ts | 0 .../includeByTag/zod/addPetSchema.ts | 0 .../includeByTag/zod/apiResponseSchema.ts | 0 .../includeByTag/zod/categorySchema.ts | 0 .../includeByTag/zod/deletePetSchema.ts | 0 .../zod/findPetsByStatusSchema.ts | 0 .../zod/findPetsByStatusStatusSchema.ts | 0 .../includeByTag/zod/getInventorySchema.ts | 0 .../includeByTag/zod/getPetByIdSchema.ts | 0 .../pluginMcp/includeByTag/zod/orderSchema.ts | 0 .../includeByTag/zod/orderStatusEnumSchema.ts | 0 .../pluginMcp/includeByTag/zod/petSchema.ts | 0 .../includeByTag/zod/petStatusEnumSchema.ts | 0 .../includeByTag/zod/placeOrderSchema.ts | 0 .../pluginMcp/includeByTag/zod/tagSchema.ts | 0 .../includeByTag/zod/uploadFileSchema.ts | 0 .../pluginMcp/paramsCasing/.kubb/client.ts | 0 .../pluginMcp/paramsCasing/.kubb/config.ts | 0 .../paramsCasing/.kubb/serializers.ts | 0 .../paramsCasing/.kubb/standardSchema.ts | 0 .../paramsCasing/clients/updatePet.ts | 0 .../pluginMcp/paramsCasing/mcp/.mcp.json | 0 .../pluginMcp/paramsCasing/mcp/server.ts | 0 .../pluginMcp/paramsCasing/mcp/updatePet.ts | 0 .../pluginMcp/paramsCasing/types/Pet.ts | 0 .../pluginMcp/paramsCasing/types/PetUpdate.ts | 0 .../pluginMcp/paramsCasing/types/UpdatePet.ts | 0 .../pluginMcp/paramsCasing/zod/petSchema.ts | 0 .../paramsCasing/zod/petUpdateSchema.ts | 0 .../paramsCasing/zod/updatePetSchema.ts | 0 .../pluginMcp/petStore/.kubb/client.ts | 0 .../pluginMcp/petStore/.kubb/config.ts | 0 .../pluginMcp/petStore/.kubb/serializers.ts | 0 .../petStore/.kubb/standardSchema.ts | 0 .../pluginMcp/petStore/clients/addPet.ts | 0 .../pluginMcp/petStore/clients/deletePet.ts | 0 .../petStore/clients/findPetsByStatus.ts | 0 .../petStore/clients/getInventory.ts | 0 .../pluginMcp/petStore/clients/getPetById.ts | 0 .../pluginMcp/petStore/clients/placeOrder.ts | 0 .../pluginMcp/petStore/clients/uploadFile.ts | 0 .../pluginMcp/petStore/mcp/.mcp.json | 0 .../pluginMcp/petStore/mcp/addPet.ts | 0 .../pluginMcp/petStore/mcp/deletePet.ts | 0 .../petStore/mcp/findPetsByStatus.ts | 0 .../pluginMcp/petStore/mcp/getInventory.ts | 0 .../pluginMcp/petStore/mcp/getPetById.ts | 0 .../pluginMcp/petStore/mcp/placeOrder.ts | 0 .../pluginMcp/petStore/mcp/server.ts | 0 .../pluginMcp/petStore/mcp/uploadFile.ts | 0 .../pluginMcp/petStore/types/AddPet.ts | 0 .../pluginMcp/petStore/types/AddPetRequest.ts | 0 .../petStore/types/AddPetRequestStatusEnum.ts | 0 .../pluginMcp/petStore/types/ApiResponse.ts | 0 .../pluginMcp/petStore/types/Category.ts | 0 .../pluginMcp/petStore/types/DeletePet.ts | 0 .../petStore/types/FindPetsByStatus.ts | 0 .../petStore/types/FindPetsByStatusStatus.ts | 0 .../pluginMcp/petStore/types/GetInventory.ts | 0 .../pluginMcp/petStore/types/GetPetById.ts | 0 .../pluginMcp/petStore/types/Order.ts | 0 .../petStore/types/OrderStatusEnum.ts | 0 .../pluginMcp/petStore/types/Pet.ts | 0 .../pluginMcp/petStore/types/PetStatusEnum.ts | 0 .../pluginMcp/petStore/types/PlaceOrder.ts | 0 .../pluginMcp/petStore/types/Tag.ts | 0 .../pluginMcp/petStore/types/UploadFile.ts | 0 .../petStore/zod/addPetRequestSchema.ts | 0 .../zod/addPetRequestStatusEnumSchema.ts | 0 .../pluginMcp/petStore/zod/addPetSchema.ts | 0 .../petStore/zod/apiResponseSchema.ts | 0 .../pluginMcp/petStore/zod/categorySchema.ts | 0 .../pluginMcp/petStore/zod/deletePetSchema.ts | 0 .../petStore/zod/findPetsByStatusSchema.ts | 0 .../zod/findPetsByStatusStatusSchema.ts | 0 .../petStore/zod/getInventorySchema.ts | 0 .../petStore/zod/getPetByIdSchema.ts | 0 .../pluginMcp/petStore/zod/orderSchema.ts | 0 .../petStore/zod/orderStatusEnumSchema.ts | 0 .../pluginMcp/petStore/zod/petSchema.ts | 0 .../petStore/zod/petStatusEnumSchema.ts | 0 .../petStore/zod/placeOrderSchema.ts | 0 .../pluginMcp/petStore/zod/tagSchema.ts | 0 .../petStore/zod/uploadFileSchema.ts | 0 .../withClientPlugin/.kubb/client.ts | 0 .../withClientPlugin/.kubb/serializers.ts | 0 .../withClientPlugin/.kubb/standardSchema.ts | 0 .../withClientPlugin/clients/addPet.ts | 0 .../withClientPlugin/clients/deletePet.ts | 0 .../clients/findPetsByStatus.ts | 0 .../withClientPlugin/clients/getInventory.ts | 0 .../withClientPlugin/clients/getPetById.ts | 0 .../withClientPlugin/clients/placeOrder.ts | 0 .../withClientPlugin/clients/uploadFile.ts | 0 .../pluginMcp/withClientPlugin/mcp/.mcp.json | 0 .../pluginMcp/withClientPlugin/mcp/addPet.ts | 0 .../withClientPlugin/mcp/deletePet.ts | 0 .../withClientPlugin/mcp/findPetsByStatus.ts | 0 .../withClientPlugin/mcp/getInventory.ts | 0 .../withClientPlugin/mcp/getPetById.ts | 0 .../withClientPlugin/mcp/placeOrder.ts | 0 .../pluginMcp/withClientPlugin/mcp/server.ts | 0 .../withClientPlugin/mcp/uploadFile.ts | 0 .../withClientPlugin/types/AddPet.ts | 0 .../withClientPlugin/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../withClientPlugin/types/ApiResponse.ts | 0 .../withClientPlugin/types/Category.ts | 0 .../withClientPlugin/types/DeletePet.ts | 0 .../types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../withClientPlugin/types/GetInventory.ts | 0 .../withClientPlugin/types/GetPetById.ts | 0 .../pluginMcp/withClientPlugin/types/Order.ts | 0 .../withClientPlugin/types/OrderStatusEnum.ts | 0 .../pluginMcp/withClientPlugin/types/Pet.ts | 0 .../withClientPlugin/types/PetStatusEnum.ts | 0 .../withClientPlugin/types/PlaceOrder.ts | 0 .../pluginMcp/withClientPlugin/types/Tag.ts | 0 .../withClientPlugin/types/UploadFile.ts | 0 .../zod/addPetRequestSchema.ts | 0 .../zod/addPetRequestStatusEnumSchema.ts | 0 .../withClientPlugin/zod/addPetSchema.ts | 0 .../withClientPlugin/zod/apiResponseSchema.ts | 0 .../withClientPlugin/zod/categorySchema.ts | 0 .../withClientPlugin/zod/deletePetSchema.ts | 0 .../zod/findPetsByStatusSchema.ts | 0 .../zod/findPetsByStatusStatusSchema.ts | 0 .../zod/getInventorySchema.ts | 0 .../withClientPlugin/zod/getPetByIdSchema.ts | 0 .../withClientPlugin/zod/orderSchema.ts | 0 .../zod/orderStatusEnumSchema.ts | 0 .../withClientPlugin/zod/petSchema.ts | 0 .../zod/petStatusEnumSchema.ts | 0 .../withClientPlugin/zod/placeOrderSchema.ts | 0 .../withClientPlugin/zod/tagSchema.ts | 0 .../withClientPlugin/zod/uploadFileSchema.ts | 0 .../pluginMsw/baseURL/msw/addPetHandler.ts | 0 .../pluginMsw/baseURL/msw/deletePetHandler.ts | 0 .../baseURL/msw/findPetsByStatusHandler.ts | 0 .../baseURL/msw/getInventoryHandler.ts | 0 .../baseURL/msw/getPetByIdHandler.ts | 0 .../baseURL/msw/placeOrderHandler.ts | 0 .../baseURL/msw/uploadFileHandler.ts | 0 .../pluginMsw/baseURL/types/AddPet.ts | 0 .../pluginMsw/baseURL/types/AddPetRequest.ts | 0 .../baseURL/types/AddPetRequestStatusEnum.ts | 0 .../pluginMsw/baseURL/types/ApiResponse.ts | 0 .../pluginMsw/baseURL/types/Category.ts | 0 .../pluginMsw/baseURL/types/DeletePet.ts | 0 .../baseURL/types/FindPetsByStatus.ts | 0 .../baseURL/types/FindPetsByStatusStatus.ts | 0 .../pluginMsw/baseURL/types/GetInventory.ts | 0 .../pluginMsw/baseURL/types/GetPetById.ts | 0 .../pluginMsw/baseURL/types/Order.ts | 0 .../baseURL/types/OrderStatusEnum.ts | 0 .../pluginMsw/baseURL/types/Pet.ts | 0 .../pluginMsw/baseURL/types/PetStatusEnum.ts | 0 .../pluginMsw/baseURL/types/PlaceOrder.ts | 0 .../pluginMsw/baseURL/types/Tag.ts | 0 .../pluginMsw/baseURL/types/UploadFile.ts | 0 .../msw/findPetsByStatusHandler.ts | 0 .../msw/getInventoryHandler.ts | 0 .../msw/getPetByIdHandler.ts | 0 .../msw/placeOrderHandler.ts | 0 .../msw/uploadFileHandler.ts | 0 .../excludeByOperationId/types/AddPet.ts | 0 .../types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../excludeByOperationId/types/ApiResponse.ts | 0 .../excludeByOperationId/types/Category.ts | 0 .../excludeByOperationId/types/DeletePet.ts | 0 .../types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../types/GetInventory.ts | 0 .../excludeByOperationId/types/GetPetById.ts | 0 .../excludeByOperationId/types/Order.ts | 0 .../types/OrderStatusEnum.ts | 0 .../excludeByOperationId/types/Pet.ts | 0 .../types/PetStatusEnum.ts | 0 .../excludeByOperationId/types/PlaceOrder.ts | 0 .../excludeByOperationId/types/Tag.ts | 0 .../excludeByOperationId/types/UploadFile.ts | 0 .../groupByTag/msw/pet/addPetHandler.ts | 0 .../groupByTag/msw/pet/deletePetHandler.ts | 0 .../msw/pet/findPetsByStatusHandler.ts | 0 .../groupByTag/msw/pet/getPetByIdHandler.ts | 0 .../groupByTag/msw/pet/uploadFileHandler.ts | 0 .../msw/store/getInventoryHandler.ts | 0 .../groupByTag/msw/store/placeOrderHandler.ts | 0 .../pluginMsw/groupByTag/types/AddPet.ts | 0 .../groupByTag/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../pluginMsw/groupByTag/types/ApiResponse.ts | 0 .../pluginMsw/groupByTag/types/Category.ts | 0 .../pluginMsw/groupByTag/types/DeletePet.ts | 0 .../groupByTag/types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../groupByTag/types/GetInventory.ts | 0 .../pluginMsw/groupByTag/types/GetPetById.ts | 0 .../pluginMsw/groupByTag/types/Order.ts | 0 .../groupByTag/types/OrderStatusEnum.ts | 0 .../pluginMsw/groupByTag/types/Pet.ts | 0 .../groupByTag/types/PetStatusEnum.ts | 0 .../pluginMsw/groupByTag/types/PlaceOrder.ts | 0 .../pluginMsw/groupByTag/types/Tag.ts | 0 .../pluginMsw/groupByTag/types/UploadFile.ts | 0 .../pluginMsw/handlers/msw/addPetHandler.ts | 0 .../handlers/msw/deletePetHandler.ts | 0 .../handlers/msw/findPetsByStatusHandler.ts | 0 .../handlers/msw/getInventoryHandler.ts | 0 .../handlers/msw/getPetByIdHandler.ts | 0 .../pluginMsw/handlers/msw/handlers.ts | 0 .../handlers/msw/placeOrderHandler.ts | 0 .../handlers/msw/uploadFileHandler.ts | 0 .../pluginMsw/handlers/types/AddPet.ts | 0 .../pluginMsw/handlers/types/AddPetRequest.ts | 0 .../handlers/types/AddPetRequestStatusEnum.ts | 0 .../pluginMsw/handlers/types/ApiResponse.ts | 0 .../pluginMsw/handlers/types/Category.ts | 0 .../pluginMsw/handlers/types/DeletePet.ts | 0 .../handlers/types/FindPetsByStatus.ts | 0 .../handlers/types/FindPetsByStatusStatus.ts | 0 .../pluginMsw/handlers/types/GetInventory.ts | 0 .../pluginMsw/handlers/types/GetPetById.ts | 0 .../pluginMsw/handlers/types/Order.ts | 0 .../handlers/types/OrderStatusEnum.ts | 0 .../pluginMsw/handlers/types/Pet.ts | 0 .../pluginMsw/handlers/types/PetStatusEnum.ts | 0 .../pluginMsw/handlers/types/PlaceOrder.ts | 0 .../pluginMsw/handlers/types/Tag.ts | 0 .../pluginMsw/handlers/types/UploadFile.ts | 0 .../includeByTag/msw/addPetHandler.ts | 0 .../includeByTag/msw/deletePetHandler.ts | 0 .../msw/findPetsByStatusHandler.ts | 0 .../includeByTag/msw/getPetByIdHandler.ts | 0 .../includeByTag/msw/uploadFileHandler.ts | 0 .../pluginMsw/includeByTag/types/AddPet.ts | 0 .../includeByTag/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../includeByTag/types/ApiResponse.ts | 0 .../pluginMsw/includeByTag/types/Category.ts | 0 .../pluginMsw/includeByTag/types/DeletePet.ts | 0 .../includeByTag/types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../includeByTag/types/GetInventory.ts | 0 .../includeByTag/types/GetPetById.ts | 0 .../pluginMsw/includeByTag/types/Order.ts | 0 .../includeByTag/types/OrderStatusEnum.ts | 0 .../pluginMsw/includeByTag/types/Pet.ts | 0 .../includeByTag/types/PetStatusEnum.ts | 0 .../includeByTag/types/PlaceOrder.ts | 0 .../pluginMsw/includeByTag/types/Tag.ts | 0 .../includeByTag/types/UploadFile.ts | 0 .../parserFaker/faker/createAddPet.ts | 0 .../parserFaker/faker/createAddPetRequest.ts | 0 .../faker/createAddPetRequestStatusEnum.ts | 0 .../parserFaker/faker/createApiResponse.ts | 0 .../parserFaker/faker/createCategory.ts | 0 .../parserFaker/faker/createDeletePet.ts | 0 .../faker/createFindPetsByStatus.ts | 0 .../faker/createFindPetsByStatusStatus.ts | 0 .../parserFaker/faker/createGetInventory.ts | 0 .../parserFaker/faker/createGetPetById.ts | 0 .../parserFaker/faker/createOrder.ts | 0 .../faker/createOrderStatusEnum.ts | 0 .../pluginMsw/parserFaker/faker/createPet.ts | 0 .../parserFaker/faker/createPetStatusEnum.ts | 0 .../parserFaker/faker/createPlaceOrder.ts | 0 .../pluginMsw/parserFaker/faker/createTag.ts | 0 .../parserFaker/faker/createUploadFile.ts | 0 .../parserFaker/msw/addPetHandler.ts | 0 .../parserFaker/msw/deletePetHandler.ts | 0 .../msw/findPetsByStatusHandler.ts | 0 .../parserFaker/msw/getInventoryHandler.ts | 0 .../parserFaker/msw/getPetByIdHandler.ts | 0 .../parserFaker/msw/placeOrderHandler.ts | 0 .../parserFaker/msw/uploadFileHandler.ts | 0 .../pluginMsw/parserFaker/types/AddPet.ts | 0 .../parserFaker/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../parserFaker/types/ApiResponse.ts | 0 .../pluginMsw/parserFaker/types/Category.ts | 0 .../pluginMsw/parserFaker/types/DeletePet.ts | 0 .../parserFaker/types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../parserFaker/types/GetInventory.ts | 0 .../pluginMsw/parserFaker/types/GetPetById.ts | 0 .../pluginMsw/parserFaker/types/Order.ts | 0 .../parserFaker/types/OrderStatusEnum.ts | 0 .../pluginMsw/parserFaker/types/Pet.ts | 0 .../parserFaker/types/PetStatusEnum.ts | 0 .../pluginMsw/parserFaker/types/PlaceOrder.ts | 0 .../pluginMsw/parserFaker/types/Tag.ts | 0 .../pluginMsw/parserFaker/types/UploadFile.ts | 0 .../pluginMsw/petStore/msw/addPetHandler.ts | 0 .../petStore/msw/deletePetHandler.ts | 0 .../petStore/msw/findPetsByStatusHandler.ts | 0 .../petStore/msw/getInventoryHandler.ts | 0 .../petStore/msw/getPetByIdHandler.ts | 0 .../petStore/msw/placeOrderHandler.ts | 0 .../petStore/msw/uploadFileHandler.ts | 0 .../pluginMsw/petStore/types/AddPet.ts | 0 .../pluginMsw/petStore/types/AddPetRequest.ts | 0 .../petStore/types/AddPetRequestStatusEnum.ts | 0 .../pluginMsw/petStore/types/ApiResponse.ts | 0 .../pluginMsw/petStore/types/Category.ts | 0 .../pluginMsw/petStore/types/DeletePet.ts | 0 .../petStore/types/FindPetsByStatus.ts | 0 .../petStore/types/FindPetsByStatusStatus.ts | 0 .../pluginMsw/petStore/types/GetInventory.ts | 0 .../pluginMsw/petStore/types/GetPetById.ts | 0 .../pluginMsw/petStore/types/Order.ts | 0 .../petStore/types/OrderStatusEnum.ts | 0 .../pluginMsw/petStore/types/Pet.ts | 0 .../pluginMsw/petStore/types/PetStatusEnum.ts | 0 .../pluginMsw/petStore/types/PlaceOrder.ts | 0 .../pluginMsw/petStore/types/Tag.ts | 0 .../pluginMsw/petStore/types/UploadFile.ts | 0 .../excludeByOperationId/.kubb/client.ts | 0 .../excludeByOperationId/.kubb/config.ts | 0 .../excludeByOperationId/.kubb/serializers.ts | 0 .../.kubb/standardSchema.ts | 0 .../excludeByOperationId/clients/addPet.ts | 0 .../excludeByOperationId/clients/deletePet.ts | 0 .../clients/findPetsByStatus.ts | 0 .../clients/getInventory.ts | 0 .../clients/getPetById.ts | 0 .../clients/placeOrder.ts | 0 .../clients/uploadFile.ts | 0 .../hooks/useFindPetsByStatus.ts | 0 .../hooks/useFindPetsByStatusSuspense.ts | 0 .../hooks/useGetInventory.ts | 0 .../hooks/useGetInventorySuspense.ts | 0 .../hooks/useGetPetById.ts | 0 .../hooks/useGetPetByIdSuspense.ts | 0 .../hooks/usePlaceOrder.ts | 0 .../hooks/useUploadFile.ts | 0 .../excludeByOperationId/types/AddPet.ts | 0 .../types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../excludeByOperationId/types/ApiResponse.ts | 0 .../excludeByOperationId/types/Category.ts | 0 .../excludeByOperationId/types/DeletePet.ts | 0 .../types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../types/GetInventory.ts | 0 .../excludeByOperationId/types/GetPetById.ts | 0 .../excludeByOperationId/types/Order.ts | 0 .../types/OrderStatusEnum.ts | 0 .../excludeByOperationId/types/Pet.ts | 0 .../types/PetStatusEnum.ts | 0 .../excludeByOperationId/types/PlaceOrder.ts | 0 .../excludeByOperationId/types/Tag.ts | 0 .../excludeByOperationId/types/UploadFile.ts | 0 .../groupByTag/.kubb/client.ts | 0 .../groupByTag/.kubb/config.ts | 0 .../groupByTag/.kubb/serializers.ts | 0 .../groupByTag/.kubb/standardSchema.ts | 0 .../groupByTag/clients/addPet.ts | 0 .../groupByTag/clients/deletePet.ts | 0 .../groupByTag/clients/findPetsByStatus.ts | 0 .../groupByTag/clients/getInventory.ts | 0 .../groupByTag/clients/getPetById.ts | 0 .../groupByTag/clients/placeOrder.ts | 0 .../groupByTag/clients/uploadFile.ts | 0 .../groupByTag/hooks/pet/useAddPet.ts | 0 .../groupByTag/hooks/pet/useDeletePet.ts | 0 .../hooks/pet/useFindPetsByStatus.ts | 0 .../hooks/pet/useFindPetsByStatusSuspense.ts | 0 .../groupByTag/hooks/pet/useGetPetById.ts | 0 .../hooks/pet/useGetPetByIdSuspense.ts | 0 .../groupByTag/hooks/pet/useUploadFile.ts | 0 .../groupByTag/hooks/store/useGetInventory.ts | 0 .../hooks/store/useGetInventorySuspense.ts | 0 .../groupByTag/hooks/store/usePlaceOrder.ts | 0 .../groupByTag/types/AddPet.ts | 0 .../groupByTag/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../groupByTag/types/ApiResponse.ts | 0 .../groupByTag/types/Category.ts | 0 .../groupByTag/types/DeletePet.ts | 0 .../groupByTag/types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../groupByTag/types/GetInventory.ts | 0 .../groupByTag/types/GetPetById.ts | 0 .../groupByTag/types/Order.ts | 0 .../groupByTag/types/OrderStatusEnum.ts | 0 .../pluginReactQuery/groupByTag/types/Pet.ts | 0 .../groupByTag/types/PetStatusEnum.ts | 0 .../groupByTag/types/PlaceOrder.ts | 0 .../pluginReactQuery/groupByTag/types/Tag.ts | 0 .../groupByTag/types/UploadFile.ts | 0 .../includeByTag/.kubb/client.ts | 0 .../includeByTag/.kubb/config.ts | 0 .../includeByTag/.kubb/serializers.ts | 0 .../includeByTag/.kubb/standardSchema.ts | 0 .../includeByTag/clients/addPet.ts | 0 .../includeByTag/clients/deletePet.ts | 0 .../includeByTag/clients/findPetsByStatus.ts | 0 .../includeByTag/clients/getInventory.ts | 0 .../includeByTag/clients/getPetById.ts | 0 .../includeByTag/clients/placeOrder.ts | 0 .../includeByTag/clients/uploadFile.ts | 0 .../includeByTag/hooks/useAddPet.ts | 0 .../includeByTag/hooks/useDeletePet.ts | 0 .../includeByTag/hooks/useFindPetsByStatus.ts | 0 .../hooks/useFindPetsByStatusSuspense.ts | 0 .../includeByTag/hooks/useGetPetById.ts | 0 .../hooks/useGetPetByIdSuspense.ts | 0 .../includeByTag/hooks/useUploadFile.ts | 0 .../includeByTag/types/AddPet.ts | 0 .../includeByTag/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../includeByTag/types/ApiResponse.ts | 0 .../includeByTag/types/Category.ts | 0 .../includeByTag/types/DeletePet.ts | 0 .../includeByTag/types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../includeByTag/types/GetInventory.ts | 0 .../includeByTag/types/GetPetById.ts | 0 .../includeByTag/types/Order.ts | 0 .../includeByTag/types/OrderStatusEnum.ts | 0 .../includeByTag/types/Pet.ts | 0 .../includeByTag/types/PetStatusEnum.ts | 0 .../includeByTag/types/PlaceOrder.ts | 0 .../includeByTag/types/Tag.ts | 0 .../includeByTag/types/UploadFile.ts | 0 .../pluginReactQuery/infinite/.kubb/client.ts | 0 .../pluginReactQuery/infinite/.kubb/config.ts | 0 .../infinite/.kubb/serializers.ts | 0 .../infinite/.kubb/standardSchema.ts | 0 .../infinite/clients/addPet.ts | 0 .../infinite/clients/deletePet.ts | 0 .../infinite/clients/findPetsByStatus.ts | 0 .../infinite/clients/getInventory.ts | 0 .../infinite/clients/getPetById.ts | 0 .../infinite/clients/placeOrder.ts | 0 .../infinite/clients/uploadFile.ts | 0 .../infinite/hooks/useAddPet.ts | 0 .../infinite/hooks/useDeletePet.ts | 0 .../infinite/hooks/useFindPetsByStatus.ts | 0 .../hooks/useFindPetsByStatusSuspense.ts | 0 .../infinite/hooks/useGetInventory.ts | 0 .../infinite/hooks/useGetInventorySuspense.ts | 0 .../infinite/hooks/useGetPetById.ts | 0 .../infinite/hooks/useGetPetByIdSuspense.ts | 0 .../infinite/hooks/usePlaceOrder.ts | 0 .../infinite/hooks/useUploadFile.ts | 0 .../pluginReactQuery/infinite/types/AddPet.ts | 0 .../infinite/types/AddPetRequest.ts | 0 .../infinite/types/AddPetRequestStatusEnum.ts | 0 .../infinite/types/ApiResponse.ts | 0 .../infinite/types/Category.ts | 0 .../infinite/types/DeletePet.ts | 0 .../infinite/types/FindPetsByStatus.ts | 0 .../infinite/types/FindPetsByStatusStatus.ts | 0 .../infinite/types/GetInventory.ts | 0 .../infinite/types/GetPetById.ts | 0 .../pluginReactQuery/infinite/types/Order.ts | 0 .../infinite/types/OrderStatusEnum.ts | 0 .../pluginReactQuery/infinite/types/Pet.ts | 0 .../infinite/types/PetStatusEnum.ts | 0 .../infinite/types/PlaceOrder.ts | 0 .../pluginReactQuery/infinite/types/Tag.ts | 0 .../infinite/types/UploadFile.ts | 0 .../mutationDisabled/.kubb/client.ts | 0 .../mutationDisabled/.kubb/config.ts | 0 .../mutationDisabled/.kubb/serializers.ts | 0 .../mutationDisabled/.kubb/standardSchema.ts | 0 .../mutationDisabled/clients/addPet.ts | 0 .../mutationDisabled/clients/deletePet.ts | 0 .../clients/findPetsByStatus.ts | 0 .../mutationDisabled/clients/getInventory.ts | 0 .../mutationDisabled/clients/getPetById.ts | 0 .../mutationDisabled/clients/placeOrder.ts | 0 .../mutationDisabled/clients/uploadFile.ts | 0 .../hooks/useFindPetsByStatus.ts | 0 .../hooks/useFindPetsByStatusSuspense.ts | 0 .../mutationDisabled/hooks/useGetInventory.ts | 0 .../hooks/useGetInventorySuspense.ts | 0 .../mutationDisabled/hooks/useGetPetById.ts | 0 .../hooks/useGetPetByIdSuspense.ts | 0 .../mutationDisabled/types/AddPet.ts | 0 .../mutationDisabled/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../mutationDisabled/types/ApiResponse.ts | 0 .../mutationDisabled/types/Category.ts | 0 .../mutationDisabled/types/DeletePet.ts | 0 .../types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../mutationDisabled/types/GetInventory.ts | 0 .../mutationDisabled/types/GetPetById.ts | 0 .../mutationDisabled/types/Order.ts | 0 .../mutationDisabled/types/OrderStatusEnum.ts | 0 .../mutationDisabled/types/Pet.ts | 0 .../mutationDisabled/types/PetStatusEnum.ts | 0 .../mutationDisabled/types/PlaceOrder.ts | 0 .../mutationDisabled/types/Tag.ts | 0 .../mutationDisabled/types/UploadFile.ts | 0 .../paramsCasing/.kubb/client.ts | 0 .../paramsCasing/.kubb/config.ts | 0 .../paramsCasing/.kubb/serializers.ts | 0 .../paramsCasing/.kubb/standardSchema.ts | 0 .../paramsCasing/clients/updatePet.ts | 0 .../paramsCasing/hooks/useUpdatePet.ts | 0 .../paramsCasing/types/Pet.ts | 0 .../paramsCasing/types/PetUpdate.ts | 0 .../paramsCasing/types/UpdatePet.ts | 0 .../parserZod/.kubb/client.ts | 0 .../parserZod/.kubb/config.ts | 0 .../parserZod/.kubb/serializers.ts | 0 .../parserZod/.kubb/standardSchema.ts | 0 .../parserZod/clients/addPet.ts | 0 .../parserZod/clients/deletePet.ts | 0 .../parserZod/clients/findPetsByStatus.ts | 0 .../parserZod/clients/getInventory.ts | 0 .../parserZod/clients/getPetById.ts | 0 .../parserZod/clients/placeOrder.ts | 0 .../parserZod/clients/uploadFile.ts | 0 .../parserZod/hooks/useAddPet.ts | 0 .../parserZod/hooks/useDeletePet.ts | 0 .../parserZod/hooks/useFindPetsByStatus.ts | 0 .../hooks/useFindPetsByStatusSuspense.ts | 0 .../parserZod/hooks/useGetInventory.ts | 0 .../hooks/useGetInventorySuspense.ts | 0 .../parserZod/hooks/useGetPetById.ts | 0 .../parserZod/hooks/useGetPetByIdSuspense.ts | 0 .../parserZod/hooks/usePlaceOrder.ts | 0 .../parserZod/hooks/useUploadFile.ts | 0 .../parserZod/types/AddPet.ts | 0 .../parserZod/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../parserZod/types/ApiResponse.ts | 0 .../parserZod/types/Category.ts | 0 .../parserZod/types/DeletePet.ts | 0 .../parserZod/types/FindPetsByStatus.ts | 0 .../parserZod/types/FindPetsByStatusStatus.ts | 0 .../parserZod/types/GetInventory.ts | 0 .../parserZod/types/GetPetById.ts | 0 .../pluginReactQuery/parserZod/types/Order.ts | 0 .../parserZod/types/OrderStatusEnum.ts | 0 .../pluginReactQuery/parserZod/types/Pet.ts | 0 .../parserZod/types/PetStatusEnum.ts | 0 .../parserZod/types/PlaceOrder.ts | 0 .../pluginReactQuery/parserZod/types/Tag.ts | 0 .../parserZod/types/UploadFile.ts | 0 .../parserZod/zod/addPetRequestSchema.ts | 0 .../zod/addPetRequestStatusEnumSchema.ts | 0 .../parserZod/zod/addPetSchema.ts | 0 .../parserZod/zod/apiResponseSchema.ts | 0 .../parserZod/zod/categorySchema.ts | 0 .../parserZod/zod/deletePetSchema.ts | 0 .../parserZod/zod/findPetsByStatusSchema.ts | 0 .../zod/findPetsByStatusStatusSchema.ts | 0 .../parserZod/zod/getInventorySchema.ts | 0 .../parserZod/zod/getPetByIdSchema.ts | 0 .../parserZod/zod/orderSchema.ts | 0 .../parserZod/zod/orderStatusEnumSchema.ts | 0 .../parserZod/zod/petSchema.ts | 0 .../parserZod/zod/petStatusEnumSchema.ts | 0 .../parserZod/zod/placeOrderSchema.ts | 0 .../parserZod/zod/tagSchema.ts | 0 .../parserZod/zod/uploadFileSchema.ts | 0 .../pluginReactQuery/petStore/.kubb/client.ts | 0 .../pluginReactQuery/petStore/.kubb/config.ts | 0 .../petStore/.kubb/serializers.ts | 0 .../petStore/.kubb/standardSchema.ts | 0 .../petStore/clients/addPet.ts | 0 .../petStore/clients/deletePet.ts | 0 .../petStore/clients/findPetsByStatus.ts | 0 .../petStore/clients/getInventory.ts | 0 .../petStore/clients/getPetById.ts | 0 .../petStore/clients/placeOrder.ts | 0 .../petStore/clients/uploadFile.ts | 0 .../petStore/hooks/useAddPet.ts | 0 .../petStore/hooks/useDeletePet.ts | 0 .../petStore/hooks/useFindPetsByStatus.ts | 0 .../hooks/useFindPetsByStatusSuspense.ts | 0 .../petStore/hooks/useGetInventory.ts | 0 .../petStore/hooks/useGetInventorySuspense.ts | 0 .../petStore/hooks/useGetPetById.ts | 0 .../petStore/hooks/useGetPetByIdSuspense.ts | 0 .../petStore/hooks/usePlaceOrder.ts | 0 .../petStore/hooks/useUploadFile.ts | 0 .../pluginReactQuery/petStore/types/AddPet.ts | 0 .../petStore/types/AddPetRequest.ts | 0 .../petStore/types/AddPetRequestStatusEnum.ts | 0 .../petStore/types/ApiResponse.ts | 0 .../petStore/types/Category.ts | 0 .../petStore/types/DeletePet.ts | 0 .../petStore/types/FindPetsByStatus.ts | 0 .../petStore/types/FindPetsByStatusStatus.ts | 0 .../petStore/types/GetInventory.ts | 0 .../petStore/types/GetPetById.ts | 0 .../pluginReactQuery/petStore/types/Order.ts | 0 .../petStore/types/OrderStatusEnum.ts | 0 .../pluginReactQuery/petStore/types/Pet.ts | 0 .../petStore/types/PetStatusEnum.ts | 0 .../petStore/types/PlaceOrder.ts | 0 .../pluginReactQuery/petStore/types/Tag.ts | 0 .../petStore/types/UploadFile.ts | 0 .../queryMethods/.kubb/client.ts | 0 .../queryMethods/.kubb/config.ts | 0 .../queryMethods/.kubb/serializers.ts | 0 .../queryMethods/.kubb/standardSchema.ts | 0 .../queryMethods/clients/addPet.ts | 0 .../queryMethods/clients/deletePet.ts | 0 .../queryMethods/clients/findPetsByStatus.ts | 0 .../queryMethods/clients/getInventory.ts | 0 .../queryMethods/clients/getPetById.ts | 0 .../queryMethods/clients/placeOrder.ts | 0 .../queryMethods/clients/uploadFile.ts | 0 .../queryMethods/hooks/useAddPet.ts | 0 .../queryMethods/hooks/useDeletePet.ts | 0 .../queryMethods/hooks/useFindPetsByStatus.ts | 0 .../hooks/useFindPetsByStatusSuspense.ts | 0 .../queryMethods/hooks/useGetInventory.ts | 0 .../hooks/useGetInventorySuspense.ts | 0 .../queryMethods/hooks/useGetPetById.ts | 0 .../hooks/useGetPetByIdSuspense.ts | 0 .../queryMethods/hooks/usePlaceOrder.ts | 0 .../queryMethods/hooks/useUploadFile.ts | 0 .../queryMethods/types/AddPet.ts | 0 .../queryMethods/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../queryMethods/types/ApiResponse.ts | 0 .../queryMethods/types/Category.ts | 0 .../queryMethods/types/DeletePet.ts | 0 .../queryMethods/types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../queryMethods/types/GetInventory.ts | 0 .../queryMethods/types/GetPetById.ts | 0 .../queryMethods/types/Order.ts | 0 .../queryMethods/types/OrderStatusEnum.ts | 0 .../queryMethods/types/Pet.ts | 0 .../queryMethods/types/PetStatusEnum.ts | 0 .../queryMethods/types/PlaceOrder.ts | 0 .../queryMethods/types/Tag.ts | 0 .../queryMethods/types/UploadFile.ts | 0 .../pluginReactQuery/suspense/.kubb/client.ts | 0 .../pluginReactQuery/suspense/.kubb/config.ts | 0 .../suspense/.kubb/serializers.ts | 0 .../suspense/.kubb/standardSchema.ts | 0 .../suspense/clients/addPet.ts | 0 .../suspense/clients/deletePet.ts | 0 .../suspense/clients/findPetsByStatus.ts | 0 .../suspense/clients/getInventory.ts | 0 .../suspense/clients/getPetById.ts | 0 .../suspense/clients/placeOrder.ts | 0 .../suspense/clients/uploadFile.ts | 0 .../suspense/hooks/useAddPet.ts | 0 .../suspense/hooks/useDeletePet.ts | 0 .../suspense/hooks/useFindPetsByStatus.ts | 0 .../hooks/useFindPetsByStatusSuspense.ts | 0 .../suspense/hooks/useGetInventory.ts | 0 .../suspense/hooks/useGetInventorySuspense.ts | 0 .../suspense/hooks/useGetPetById.ts | 0 .../suspense/hooks/useGetPetByIdSuspense.ts | 0 .../suspense/hooks/usePlaceOrder.ts | 0 .../suspense/hooks/useUploadFile.ts | 0 .../pluginReactQuery/suspense/types/AddPet.ts | 0 .../suspense/types/AddPetRequest.ts | 0 .../suspense/types/AddPetRequestStatusEnum.ts | 0 .../suspense/types/ApiResponse.ts | 0 .../suspense/types/Category.ts | 0 .../suspense/types/DeletePet.ts | 0 .../suspense/types/FindPetsByStatus.ts | 0 .../suspense/types/FindPetsByStatusStatus.ts | 0 .../suspense/types/GetInventory.ts | 0 .../suspense/types/GetPetById.ts | 0 .../pluginReactQuery/suspense/types/Order.ts | 0 .../suspense/types/OrderStatusEnum.ts | 0 .../pluginReactQuery/suspense/types/Pet.ts | 0 .../suspense/types/PetStatusEnum.ts | 0 .../suspense/types/PlaceOrder.ts | 0 .../pluginReactQuery/suspense/types/Tag.ts | 0 .../suspense/types/UploadFile.ts | 0 .../withClientPlugin/.kubb/client.ts | 0 .../withClientPlugin/.kubb/config.ts | 0 .../withClientPlugin/.kubb/serializers.ts | 0 .../withClientPlugin/.kubb/standardSchema.ts | 0 .../withClientPlugin/clients/addPet.ts | 0 .../withClientPlugin/clients/deletePet.ts | 0 .../clients/findPetsByStatus.ts | 0 .../withClientPlugin/clients/getInventory.ts | 0 .../withClientPlugin/clients/getPetById.ts | 0 .../withClientPlugin/clients/placeOrder.ts | 0 .../withClientPlugin/clients/uploadFile.ts | 0 .../withClientPlugin/hooks/useAddPet.ts | 0 .../withClientPlugin/hooks/useDeletePet.ts | 0 .../hooks/useFindPetsByStatus.ts | 0 .../hooks/useFindPetsByStatusSuspense.ts | 0 .../withClientPlugin/hooks/useGetInventory.ts | 0 .../hooks/useGetInventorySuspense.ts | 0 .../withClientPlugin/hooks/useGetPetById.ts | 0 .../hooks/useGetPetByIdSuspense.ts | 0 .../withClientPlugin/hooks/usePlaceOrder.ts | 0 .../withClientPlugin/hooks/useUploadFile.ts | 0 .../withClientPlugin/types/AddPet.ts | 0 .../withClientPlugin/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../withClientPlugin/types/ApiResponse.ts | 0 .../withClientPlugin/types/Category.ts | 0 .../withClientPlugin/types/DeletePet.ts | 0 .../types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../withClientPlugin/types/GetInventory.ts | 0 .../withClientPlugin/types/GetPetById.ts | 0 .../withClientPlugin/types/Order.ts | 0 .../withClientPlugin/types/OrderStatusEnum.ts | 0 .../withClientPlugin/types/Pet.ts | 0 .../withClientPlugin/types/PetStatusEnum.ts | 0 .../withClientPlugin/types/PlaceOrder.ts | 0 .../withClientPlugin/types/Tag.ts | 0 .../withClientPlugin/types/UploadFile.ts | 0 .../pluginRedoc/petStore/docs.html | 0 .../excludeByOperationId/.kubb/client.ts | 0 .../excludeByOperationId/.kubb/serializers.ts | 0 .../.kubb/standardSchema.ts | 0 .../excludeByOperationId/clients/addPet.ts | 0 .../excludeByOperationId/clients/deletePet.ts | 0 .../clients/findPetsByStatus.ts | 0 .../clients/getInventory.ts | 0 .../clients/getPetById.ts | 0 .../clients/placeOrder.ts | 0 .../clients/uploadFile.ts | 0 .../hooks/useFindPetsByStatus.ts | 0 .../hooks/useGetInventory.ts | 0 .../hooks/useGetPetById.ts | 0 .../hooks/usePlaceOrder.ts | 0 .../hooks/useUploadFile.ts | 0 .../excludeByOperationId/types/AddPet.ts | 0 .../types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../excludeByOperationId/types/ApiResponse.ts | 0 .../excludeByOperationId/types/Category.ts | 0 .../excludeByOperationId/types/DeletePet.ts | 0 .../types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../types/GetInventory.ts | 0 .../excludeByOperationId/types/GetPetById.ts | 0 .../excludeByOperationId/types/Order.ts | 0 .../types/OrderStatusEnum.ts | 0 .../excludeByOperationId/types/Pet.ts | 0 .../types/PetStatusEnum.ts | 0 .../excludeByOperationId/types/PlaceOrder.ts | 0 .../excludeByOperationId/types/Tag.ts | 0 .../excludeByOperationId/types/UploadFile.ts | 0 .../pluginSwr/groupByTag/.kubb/client.ts | 0 .../pluginSwr/groupByTag/.kubb/serializers.ts | 0 .../groupByTag/.kubb/standardSchema.ts | 0 .../pluginSwr/groupByTag/clients/addPet.ts | 0 .../pluginSwr/groupByTag/clients/deletePet.ts | 0 .../groupByTag/clients/findPetsByStatus.ts | 0 .../groupByTag/clients/getInventory.ts | 0 .../groupByTag/clients/getPetById.ts | 0 .../groupByTag/clients/placeOrder.ts | 0 .../groupByTag/clients/uploadFile.ts | 0 .../groupByTag/hooks/pet/useAddPet.ts | 0 .../groupByTag/hooks/pet/useDeletePet.ts | 0 .../hooks/pet/useFindPetsByStatus.ts | 0 .../groupByTag/hooks/pet/useGetPetById.ts | 0 .../groupByTag/hooks/pet/useUploadFile.ts | 0 .../groupByTag/hooks/store/useGetInventory.ts | 0 .../groupByTag/hooks/store/usePlaceOrder.ts | 0 .../pluginSwr/groupByTag/types/AddPet.ts | 0 .../groupByTag/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../pluginSwr/groupByTag/types/ApiResponse.ts | 0 .../pluginSwr/groupByTag/types/Category.ts | 0 .../pluginSwr/groupByTag/types/DeletePet.ts | 0 .../groupByTag/types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../groupByTag/types/GetInventory.ts | 0 .../pluginSwr/groupByTag/types/GetPetById.ts | 0 .../pluginSwr/groupByTag/types/Order.ts | 0 .../groupByTag/types/OrderStatusEnum.ts | 0 .../pluginSwr/groupByTag/types/Pet.ts | 0 .../groupByTag/types/PetStatusEnum.ts | 0 .../pluginSwr/groupByTag/types/PlaceOrder.ts | 0 .../pluginSwr/groupByTag/types/Tag.ts | 0 .../pluginSwr/groupByTag/types/UploadFile.ts | 0 .../pluginSwr/includeByTag/.kubb/client.ts | 0 .../includeByTag/.kubb/serializers.ts | 0 .../includeByTag/.kubb/standardSchema.ts | 0 .../pluginSwr/includeByTag/clients/addPet.ts | 0 .../includeByTag/clients/deletePet.ts | 0 .../includeByTag/clients/findPetsByStatus.ts | 0 .../includeByTag/clients/getInventory.ts | 0 .../includeByTag/clients/getPetById.ts | 0 .../includeByTag/clients/placeOrder.ts | 0 .../includeByTag/clients/uploadFile.ts | 0 .../pluginSwr/includeByTag/hooks/useAddPet.ts | 0 .../includeByTag/hooks/useDeletePet.ts | 0 .../includeByTag/hooks/useFindPetsByStatus.ts | 0 .../includeByTag/hooks/useGetPetById.ts | 0 .../includeByTag/hooks/useUploadFile.ts | 0 .../pluginSwr/includeByTag/types/AddPet.ts | 0 .../includeByTag/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../includeByTag/types/ApiResponse.ts | 0 .../pluginSwr/includeByTag/types/Category.ts | 0 .../pluginSwr/includeByTag/types/DeletePet.ts | 0 .../includeByTag/types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../includeByTag/types/GetInventory.ts | 0 .../includeByTag/types/GetPetById.ts | 0 .../pluginSwr/includeByTag/types/Order.ts | 0 .../includeByTag/types/OrderStatusEnum.ts | 0 .../pluginSwr/includeByTag/types/Pet.ts | 0 .../includeByTag/types/PetStatusEnum.ts | 0 .../includeByTag/types/PlaceOrder.ts | 0 .../pluginSwr/includeByTag/types/Tag.ts | 0 .../includeByTag/types/UploadFile.ts | 0 .../mutationDisabled/.kubb/client.ts | 0 .../mutationDisabled/.kubb/serializers.ts | 0 .../mutationDisabled/.kubb/standardSchema.ts | 0 .../mutationDisabled/clients/addPet.ts | 0 .../mutationDisabled/clients/deletePet.ts | 0 .../clients/findPetsByStatus.ts | 0 .../mutationDisabled/clients/getInventory.ts | 0 .../mutationDisabled/clients/getPetById.ts | 0 .../mutationDisabled/clients/placeOrder.ts | 0 .../mutationDisabled/clients/uploadFile.ts | 0 .../hooks/useFindPetsByStatus.ts | 0 .../mutationDisabled/hooks/useGetInventory.ts | 0 .../mutationDisabled/hooks/useGetPetById.ts | 0 .../mutationDisabled/types/AddPet.ts | 0 .../mutationDisabled/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../mutationDisabled/types/ApiResponse.ts | 0 .../mutationDisabled/types/Category.ts | 0 .../mutationDisabled/types/DeletePet.ts | 0 .../types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../mutationDisabled/types/GetInventory.ts | 0 .../mutationDisabled/types/GetPetById.ts | 0 .../pluginSwr/mutationDisabled/types/Order.ts | 0 .../mutationDisabled/types/OrderStatusEnum.ts | 0 .../pluginSwr/mutationDisabled/types/Pet.ts | 0 .../mutationDisabled/types/PetStatusEnum.ts | 0 .../mutationDisabled/types/PlaceOrder.ts | 0 .../pluginSwr/mutationDisabled/types/Tag.ts | 0 .../mutationDisabled/types/UploadFile.ts | 0 .../pluginSwr/paramsCasing/.kubb/client.ts | 0 .../paramsCasing/.kubb/serializers.ts | 0 .../paramsCasing/.kubb/standardSchema.ts | 0 .../paramsCasing/clients/updatePet.ts | 0 .../paramsCasing/hooks/useUpdatePet.ts | 0 .../pluginSwr/paramsCasing/types/Pet.ts | 0 .../pluginSwr/paramsCasing/types/PetUpdate.ts | 0 .../pluginSwr/paramsCasing/types/UpdatePet.ts | 0 .../pluginSwr/parserZod/.kubb/client.ts | 0 .../pluginSwr/parserZod/.kubb/serializers.ts | 0 .../parserZod/.kubb/standardSchema.ts | 0 .../pluginSwr/parserZod/clients/addPet.ts | 0 .../pluginSwr/parserZod/clients/deletePet.ts | 0 .../parserZod/clients/findPetsByStatus.ts | 0 .../parserZod/clients/getInventory.ts | 0 .../pluginSwr/parserZod/clients/getPetById.ts | 0 .../pluginSwr/parserZod/clients/placeOrder.ts | 0 .../pluginSwr/parserZod/clients/uploadFile.ts | 0 .../pluginSwr/parserZod/hooks/useAddPet.ts | 0 .../pluginSwr/parserZod/hooks/useDeletePet.ts | 0 .../parserZod/hooks/useFindPetsByStatus.ts | 0 .../parserZod/hooks/useGetInventory.ts | 0 .../parserZod/hooks/useGetPetById.ts | 0 .../parserZod/hooks/usePlaceOrder.ts | 0 .../parserZod/hooks/useUploadFile.ts | 0 .../pluginSwr/parserZod/types/AddPet.ts | 0 .../parserZod/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../pluginSwr/parserZod/types/ApiResponse.ts | 0 .../pluginSwr/parserZod/types/Category.ts | 0 .../pluginSwr/parserZod/types/DeletePet.ts | 0 .../parserZod/types/FindPetsByStatus.ts | 0 .../parserZod/types/FindPetsByStatusStatus.ts | 0 .../pluginSwr/parserZod/types/GetInventory.ts | 0 .../pluginSwr/parserZod/types/GetPetById.ts | 0 .../pluginSwr/parserZod/types/Order.ts | 0 .../parserZod/types/OrderStatusEnum.ts | 0 .../pluginSwr/parserZod/types/Pet.ts | 0 .../parserZod/types/PetStatusEnum.ts | 0 .../pluginSwr/parserZod/types/PlaceOrder.ts | 0 .../pluginSwr/parserZod/types/Tag.ts | 0 .../pluginSwr/parserZod/types/UploadFile.ts | 0 .../parserZod/zod/addPetRequestSchema.ts | 0 .../zod/addPetRequestStatusEnumSchema.ts | 0 .../pluginSwr/parserZod/zod/addPetSchema.ts | 0 .../parserZod/zod/apiResponseSchema.ts | 0 .../pluginSwr/parserZod/zod/categorySchema.ts | 0 .../parserZod/zod/deletePetSchema.ts | 0 .../parserZod/zod/findPetsByStatusSchema.ts | 0 .../zod/findPetsByStatusStatusSchema.ts | 0 .../parserZod/zod/getInventorySchema.ts | 0 .../parserZod/zod/getPetByIdSchema.ts | 0 .../pluginSwr/parserZod/zod/orderSchema.ts | 0 .../parserZod/zod/orderStatusEnumSchema.ts | 0 .../pluginSwr/parserZod/zod/petSchema.ts | 0 .../parserZod/zod/petStatusEnumSchema.ts | 0 .../parserZod/zod/placeOrderSchema.ts | 0 .../pluginSwr/parserZod/zod/tagSchema.ts | 0 .../parserZod/zod/uploadFileSchema.ts | 0 .../pluginSwr/petStore/.kubb/client.ts | 0 .../pluginSwr/petStore/.kubb/serializers.ts | 0 .../petStore/.kubb/standardSchema.ts | 0 .../pluginSwr/petStore/clients/addPet.ts | 0 .../pluginSwr/petStore/clients/deletePet.ts | 0 .../petStore/clients/findPetsByStatus.ts | 0 .../petStore/clients/getInventory.ts | 0 .../pluginSwr/petStore/clients/getPetById.ts | 0 .../pluginSwr/petStore/clients/placeOrder.ts | 0 .../pluginSwr/petStore/clients/uploadFile.ts | 0 .../pluginSwr/petStore/hooks/useAddPet.ts | 0 .../pluginSwr/petStore/hooks/useDeletePet.ts | 0 .../petStore/hooks/useFindPetsByStatus.ts | 0 .../petStore/hooks/useGetInventory.ts | 0 .../pluginSwr/petStore/hooks/useGetPetById.ts | 0 .../pluginSwr/petStore/hooks/usePlaceOrder.ts | 0 .../pluginSwr/petStore/hooks/useUploadFile.ts | 0 .../pluginSwr/petStore/types/AddPet.ts | 0 .../pluginSwr/petStore/types/AddPetRequest.ts | 0 .../petStore/types/AddPetRequestStatusEnum.ts | 0 .../pluginSwr/petStore/types/ApiResponse.ts | 0 .../pluginSwr/petStore/types/Category.ts | 0 .../pluginSwr/petStore/types/DeletePet.ts | 0 .../petStore/types/FindPetsByStatus.ts | 0 .../petStore/types/FindPetsByStatusStatus.ts | 0 .../pluginSwr/petStore/types/GetInventory.ts | 0 .../pluginSwr/petStore/types/GetPetById.ts | 0 .../pluginSwr/petStore/types/Order.ts | 0 .../petStore/types/OrderStatusEnum.ts | 0 .../pluginSwr/petStore/types/Pet.ts | 0 .../pluginSwr/petStore/types/PetStatusEnum.ts | 0 .../pluginSwr/petStore/types/PlaceOrder.ts | 0 .../pluginSwr/petStore/types/Tag.ts | 0 .../pluginSwr/petStore/types/UploadFile.ts | 0 .../pluginSwr/queryDisabled/.kubb/client.ts | 0 .../queryDisabled/.kubb/serializers.ts | 0 .../queryDisabled/.kubb/standardSchema.ts | 0 .../pluginSwr/queryDisabled/clients/addPet.ts | 0 .../queryDisabled/clients/deletePet.ts | 0 .../queryDisabled/clients/findPetsByStatus.ts | 0 .../queryDisabled/clients/getInventory.ts | 0 .../queryDisabled/clients/getPetById.ts | 0 .../queryDisabled/clients/placeOrder.ts | 0 .../queryDisabled/clients/uploadFile.ts | 0 .../queryDisabled/hooks/useAddPet.ts | 0 .../queryDisabled/hooks/useDeletePet.ts | 0 .../hooks/useFindPetsByStatus.ts | 0 .../queryDisabled/hooks/useGetInventory.ts | 0 .../queryDisabled/hooks/useGetPetById.ts | 0 .../queryDisabled/hooks/usePlaceOrder.ts | 0 .../queryDisabled/hooks/useUploadFile.ts | 0 .../pluginSwr/queryDisabled/types/AddPet.ts | 0 .../queryDisabled/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../queryDisabled/types/ApiResponse.ts | 0 .../pluginSwr/queryDisabled/types/Category.ts | 0 .../queryDisabled/types/DeletePet.ts | 0 .../queryDisabled/types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../queryDisabled/types/GetInventory.ts | 0 .../queryDisabled/types/GetPetById.ts | 0 .../pluginSwr/queryDisabled/types/Order.ts | 0 .../queryDisabled/types/OrderStatusEnum.ts | 0 .../pluginSwr/queryDisabled/types/Pet.ts | 0 .../queryDisabled/types/PetStatusEnum.ts | 0 .../queryDisabled/types/PlaceOrder.ts | 0 .../pluginSwr/queryDisabled/types/Tag.ts | 0 .../queryDisabled/types/UploadFile.ts | 0 .../pluginSwr/queryMethods/.kubb/client.ts | 0 .../queryMethods/.kubb/serializers.ts | 0 .../queryMethods/.kubb/standardSchema.ts | 0 .../pluginSwr/queryMethods/clients/addPet.ts | 0 .../queryMethods/clients/deletePet.ts | 0 .../queryMethods/clients/findPetsByStatus.ts | 0 .../queryMethods/clients/getInventory.ts | 0 .../queryMethods/clients/getPetById.ts | 0 .../queryMethods/clients/placeOrder.ts | 0 .../queryMethods/clients/uploadFile.ts | 0 .../pluginSwr/queryMethods/hooks/useAddPet.ts | 0 .../queryMethods/hooks/useDeletePet.ts | 0 .../queryMethods/hooks/useFindPetsByStatus.ts | 0 .../queryMethods/hooks/useGetInventory.ts | 0 .../queryMethods/hooks/useGetPetById.ts | 0 .../queryMethods/hooks/usePlaceOrder.ts | 0 .../queryMethods/hooks/useUploadFile.ts | 0 .../pluginSwr/queryMethods/types/AddPet.ts | 0 .../queryMethods/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../queryMethods/types/ApiResponse.ts | 0 .../pluginSwr/queryMethods/types/Category.ts | 0 .../pluginSwr/queryMethods/types/DeletePet.ts | 0 .../queryMethods/types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../queryMethods/types/GetInventory.ts | 0 .../queryMethods/types/GetPetById.ts | 0 .../pluginSwr/queryMethods/types/Order.ts | 0 .../queryMethods/types/OrderStatusEnum.ts | 0 .../pluginSwr/queryMethods/types/Pet.ts | 0 .../queryMethods/types/PetStatusEnum.ts | 0 .../queryMethods/types/PlaceOrder.ts | 0 .../pluginSwr/queryMethods/types/Tag.ts | 0 .../queryMethods/types/UploadFile.ts | 0 .../withClientPlugin/.kubb/client.ts | 0 .../withClientPlugin/.kubb/serializers.ts | 0 .../withClientPlugin/.kubb/standardSchema.ts | 0 .../withClientPlugin/clients/addPet.ts | 0 .../withClientPlugin/clients/deletePet.ts | 0 .../clients/findPetsByStatus.ts | 0 .../withClientPlugin/clients/getInventory.ts | 0 .../withClientPlugin/clients/getPetById.ts | 0 .../withClientPlugin/clients/placeOrder.ts | 0 .../withClientPlugin/clients/uploadFile.ts | 0 .../withClientPlugin/hooks/useAddPet.ts | 0 .../withClientPlugin/hooks/useDeletePet.ts | 0 .../hooks/useFindPetsByStatus.ts | 0 .../withClientPlugin/hooks/useGetInventory.ts | 0 .../withClientPlugin/hooks/useGetPetById.ts | 0 .../withClientPlugin/hooks/usePlaceOrder.ts | 0 .../withClientPlugin/hooks/useUploadFile.ts | 0 .../withClientPlugin/types/AddPet.ts | 0 .../withClientPlugin/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../withClientPlugin/types/ApiResponse.ts | 0 .../withClientPlugin/types/Category.ts | 0 .../withClientPlugin/types/DeletePet.ts | 0 .../types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../withClientPlugin/types/GetInventory.ts | 0 .../withClientPlugin/types/GetPetById.ts | 0 .../pluginSwr/withClientPlugin/types/Order.ts | 0 .../withClientPlugin/types/OrderStatusEnum.ts | 0 .../pluginSwr/withClientPlugin/types/Pet.ts | 0 .../withClientPlugin/types/PetStatusEnum.ts | 0 .../withClientPlugin/types/PlaceOrder.ts | 0 .../pluginSwr/withClientPlugin/types/Tag.ts | 0 .../withClientPlugin/types/UploadFile.ts | 0 .../types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../excludeByOperationId/types/ApiResponse.ts | 0 .../excludeByOperationId/types/Category.ts | 0 .../types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../types/GetInventory.ts | 0 .../excludeByOperationId/types/GetPetById.ts | 0 .../excludeByOperationId/types/Order.ts | 0 .../types/OrderStatusEnum.ts | 0 .../excludeByOperationId/types/Pet.ts | 0 .../types/PetStatusEnum.ts | 0 .../excludeByOperationId/types/PlaceOrder.ts | 0 .../excludeByOperationId/types/Tag.ts | 0 .../excludeByOperationId/types/UploadFile.ts | 0 .../pluginTs/includeByTag/types/AddPet.ts | 0 .../includeByTag/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../includeByTag/types/ApiResponse.ts | 0 .../pluginTs/includeByTag/types/Category.ts | 0 .../pluginTs/includeByTag/types/DeletePet.ts | 0 .../includeByTag/types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../pluginTs/includeByTag/types/GetPetById.ts | 0 .../pluginTs/includeByTag/types/Pet.ts | 0 .../includeByTag/types/PetStatusEnum.ts | 0 .../pluginTs/includeByTag/types/Tag.ts | 0 .../pluginTs/includeByTag/types/UploadFile.ts | 0 .../noTagsDotOperationId/types/Config.ts | 0 .../types/ConfigCreate.ts | 0 .../types/config/CreateConfigV20250.ts | 0 .../types/config/GetConfigIdV20250.ts | 0 .../excludeByOperationId/.kubb/client.ts | 0 .../excludeByOperationId/.kubb/config.ts | 0 .../excludeByOperationId/.kubb/serializers.ts | 0 .../.kubb/standardSchema.ts | 0 .../excludeByOperationId/clients/addPet.ts | 0 .../excludeByOperationId/clients/deletePet.ts | 0 .../clients/findPetsByStatus.ts | 0 .../clients/getInventory.ts | 0 .../clients/getPetById.ts | 0 .../clients/placeOrder.ts | 0 .../clients/uploadFile.ts | 0 .../hooks/useFindPetsByStatus.ts | 0 .../hooks/useGetInventory.ts | 0 .../hooks/useGetPetById.ts | 0 .../hooks/usePlaceOrder.ts | 0 .../hooks/useUploadFile.ts | 0 .../excludeByOperationId/types/AddPet.ts | 0 .../types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../excludeByOperationId/types/ApiResponse.ts | 0 .../excludeByOperationId/types/Category.ts | 0 .../excludeByOperationId/types/DeletePet.ts | 0 .../types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../types/GetInventory.ts | 0 .../excludeByOperationId/types/GetPetById.ts | 0 .../excludeByOperationId/types/Order.ts | 0 .../types/OrderStatusEnum.ts | 0 .../excludeByOperationId/types/Pet.ts | 0 .../types/PetStatusEnum.ts | 0 .../excludeByOperationId/types/PlaceOrder.ts | 0 .../excludeByOperationId/types/Tag.ts | 0 .../excludeByOperationId/types/UploadFile.ts | 0 .../pluginVueQuery/groupByTag/.kubb/client.ts | 0 .../pluginVueQuery/groupByTag/.kubb/config.ts | 0 .../groupByTag/.kubb/serializers.ts | 0 .../groupByTag/.kubb/standardSchema.ts | 0 .../groupByTag/clients/addPet.ts | 0 .../groupByTag/clients/deletePet.ts | 0 .../groupByTag/clients/findPetsByStatus.ts | 0 .../groupByTag/clients/getInventory.ts | 0 .../groupByTag/clients/getPetById.ts | 0 .../groupByTag/clients/placeOrder.ts | 0 .../groupByTag/clients/uploadFile.ts | 0 .../groupByTag/hooks/pet/useAddPet.ts | 0 .../groupByTag/hooks/pet/useDeletePet.ts | 0 .../hooks/pet/useFindPetsByStatus.ts | 0 .../groupByTag/hooks/pet/useGetPetById.ts | 0 .../groupByTag/hooks/pet/useUploadFile.ts | 0 .../groupByTag/hooks/store/useGetInventory.ts | 0 .../groupByTag/hooks/store/usePlaceOrder.ts | 0 .../pluginVueQuery/groupByTag/types/AddPet.ts | 0 .../groupByTag/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../groupByTag/types/ApiResponse.ts | 0 .../groupByTag/types/Category.ts | 0 .../groupByTag/types/DeletePet.ts | 0 .../groupByTag/types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../groupByTag/types/GetInventory.ts | 0 .../groupByTag/types/GetPetById.ts | 0 .../pluginVueQuery/groupByTag/types/Order.ts | 0 .../groupByTag/types/OrderStatusEnum.ts | 0 .../pluginVueQuery/groupByTag/types/Pet.ts | 0 .../groupByTag/types/PetStatusEnum.ts | 0 .../groupByTag/types/PlaceOrder.ts | 0 .../pluginVueQuery/groupByTag/types/Tag.ts | 0 .../groupByTag/types/UploadFile.ts | 0 .../includeByTag/.kubb/client.ts | 0 .../includeByTag/.kubb/config.ts | 0 .../includeByTag/.kubb/serializers.ts | 0 .../includeByTag/.kubb/standardSchema.ts | 0 .../includeByTag/clients/addPet.ts | 0 .../includeByTag/clients/deletePet.ts | 0 .../includeByTag/clients/findPetsByStatus.ts | 0 .../includeByTag/clients/getInventory.ts | 0 .../includeByTag/clients/getPetById.ts | 0 .../includeByTag/clients/placeOrder.ts | 0 .../includeByTag/clients/uploadFile.ts | 0 .../includeByTag/hooks/useAddPet.ts | 0 .../includeByTag/hooks/useDeletePet.ts | 0 .../includeByTag/hooks/useFindPetsByStatus.ts | 0 .../includeByTag/hooks/useGetPetById.ts | 0 .../includeByTag/hooks/useUploadFile.ts | 0 .../includeByTag/types/AddPet.ts | 0 .../includeByTag/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../includeByTag/types/ApiResponse.ts | 0 .../includeByTag/types/Category.ts | 0 .../includeByTag/types/DeletePet.ts | 0 .../includeByTag/types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../includeByTag/types/GetInventory.ts | 0 .../includeByTag/types/GetPetById.ts | 0 .../includeByTag/types/Order.ts | 0 .../includeByTag/types/OrderStatusEnum.ts | 0 .../pluginVueQuery/includeByTag/types/Pet.ts | 0 .../includeByTag/types/PetStatusEnum.ts | 0 .../includeByTag/types/PlaceOrder.ts | 0 .../pluginVueQuery/includeByTag/types/Tag.ts | 0 .../includeByTag/types/UploadFile.ts | 0 .../pluginVueQuery/infinite/.kubb/client.ts | 0 .../pluginVueQuery/infinite/.kubb/config.ts | 0 .../infinite/.kubb/serializers.ts | 0 .../infinite/.kubb/standardSchema.ts | 0 .../pluginVueQuery/infinite/clients/addPet.ts | 0 .../infinite/clients/deletePet.ts | 0 .../infinite/clients/findPetsByStatus.ts | 0 .../infinite/clients/getInventory.ts | 0 .../infinite/clients/getPetById.ts | 0 .../infinite/clients/placeOrder.ts | 0 .../infinite/clients/uploadFile.ts | 0 .../infinite/hooks/useAddPet.ts | 0 .../infinite/hooks/useDeletePet.ts | 0 .../infinite/hooks/useFindPetsByStatus.ts | 0 .../infinite/hooks/useGetInventory.ts | 0 .../infinite/hooks/useGetPetById.ts | 0 .../infinite/hooks/usePlaceOrder.ts | 0 .../infinite/hooks/useUploadFile.ts | 0 .../pluginVueQuery/infinite/types/AddPet.ts | 0 .../infinite/types/AddPetRequest.ts | 0 .../infinite/types/AddPetRequestStatusEnum.ts | 0 .../infinite/types/ApiResponse.ts | 0 .../pluginVueQuery/infinite/types/Category.ts | 0 .../infinite/types/DeletePet.ts | 0 .../infinite/types/FindPetsByStatus.ts | 0 .../infinite/types/FindPetsByStatusStatus.ts | 0 .../infinite/types/GetInventory.ts | 0 .../infinite/types/GetPetById.ts | 0 .../pluginVueQuery/infinite/types/Order.ts | 0 .../infinite/types/OrderStatusEnum.ts | 0 .../pluginVueQuery/infinite/types/Pet.ts | 0 .../infinite/types/PetStatusEnum.ts | 0 .../infinite/types/PlaceOrder.ts | 0 .../pluginVueQuery/infinite/types/Tag.ts | 0 .../infinite/types/UploadFile.ts | 0 .../mutationDisabled/.kubb/client.ts | 0 .../mutationDisabled/.kubb/config.ts | 0 .../mutationDisabled/.kubb/serializers.ts | 0 .../mutationDisabled/.kubb/standardSchema.ts | 0 .../mutationDisabled/clients/addPet.ts | 0 .../mutationDisabled/clients/deletePet.ts | 0 .../clients/findPetsByStatus.ts | 0 .../mutationDisabled/clients/getInventory.ts | 0 .../mutationDisabled/clients/getPetById.ts | 0 .../mutationDisabled/clients/placeOrder.ts | 0 .../mutationDisabled/clients/uploadFile.ts | 0 .../hooks/useFindPetsByStatus.ts | 0 .../mutationDisabled/hooks/useGetInventory.ts | 0 .../mutationDisabled/hooks/useGetPetById.ts | 0 .../mutationDisabled/types/AddPet.ts | 0 .../mutationDisabled/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../mutationDisabled/types/ApiResponse.ts | 0 .../mutationDisabled/types/Category.ts | 0 .../mutationDisabled/types/DeletePet.ts | 0 .../types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../mutationDisabled/types/GetInventory.ts | 0 .../mutationDisabled/types/GetPetById.ts | 0 .../mutationDisabled/types/Order.ts | 0 .../mutationDisabled/types/OrderStatusEnum.ts | 0 .../mutationDisabled/types/Pet.ts | 0 .../mutationDisabled/types/PetStatusEnum.ts | 0 .../mutationDisabled/types/PlaceOrder.ts | 0 .../mutationDisabled/types/Tag.ts | 0 .../mutationDisabled/types/UploadFile.ts | 0 .../paramsCasing/.kubb/client.ts | 0 .../paramsCasing/.kubb/config.ts | 0 .../paramsCasing/.kubb/serializers.ts | 0 .../paramsCasing/.kubb/standardSchema.ts | 0 .../paramsCasing/clients/updatePet.ts | 0 .../paramsCasing/hooks/useUpdatePet.ts | 0 .../pluginVueQuery/paramsCasing/types/Pet.ts | 0 .../paramsCasing/types/PetUpdate.ts | 0 .../paramsCasing/types/UpdatePet.ts | 0 .../pluginVueQuery/parserZod/.kubb/client.ts | 0 .../pluginVueQuery/parserZod/.kubb/config.ts | 0 .../parserZod/.kubb/serializers.ts | 0 .../parserZod/.kubb/standardSchema.ts | 0 .../parserZod/clients/addPet.ts | 0 .../parserZod/clients/deletePet.ts | 0 .../parserZod/clients/findPetsByStatus.ts | 0 .../parserZod/clients/getInventory.ts | 0 .../parserZod/clients/getPetById.ts | 0 .../parserZod/clients/placeOrder.ts | 0 .../parserZod/clients/uploadFile.ts | 0 .../parserZod/hooks/useAddPet.ts | 0 .../parserZod/hooks/useDeletePet.ts | 0 .../parserZod/hooks/useFindPetsByStatus.ts | 0 .../parserZod/hooks/useGetInventory.ts | 0 .../parserZod/hooks/useGetPetById.ts | 0 .../parserZod/hooks/usePlaceOrder.ts | 0 .../parserZod/hooks/useUploadFile.ts | 0 .../pluginVueQuery/parserZod/types/AddPet.ts | 0 .../parserZod/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../parserZod/types/ApiResponse.ts | 0 .../parserZod/types/Category.ts | 0 .../parserZod/types/DeletePet.ts | 0 .../parserZod/types/FindPetsByStatus.ts | 0 .../parserZod/types/FindPetsByStatusStatus.ts | 0 .../parserZod/types/GetInventory.ts | 0 .../parserZod/types/GetPetById.ts | 0 .../pluginVueQuery/parserZod/types/Order.ts | 0 .../parserZod/types/OrderStatusEnum.ts | 0 .../pluginVueQuery/parserZod/types/Pet.ts | 0 .../parserZod/types/PetStatusEnum.ts | 0 .../parserZod/types/PlaceOrder.ts | 0 .../pluginVueQuery/parserZod/types/Tag.ts | 0 .../parserZod/types/UploadFile.ts | 0 .../parserZod/zod/addPetRequestSchema.ts | 0 .../zod/addPetRequestStatusEnumSchema.ts | 0 .../parserZod/zod/addPetSchema.ts | 0 .../parserZod/zod/apiResponseSchema.ts | 0 .../parserZod/zod/categorySchema.ts | 0 .../parserZod/zod/deletePetSchema.ts | 0 .../parserZod/zod/findPetsByStatusSchema.ts | 0 .../zod/findPetsByStatusStatusSchema.ts | 0 .../parserZod/zod/getInventorySchema.ts | 0 .../parserZod/zod/getPetByIdSchema.ts | 0 .../parserZod/zod/orderSchema.ts | 0 .../parserZod/zod/orderStatusEnumSchema.ts | 0 .../pluginVueQuery/parserZod/zod/petSchema.ts | 0 .../parserZod/zod/petStatusEnumSchema.ts | 0 .../parserZod/zod/placeOrderSchema.ts | 0 .../pluginVueQuery/parserZod/zod/tagSchema.ts | 0 .../parserZod/zod/uploadFileSchema.ts | 0 .../pluginVueQuery/petStore/.kubb/client.ts | 0 .../pluginVueQuery/petStore/.kubb/config.ts | 0 .../petStore/.kubb/serializers.ts | 0 .../petStore/.kubb/standardSchema.ts | 0 .../pluginVueQuery/petStore/clients/addPet.ts | 0 .../petStore/clients/deletePet.ts | 0 .../petStore/clients/findPetsByStatus.ts | 0 .../petStore/clients/getInventory.ts | 0 .../petStore/clients/getPetById.ts | 0 .../petStore/clients/placeOrder.ts | 0 .../petStore/clients/uploadFile.ts | 0 .../petStore/hooks/useAddPet.ts | 0 .../petStore/hooks/useDeletePet.ts | 0 .../petStore/hooks/useFindPetsByStatus.ts | 0 .../petStore/hooks/useGetInventory.ts | 0 .../petStore/hooks/useGetPetById.ts | 0 .../petStore/hooks/usePlaceOrder.ts | 0 .../petStore/hooks/useUploadFile.ts | 0 .../pluginVueQuery/petStore/types/AddPet.ts | 0 .../petStore/types/AddPetRequest.ts | 0 .../petStore/types/AddPetRequestStatusEnum.ts | 0 .../petStore/types/ApiResponse.ts | 0 .../pluginVueQuery/petStore/types/Category.ts | 0 .../petStore/types/DeletePet.ts | 0 .../petStore/types/FindPetsByStatus.ts | 0 .../petStore/types/FindPetsByStatusStatus.ts | 0 .../petStore/types/GetInventory.ts | 0 .../petStore/types/GetPetById.ts | 0 .../pluginVueQuery/petStore/types/Order.ts | 0 .../petStore/types/OrderStatusEnum.ts | 0 .../pluginVueQuery/petStore/types/Pet.ts | 0 .../petStore/types/PetStatusEnum.ts | 0 .../petStore/types/PlaceOrder.ts | 0 .../pluginVueQuery/petStore/types/Tag.ts | 0 .../petStore/types/UploadFile.ts | 0 .../withClientPlugin/.kubb/client.ts | 0 .../withClientPlugin/.kubb/config.ts | 0 .../withClientPlugin/.kubb/serializers.ts | 0 .../withClientPlugin/.kubb/standardSchema.ts | 0 .../withClientPlugin/clients/addPet.ts | 0 .../withClientPlugin/clients/deletePet.ts | 0 .../clients/findPetsByStatus.ts | 0 .../withClientPlugin/clients/getInventory.ts | 0 .../withClientPlugin/clients/getPetById.ts | 0 .../withClientPlugin/clients/placeOrder.ts | 0 .../withClientPlugin/clients/uploadFile.ts | 0 .../withClientPlugin/hooks/useAddPet.ts | 0 .../withClientPlugin/hooks/useDeletePet.ts | 0 .../hooks/useFindPetsByStatus.ts | 0 .../withClientPlugin/hooks/useGetInventory.ts | 0 .../withClientPlugin/hooks/useGetPetById.ts | 0 .../withClientPlugin/hooks/usePlaceOrder.ts | 0 .../withClientPlugin/hooks/useUploadFile.ts | 0 .../withClientPlugin/types/AddPet.ts | 0 .../withClientPlugin/types/AddPetRequest.ts | 0 .../types/AddPetRequestStatusEnum.ts | 0 .../withClientPlugin/types/ApiResponse.ts | 0 .../withClientPlugin/types/Category.ts | 0 .../withClientPlugin/types/DeletePet.ts | 0 .../types/FindPetsByStatus.ts | 0 .../types/FindPetsByStatusStatus.ts | 0 .../withClientPlugin/types/GetInventory.ts | 0 .../withClientPlugin/types/GetPetById.ts | 0 .../withClientPlugin/types/Order.ts | 0 .../withClientPlugin/types/OrderStatusEnum.ts | 0 .../withClientPlugin/types/Pet.ts | 0 .../withClientPlugin/types/PetStatusEnum.ts | 0 .../withClientPlugin/types/PlaceOrder.ts | 0 .../withClientPlugin/types/Tag.ts | 0 .../withClientPlugin/types/UploadFile.ts | 0 .../coercion/zod/addPetRequestSchema.ts | 0 .../zod/addPetRequestStatusEnumSchema.ts | 0 .../pluginZod/coercion/zod/addPetSchema.ts | 0 .../coercion/zod/apiResponseSchema.ts | 0 .../pluginZod/coercion/zod/categorySchema.ts | 0 .../pluginZod/coercion/zod/deletePetSchema.ts | 0 .../coercion/zod/findPetsByStatusSchema.ts | 0 .../zod/findPetsByStatusStatusSchema.ts | 0 .../coercion/zod/getInventorySchema.ts | 0 .../coercion/zod/getPetByIdSchema.ts | 0 .../pluginZod/coercion/zod/orderSchema.ts | 0 .../coercion/zod/orderStatusEnumSchema.ts | 0 .../pluginZod/coercion/zod/petSchema.ts | 0 .../coercion/zod/petStatusEnumSchema.ts | 0 .../coercion/zod/placeOrderSchema.ts | 0 .../pluginZod/coercion/zod/tagSchema.ts | 0 .../coercion/zod/uploadFileSchema.ts | 0 .../dateTypeDate/zod/addPetRequestSchema.ts | 0 .../zod/addPetRequestStatusEnumSchema.ts | 0 .../dateTypeDate/zod/addPetSchema.ts | 0 .../dateTypeDate/zod/apiResponseSchema.ts | 0 .../dateTypeDate/zod/categorySchema.ts | 0 .../dateTypeDate/zod/deletePetSchema.ts | 0 .../zod/findPetsByStatusSchema.ts | 0 .../zod/findPetsByStatusStatusSchema.ts | 0 .../dateTypeDate/zod/getInventorySchema.ts | 0 .../dateTypeDate/zod/getPetByIdSchema.ts | 0 .../pluginZod/dateTypeDate/zod/orderSchema.ts | 0 .../dateTypeDate/zod/orderStatusEnumSchema.ts | 0 .../pluginZod/dateTypeDate/zod/petSchema.ts | 0 .../dateTypeDate/zod/petStatusEnumSchema.ts | 0 .../dateTypeDate/zod/placeOrderSchema.ts | 0 .../pluginZod/dateTypeDate/zod/tagSchema.ts | 0 .../dateTypeDate/zod/uploadFileSchema.ts | 0 .../zod/addPetRequestSchema.ts | 0 .../zod/addPetRequestStatusEnumSchema.ts | 0 .../zod/apiResponseSchema.ts | 0 .../zod/categorySchema.ts | 0 .../zod/findPetsByStatusSchema.ts | 0 .../zod/findPetsByStatusStatusSchema.ts | 0 .../zod/getInventorySchema.ts | 0 .../zod/getPetByIdSchema.ts | 0 .../excludeByOperationId/zod/orderSchema.ts | 0 .../zod/orderStatusEnumSchema.ts | 0 .../excludeByOperationId/zod/petSchema.ts | 0 .../zod/petStatusEnumSchema.ts | 0 .../zod/placeOrderSchema.ts | 0 .../excludeByOperationId/zod/tagSchema.ts | 0 .../zod/uploadFileSchema.ts | 0 .../groupByTag/zod/addPetRequestSchema.ts | 0 .../zod/addPetRequestStatusEnumSchema.ts | 0 .../groupByTag/zod/apiResponseSchema.ts | 0 .../groupByTag/zod/categorySchema.ts | 0 .../zod/findPetsByStatusStatusSchema.ts | 0 .../pluginZod/groupByTag/zod/orderSchema.ts | 0 .../groupByTag/zod/orderStatusEnumSchema.ts | 0 .../groupByTag/zod/pet/addPetSchema.ts | 0 .../groupByTag/zod/pet/deletePetSchema.ts | 0 .../zod/pet/findPetsByStatusSchema.ts | 0 .../groupByTag/zod/pet/getPetByIdSchema.ts | 0 .../groupByTag/zod/pet/uploadFileSchema.ts | 0 .../pluginZod/groupByTag/zod/petSchema.ts | 0 .../groupByTag/zod/petStatusEnumSchema.ts | 0 .../zod/store/getInventorySchema.ts | 0 .../groupByTag/zod/store/placeOrderSchema.ts | 0 .../pluginZod/groupByTag/zod/tagSchema.ts | 0 .../includeByTag/zod/addPetRequestSchema.ts | 0 .../zod/addPetRequestStatusEnumSchema.ts | 0 .../includeByTag/zod/addPetSchema.ts | 0 .../includeByTag/zod/apiResponseSchema.ts | 0 .../includeByTag/zod/categorySchema.ts | 0 .../includeByTag/zod/deletePetSchema.ts | 0 .../zod/findPetsByStatusSchema.ts | 0 .../zod/findPetsByStatusStatusSchema.ts | 0 .../includeByTag/zod/getPetByIdSchema.ts | 0 .../pluginZod/includeByTag/zod/petSchema.ts | 0 .../includeByTag/zod/petStatusEnumSchema.ts | 0 .../pluginZod/includeByTag/zod/tagSchema.ts | 0 .../includeByTag/zod/uploadFileSchema.ts | 0 .../inferred/zod/addPetRequestSchema.ts | 0 .../zod/addPetRequestStatusEnumSchema.ts | 0 .../pluginZod/inferred/zod/addPetSchema.ts | 0 .../inferred/zod/apiResponseSchema.ts | 0 .../pluginZod/inferred/zod/categorySchema.ts | 0 .../pluginZod/inferred/zod/deletePetSchema.ts | 0 .../inferred/zod/findPetsByStatusSchema.ts | 0 .../zod/findPetsByStatusStatusSchema.ts | 0 .../inferred/zod/getInventorySchema.ts | 0 .../inferred/zod/getPetByIdSchema.ts | 0 .../pluginZod/inferred/zod/orderSchema.ts | 0 .../inferred/zod/orderStatusEnumSchema.ts | 0 .../pluginZod/inferred/zod/petSchema.ts | 0 .../inferred/zod/petStatusEnumSchema.ts | 0 .../inferred/zod/placeOrderSchema.ts | 0 .../pluginZod/inferred/zod/tagSchema.ts | 0 .../inferred/zod/uploadFileSchema.ts | 0 .../pluginZod/paramsCasing/zod/petSchema.ts | 0 .../paramsCasing/zod/petUpdateSchema.ts | 0 .../paramsCasing/zod/updatePetSchema.ts | 0 .../petStore/zod/addPetRequestSchema.ts | 0 .../zod/addPetRequestStatusEnumSchema.ts | 0 .../pluginZod/petStore/zod/addPetSchema.ts | 0 .../petStore/zod/apiResponseSchema.ts | 0 .../pluginZod/petStore/zod/categorySchema.ts | 0 .../pluginZod/petStore/zod/deletePetSchema.ts | 0 .../petStore/zod/findPetsByStatusSchema.ts | 0 .../zod/findPetsByStatusStatusSchema.ts | 0 .../petStore/zod/getInventorySchema.ts | 0 .../petStore/zod/getPetByIdSchema.ts | 0 .../pluginZod/petStore/zod/orderSchema.ts | 0 .../petStore/zod/orderStatusEnumSchema.ts | 0 .../pluginZod/petStore/zod/petSchema.ts | 0 .../petStore/zod/petStatusEnumSchema.ts | 0 .../petStore/zod/placeOrderSchema.ts | 0 .../pluginZod/petStore/zod/tagSchema.ts | 0 .../petStore/zod/uploadFileSchema.ts | 0 .../{ => openapi}/3.0.x/cypressPlugin.test.ts | 6 +- tests/{ => openapi}/3.0.x/main.test.ts | 34 +++---- tests/{ => openapi}/3.0.x/package.json | 2 +- tests/{ => openapi}/3.0.x/pluginAxios.test.ts | 14 +-- tests/{ => openapi}/3.0.x/pluginFaker.test.ts | 20 ++--- tests/{ => openapi}/3.0.x/pluginFetch.test.ts | 14 +-- tests/{ => openapi}/3.0.x/pluginMcp.test.ts | 12 +-- tests/{ => openapi}/3.0.x/pluginMsw.test.ts | 14 +-- .../3.0.x/pluginReactQuery.test.ts | 22 ++--- tests/{ => openapi}/3.0.x/pluginRedoc.test.ts | 2 +- tests/{ => openapi}/3.0.x/pluginSwr.test.ts | 20 ++--- tests/{ => openapi}/3.0.x/pluginTs.test.ts | 6 +- .../3.0.x/pluginVueQuery.test.ts | 18 ++-- tests/{ => openapi}/3.0.x/pluginZod.test.ts | 16 ++-- tests/openapi/3.0.x/tsconfig.json | 7 ++ .../{ => openapi}/e2e/kubb-petstore.config.js | 0 tests/{ => openapi}/e2e/kubb.config.js | 34 +++---- tests/{ => openapi}/e2e/package.json | 2 +- tests/{ => openapi}/e2e/tsconfig.gen.json | 0 tests/{ => openapi}/e2e/tsconfig.json | 0 tests/{ => openapi}/performance/README.md | 0 tests/{ => openapi}/performance/main.bench.ts | 2 +- tests/{ => openapi}/performance/package.json | 2 +- tests/openapi/performance/tsconfig.json | 7 ++ tests/performance/tsconfig.json | 7 -- 3497 files changed, 903 insertions(+), 171 deletions(-) create mode 100644 examples/arazzo/typescript/kubb.config.ts create mode 100644 examples/arazzo/typescript/package.json create mode 100644 examples/arazzo/typescript/petStore.yaml create mode 100644 examples/arazzo/typescript/src/gen/models/Credentials.ts create mode 100644 examples/arazzo/typescript/src/gen/models/LoginAndReadPet.ts create mode 100644 examples/arazzo/typescript/src/gen/models/LoginAndReadPetInputs.ts create mode 100644 examples/arazzo/typescript/src/gen/models/LoginAndReadPetOutputs.ts create mode 100644 examples/arazzo/typescript/src/gen/models/ReadPetOnly.ts create mode 100644 examples/arazzo/typescript/src/gen/models/ReadPetOnlyOutputs.ts rename examples/{faker => arazzo/typescript}/src/index.ts (100%) rename examples/{ => arazzo}/typescript/tsconfig.json (100%) create mode 100644 examples/arazzo/typescript/workflows.arazzo.yaml rename examples/{ => openapi}/advanced/.env.example (100%) rename examples/{ => openapi}/advanced/configs/kubb.config.ts (100%) rename examples/{ => openapi}/advanced/package.json (97%) rename examples/{ => openapi}/advanced/petStore.yaml (100%) rename examples/{ => openapi}/advanced/src/gen/.kubb/client.ts (100%) rename examples/{ => openapi}/advanced/src/gen/.kubb/serializers.ts (100%) rename examples/{ => openapi}/advanced/src/gen/.kubb/standardSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/axios/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/axios/petService/addFiles.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/axios/petService/addPet.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/axios/petService/deletePet.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/axios/petService/findPetsByStatus.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/axios/petService/findPetsByTags.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/axios/petService/getPetById.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/axios/petService/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/axios/petService/updatePet.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/axios/petService/updatePetWithForm.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/axios/petService/uploadFile.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/axios/petsService/createPets.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/axios/petsService/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/axios/streamService/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/axios/streamService/streamPetEvents.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/hooks/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/hooks/pet/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/hooks/pet/useAddFiles.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/hooks/pet/useAddPet.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/hooks/pet/useDeletePet.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/hooks/pet/useFindPetsByStatus.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/hooks/pet/useFindPetsByTags.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/hooks/pet/useFindPetsByTagsInfinite.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/hooks/pet/useGetPetById.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/hooks/pet/useUpdatePet.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/hooks/pet/useUpdatePetWithForm.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/hooks/pet/useUploadFile.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/hooks/pets/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/clients/hooks/pets/useCreatePets.ts (100%) rename examples/{ => openapi}/advanced/src/gen/cypress/pet/addFiles.ts (100%) rename examples/{ => openapi}/advanced/src/gen/cypress/pet/addPet.ts (100%) rename examples/{ => openapi}/advanced/src/gen/cypress/pet/deletePet.ts (100%) rename examples/{ => openapi}/advanced/src/gen/cypress/pet/findPetsByStatus.ts (100%) rename examples/{ => openapi}/advanced/src/gen/cypress/pet/findPetsByTags.ts (100%) rename examples/{ => openapi}/advanced/src/gen/cypress/pet/getPetById.ts (100%) rename examples/{ => openapi}/advanced/src/gen/cypress/pet/updatePet.ts (100%) rename examples/{ => openapi}/advanced/src/gen/cypress/pet/updatePetWithForm.ts (100%) rename examples/{ => openapi}/advanced/src/gen/cypress/pet/uploadFile.ts (100%) rename examples/{ => openapi}/advanced/src/gen/cypress/pets/createPets.ts (100%) rename examples/{ => openapi}/advanced/src/gen/cypress/store/deleteOrder.ts (100%) rename examples/{ => openapi}/advanced/src/gen/cypress/store/getInventory.ts (100%) rename examples/{ => openapi}/advanced/src/gen/cypress/store/getOrderById.ts (100%) rename examples/{ => openapi}/advanced/src/gen/cypress/store/placeOrder.ts (100%) rename examples/{ => openapi}/advanced/src/gen/cypress/store/placeOrderPatch.ts (100%) rename examples/{ => openapi}/advanced/src/gen/cypress/stream/streamPetEvents.ts (100%) rename examples/{ => openapi}/advanced/src/gen/docs.html (100%) rename examples/{ => openapi}/advanced/src/gen/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mcp/pet/addFiles.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mcp/pet/addPet.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mcp/pet/deletePet.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mcp/pet/findPetsByStatus.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mcp/pet/findPetsByTags.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mcp/pet/getPetById.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mcp/pet/updatePet.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mcp/pet/updatePetWithForm.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mcp/pet/uploadFile.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mcp/pets/createPets.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mcp/server.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/createAddPetRequestFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/createAddPetRequestStatusEnumFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/createAnimalFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/createAnimalTypeEnumFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/createApiResponseFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/createCatFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/createCategoryFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/createCreatePetsBoolParamFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/createCreatePetsXEXAMPLEFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/createDogFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/createFindPetsByTagsXEXAMPLEFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/createImageFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/createOrderFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/createOrderHttpStatusEnumFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/createOrderOrderTypeEnumFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/createOrderParamsStatusEnumFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/createOrderStatusEnumFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/createPetEventFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/createPetEventTypeEnumFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/createPetFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/createPetNotFoundFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/createPetStatusEnumFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/createTagTagFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/pet/createAddFilesFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/pet/createAddPetFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/pet/createDeletePetFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/pet/createFindPetsByStatusFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/pet/createFindPetsByTagsFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/pet/createGetPetByIdFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/pet/createUpdatePetFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/pet/createUpdatePetWithFormFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/pet/createUploadFileFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/pet/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/pets/createCreatePetsFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/pets/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/stream/createStreamPetEventsFaker.ts (100%) rename examples/{ => openapi}/advanced/src/gen/mocks/stream/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/AddPetRequest.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/AddPetRequestStatusEnum.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/Animal.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/AnimalTypeEnum.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/ApiResponse.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/Cat.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/Category.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/CreatePetsBoolParam.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/CreatePetsXEXAMPLE.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/Dog.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/FindPetsByTagsXEXAMPLE.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/Image.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/Order.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/OrderHttpStatusEnum.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/OrderOrderTypeEnum.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/OrderParamsStatusEnum.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/OrderStatusEnum.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/Pet.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/PetEvent.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/PetEventTypeEnum.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/PetNotFound.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/PetStatusEnum.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/pet/AddFiles.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/pet/AddPet.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/pet/DeletePet.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/pet/FindPetsByStatus.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/pet/FindPetsByTags.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/pet/GetPetById.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/pet/UpdatePet.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/pet/UpdatePetWithForm.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/pet/UploadFile.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/pet/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/pets/CreatePets.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/pets/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/store/DeleteOrder.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/store/GetInventory.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/store/GetOrderById.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/store/PlaceOrder.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/store/PlaceOrderPatch.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/store/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/stream/StreamPetEvents.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/stream/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/tag/Tag.ts (100%) rename examples/{ => openapi}/advanced/src/gen/models/ts/tag/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/msw/handlers.ts (100%) rename examples/{ => openapi}/advanced/src/gen/msw/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/msw/pet/addFilesHandler.ts (100%) rename examples/{ => openapi}/advanced/src/gen/msw/pet/addPetHandler.ts (100%) rename examples/{ => openapi}/advanced/src/gen/msw/pet/deletePetHandler.ts (100%) rename examples/{ => openapi}/advanced/src/gen/msw/pet/findPetsByStatusHandler.ts (100%) rename examples/{ => openapi}/advanced/src/gen/msw/pet/findPetsByTagsHandler.ts (100%) rename examples/{ => openapi}/advanced/src/gen/msw/pet/getPetByIdHandler.ts (100%) rename examples/{ => openapi}/advanced/src/gen/msw/pet/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/msw/pet/updatePetHandler.ts (100%) rename examples/{ => openapi}/advanced/src/gen/msw/pet/updatePetWithFormHandler.ts (100%) rename examples/{ => openapi}/advanced/src/gen/msw/pet/uploadFileHandler.ts (100%) rename examples/{ => openapi}/advanced/src/gen/msw/pets/createPetsHandler.ts (100%) rename examples/{ => openapi}/advanced/src/gen/msw/pets/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/msw/stream/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/msw/stream/streamPetEventsHandler.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/addPetRequestSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/addPetRequestStatusEnumSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/animalSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/animalTypeEnumSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/apiResponseSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/catSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/categorySchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/createPetsBoolParamSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/createPetsXEXAMPLESchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/dogSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/findPetsByTagsXEXAMPLESchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/imageSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/orderHttpStatusEnumSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/orderOrderTypeEnumSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/orderParamsStatusEnumSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/orderSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/orderStatusEnumSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/pet/addFilesSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/pet/addPetSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/pet/deletePetSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/pet/findPetsByStatusSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/pet/findPetsByTagsSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/pet/getPetByIdSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/pet/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/pet/updatePetSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/pet/updatePetWithFormSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/pet/uploadFileSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/petEventSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/petEventTypeEnumSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/petNotFoundSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/petSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/petStatusEnumSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/pets/createPetsSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/pets/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/stream/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/stream/streamPetEventsSchema.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/tag/index.ts (100%) rename examples/{ => openapi}/advanced/src/gen/zod/tag/tagSchema.ts (100%) rename examples/{ => openapi}/advanced/src/index.ts (100%) rename examples/{ => openapi}/advanced/src/tanstack-query-hook.ts (100%) rename examples/{ => openapi}/advanced/tsconfig.json (100%) rename examples/{ => openapi}/axios/kubb.config.ts (100%) rename examples/{ => openapi}/axios/package.json (95%) rename examples/{ => openapi}/axios/petStore.yaml (100%) rename examples/{ => openapi}/axios/src/gen/.kubb/client.ts (100%) rename examples/{ => openapi}/axios/src/gen/.kubb/serializers.ts (100%) rename examples/{ => openapi}/axios/src/gen/.kubb/standardSchema.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/index.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/pet/addPet.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/pet/deletePet.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/pet/findPetsByStatus.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/pet/findPetsByTags.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/pet/getPetById.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/pet/index.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/pet/updatePet.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/pet/updatePetWithForm.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/pet/uploadFile.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/store/deleteOrder.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/store/getInventory.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/store/getOrderById.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/store/index.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/store/placeOrder.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/store/placeOrderPatch.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/user/createUser.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/user/createUsersWithListInput.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/user/deleteUser.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/user/getUserByName.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/user/index.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/user/loginUser.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/user/logoutUser.ts (100%) rename examples/{ => openapi}/axios/src/gen/clients/user/updateUser.ts (100%) rename examples/{ => openapi}/axios/src/gen/index.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/AddPetRequest.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/Address.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/ApiResponse.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/Category.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/Customer.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/Order.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/Pet.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/PetNotFound.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/Tag.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/User.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/UserArray.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/index.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/pet/AddPet.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/pet/DeletePet.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/pet/FindPetsByStatus.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/pet/FindPetsByTags.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/pet/GetPetById.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/pet/UpdatePet.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/pet/UpdatePetWithForm.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/pet/UploadFile.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/pet/index.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/store/DeleteOrder.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/store/GetInventory.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/store/GetOrderById.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/store/PlaceOrder.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/store/PlaceOrderPatch.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/store/index.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/user/CreateUser.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/user/CreateUsersWithListInput.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/user/DeleteUser.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/user/GetUserByName.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/user/LoginUser.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/user/LogoutUser.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/user/UpdateUser.ts (100%) rename examples/{ => openapi}/axios/src/gen/models/user/index.ts (100%) rename examples/{ => openapi}/axios/tsconfig.json (100%) rename examples/{ => openapi}/cypress/kubb.config.js (100%) rename examples/{ => openapi}/cypress/package.json (96%) rename examples/{ => openapi}/cypress/petStore.yaml (100%) rename examples/{ => openapi}/cypress/src/gen-v4/cypress/addPet.ts (100%) rename examples/{ => openapi}/cypress/src/gen-v4/cypress/deleteOrder.ts (100%) rename examples/{ => openapi}/cypress/src/gen-v4/cypress/deletePet.ts (100%) rename examples/{ => openapi}/cypress/src/gen-v4/cypress/findPetsByStatus.ts (100%) rename examples/{ => openapi}/cypress/src/gen-v4/cypress/findPetsByTags.ts (100%) rename examples/{ => openapi}/cypress/src/gen-v4/cypress/getInventory.ts (100%) rename examples/{ => openapi}/cypress/src/gen-v4/cypress/getOrderById.ts (100%) rename examples/{ => openapi}/cypress/src/gen-v4/cypress/getPetById.ts (100%) rename examples/{ => openapi}/cypress/src/gen-v4/cypress/optionsFindPetsByStatus.ts (100%) rename examples/{ => openapi}/cypress/src/gen-v4/cypress/placeOrder.ts (100%) rename examples/{ => openapi}/cypress/src/gen-v4/cypress/placeOrderPatch.ts (100%) rename examples/{ => openapi}/cypress/src/gen-v4/cypress/updatePet.ts (100%) rename examples/{ => openapi}/cypress/src/gen-v4/cypress/updatePetWithForm.ts (100%) rename examples/{ => openapi}/cypress/src/gen-v4/cypress/uploadFile.ts (100%) rename examples/{ => openapi}/cypress/src/gen-v4/models.ts (100%) rename examples/{ => openapi}/cypress/src/gen/cypress/index.ts (100%) rename examples/{ => openapi}/cypress/src/gen/cypress/petRequests/addPet.ts (100%) rename examples/{ => openapi}/cypress/src/gen/cypress/petRequests/deletePet.ts (100%) rename examples/{ => openapi}/cypress/src/gen/cypress/petRequests/findPetsByStatus.ts (100%) rename examples/{ => openapi}/cypress/src/gen/cypress/petRequests/findPetsByTags.ts (100%) rename examples/{ => openapi}/cypress/src/gen/cypress/petRequests/getPetById.ts (100%) rename examples/{ => openapi}/cypress/src/gen/cypress/petRequests/index.ts (100%) rename examples/{ => openapi}/cypress/src/gen/cypress/petRequests/optionsFindPetsByStatus.ts (100%) rename examples/{ => openapi}/cypress/src/gen/cypress/petRequests/updatePet.ts (100%) rename examples/{ => openapi}/cypress/src/gen/cypress/petRequests/updatePetWithForm.ts (100%) rename examples/{ => openapi}/cypress/src/gen/cypress/petRequests/uploadFile.ts (100%) rename examples/{ => openapi}/cypress/src/gen/cypress/storeRequests/deleteOrder.ts (100%) rename examples/{ => openapi}/cypress/src/gen/cypress/storeRequests/getInventory.ts (100%) rename examples/{ => openapi}/cypress/src/gen/cypress/storeRequests/getOrderById.ts (100%) rename examples/{ => openapi}/cypress/src/gen/cypress/storeRequests/index.ts (100%) rename examples/{ => openapi}/cypress/src/gen/cypress/storeRequests/placeOrder.ts (100%) rename examples/{ => openapi}/cypress/src/gen/cypress/storeRequests/placeOrderPatch.ts (100%) rename examples/{ => openapi}/cypress/src/gen/index.ts (100%) rename examples/{ => openapi}/cypress/src/gen/models.ts (100%) rename examples/{ => openapi}/cypress/src/index.ts (100%) rename examples/{ => openapi}/cypress/tsconfig.json (100%) rename examples/{ => openapi}/faker/kubb.config.cjs (100%) rename examples/{ => openapi}/faker/package.json (96%) rename examples/{ => openapi}/faker/petStore.yaml (100%) rename examples/{ => openapi}/faker/src/gen/faker/createCategory.ts (100%) rename examples/{ => openapi}/faker/src/gen/faker/createPet.ts (100%) rename examples/{ => openapi}/faker/src/gen/faker/createTag.ts (100%) rename examples/{ => openapi}/faker/src/gen/faker/createUpdatePet.ts (100%) rename examples/{ => openapi}/faker/src/gen/faker/createUpdatePetWithForm.ts (100%) rename examples/{ => openapi}/faker/src/gen/models/AddPet.ts (100%) rename examples/{ => openapi}/faker/src/gen/models/ApiResponse.ts (100%) rename examples/{ => openapi}/faker/src/gen/models/Category.ts (100%) rename examples/{ => openapi}/faker/src/gen/models/DeleteOrder.ts (100%) rename examples/{ => openapi}/faker/src/gen/models/DeletePet.ts (100%) rename examples/{ => openapi}/faker/src/gen/models/FindPetsByStatus.ts (100%) rename examples/{ => openapi}/faker/src/gen/models/FindPetsByTags.ts (100%) rename examples/{ => openapi}/faker/src/gen/models/GetInventory.ts (100%) rename examples/{ => openapi}/faker/src/gen/models/GetOrderById.ts (100%) rename examples/{ => openapi}/faker/src/gen/models/GetPetById.ts (100%) rename examples/{ => openapi}/faker/src/gen/models/Item.ts (100%) rename examples/{ => openapi}/faker/src/gen/models/Order.ts (100%) rename examples/{ => openapi}/faker/src/gen/models/Pet.ts (100%) rename examples/{ => openapi}/faker/src/gen/models/PlaceOrder.ts (100%) rename examples/{ => openapi}/faker/src/gen/models/Tag.ts (100%) rename examples/{ => openapi}/faker/src/gen/models/UpdatePet.ts (100%) rename examples/{ => openapi}/faker/src/gen/models/UpdatePetWithForm.ts (100%) rename examples/{ => openapi}/faker/src/gen/models/UploadFile.ts (100%) rename examples/{ => openapi}/faker/src/gen/tag/createDeleteOrder.ts (100%) rename examples/{ => openapi}/faker/src/gen/tag/createGetInventory.ts (100%) rename examples/{ => openapi}/faker/src/gen/tag/createGetOrderById.ts (100%) rename examples/{ => openapi}/faker/src/gen/tag/createOrder.ts (100%) rename examples/{ => openapi}/faker/src/gen/tag/createPlaceOrder.ts (100%) rename examples/{msw => openapi/faker}/src/index.ts (100%) rename examples/{ => openapi}/faker/tsconfig.json (88%) rename examples/{ => openapi}/fetch/kubb.config.ts (100%) rename examples/{ => openapi}/fetch/package.json (95%) rename examples/{ => openapi}/fetch/petStore.yaml (100%) rename examples/{ => openapi}/fetch/src/gen/.kubb/client.ts (100%) rename examples/{ => openapi}/fetch/src/gen/.kubb/serializers.ts (100%) rename examples/{ => openapi}/fetch/src/gen/.kubb/standardSchema.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/index.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/pet/addPet.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/pet/deletePet.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/pet/findPetsByStatus.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/pet/findPetsByTags.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/pet/getPetById.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/pet/index.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/pet/updatePet.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/pet/updatePetWithForm.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/pet/uploadFile.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/store/deleteOrder.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/store/getInventory.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/store/getOrderById.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/store/index.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/store/placeOrder.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/store/placeOrderPatch.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/user/createUser.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/user/createUsersWithListInput.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/user/deleteUser.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/user/getUserByName.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/user/index.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/user/loginUser.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/user/logoutUser.ts (100%) rename examples/{ => openapi}/fetch/src/gen/clients/user/updateUser.ts (100%) rename examples/{ => openapi}/fetch/src/gen/index.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/AddPetRequest.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/Address.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/ApiResponse.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/Category.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/Customer.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/Order.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/Pet.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/PetNotFound.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/Tag.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/User.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/UserArray.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/index.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/pet/AddPet.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/pet/DeletePet.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/pet/FindPetsByStatus.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/pet/FindPetsByTags.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/pet/GetPetById.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/pet/UpdatePet.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/pet/UpdatePetWithForm.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/pet/UploadFile.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/pet/index.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/store/DeleteOrder.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/store/GetInventory.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/store/GetOrderById.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/store/PlaceOrder.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/store/PlaceOrderPatch.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/store/index.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/user/CreateUser.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/user/CreateUsersWithListInput.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/user/DeleteUser.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/user/GetUserByName.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/user/LoginUser.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/user/LogoutUser.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/user/UpdateUser.ts (100%) rename examples/{ => openapi}/fetch/src/gen/models/user/index.ts (100%) rename examples/{ => openapi}/fetch/src/index.ts (100%) rename examples/{ => openapi}/fetch/tsconfig.json (100%) rename examples/{ => openapi}/mcp/kubb.config.ts (100%) rename examples/{ => openapi}/mcp/package.json (96%) rename examples/{ => openapi}/mcp/petStore.yaml (100%) rename examples/{ => openapi}/mcp/src/client.ts (100%) rename examples/{ => openapi}/mcp/src/gen/.kubb/client.ts (100%) rename examples/{ => openapi}/mcp/src/gen/.kubb/serializers.ts (100%) rename examples/{ => openapi}/mcp/src/gen/.kubb/standardSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/clients/addFiles.ts (100%) rename examples/{ => openapi}/mcp/src/gen/clients/addPet.ts (100%) rename examples/{ => openapi}/mcp/src/gen/clients/createPets.ts (100%) rename examples/{ => openapi}/mcp/src/gen/clients/deleteOrder.ts (100%) rename examples/{ => openapi}/mcp/src/gen/clients/deletePet.ts (100%) rename examples/{ => openapi}/mcp/src/gen/clients/findPetsByStatus.ts (100%) rename examples/{ => openapi}/mcp/src/gen/clients/findPetsByTags.ts (100%) rename examples/{ => openapi}/mcp/src/gen/clients/getInventory.ts (100%) rename examples/{ => openapi}/mcp/src/gen/clients/getOrderById.ts (100%) rename examples/{ => openapi}/mcp/src/gen/clients/getPetById.ts (100%) rename examples/{ => openapi}/mcp/src/gen/clients/index.ts (100%) rename examples/{ => openapi}/mcp/src/gen/clients/placeOrder.ts (100%) rename examples/{ => openapi}/mcp/src/gen/clients/placeOrderPatch.ts (100%) rename examples/{ => openapi}/mcp/src/gen/clients/updatePet.ts (100%) rename examples/{ => openapi}/mcp/src/gen/clients/updatePetWithForm.ts (100%) rename examples/{ => openapi}/mcp/src/gen/index.ts (100%) rename examples/{ => openapi}/mcp/src/gen/mcp/addFiles.ts (100%) rename examples/{ => openapi}/mcp/src/gen/mcp/addPet.ts (100%) rename examples/{ => openapi}/mcp/src/gen/mcp/createPets.ts (100%) rename examples/{ => openapi}/mcp/src/gen/mcp/deleteOrder.ts (100%) rename examples/{ => openapi}/mcp/src/gen/mcp/deletePet.ts (100%) rename examples/{ => openapi}/mcp/src/gen/mcp/findPetsByStatus.ts (100%) rename examples/{ => openapi}/mcp/src/gen/mcp/findPetsByTags.ts (100%) rename examples/{ => openapi}/mcp/src/gen/mcp/getInventory.ts (100%) rename examples/{ => openapi}/mcp/src/gen/mcp/getOrderById.ts (100%) rename examples/{ => openapi}/mcp/src/gen/mcp/getPetById.ts (100%) rename examples/{ => openapi}/mcp/src/gen/mcp/index.ts (100%) rename examples/{ => openapi}/mcp/src/gen/mcp/placeOrder.ts (100%) rename examples/{ => openapi}/mcp/src/gen/mcp/placeOrderPatch.ts (100%) rename examples/{ => openapi}/mcp/src/gen/mcp/server.ts (100%) rename examples/{ => openapi}/mcp/src/gen/mcp/updatePet.ts (100%) rename examples/{ => openapi}/mcp/src/gen/mcp/updatePetWithForm.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/AddFiles.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/AddPet.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/AddPetRequest.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/AddPetRequestStatusEnum.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/ApiResponse.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/Category.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/CreatePets.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/CreatePetsXEXAMPLE.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/DeleteOrder.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/DeletePet.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/FindPetsByStatus.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/FindPetsByTags.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/FindPetsByTagsXEXAMPLE.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/GetInventory.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/GetOrderById.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/GetPetById.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/Order.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/OrderHttpStatusEnum.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/OrderOrderTypeEnum.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/OrderStatusEnum.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/Pet.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/PetNotFound.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/PetStatusEnum.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/PlaceOrder.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/PlaceOrderPatch.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/UpdatePet.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/UpdatePetWithForm.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/index.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/tag/Tag.ts (100%) rename examples/{ => openapi}/mcp/src/gen/models/ts/tag/index.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/addFilesSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/addPetRequestSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/addPetRequestStatusEnumSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/addPetSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/apiResponseSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/categorySchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/createPetsSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/createPetsXEXAMPLESchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/deleteOrderSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/deletePetSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/findPetsByStatusSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/findPetsByTagsSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/findPetsByTagsXEXAMPLESchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/getInventorySchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/getOrderByIdSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/getPetByIdSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/index.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/orderHttpStatusEnumSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/orderOrderTypeEnumSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/orderSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/orderStatusEnumSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/petNotFoundSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/petSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/petStatusEnumSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/placeOrderPatchSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/placeOrderSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/tag/index.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/tag/tagSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/updatePetSchema.ts (100%) rename examples/{ => openapi}/mcp/src/gen/zod/updatePetWithFormSchema.ts (100%) rename examples/{ => openapi}/mcp/src/index.ts (100%) rename examples/{ => openapi}/mcp/tsconfig.json (100%) rename examples/{ => openapi}/msw/kubb.config.js (100%) rename examples/{ => openapi}/msw/package.json (97%) rename examples/{ => openapi}/msw/petStore.yaml (100%) rename examples/{ => openapi}/msw/src/gen/mocks/createAddPetRequest.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/createAddPetRequestStatusEnum.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/createApiResponse.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/createCategory.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/createFindPetsByStatusStatus.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/createOrder.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/createOrderHttpStatusEnum.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/createOrderStatusEnum.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/createPet.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/createPetNotFound.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/createPetStatusEnum.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/createTag.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/pet/createAddPet.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/pet/createDeletePet.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/pet/createFindPetsByStatus.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/pet/createFindPetsByTags.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/pet/createGetPetById.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/pet/createOptionsFindPetsByStatus.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/pet/createUpdatePet.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/pet/createUpdatePetWithForm.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/pet/createUploadFile.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/store/createDeleteOrder.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/store/createGetInventory.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/store/createGetOrderById.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/store/createPlaceOrder.ts (100%) rename examples/{ => openapi}/msw/src/gen/mocks/store/createPlaceOrderPatch.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/AddPet.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/AddPetRequest.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/AddPetRequestStatusEnum.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/ApiResponse.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/Category.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/DeleteOrder.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/DeletePet.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/FindPetsByStatus.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/FindPetsByStatusStatus.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/FindPetsByTags.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/GetInventory.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/GetOrderById.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/GetPetById.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/OptionsFindPetsByStatus.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/Order.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/OrderHttpStatusEnum.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/OrderStatusEnum.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/Pet.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/PetNotFound.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/PetStatusEnum.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/PlaceOrder.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/PlaceOrderPatch.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/Tag.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/UpdatePet.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/UpdatePetWithForm.ts (100%) rename examples/{ => openapi}/msw/src/gen/models/UploadFile.ts (100%) rename examples/{ => openapi}/msw/src/gen/msw/handlers.ts (100%) rename examples/{ => openapi}/msw/src/gen/msw/pet/Handlers/addPetHandler.ts (100%) rename examples/{ => openapi}/msw/src/gen/msw/pet/Handlers/deletePetHandler.ts (100%) rename examples/{ => openapi}/msw/src/gen/msw/pet/Handlers/findPetsByStatusHandler.ts (100%) rename examples/{ => openapi}/msw/src/gen/msw/pet/Handlers/findPetsByTagsHandler.ts (100%) rename examples/{ => openapi}/msw/src/gen/msw/pet/Handlers/getPetByIdHandler.ts (100%) rename examples/{ => openapi}/msw/src/gen/msw/pet/Handlers/optionsFindPetsByStatusHandler.ts (100%) rename examples/{ => openapi}/msw/src/gen/msw/pet/Handlers/updatePetHandler.ts (100%) rename examples/{ => openapi}/msw/src/gen/msw/pet/Handlers/updatePetWithFormHandler.ts (100%) rename examples/{ => openapi}/msw/src/gen/msw/pet/Handlers/uploadFileHandler.ts (100%) rename examples/{ => openapi}/msw/src/gen/msw/store/Handlers/deleteOrderHandler.ts (100%) rename examples/{ => openapi}/msw/src/gen/msw/store/Handlers/getInventoryHandler.ts (100%) rename examples/{ => openapi}/msw/src/gen/msw/store/Handlers/getOrderByIdHandler.ts (100%) rename examples/{ => openapi}/msw/src/gen/msw/store/Handlers/placeOrderHandler.ts (100%) rename examples/{ => openapi}/msw/src/gen/msw/store/Handlers/placeOrderPatchHandler.ts (100%) rename examples/{simple-single => openapi/msw}/src/index.ts (100%) rename examples/{ => openapi}/msw/src/server.ts (100%) rename examples/{ => openapi}/msw/tsconfig.json (100%) rename examples/{ => openapi}/react-query/kubb.config.ts (100%) rename examples/{ => openapi}/react-query/package.json (95%) rename examples/{ => openapi}/react-query/petStore.yaml (100%) rename examples/{ => openapi}/react-query/src/gen/.kubb/client.ts (100%) rename examples/{ => openapi}/react-query/src/gen/.kubb/serializers.ts (100%) rename examples/{ => openapi}/react-query/src/gen/.kubb/standardSchema.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/index.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/pet/addPet.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/pet/deletePet.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/pet/findPetsByStatus.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/pet/findPetsByTags.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/pet/getPetById.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/pet/index.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/pet/updatePet.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/pet/updatePetWithForm.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/pet/uploadFile.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/store/deleteOrder.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/store/getInventory.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/store/getOrderById.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/store/index.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/store/placeOrder.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/store/placeOrderPatch.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/user/createUser.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/user/createUsersWithListInput.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/user/deleteUser.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/user/getUserByName.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/user/index.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/user/loginUser.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/user/logoutUser.ts (100%) rename examples/{ => openapi}/react-query/src/gen/clients/user/updateUser.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/index.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/pet/index.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/pet/useAddPet.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/pet/useDeletePet.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/pet/useFindPetsByStatus.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/pet/useFindPetsByTags.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/pet/useGetPetById.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/pet/useUpdatePet.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/pet/useUpdatePetWithForm.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/pet/useUploadFile.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/store/index.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/store/useDeleteOrder.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/store/useGetInventory.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/store/useGetOrderById.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/store/usePlaceOrder.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/store/usePlaceOrderPatch.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/user/index.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/user/useCreateUser.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/user/useCreateUsersWithListInput.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/user/useDeleteUser.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/user/useGetUserByName.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/user/useLoginUser.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/user/useLogoutUser.ts (100%) rename examples/{ => openapi}/react-query/src/gen/hooks/user/useUpdateUser.ts (100%) rename examples/{ => openapi}/react-query/src/gen/index.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/AddPetRequest.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/Address.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/ApiResponse.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/Category.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/Customer.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/Order.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/Pet.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/PetNotFound.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/Tag.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/User.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/UserArray.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/index.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/pet/AddPet.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/pet/DeletePet.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/pet/FindPetsByStatus.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/pet/FindPetsByTags.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/pet/GetPetById.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/pet/UpdatePet.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/pet/UpdatePetWithForm.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/pet/UploadFile.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/pet/index.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/store/DeleteOrder.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/store/GetInventory.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/store/GetOrderById.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/store/PlaceOrder.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/store/PlaceOrderPatch.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/store/index.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/user/CreateUser.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/user/CreateUsersWithListInput.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/user/DeleteUser.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/user/GetUserByName.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/user/LoginUser.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/user/LogoutUser.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/user/UpdateUser.ts (100%) rename examples/{ => openapi}/react-query/src/gen/models/user/index.ts (100%) rename examples/{ => openapi}/react-query/src/index.ts (100%) rename examples/{ => openapi}/react-query/tsconfig.json (100%) rename examples/{ => openapi}/sdk/kubb.config.ts (100%) rename examples/{ => openapi}/sdk/package.json (95%) rename examples/{ => openapi}/sdk/petStore.yaml (100%) rename examples/{ => openapi}/sdk/sandbox.config.json (100%) rename examples/{ => openapi}/sdk/src/gen/.kubb/client.ts (100%) rename examples/{ => openapi}/sdk/src/gen/.kubb/serializers.ts (100%) rename examples/{ => openapi}/sdk/src/gen/.kubb/standardSchema.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/AddPetRequest.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/AddPetRequestStatusEnum.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/ApiResponse.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/Category.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/FindPetsByStatusStatus.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/Order.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/OrderHttpStatusEnum.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/OrderStatusEnum.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/Pet.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/PetNotFound.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/PetStatusEnum.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/Tag.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/pet/AddPet.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/pet/DeletePet.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/pet/FindPetsByStatus.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/pet/FindPetsByTags.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/pet/GetPetById.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/pet/UpdatePet.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/pet/UpdatePetWithForm.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/pet/UploadFile.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/store/DeleteOrder.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/store/GetInventory.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/store/GetOrderById.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/store/PlaceOrder.ts (100%) rename examples/{ => openapi}/sdk/src/gen/models/store/PlaceOrderPatch.ts (100%) rename examples/{ => openapi}/sdk/src/gen/sdk/index.ts (100%) rename examples/{ => openapi}/sdk/src/gen/sdk/pet/index.ts (100%) rename examples/{ => openapi}/sdk/src/gen/sdk/pet/pet.ts (100%) rename examples/{ => openapi}/sdk/src/gen/sdk/petStoreSDK.ts (100%) rename examples/{ => openapi}/sdk/src/gen/sdk/store/index.ts (100%) rename examples/{ => openapi}/sdk/src/gen/sdk/store/store.ts (100%) rename examples/{ => openapi}/sdk/src/index.ts (100%) rename examples/{ => openapi}/sdk/tsconfig.json (100%) rename examples/{ => openapi}/simple-single/kubb.config.js (100%) rename examples/{ => openapi}/simple-single/package.json (96%) rename examples/{ => openapi}/simple-single/petStore.yaml (100%) rename examples/{ => openapi}/simple-single/src/gen/.kubb/client.ts (100%) rename examples/{ => openapi}/simple-single/src/gen/.kubb/serializers.ts (100%) rename examples/{ => openapi}/simple-single/src/gen/.kubb/standardSchema.ts (100%) rename examples/{ => openapi}/simple-single/src/gen/clients/addPet.ts (100%) rename examples/{ => openapi}/simple-single/src/gen/clients/deleteOrder.ts (100%) rename examples/{ => openapi}/simple-single/src/gen/clients/deletePet.ts (100%) rename examples/{ => openapi}/simple-single/src/gen/clients/findPetsByStatus.ts (100%) rename examples/{ => openapi}/simple-single/src/gen/clients/findPetsByTags.ts (100%) rename examples/{ => openapi}/simple-single/src/gen/clients/getInventory.ts (100%) rename examples/{ => openapi}/simple-single/src/gen/clients/getOrderById.ts (100%) rename examples/{ => openapi}/simple-single/src/gen/clients/getPetById.ts (100%) rename examples/{ => openapi}/simple-single/src/gen/clients/index.ts (100%) rename examples/{ => openapi}/simple-single/src/gen/clients/placeOrder.ts (100%) rename examples/{ => openapi}/simple-single/src/gen/clients/placeOrderPatch.ts (100%) rename examples/{ => openapi}/simple-single/src/gen/clients/updatePet.ts (100%) rename examples/{ => openapi}/simple-single/src/gen/clients/updatePetWithForm.ts (100%) rename examples/{ => openapi}/simple-single/src/gen/clients/uploadFile.ts (100%) rename examples/{ => openapi}/simple-single/src/gen/docs/index.html (100%) rename examples/{ => openapi}/simple-single/src/gen/hooks.ts (100%) rename examples/{ => openapi}/simple-single/src/gen/index.ts (100%) rename examples/{ => openapi}/simple-single/src/gen/models.ts (100%) rename examples/{ => openapi}/simple-single/src/gen/zod.ts (100%) rename examples/{typescript => openapi/simple-single}/src/index.ts (100%) rename examples/{ => openapi}/simple-single/tsconfig.json (100%) rename examples/{ => openapi}/swr/kubb.config.ts (100%) rename examples/{ => openapi}/swr/package.json (96%) rename examples/{ => openapi}/swr/petStore.yaml (100%) rename examples/{ => openapi}/swr/src/gen/.kubb/client.ts (100%) rename examples/{ => openapi}/swr/src/gen/.kubb/serializers.ts (100%) rename examples/{ => openapi}/swr/src/gen/.kubb/standardSchema.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/index.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/pet/addPet.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/pet/deletePet.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/pet/findPetsByStatus.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/pet/findPetsByTags.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/pet/getPetById.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/pet/index.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/pet/updatePet.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/pet/updatePetWithForm.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/pet/uploadFile.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/store/deleteOrder.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/store/getInventory.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/store/getOrderById.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/store/index.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/store/placeOrder.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/store/placeOrderPatch.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/user/createUser.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/user/createUsersWithListInput.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/user/deleteUser.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/user/getUserByName.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/user/index.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/user/loginUser.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/user/logoutUser.ts (100%) rename examples/{ => openapi}/swr/src/gen/clients/user/updateUser.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/index.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/pet/index.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/pet/useAddPet.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/pet/useDeletePet.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/pet/useFindPetsByStatus.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/pet/useFindPetsByTags.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/pet/useGetPetById.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/pet/useUpdatePet.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/pet/useUpdatePetWithForm.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/pet/useUploadFile.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/store/index.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/store/useDeleteOrder.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/store/useGetInventory.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/store/useGetOrderById.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/store/usePlaceOrder.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/store/usePlaceOrderPatch.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/user/index.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/user/useCreateUser.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/user/useCreateUsersWithListInput.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/user/useDeleteUser.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/user/useGetUserByName.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/user/useLoginUser.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/user/useLogoutUser.ts (100%) rename examples/{ => openapi}/swr/src/gen/hooks/user/useUpdateUser.ts (100%) rename examples/{ => openapi}/swr/src/gen/index.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/AddPetRequest.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/Address.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/ApiResponse.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/Category.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/Customer.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/Order.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/Pet.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/PetNotFound.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/Tag.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/User.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/UserArray.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/index.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/pet/AddPet.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/pet/DeletePet.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/pet/FindPetsByStatus.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/pet/FindPetsByTags.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/pet/GetPetById.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/pet/UpdatePet.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/pet/UpdatePetWithForm.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/pet/UploadFile.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/pet/index.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/store/DeleteOrder.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/store/GetInventory.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/store/GetOrderById.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/store/PlaceOrder.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/store/PlaceOrderPatch.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/store/index.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/user/CreateUser.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/user/CreateUsersWithListInput.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/user/DeleteUser.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/user/GetUserByName.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/user/LoginUser.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/user/LogoutUser.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/user/UpdateUser.ts (100%) rename examples/{ => openapi}/swr/src/gen/models/user/index.ts (100%) rename examples/{ => openapi}/swr/src/index.ts (100%) rename examples/{ => openapi}/swr/tsconfig.json (100%) rename examples/{ => openapi}/typescript/kubb.config.ts (100%) rename examples/{ => openapi}/typescript/package.json (95%) rename examples/{ => openapi}/typescript/petStore.yaml (100%) rename examples/{ => openapi}/typescript/src/gen/models.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/AddPetRequest.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/AddPetRequestStatusEnum.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/Address.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/ApiResponse.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/Cat.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/Category.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/Customer.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/CustomerParamsStatusEnum.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/DeletePetStatus200Enum.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/Dog.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/FindPetsByStatusStatus.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/FullAddress.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/HappyCustomer.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/Order.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/OrderHttpStatusEnum.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/OrderParamsStatusEnum.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/OrderStatus.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/Pet.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/PetNotFound.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/PetStatusEnum.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/PetTypeEnum.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/Tag.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/UnhappyCustomer.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/pet/AddPet.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/pet/DeletePet.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/pet/FindPetsByStatus.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/pet/FindPetsByTags.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/pet/GetPetById.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/pet/UpdatePet.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/pet/UpdatePetWithForm.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/pet/UploadFile.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/store/DeleteOrder.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/store/GetInventory.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/store/GetOrderById.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/store/PlaceOrder.ts (100%) rename examples/{ => openapi}/typescript/src/gen10/models/store/PlaceOrderPatch.ts (100%) rename examples/{ => openapi}/typescript/src/gen11/modelsPascalCaseKeys.ts (100%) rename examples/{ => openapi}/typescript/src/gen12/modelsCamelCaseKeys.ts (100%) rename examples/{ => openapi}/typescript/src/gen2/modelsConst.ts (100%) rename examples/{ => openapi}/typescript/src/gen3/modelsPascalConst.ts (100%) rename examples/{ => openapi}/typescript/src/gen4/modelsConstEnum.ts (100%) rename examples/{ => openapi}/typescript/src/gen5/modelsLiteral.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/AddPet.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/AddPetRequest.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/AddPetRequestStatusEnum.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/Address.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/ApiResponse.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/Cat.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/Category.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/Customer.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/CustomerParamsStatusEnum.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/DeleteOrder.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/DeletePet.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/DeletePetStatus200Enum.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/Dog.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/FindPetsByStatus.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/FindPetsByStatusStatus.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/FindPetsByTags.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/FullAddress.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/GetInventory.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/GetOrderById.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/GetPetById.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/HappyCustomer.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/Order.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/OrderHttpStatusEnum.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/OrderParamsStatusEnum.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/OrderStatus.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/Pet.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/PetNotFound.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/PetStatusEnum.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/PetTypeEnum.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/PlaceOrder.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/PlaceOrderPatch.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/Tag.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/UnhappyCustomer.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/UpdatePet.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/UpdatePetWithForm.ts (100%) rename examples/{ => openapi}/typescript/src/gen6/ts/models/UploadFile.ts (100%) rename examples/{ => openapi}/typescript/src/gen7/modelsInlineLiteral.ts (100%) rename examples/{ => openapi}/typescript/src/gen8/modelsOptionalUndefined.ts (100%) rename examples/{ => openapi}/typescript/src/gen9/modelsOptionalBoth.ts (100%) rename examples/{zod => openapi/typescript}/src/index.ts (100%) rename examples/{ => openapi}/typescript/src/legacy/models.ts (100%) create mode 100644 examples/openapi/typescript/tsconfig.json rename examples/{ => openapi}/vue-query/kubb.config.ts (100%) rename examples/{ => openapi}/vue-query/package.json (95%) rename examples/{ => openapi}/vue-query/petStore.yaml (100%) rename examples/{ => openapi}/vue-query/src/gen/.kubb/client.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/.kubb/serializers.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/.kubb/standardSchema.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/index.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/pet/addPet.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/pet/deletePet.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/pet/findPetsByStatus.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/pet/findPetsByTags.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/pet/getPetById.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/pet/index.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/pet/updatePet.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/pet/updatePetWithForm.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/pet/uploadFile.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/store/deleteOrder.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/store/getInventory.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/store/getOrderById.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/store/index.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/store/placeOrder.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/store/placeOrderPatch.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/user/createUser.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/user/createUsersWithListInput.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/user/deleteUser.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/user/getUserByName.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/user/index.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/user/loginUser.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/user/logoutUser.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/clients/user/updateUser.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/index.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/pet/index.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/pet/useAddPet.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/pet/useDeletePet.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/pet/useFindPetsByStatus.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/pet/useFindPetsByTags.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/pet/useGetPetById.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/pet/useUpdatePet.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/pet/useUpdatePetWithForm.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/pet/useUploadFile.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/store/index.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/store/useDeleteOrder.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/store/useGetInventory.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/store/useGetOrderById.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/store/usePlaceOrder.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/store/usePlaceOrderPatch.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/user/index.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/user/useCreateUser.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/user/useCreateUsersWithListInput.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/user/useDeleteUser.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/user/useGetUserByName.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/user/useLoginUser.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/user/useLogoutUser.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/hooks/user/useUpdateUser.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/index.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/AddPetRequest.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/Address.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/ApiResponse.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/Category.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/Customer.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/Order.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/Pet.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/PetNotFound.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/Tag.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/User.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/UserArray.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/index.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/pet/AddPet.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/pet/DeletePet.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/pet/FindPetsByStatus.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/pet/FindPetsByTags.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/pet/GetPetById.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/pet/UpdatePet.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/pet/UpdatePetWithForm.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/pet/UploadFile.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/pet/index.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/store/DeleteOrder.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/store/GetInventory.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/store/GetOrderById.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/store/PlaceOrder.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/store/PlaceOrderPatch.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/store/index.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/user/CreateUser.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/user/CreateUsersWithListInput.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/user/DeleteUser.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/user/GetUserByName.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/user/LoginUser.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/user/LogoutUser.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/user/UpdateUser.ts (100%) rename examples/{ => openapi}/vue-query/src/gen/models/user/index.ts (100%) rename examples/{ => openapi}/vue-query/src/index.ts (100%) rename examples/{ => openapi}/vue-query/tsconfig.json (100%) rename examples/{ => openapi}/zod/kubb.config.js (100%) rename examples/{ => openapi}/zod/operationsPlugin.ts (100%) rename examples/{ => openapi}/zod/package.json (95%) rename examples/{ => openapi}/zod/petStore.yaml (100%) rename examples/{ => openapi}/zod/src/gen3/zod/createItemSchema.ts (100%) rename examples/{ => openapi}/zod/src/gen3/zod/itemSchema.ts (100%) rename examples/{ => openapi}/zod/src/gen3/zod/itemTypeASchema.ts (100%) rename examples/{ => openapi}/zod/src/gen3/zod/itemTypeBSchema.ts (100%) rename examples/{ => openapi}/zod/src/gen3/zod/updateItemSchema.ts (100%) create mode 100644 examples/openapi/zod/src/index.ts rename examples/{ => openapi}/zod/src/mini/zod/addPetRequestSchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/addPetSchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/apiResponseSchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/categorySchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/createPetsSchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/deleteOrderSchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/deletePetSchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/findPetsByStatusSchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/findPetsByTagsSchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/getInventorySchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/getOrderByIdSchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/getPetByIdSchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/getThingsSchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/orderSchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/petNotFoundSchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/petSchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/phoneNumberSchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/phoneWithMaxLengthExplicitSchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/phoneWithMaxLengthSchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/placeOrderPatchSchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/placeOrderSchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/tagSchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/updatePetSchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/updatePetWithFormSchema.ts (100%) rename examples/{ => openapi}/zod/src/mini/zod/uploadFileSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/AddPet.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/AddPetRequest.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/ApiResponse.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/Category.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/CreatePets.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/DeleteOrder.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/DeletePet.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/FindPetsByStatus.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/FindPetsByTags.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/GetInventory.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/GetOrderById.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/GetPetById.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/GetThings.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/Order.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/Pet.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/PetNotFound.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/PhoneNumber.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/PhoneWithMaxLength.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/PhoneWithMaxLengthExplicit.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/PlaceOrder.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/PlaceOrderPatch.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/Tag.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/UpdatePet.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/UpdatePetWithForm.ts (100%) rename examples/{ => openapi}/zod/src/zod/ts/UploadFile.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/addPetRequestSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/addPetSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/apiResponseSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/categorySchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/createPetsSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/deleteOrderSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/deletePetSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/findPetsByStatusSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/findPetsByTagsSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/getInventorySchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/getOrderByIdSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/getPetByIdSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/getThingsSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/operationsSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/orderSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/petNotFoundSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/petSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/phoneNumberSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/phoneWithMaxLengthExplicitSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/phoneWithMaxLengthSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/placeOrderPatchSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/placeOrderSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/tagSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/updatePetSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/updatePetWithFormSchema.ts (100%) rename examples/{ => openapi}/zod/src/zod/zod/uploadFileSchema.ts (100%) rename examples/{ => openapi}/zod/tsconfig.json (100%) rename examples/{ => openapi}/zod/unionWithReadOnly.yaml (100%) delete mode 100644 tests/3.0.x/tsconfig.json create mode 100644 tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/Credentials.ts create mode 100644 tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/LoginAndReadPet.ts create mode 100644 tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/LoginAndReadPetInputs.ts create mode 100644 tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/LoginAndReadPetOutputs.ts create mode 100644 tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/ReadPetOnly.ts create mode 100644 tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/ReadPetOnlyOutputs.ts create mode 100644 tests/arazzo/1.1.0/mocks/petStore.yaml create mode 100644 tests/arazzo/1.1.0/mocks/workflows.arazzo.yaml create mode 100644 tests/arazzo/1.1.0/package.json create mode 100644 tests/arazzo/1.1.0/pluginTs.test.ts create mode 100644 tests/arazzo/1.1.0/tsconfig.json rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/cypress/config/createConfigV20250.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/cypress/config/getConfigIdV20250.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/types/Config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/types/ConfigCreate.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/types/CreateConfigV20250.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/types/GetConfigIdV20250.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/asConstEnum/types/Priority.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/asConstEnum/types/Status.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/asConstEnum/types/Task.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/caseSensitivity/types/CreateOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/caseSensitivity/types/GetProducts.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/caseSensitivity/types/GetVariants.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/caseSensitivity/types/OrderRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/caseSensitivity/types/OrderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/caseSensitivity/types/ProductResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/caseSensitivity/types/ProductSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/caseSensitivity/types/Variant.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/caseSensitivity/types/Variant2.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/caseSensitivity/types/Variant2CategoryEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/caseSensitivity/types/VariantTypeEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/types/BankTransferPayment.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/types/BankTransferPaymentMapped.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/types/BankTransferPaymentUnion.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/types/CardPayment.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/types/CardPaymentMapped.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/types/CardPaymentUnion.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/types/ExtendedPaymentMethodUnion.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/types/PaymentMethod.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/types/PaymentMethodMapped.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/types/PaymentMethodMappedTypeEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/types/PaymentMethodUnion.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/types/WalletPayment.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/types/WalletPaymentMapped.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/zod/bankTransferPaymentMappedSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/zod/bankTransferPaymentSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/zod/bankTransferPaymentUnionSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/zod/cardPaymentMappedSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/zod/cardPaymentSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/zod/cardPaymentUnionSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/zod/extendedPaymentMethodUnionSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/zod/paymentMethodMappedSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/zod/paymentMethodMappedTypeEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/zod/paymentMethodSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/zod/paymentMethodUnionSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/zod/walletPaymentMappedSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAllOf/zod/walletPaymentSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAnyOf/types/Car.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAnyOf/types/ElectricCar.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAnyOf/types/SUV.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAnyOf/types/Sedan.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAnyOf/types/TypeEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAnyOf/types/Vehicle.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAnyOf/types/VehicleChoice.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/SUVSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/carSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/electricCarSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/sedanSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/typeEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/vehicleChoiceSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/vehicleSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorImplicit/zod/animalSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorImplicit/zod/catSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorImplicit/zod/dogSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorImplicit/zod/petSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOf/types/Car.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOf/types/ElectricCar.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOf/types/ElectricCarTypeEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOf/types/SUV.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOf/types/SUVTypeEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOf/types/Sedan.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOf/types/SedanTypeEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOf/types/Vehicle.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOf/types/VehicleChoice.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOf/zod/SUVSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOf/zod/SUVTypeEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOf/zod/carSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOf/zod/electricCarSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOf/zod/electricCarTypeEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOf/zod/sedanSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOf/zod/sedanTypeEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOf/zod/vehicleChoiceSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOf/zod/vehicleSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOfExternalRef/zod/notificationTypeSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOfExternalRef/zod/orderCreatedNotificationDTOSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOfExternalRef/zod/pingNotificationDTOSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOfExternalRef/zod/sendNotificationRequestSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/SUVSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/SUVTypeEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/carSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/electricCarSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/electricCarTypeEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/sedanSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/sedanTypeEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/vehicleChoiceSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/vehicleSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/duplicateEnum/types/GetNotifications.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/duplicateEnum/types/NotificationTypeA.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/duplicateEnum/types/NotificationTypeAParamsChannelEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/duplicateEnum/types/NotificationTypeB.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/duplicateEnum/types/NotificationTypeBParamsChannelEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/issue2619/zod/contactDetailsTypeSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/issue2619/zod/createReturnTypeASchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/issue2619/zod/createReturnTypeBSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/issue2619/zod/parcelSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/issue2619/zod/productDetailsSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/issue2619/zod/resultSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/issue2619/zod/resultStateEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/issue2619/zod/typeARequestSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/issue2619/zod/typeBRequestSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/issue2696/types/AppState.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/issue2696/types/Employer.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/issue2696/types/GetEmployers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/issue2696/types/GetMe.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/issue2696/types/User.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/noTagsDotOperationId/types/Config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/noTagsDotOperationId/types/ConfigCreate.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/noTagsDotOperationId/types/config/CreateConfigV20250.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/noTagsDotOperationId/types/config/GetConfigIdV20250.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/petStore/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/petStore/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/petStore/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/petStore/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/petStore/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/petStore/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/petStore/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/petStore/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/petStore/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/petStore/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/petStore/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/petStore/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/petStore/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/petStore/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/petStore/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/petStore/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/petStore/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/printerNodesZod/zod/getItemSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/printerNodesZod/zod/itemSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/resolverCustomPrefix/types/GetItem.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/resolverCustomPrefix/types/Item.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/simple/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/simple/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/simple/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/simple/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/simple/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/simple/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/simple/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/simple/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/simple/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/simple/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/simple/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/simple/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/simple/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/simple/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/simple/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/simple/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/simple/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/transformerStripDescriptions/types/GetItem.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/main/transformerStripDescriptions/types/Item.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/default/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/paramsCasing/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/paramsCasing/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/paramsCasing/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/paramsCasing/clients/updatePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/paramsCasing/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/paramsCasing/types/PetUpdate.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/paramsCasing/types/UpdatePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClass/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClass/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClass/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClass/clients/petClient.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClass/clients/storeClient.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClass/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClass/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClass/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClass/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClass/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClass/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClass/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClass/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClass/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClass/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClass/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClass/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClass/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClass/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClass/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClass/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClass/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/clients/petClient.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/clients/petStore.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/clients/storeClient.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkSingle/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkSingle/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkSingle/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkSingle/clients/petStore.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createAddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createAddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createCategory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createFindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createOrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createPetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createPlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createTag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createAddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createAddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createCategory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createFindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createOrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createPetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createPlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createTag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createAddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createAddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createCategory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createFindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createOrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createPetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createTag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/store/createGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/store/createPlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/groupByTag/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createAddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createAddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createCategory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createFindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createPetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createTag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/includeByTag/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/faker/createAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/faker/createAddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/faker/createAddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/faker/createApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/faker/createCategory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/faker/createDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/faker/createFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/faker/createFindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/faker/createGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/faker/createGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/faker/createOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/faker/createOrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/faker/createPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/faker/createPetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/faker/createPlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/faker/createTag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/faker/createUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/locale/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/faker/createAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/faker/createAddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/faker/createAddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/faker/createApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/faker/createCategory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/faker/createDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/faker/createFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/faker/createFindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/faker/createGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/faker/createGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/faker/createOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/faker/createOrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/faker/createPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/faker/createPetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/faker/createPlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/faker/createTag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/faker/createUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/macros/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/paramsCasing/faker/createPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/paramsCasing/faker/createPetUpdate.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/paramsCasing/faker/createUpdatePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/paramsCasing/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/paramsCasing/types/PetUpdate.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/paramsCasing/types/UpdatePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/faker/createAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/faker/createAddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/faker/createAddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/faker/createApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/faker/createCategory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/faker/createDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/faker/createFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/faker/createFindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/faker/createGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/faker/createGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/faker/createOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/faker/createOrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/faker/createPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/faker/createPetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/faker/createPlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/faker/createTag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/faker/createUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/petStore/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createAddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createAddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createCategory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createFindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createOrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createPetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createPlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createTag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/faker/createAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/faker/createAddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/faker/createAddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/faker/createApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/faker/createCategory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/faker/createDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/faker/createFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/faker/createFindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/faker/createGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/faker/createGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/faker/createOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/faker/createOrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/faker/createPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/faker/createPetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/faker/createPlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/faker/createTag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/faker/createUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFaker/seed/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/default/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/paramsCasing/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/paramsCasing/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/paramsCasing/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/paramsCasing/clients/updatePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/paramsCasing/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/paramsCasing/types/PetUpdate.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/paramsCasing/types/UpdatePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClass/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClass/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClass/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClass/clients/petClient.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClass/clients/storeClient.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClass/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClass/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClass/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClass/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClass/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClass/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClass/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClass/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClass/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClass/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClass/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClass/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClass/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClass/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClass/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClass/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClass/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/clients/petClient.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/clients/petStore.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/clients/storeClient.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkSingle/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkSingle/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkSingle/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkSingle/clients/petStore.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/.mcp.json (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/server.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/addPetRequestSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/addPetRequestStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/addPetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/apiResponseSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/categorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/deletePetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/findPetsByStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/findPetsByStatusStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/getInventorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/getPetByIdSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/orderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/orderStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/petSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/petStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/placeOrderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/tagSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/uploadFileSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/.mcp.json (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/server.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/store/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/store/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/addPetRequestSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/addPetRequestStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/addPetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/apiResponseSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/categorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/deletePetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/findPetsByStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/findPetsByStatusStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/getInventorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/getPetByIdSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/orderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/orderStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/petSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/petStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/placeOrderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/tagSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/uploadFileSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/.mcp.json (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/server.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/addPetRequestSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/addPetRequestStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/addPetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/apiResponseSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/categorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/deletePetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/findPetsByStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/findPetsByStatusStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/getInventorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/getPetByIdSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/orderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/orderStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/petSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/petStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/placeOrderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/tagSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/uploadFileSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/paramsCasing/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/paramsCasing/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/paramsCasing/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/paramsCasing/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/paramsCasing/clients/updatePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/paramsCasing/mcp/.mcp.json (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/paramsCasing/mcp/server.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/paramsCasing/mcp/updatePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/paramsCasing/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/paramsCasing/types/PetUpdate.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/paramsCasing/types/UpdatePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/paramsCasing/zod/petSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/paramsCasing/zod/petUpdateSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/paramsCasing/zod/updatePetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/mcp/.mcp.json (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/mcp/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/mcp/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/mcp/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/mcp/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/mcp/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/mcp/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/mcp/server.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/mcp/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/zod/addPetRequestSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/zod/addPetRequestStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/zod/addPetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/zod/apiResponseSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/zod/categorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/zod/deletePetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/zod/findPetsByStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/zod/findPetsByStatusStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/zod/getInventorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/zod/getPetByIdSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/zod/orderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/zod/orderStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/zod/petSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/zod/petStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/zod/placeOrderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/zod/tagSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/petStore/zod/uploadFileSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/.mcp.json (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/server.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/addPetRequestSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/addPetRequestStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/addPetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/apiResponseSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/categorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/deletePetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/findPetsByStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/findPetsByStatusStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/getInventorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/getPetByIdSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/orderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/orderStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/petSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/petStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/placeOrderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/tagSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/uploadFileSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/msw/addPetHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/msw/deletePetHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/msw/findPetsByStatusHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/msw/getInventoryHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/msw/getPetByIdHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/msw/placeOrderHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/msw/uploadFileHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/baseURL/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/findPetsByStatusHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/getInventoryHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/getPetByIdHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/placeOrderHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/uploadFileHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/addPetHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/deletePetHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/findPetsByStatusHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/getPetByIdHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/uploadFileHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/store/getInventoryHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/store/placeOrderHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/groupByTag/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/msw/addPetHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/msw/deletePetHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/msw/findPetsByStatusHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/msw/getInventoryHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/msw/getPetByIdHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/msw/handlers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/msw/placeOrderHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/msw/uploadFileHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/handlers/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/addPetHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/deletePetHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/findPetsByStatusHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/getPetByIdHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/uploadFileHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/includeByTag/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/includeByTag/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/includeByTag/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/includeByTag/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/includeByTag/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/includeByTag/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/includeByTag/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/includeByTag/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/includeByTag/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/includeByTag/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/includeByTag/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/includeByTag/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/includeByTag/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/includeByTag/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/includeByTag/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/includeByTag/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/includeByTag/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createAddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createAddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createCategory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createFindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createOrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createPetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createPlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createTag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/addPetHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/deletePetHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/findPetsByStatusHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/getInventoryHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/getPetByIdHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/placeOrderHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/uploadFileHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/parserFaker/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/msw/addPetHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/msw/deletePetHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/msw/findPetsByStatusHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/msw/getInventoryHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/msw/getPetByIdHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/msw/placeOrderHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/msw/uploadFileHandler.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginMsw/petStore/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useFindPetsByStatusSuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useGetInventorySuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useGetPetByIdSuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/usePlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useFindPetsByStatusSuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useGetPetByIdSuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/store/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/store/useGetInventorySuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/store/usePlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useFindPetsByStatusSuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useGetPetByIdSuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useFindPetsByStatusSuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useGetInventorySuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useGetPetByIdSuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/usePlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/infinite/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useFindPetsByStatusSuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useGetInventorySuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useGetPetByIdSuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/clients/updatePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/hooks/useUpdatePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/types/PetUpdate.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/types/UpdatePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useFindPetsByStatusSuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useGetInventorySuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useGetPetByIdSuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/usePlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/addPetRequestSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/addPetRequestStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/addPetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/apiResponseSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/categorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/deletePetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/findPetsByStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/findPetsByStatusStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/getInventorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/getPetByIdSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/orderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/orderStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/petSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/petStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/placeOrderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/tagSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/uploadFileSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useFindPetsByStatusSuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useGetInventorySuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useGetPetByIdSuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/usePlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/petStore/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useFindPetsByStatusSuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useGetInventorySuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useGetPetByIdSuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/usePlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useFindPetsByStatusSuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useGetInventorySuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useGetPetByIdSuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/usePlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/suspense/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useFindPetsByStatusSuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useGetInventorySuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useGetPetByIdSuspense.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/usePlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginRedoc/petStore/docs.html (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/usePlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/store/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/store/usePlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/groupByTag/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/includeByTag/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/hooks/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/paramsCasing/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/paramsCasing/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/paramsCasing/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/paramsCasing/clients/updatePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/paramsCasing/hooks/useUpdatePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/paramsCasing/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/paramsCasing/types/PetUpdate.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/paramsCasing/types/UpdatePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/usePlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/zod/addPetRequestSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/zod/addPetRequestStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/zod/addPetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/zod/apiResponseSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/zod/categorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/zod/deletePetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/zod/findPetsByStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/zod/findPetsByStatusStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/zod/getInventorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/zod/getPetByIdSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/zod/orderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/zod/orderStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/zod/petSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/zod/petStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/zod/placeOrderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/zod/tagSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/parserZod/zod/uploadFileSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/hooks/usePlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/petStore/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/usePlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/usePlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/queryMethods/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/usePlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/includeByTag/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/includeByTag/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/includeByTag/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/includeByTag/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/includeByTag/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/includeByTag/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/includeByTag/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/includeByTag/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/includeByTag/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/includeByTag/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/includeByTag/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/includeByTag/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/includeByTag/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/noTagsDotOperationId/types/Config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/noTagsDotOperationId/types/ConfigCreate.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/noTagsDotOperationId/types/config/CreateConfigV20250.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginTs/noTagsDotOperationId/types/config/GetConfigIdV20250.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/usePlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/store/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/store/usePlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/usePlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/infinite/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/hooks/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/clients/updatePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/hooks/useUpdatePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/types/PetUpdate.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/types/UpdatePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/usePlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/addPetRequestSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/addPetRequestStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/addPetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/apiResponseSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/categorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/deletePetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/findPetsByStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/findPetsByStatusStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/getInventorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/getPetByIdSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/orderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/orderStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/petSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/petStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/placeOrderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/tagSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/uploadFileSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/usePlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/petStore/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/.kubb/config.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useAddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useDeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useFindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useGetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useGetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/usePlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useUploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/AddPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/AddPetRequest.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/AddPetRequestStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/ApiResponse.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/Category.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/DeletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/FindPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/FindPetsByStatusStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/GetInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/GetPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/Order.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/OrderStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/Pet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/PetStatusEnum.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/PlaceOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/Tag.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/UploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/coercion/zod/addPetRequestSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/coercion/zod/addPetRequestStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/coercion/zod/addPetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/coercion/zod/apiResponseSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/coercion/zod/categorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/coercion/zod/deletePetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/coercion/zod/findPetsByStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/coercion/zod/findPetsByStatusStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/coercion/zod/getInventorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/coercion/zod/getPetByIdSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/coercion/zod/orderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/coercion/zod/orderStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/coercion/zod/petSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/coercion/zod/petStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/coercion/zod/placeOrderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/coercion/zod/tagSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/coercion/zod/uploadFileSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/addPetRequestSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/addPetRequestStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/addPetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/apiResponseSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/categorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/deletePetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/findPetsByStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/findPetsByStatusStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/getInventorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/getPetByIdSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/orderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/orderStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/petSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/petStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/placeOrderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/tagSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/uploadFileSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/addPetRequestSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/addPetRequestStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/apiResponseSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/categorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/findPetsByStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/findPetsByStatusStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/getInventorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/getPetByIdSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/orderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/orderStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/petSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/petStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/placeOrderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/tagSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/uploadFileSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/groupByTag/zod/addPetRequestSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/groupByTag/zod/addPetRequestStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/groupByTag/zod/apiResponseSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/groupByTag/zod/categorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/groupByTag/zod/findPetsByStatusStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/groupByTag/zod/orderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/groupByTag/zod/orderStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/addPetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/deletePetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/findPetsByStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/getPetByIdSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/uploadFileSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/groupByTag/zod/petSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/groupByTag/zod/petStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/groupByTag/zod/store/getInventorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/groupByTag/zod/store/placeOrderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/groupByTag/zod/tagSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/includeByTag/zod/addPetRequestSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/includeByTag/zod/addPetRequestStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/includeByTag/zod/addPetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/includeByTag/zod/apiResponseSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/includeByTag/zod/categorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/includeByTag/zod/deletePetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/includeByTag/zod/findPetsByStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/includeByTag/zod/findPetsByStatusStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/includeByTag/zod/getPetByIdSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/includeByTag/zod/petSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/includeByTag/zod/petStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/includeByTag/zod/tagSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/includeByTag/zod/uploadFileSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/inferred/zod/addPetRequestSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/inferred/zod/addPetRequestStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/inferred/zod/addPetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/inferred/zod/apiResponseSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/inferred/zod/categorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/inferred/zod/deletePetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/inferred/zod/findPetsByStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/inferred/zod/findPetsByStatusStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/inferred/zod/getInventorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/inferred/zod/getPetByIdSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/inferred/zod/orderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/inferred/zod/orderStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/inferred/zod/petSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/inferred/zod/petStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/inferred/zod/placeOrderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/inferred/zod/tagSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/inferred/zod/uploadFileSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/paramsCasing/zod/petSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/paramsCasing/zod/petUpdateSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/paramsCasing/zod/updatePetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/petStore/zod/addPetRequestSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/petStore/zod/addPetRequestStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/petStore/zod/addPetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/petStore/zod/apiResponseSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/petStore/zod/categorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/petStore/zod/deletePetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/petStore/zod/findPetsByStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/petStore/zod/findPetsByStatusStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/petStore/zod/getInventorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/petStore/zod/getPetByIdSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/petStore/zod/orderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/petStore/zod/orderStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/petStore/zod/petSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/petStore/zod/petStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/petStore/zod/placeOrderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/petStore/zod/tagSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/petStore/zod/uploadFileSchema.ts (100%) rename tests/{ => openapi}/3.0.x/cypressPlugin.test.ts (95%) rename tests/{ => openapi}/3.0.x/main.test.ts (92%) rename tests/{ => openapi}/3.0.x/package.json (97%) rename tests/{ => openapi}/3.0.x/pluginAxios.test.ts (95%) rename tests/{ => openapi}/3.0.x/pluginFaker.test.ts (94%) rename tests/{ => openapi}/3.0.x/pluginFetch.test.ts (95%) rename tests/{ => openapi}/3.0.x/pluginMcp.test.ts (95%) rename tests/{ => openapi}/3.0.x/pluginMsw.test.ts (94%) rename tests/{ => openapi}/3.0.x/pluginReactQuery.test.ts (94%) rename tests/{ => openapi}/3.0.x/pluginRedoc.test.ts (97%) rename tests/{ => openapi}/3.0.x/pluginSwr.test.ts (94%) rename tests/{ => openapi}/3.0.x/pluginTs.test.ts (95%) rename tests/{ => openapi}/3.0.x/pluginVueQuery.test.ts (95%) rename tests/{ => openapi}/3.0.x/pluginZod.test.ts (93%) create mode 100644 tests/openapi/3.0.x/tsconfig.json rename tests/{ => openapi}/e2e/kubb-petstore.config.js (100%) rename tests/{ => openapi}/e2e/kubb.config.js (89%) rename tests/{ => openapi}/e2e/package.json (97%) rename tests/{ => openapi}/e2e/tsconfig.gen.json (100%) rename tests/{ => openapi}/e2e/tsconfig.json (100%) rename tests/{ => openapi}/performance/README.md (100%) rename tests/{ => openapi}/performance/main.bench.ts (97%) rename tests/{ => openapi}/performance/package.json (95%) create mode 100644 tests/openapi/performance/tsconfig.json delete mode 100644 tests/performance/tsconfig.json diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 4b76d9d2b..a672c7b16 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -152,7 +152,7 @@ jobs: run: pnpm run build - name: Publish preview packages - run: pnpx pkg-pr-new publish --pnpm --owner=stijnvanhulle --repo=https://github.com/kubb-labs/plugins.git './packages/*' --template './examples/*' + run: pnpx pkg-pr-new publish --pnpm --owner=stijnvanhulle --repo=https://github.com/kubb-labs/plugins.git './packages/*' --template './examples/*/*' dependency-diff: name: Dependency Diff @@ -280,7 +280,7 @@ jobs: run: pnpm run build - name: Run E2E tests - working-directory: ./tests/e2e + working-directory: ./tests/openapi/e2e env: NODE_OPTIONS: '--max_old_space_size=4096' KUBB_DISABLE_TELEMETRY: '1' diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f83ed81a9..d73135d4e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -56,8 +56,8 @@ plugins/ │ ├── shared/ # Shared AST helpers used across packages │ ├── tanstack-query/ # Shared TanStack Query utilities │ └── utils/ # General utilities -├── examples/ # A runnable project per plugin -├── tests/ # End-to-end, performance, and version-specific suites +├── examples/ # A runnable project per plugin, grouped by adapter (openapi, arazzo) +├── tests/ # End-to-end, performance, and version-specific suites, grouped by adapter ├── schemas/ # OpenAPI specs used for testing ├── configs/ # Shared build and test configuration └── assets/ # Static assets diff --git a/README.md b/README.md index 43155b3fd..e82b34c6c 100644 --- a/README.md +++ b/README.md @@ -80,19 +80,29 @@ Plugins built and maintained by the community. Want to add yours? See [CONTRIBUT ## Examples -| Example | Description | -| --------------------------------------- | ----------------------------------- | -| [`typescript`](./examples/typescript) | Generate TypeScript types | -| [`client`](./examples/client) | Generate API clients with Axios | -| [`fetch`](./examples/fetch) | Generate API clients with Fetch | -| [`zod`](./examples/zod) | Generate Zod validation schemas | -| [`react-query`](./examples/react-query) | Generate React Query hooks | -| [`vue-query`](./examples/vue-query) | Generate Vue Query composables | -| [`faker`](./examples/faker) | Generate Faker.js mock data | -| [`msw`](./examples/msw) | Generate MSW handlers | -| [`cypress`](./examples/cypress) | Generate Cypress tests | -| [`mcp`](./examples/mcp) | Generate MCP tools | -| [`advanced`](./examples/advanced) | Advanced multi-plugin configuration | +Examples are grouped by adapter, `openapi` or `arazzo`, under `./examples//`. + +### OpenAPI adapter + +| Example | Description | +| ------------------------------------------------------------ | ----------------------------------- | +| [`typescript`](./examples/openapi/typescript) | Generate TypeScript types | +| [`client`](./examples/openapi/client) | Generate API clients with Axios | +| [`fetch`](./examples/openapi/fetch) | Generate API clients with Fetch | +| [`zod`](./examples/openapi/zod) | Generate Zod validation schemas | +| [`react-query`](./examples/openapi/react-query) | Generate React Query hooks | +| [`vue-query`](./examples/openapi/vue-query) | Generate Vue Query composables | +| [`faker`](./examples/openapi/faker) | Generate Faker.js mock data | +| [`msw`](./examples/openapi/msw) | Generate MSW handlers | +| [`cypress`](./examples/openapi/cypress) | Generate Cypress tests | +| [`mcp`](./examples/openapi/mcp) | Generate MCP tools | +| [`advanced`](./examples/openapi/advanced) | Advanced multi-plugin configuration | + +### Arazzo adapter + +| Example | Description | +| ---------------------------------------------- | --------------------------------------------- | +| [`typescript`](./examples/arazzo/typescript) | Generate TypeScript types from Arazzo workflows | ## Contributing diff --git a/examples/arazzo/typescript/kubb.config.ts b/examples/arazzo/typescript/kubb.config.ts new file mode 100644 index 000000000..958b6c2a8 --- /dev/null +++ b/examples/arazzo/typescript/kubb.config.ts @@ -0,0 +1,22 @@ +import { adapterArazzo } from '@kubb/adapter-arazzo' +import { pluginTs } from '@kubb/plugin-ts' +import { defineConfig } from 'kubb/config' + +export default defineConfig({ + root: '.', + input: './workflows.arazzo.yaml', + output: { + path: './src/gen', + clean: true, + }, + adapter: adapterArazzo(), + plugins: [ + pluginTs({ + output: { + path: 'models', + mode: 'directory', + }, + enum: { type: 'asConst' }, + }), + ], +}) diff --git a/examples/arazzo/typescript/package.json b/examples/arazzo/typescript/package.json new file mode 100644 index 000000000..06f2f9e94 --- /dev/null +++ b/examples/arazzo/typescript/package.json @@ -0,0 +1,35 @@ +{ + "name": "typescript-arazzo-pet-store", + "version": "0.0.0", + "private": true, + "description": "TypeScript Arazzo workflow example", + "license": "MIT", + "author": "stijnvanhulle", + "repository": { + "type": "git", + "url": "https://github.com/kubb-labs/plugins.git", + "directory": "examples/arazzo/typescript" + }, + "sideEffects": false, + "scripts": { + "clean": "node -e \"require('node:fs').rmSync('./dist', {recursive:true,force:true})\"", + "generate": "KUBB_DISABLE_TELEMETRY=1 kubb generate", + "generate:debug": "NODE_OPTIONS='--inspect-brk' KUBB_DISABLE_TELEMETRY=1 kubb generate", + "validate": "kubb validate workflows.arazzo.yaml", + "test": "vitest", + "typecheck": "tsc -p ./tsconfig.json --noEmit --emitDeclarationOnly false" + }, + "dependencies": { + "@kubb/adapter-arazzo": "catalog:", + "@kubb/plugin-ts": "workspace:*", + "kubb": "catalog:" + }, + "devDependencies": { + "typescript": "catalog:" + }, + "engines": { + "node": ">=22", + "pnpm": ">=11.0.0" + }, + "packageManager": "pnpm@11.20.0" +} diff --git a/examples/arazzo/typescript/petStore.yaml b/examples/arazzo/typescript/petStore.yaml new file mode 100644 index 000000000..976f8d2c2 --- /dev/null +++ b/examples/arazzo/typescript/petStore.yaml @@ -0,0 +1,77 @@ +openapi: 3.1.0 +info: + title: Pet Store + version: 1.0.0 +servers: + - url: https://petstore.example.com/v1 +paths: + /user/login: + get: + operationId: loginUser + parameters: + - name: username + in: query + required: true + schema: + type: string + responses: + '200': + description: Logged in + headers: + X-Expires-After: + schema: + type: string + format: date-time + content: + application/json: + schema: + $ref: '#/components/schemas/Session' + /pet/{petId}: + get: + operationId: getPetById + parameters: + - name: petId + in: path + required: true + schema: + type: integer + responses: + '200': + description: A pet + content: + application/json: + schema: + $ref: '#/components/schemas/Pet' +components: + schemas: + Session: + type: object + required: + - token + properties: + token: + type: string + user: + $ref: '#/components/schemas/User' + User: + type: object + properties: + id: + type: integer + name: + type: string + Pet: + type: object + required: + - id + properties: + id: + type: integer + name: + type: string + status: + type: string + enum: + - available + - pending + - sold diff --git a/examples/arazzo/typescript/src/gen/models/Credentials.ts b/examples/arazzo/typescript/src/gen/models/Credentials.ts new file mode 100644 index 000000000..47893907a --- /dev/null +++ b/examples/arazzo/typescript/src/gen/models/Credentials.ts @@ -0,0 +1,9 @@ +/** +* Generated by Kubb (https://kubb.dev/). +* Do not edit manually. +*/ + +export type Credentials = { + username?: string; + password?: string; +}; \ No newline at end of file diff --git a/examples/arazzo/typescript/src/gen/models/LoginAndReadPet.ts b/examples/arazzo/typescript/src/gen/models/LoginAndReadPet.ts new file mode 100644 index 000000000..9f3196641 --- /dev/null +++ b/examples/arazzo/typescript/src/gen/models/LoginAndReadPet.ts @@ -0,0 +1,27 @@ +/** +* Generated by Kubb (https://kubb.dev/). +* Do not edit manually. +*/ + +import type { LoginAndReadPetInputs } from './LoginAndReadPetInputs' +import type { LoginAndReadPetOutputs } from './LoginAndReadPetOutputs' + +export type LoginAndReadPetStatus200 = LoginAndReadPetOutputs; + +export type LoginAndReadPetBody = LoginAndReadPetInputs; + +export type LoginAndReadPetOptions = { + body: LoginAndReadPetBody; + path?: never; + query?: never; + headers?: never; +}; + +export type LoginAndReadPetResponses = { + "200": LoginAndReadPetStatus200; +}; + +/** + * @description Union of all possible responses +*/ +export type LoginAndReadPetResponse = LoginAndReadPetStatus200; \ No newline at end of file diff --git a/examples/arazzo/typescript/src/gen/models/LoginAndReadPetInputs.ts b/examples/arazzo/typescript/src/gen/models/LoginAndReadPetInputs.ts new file mode 100644 index 000000000..fc92c2871 --- /dev/null +++ b/examples/arazzo/typescript/src/gen/models/LoginAndReadPetInputs.ts @@ -0,0 +1,9 @@ +/** +* Generated by Kubb (https://kubb.dev/). +* Do not edit manually. +*/ + +export type LoginAndReadPetInputs = { + username: string; + petId?: number; +}; \ No newline at end of file diff --git a/examples/arazzo/typescript/src/gen/models/LoginAndReadPetOutputs.ts b/examples/arazzo/typescript/src/gen/models/LoginAndReadPetOutputs.ts new file mode 100644 index 000000000..ce69eeaad --- /dev/null +++ b/examples/arazzo/typescript/src/gen/models/LoginAndReadPetOutputs.ts @@ -0,0 +1,20 @@ +/** +* Generated by Kubb (https://kubb.dev/). +* Do not edit manually. +*/ + +import type { Pet } from './Pet' + +export const statusEnum = { + available: "available", + pending: "pending", + sold: "sold" +} as const; + +export type StatusEnumKey = (typeof statusEnum)[keyof typeof statusEnum]; + +export type LoginAndReadPetOutputs = { + token: string; + pet: Pet; + status: StatusEnumKey; +}; \ No newline at end of file diff --git a/examples/arazzo/typescript/src/gen/models/ReadPetOnly.ts b/examples/arazzo/typescript/src/gen/models/ReadPetOnly.ts new file mode 100644 index 000000000..e5cec9049 --- /dev/null +++ b/examples/arazzo/typescript/src/gen/models/ReadPetOnly.ts @@ -0,0 +1,24 @@ +/** +* Generated by Kubb (https://kubb.dev/). +* Do not edit manually. +*/ + +import type { ReadPetOnlyOutputs } from './ReadPetOnlyOutputs' + +export type ReadPetOnlyStatus200 = ReadPetOnlyOutputs; + +export type ReadPetOnlyOptions = { + body?: never; + path?: never; + query?: never; + headers?: never; +}; + +export type ReadPetOnlyResponses = { + "200": ReadPetOnlyStatus200; +}; + +/** + * @description Union of all possible responses +*/ +export type ReadPetOnlyResponse = ReadPetOnlyStatus200; \ No newline at end of file diff --git a/examples/arazzo/typescript/src/gen/models/ReadPetOnlyOutputs.ts b/examples/arazzo/typescript/src/gen/models/ReadPetOnlyOutputs.ts new file mode 100644 index 000000000..805ff542e --- /dev/null +++ b/examples/arazzo/typescript/src/gen/models/ReadPetOnlyOutputs.ts @@ -0,0 +1,8 @@ +/** +* Generated by Kubb (https://kubb.dev/). +* Do not edit manually. +*/ + +export type ReadPetOnlyOutputs = { + petId: number; +}; \ No newline at end of file diff --git a/examples/faker/src/index.ts b/examples/arazzo/typescript/src/index.ts similarity index 100% rename from examples/faker/src/index.ts rename to examples/arazzo/typescript/src/index.ts diff --git a/examples/typescript/tsconfig.json b/examples/arazzo/typescript/tsconfig.json similarity index 100% rename from examples/typescript/tsconfig.json rename to examples/arazzo/typescript/tsconfig.json diff --git a/examples/arazzo/typescript/workflows.arazzo.yaml b/examples/arazzo/typescript/workflows.arazzo.yaml new file mode 100644 index 000000000..ff3590e06 --- /dev/null +++ b/examples/arazzo/typescript/workflows.arazzo.yaml @@ -0,0 +1,89 @@ +arazzo: 1.1.0 +info: + title: Pet Store workflows + version: 1.0.0 + description: Log in, then read a pet. +sourceDescriptions: + - name: petStore + url: ./petStore.yaml + type: openapi +workflows: + - workflowId: loginAndReadPet + summary: Log in and read one pet + parameters: + - name: X-Trace + in: header + value: kubb + - name: username + in: query + value: workflow-default + failureActions: + - name: giveUp + type: end + inputs: + type: object + required: + - username + properties: + username: + type: string + petId: + type: integer + steps: + - stepId: login + operationId: $sourceDescriptions.petStore.loginUser + parameters: + - name: username + in: query + value: $inputs.username + successCriteria: + - condition: $statusCode == 200 + onFailure: + - name: giveUp + type: retry + retryLimit: 3 + - reference: $components.failureActions.notFound + onSuccess: + - name: next + type: goto + stepId: readPet + timeout: 5000 + dependsOn: [] + outputs: + token: $response.body#/token + expires: $response.header.X-Expires-After + - stepId: readPet + operationPath: '{$sourceDescriptions.petStore.url}#/paths/~1pet~1{petId}/get' + parameters: + - name: petId + in: path + value: $inputs.petId + outputs: + pet: $response.body + outputs: + token: $steps.login.outputs.token + pet: $steps.readPet.outputs.pet + status: $steps.readPet.outputs.pet#/status + - workflowId: readPetOnly + dependsOn: + - loginAndReadPet + steps: + - stepId: readPet + operationId: getPetById + outputs: + petId: $response.body#/id + outputs: + petId: $steps.readPet.outputs.petId +components: + failureActions: + notFound: + name: notFound + type: end + inputs: + Credentials: + type: object + properties: + username: + type: string + password: + type: string diff --git a/examples/advanced/.env.example b/examples/openapi/advanced/.env.example similarity index 100% rename from examples/advanced/.env.example rename to examples/openapi/advanced/.env.example diff --git a/examples/advanced/configs/kubb.config.ts b/examples/openapi/advanced/configs/kubb.config.ts similarity index 100% rename from examples/advanced/configs/kubb.config.ts rename to examples/openapi/advanced/configs/kubb.config.ts diff --git a/examples/advanced/package.json b/examples/openapi/advanced/package.json similarity index 97% rename from examples/advanced/package.json rename to examples/openapi/advanced/package.json index 391b894e6..fa2d76a70 100644 --- a/examples/advanced/package.json +++ b/examples/openapi/advanced/package.json @@ -8,7 +8,7 @@ "repository": { "type": "git", "url": "https://github.com/kubb-labs/plugins.git", - "directory": "examples/advanced" + "directory": "examples/openapi/advanced" }, "sideEffects": false, "scripts": { diff --git a/examples/advanced/petStore.yaml b/examples/openapi/advanced/petStore.yaml similarity index 100% rename from examples/advanced/petStore.yaml rename to examples/openapi/advanced/petStore.yaml diff --git a/examples/advanced/src/gen/.kubb/client.ts b/examples/openapi/advanced/src/gen/.kubb/client.ts similarity index 100% rename from examples/advanced/src/gen/.kubb/client.ts rename to examples/openapi/advanced/src/gen/.kubb/client.ts diff --git a/examples/advanced/src/gen/.kubb/serializers.ts b/examples/openapi/advanced/src/gen/.kubb/serializers.ts similarity index 100% rename from examples/advanced/src/gen/.kubb/serializers.ts rename to examples/openapi/advanced/src/gen/.kubb/serializers.ts diff --git a/examples/advanced/src/gen/.kubb/standardSchema.ts b/examples/openapi/advanced/src/gen/.kubb/standardSchema.ts similarity index 100% rename from examples/advanced/src/gen/.kubb/standardSchema.ts rename to examples/openapi/advanced/src/gen/.kubb/standardSchema.ts diff --git a/examples/advanced/src/gen/clients/axios/index.ts b/examples/openapi/advanced/src/gen/clients/axios/index.ts similarity index 100% rename from examples/advanced/src/gen/clients/axios/index.ts rename to examples/openapi/advanced/src/gen/clients/axios/index.ts diff --git a/examples/advanced/src/gen/clients/axios/petService/addFiles.ts b/examples/openapi/advanced/src/gen/clients/axios/petService/addFiles.ts similarity index 100% rename from examples/advanced/src/gen/clients/axios/petService/addFiles.ts rename to examples/openapi/advanced/src/gen/clients/axios/petService/addFiles.ts diff --git a/examples/advanced/src/gen/clients/axios/petService/addPet.ts b/examples/openapi/advanced/src/gen/clients/axios/petService/addPet.ts similarity index 100% rename from examples/advanced/src/gen/clients/axios/petService/addPet.ts rename to examples/openapi/advanced/src/gen/clients/axios/petService/addPet.ts diff --git a/examples/advanced/src/gen/clients/axios/petService/deletePet.ts b/examples/openapi/advanced/src/gen/clients/axios/petService/deletePet.ts similarity index 100% rename from examples/advanced/src/gen/clients/axios/petService/deletePet.ts rename to examples/openapi/advanced/src/gen/clients/axios/petService/deletePet.ts diff --git a/examples/advanced/src/gen/clients/axios/petService/findPetsByStatus.ts b/examples/openapi/advanced/src/gen/clients/axios/petService/findPetsByStatus.ts similarity index 100% rename from examples/advanced/src/gen/clients/axios/petService/findPetsByStatus.ts rename to examples/openapi/advanced/src/gen/clients/axios/petService/findPetsByStatus.ts diff --git a/examples/advanced/src/gen/clients/axios/petService/findPetsByTags.ts b/examples/openapi/advanced/src/gen/clients/axios/petService/findPetsByTags.ts similarity index 100% rename from examples/advanced/src/gen/clients/axios/petService/findPetsByTags.ts rename to examples/openapi/advanced/src/gen/clients/axios/petService/findPetsByTags.ts diff --git a/examples/advanced/src/gen/clients/axios/petService/getPetById.ts b/examples/openapi/advanced/src/gen/clients/axios/petService/getPetById.ts similarity index 100% rename from examples/advanced/src/gen/clients/axios/petService/getPetById.ts rename to examples/openapi/advanced/src/gen/clients/axios/petService/getPetById.ts diff --git a/examples/advanced/src/gen/clients/axios/petService/index.ts b/examples/openapi/advanced/src/gen/clients/axios/petService/index.ts similarity index 100% rename from examples/advanced/src/gen/clients/axios/petService/index.ts rename to examples/openapi/advanced/src/gen/clients/axios/petService/index.ts diff --git a/examples/advanced/src/gen/clients/axios/petService/updatePet.ts b/examples/openapi/advanced/src/gen/clients/axios/petService/updatePet.ts similarity index 100% rename from examples/advanced/src/gen/clients/axios/petService/updatePet.ts rename to examples/openapi/advanced/src/gen/clients/axios/petService/updatePet.ts diff --git a/examples/advanced/src/gen/clients/axios/petService/updatePetWithForm.ts b/examples/openapi/advanced/src/gen/clients/axios/petService/updatePetWithForm.ts similarity index 100% rename from examples/advanced/src/gen/clients/axios/petService/updatePetWithForm.ts rename to examples/openapi/advanced/src/gen/clients/axios/petService/updatePetWithForm.ts diff --git a/examples/advanced/src/gen/clients/axios/petService/uploadFile.ts b/examples/openapi/advanced/src/gen/clients/axios/petService/uploadFile.ts similarity index 100% rename from examples/advanced/src/gen/clients/axios/petService/uploadFile.ts rename to examples/openapi/advanced/src/gen/clients/axios/petService/uploadFile.ts diff --git a/examples/advanced/src/gen/clients/axios/petsService/createPets.ts b/examples/openapi/advanced/src/gen/clients/axios/petsService/createPets.ts similarity index 100% rename from examples/advanced/src/gen/clients/axios/petsService/createPets.ts rename to examples/openapi/advanced/src/gen/clients/axios/petsService/createPets.ts diff --git a/examples/advanced/src/gen/clients/axios/petsService/index.ts b/examples/openapi/advanced/src/gen/clients/axios/petsService/index.ts similarity index 100% rename from examples/advanced/src/gen/clients/axios/petsService/index.ts rename to examples/openapi/advanced/src/gen/clients/axios/petsService/index.ts diff --git a/examples/advanced/src/gen/clients/axios/streamService/index.ts b/examples/openapi/advanced/src/gen/clients/axios/streamService/index.ts similarity index 100% rename from examples/advanced/src/gen/clients/axios/streamService/index.ts rename to examples/openapi/advanced/src/gen/clients/axios/streamService/index.ts diff --git a/examples/advanced/src/gen/clients/axios/streamService/streamPetEvents.ts b/examples/openapi/advanced/src/gen/clients/axios/streamService/streamPetEvents.ts similarity index 100% rename from examples/advanced/src/gen/clients/axios/streamService/streamPetEvents.ts rename to examples/openapi/advanced/src/gen/clients/axios/streamService/streamPetEvents.ts diff --git a/examples/advanced/src/gen/clients/hooks/index.ts b/examples/openapi/advanced/src/gen/clients/hooks/index.ts similarity index 100% rename from examples/advanced/src/gen/clients/hooks/index.ts rename to examples/openapi/advanced/src/gen/clients/hooks/index.ts diff --git a/examples/advanced/src/gen/clients/hooks/pet/index.ts b/examples/openapi/advanced/src/gen/clients/hooks/pet/index.ts similarity index 100% rename from examples/advanced/src/gen/clients/hooks/pet/index.ts rename to examples/openapi/advanced/src/gen/clients/hooks/pet/index.ts diff --git a/examples/advanced/src/gen/clients/hooks/pet/useAddFiles.ts b/examples/openapi/advanced/src/gen/clients/hooks/pet/useAddFiles.ts similarity index 100% rename from examples/advanced/src/gen/clients/hooks/pet/useAddFiles.ts rename to examples/openapi/advanced/src/gen/clients/hooks/pet/useAddFiles.ts diff --git a/examples/advanced/src/gen/clients/hooks/pet/useAddPet.ts b/examples/openapi/advanced/src/gen/clients/hooks/pet/useAddPet.ts similarity index 100% rename from examples/advanced/src/gen/clients/hooks/pet/useAddPet.ts rename to examples/openapi/advanced/src/gen/clients/hooks/pet/useAddPet.ts diff --git a/examples/advanced/src/gen/clients/hooks/pet/useDeletePet.ts b/examples/openapi/advanced/src/gen/clients/hooks/pet/useDeletePet.ts similarity index 100% rename from examples/advanced/src/gen/clients/hooks/pet/useDeletePet.ts rename to examples/openapi/advanced/src/gen/clients/hooks/pet/useDeletePet.ts diff --git a/examples/advanced/src/gen/clients/hooks/pet/useFindPetsByStatus.ts b/examples/openapi/advanced/src/gen/clients/hooks/pet/useFindPetsByStatus.ts similarity index 100% rename from examples/advanced/src/gen/clients/hooks/pet/useFindPetsByStatus.ts rename to examples/openapi/advanced/src/gen/clients/hooks/pet/useFindPetsByStatus.ts diff --git a/examples/advanced/src/gen/clients/hooks/pet/useFindPetsByTags.ts b/examples/openapi/advanced/src/gen/clients/hooks/pet/useFindPetsByTags.ts similarity index 100% rename from examples/advanced/src/gen/clients/hooks/pet/useFindPetsByTags.ts rename to examples/openapi/advanced/src/gen/clients/hooks/pet/useFindPetsByTags.ts diff --git a/examples/advanced/src/gen/clients/hooks/pet/useFindPetsByTagsInfinite.ts b/examples/openapi/advanced/src/gen/clients/hooks/pet/useFindPetsByTagsInfinite.ts similarity index 100% rename from examples/advanced/src/gen/clients/hooks/pet/useFindPetsByTagsInfinite.ts rename to examples/openapi/advanced/src/gen/clients/hooks/pet/useFindPetsByTagsInfinite.ts diff --git a/examples/advanced/src/gen/clients/hooks/pet/useGetPetById.ts b/examples/openapi/advanced/src/gen/clients/hooks/pet/useGetPetById.ts similarity index 100% rename from examples/advanced/src/gen/clients/hooks/pet/useGetPetById.ts rename to examples/openapi/advanced/src/gen/clients/hooks/pet/useGetPetById.ts diff --git a/examples/advanced/src/gen/clients/hooks/pet/useUpdatePet.ts b/examples/openapi/advanced/src/gen/clients/hooks/pet/useUpdatePet.ts similarity index 100% rename from examples/advanced/src/gen/clients/hooks/pet/useUpdatePet.ts rename to examples/openapi/advanced/src/gen/clients/hooks/pet/useUpdatePet.ts diff --git a/examples/advanced/src/gen/clients/hooks/pet/useUpdatePetWithForm.ts b/examples/openapi/advanced/src/gen/clients/hooks/pet/useUpdatePetWithForm.ts similarity index 100% rename from examples/advanced/src/gen/clients/hooks/pet/useUpdatePetWithForm.ts rename to examples/openapi/advanced/src/gen/clients/hooks/pet/useUpdatePetWithForm.ts diff --git a/examples/advanced/src/gen/clients/hooks/pet/useUploadFile.ts b/examples/openapi/advanced/src/gen/clients/hooks/pet/useUploadFile.ts similarity index 100% rename from examples/advanced/src/gen/clients/hooks/pet/useUploadFile.ts rename to examples/openapi/advanced/src/gen/clients/hooks/pet/useUploadFile.ts diff --git a/examples/advanced/src/gen/clients/hooks/pets/index.ts b/examples/openapi/advanced/src/gen/clients/hooks/pets/index.ts similarity index 100% rename from examples/advanced/src/gen/clients/hooks/pets/index.ts rename to examples/openapi/advanced/src/gen/clients/hooks/pets/index.ts diff --git a/examples/advanced/src/gen/clients/hooks/pets/useCreatePets.ts b/examples/openapi/advanced/src/gen/clients/hooks/pets/useCreatePets.ts similarity index 100% rename from examples/advanced/src/gen/clients/hooks/pets/useCreatePets.ts rename to examples/openapi/advanced/src/gen/clients/hooks/pets/useCreatePets.ts diff --git a/examples/advanced/src/gen/cypress/pet/addFiles.ts b/examples/openapi/advanced/src/gen/cypress/pet/addFiles.ts similarity index 100% rename from examples/advanced/src/gen/cypress/pet/addFiles.ts rename to examples/openapi/advanced/src/gen/cypress/pet/addFiles.ts diff --git a/examples/advanced/src/gen/cypress/pet/addPet.ts b/examples/openapi/advanced/src/gen/cypress/pet/addPet.ts similarity index 100% rename from examples/advanced/src/gen/cypress/pet/addPet.ts rename to examples/openapi/advanced/src/gen/cypress/pet/addPet.ts diff --git a/examples/advanced/src/gen/cypress/pet/deletePet.ts b/examples/openapi/advanced/src/gen/cypress/pet/deletePet.ts similarity index 100% rename from examples/advanced/src/gen/cypress/pet/deletePet.ts rename to examples/openapi/advanced/src/gen/cypress/pet/deletePet.ts diff --git a/examples/advanced/src/gen/cypress/pet/findPetsByStatus.ts b/examples/openapi/advanced/src/gen/cypress/pet/findPetsByStatus.ts similarity index 100% rename from examples/advanced/src/gen/cypress/pet/findPetsByStatus.ts rename to examples/openapi/advanced/src/gen/cypress/pet/findPetsByStatus.ts diff --git a/examples/advanced/src/gen/cypress/pet/findPetsByTags.ts b/examples/openapi/advanced/src/gen/cypress/pet/findPetsByTags.ts similarity index 100% rename from examples/advanced/src/gen/cypress/pet/findPetsByTags.ts rename to examples/openapi/advanced/src/gen/cypress/pet/findPetsByTags.ts diff --git a/examples/advanced/src/gen/cypress/pet/getPetById.ts b/examples/openapi/advanced/src/gen/cypress/pet/getPetById.ts similarity index 100% rename from examples/advanced/src/gen/cypress/pet/getPetById.ts rename to examples/openapi/advanced/src/gen/cypress/pet/getPetById.ts diff --git a/examples/advanced/src/gen/cypress/pet/updatePet.ts b/examples/openapi/advanced/src/gen/cypress/pet/updatePet.ts similarity index 100% rename from examples/advanced/src/gen/cypress/pet/updatePet.ts rename to examples/openapi/advanced/src/gen/cypress/pet/updatePet.ts diff --git a/examples/advanced/src/gen/cypress/pet/updatePetWithForm.ts b/examples/openapi/advanced/src/gen/cypress/pet/updatePetWithForm.ts similarity index 100% rename from examples/advanced/src/gen/cypress/pet/updatePetWithForm.ts rename to examples/openapi/advanced/src/gen/cypress/pet/updatePetWithForm.ts diff --git a/examples/advanced/src/gen/cypress/pet/uploadFile.ts b/examples/openapi/advanced/src/gen/cypress/pet/uploadFile.ts similarity index 100% rename from examples/advanced/src/gen/cypress/pet/uploadFile.ts rename to examples/openapi/advanced/src/gen/cypress/pet/uploadFile.ts diff --git a/examples/advanced/src/gen/cypress/pets/createPets.ts b/examples/openapi/advanced/src/gen/cypress/pets/createPets.ts similarity index 100% rename from examples/advanced/src/gen/cypress/pets/createPets.ts rename to examples/openapi/advanced/src/gen/cypress/pets/createPets.ts diff --git a/examples/advanced/src/gen/cypress/store/deleteOrder.ts b/examples/openapi/advanced/src/gen/cypress/store/deleteOrder.ts similarity index 100% rename from examples/advanced/src/gen/cypress/store/deleteOrder.ts rename to examples/openapi/advanced/src/gen/cypress/store/deleteOrder.ts diff --git a/examples/advanced/src/gen/cypress/store/getInventory.ts b/examples/openapi/advanced/src/gen/cypress/store/getInventory.ts similarity index 100% rename from examples/advanced/src/gen/cypress/store/getInventory.ts rename to examples/openapi/advanced/src/gen/cypress/store/getInventory.ts diff --git a/examples/advanced/src/gen/cypress/store/getOrderById.ts b/examples/openapi/advanced/src/gen/cypress/store/getOrderById.ts similarity index 100% rename from examples/advanced/src/gen/cypress/store/getOrderById.ts rename to examples/openapi/advanced/src/gen/cypress/store/getOrderById.ts diff --git a/examples/advanced/src/gen/cypress/store/placeOrder.ts b/examples/openapi/advanced/src/gen/cypress/store/placeOrder.ts similarity index 100% rename from examples/advanced/src/gen/cypress/store/placeOrder.ts rename to examples/openapi/advanced/src/gen/cypress/store/placeOrder.ts diff --git a/examples/advanced/src/gen/cypress/store/placeOrderPatch.ts b/examples/openapi/advanced/src/gen/cypress/store/placeOrderPatch.ts similarity index 100% rename from examples/advanced/src/gen/cypress/store/placeOrderPatch.ts rename to examples/openapi/advanced/src/gen/cypress/store/placeOrderPatch.ts diff --git a/examples/advanced/src/gen/cypress/stream/streamPetEvents.ts b/examples/openapi/advanced/src/gen/cypress/stream/streamPetEvents.ts similarity index 100% rename from examples/advanced/src/gen/cypress/stream/streamPetEvents.ts rename to examples/openapi/advanced/src/gen/cypress/stream/streamPetEvents.ts diff --git a/examples/advanced/src/gen/docs.html b/examples/openapi/advanced/src/gen/docs.html similarity index 100% rename from examples/advanced/src/gen/docs.html rename to examples/openapi/advanced/src/gen/docs.html diff --git a/examples/advanced/src/gen/index.ts b/examples/openapi/advanced/src/gen/index.ts similarity index 100% rename from examples/advanced/src/gen/index.ts rename to examples/openapi/advanced/src/gen/index.ts diff --git a/examples/advanced/src/gen/mcp/pet/addFiles.ts b/examples/openapi/advanced/src/gen/mcp/pet/addFiles.ts similarity index 100% rename from examples/advanced/src/gen/mcp/pet/addFiles.ts rename to examples/openapi/advanced/src/gen/mcp/pet/addFiles.ts diff --git a/examples/advanced/src/gen/mcp/pet/addPet.ts b/examples/openapi/advanced/src/gen/mcp/pet/addPet.ts similarity index 100% rename from examples/advanced/src/gen/mcp/pet/addPet.ts rename to examples/openapi/advanced/src/gen/mcp/pet/addPet.ts diff --git a/examples/advanced/src/gen/mcp/pet/deletePet.ts b/examples/openapi/advanced/src/gen/mcp/pet/deletePet.ts similarity index 100% rename from examples/advanced/src/gen/mcp/pet/deletePet.ts rename to examples/openapi/advanced/src/gen/mcp/pet/deletePet.ts diff --git a/examples/advanced/src/gen/mcp/pet/findPetsByStatus.ts b/examples/openapi/advanced/src/gen/mcp/pet/findPetsByStatus.ts similarity index 100% rename from examples/advanced/src/gen/mcp/pet/findPetsByStatus.ts rename to examples/openapi/advanced/src/gen/mcp/pet/findPetsByStatus.ts diff --git a/examples/advanced/src/gen/mcp/pet/findPetsByTags.ts b/examples/openapi/advanced/src/gen/mcp/pet/findPetsByTags.ts similarity index 100% rename from examples/advanced/src/gen/mcp/pet/findPetsByTags.ts rename to examples/openapi/advanced/src/gen/mcp/pet/findPetsByTags.ts diff --git a/examples/advanced/src/gen/mcp/pet/getPetById.ts b/examples/openapi/advanced/src/gen/mcp/pet/getPetById.ts similarity index 100% rename from examples/advanced/src/gen/mcp/pet/getPetById.ts rename to examples/openapi/advanced/src/gen/mcp/pet/getPetById.ts diff --git a/examples/advanced/src/gen/mcp/pet/updatePet.ts b/examples/openapi/advanced/src/gen/mcp/pet/updatePet.ts similarity index 100% rename from examples/advanced/src/gen/mcp/pet/updatePet.ts rename to examples/openapi/advanced/src/gen/mcp/pet/updatePet.ts diff --git a/examples/advanced/src/gen/mcp/pet/updatePetWithForm.ts b/examples/openapi/advanced/src/gen/mcp/pet/updatePetWithForm.ts similarity index 100% rename from examples/advanced/src/gen/mcp/pet/updatePetWithForm.ts rename to examples/openapi/advanced/src/gen/mcp/pet/updatePetWithForm.ts diff --git a/examples/advanced/src/gen/mcp/pet/uploadFile.ts b/examples/openapi/advanced/src/gen/mcp/pet/uploadFile.ts similarity index 100% rename from examples/advanced/src/gen/mcp/pet/uploadFile.ts rename to examples/openapi/advanced/src/gen/mcp/pet/uploadFile.ts diff --git a/examples/advanced/src/gen/mcp/pets/createPets.ts b/examples/openapi/advanced/src/gen/mcp/pets/createPets.ts similarity index 100% rename from examples/advanced/src/gen/mcp/pets/createPets.ts rename to examples/openapi/advanced/src/gen/mcp/pets/createPets.ts diff --git a/examples/advanced/src/gen/mcp/server.ts b/examples/openapi/advanced/src/gen/mcp/server.ts similarity index 100% rename from examples/advanced/src/gen/mcp/server.ts rename to examples/openapi/advanced/src/gen/mcp/server.ts diff --git a/examples/advanced/src/gen/mocks/createAddPetRequestFaker.ts b/examples/openapi/advanced/src/gen/mocks/createAddPetRequestFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/createAddPetRequestFaker.ts rename to examples/openapi/advanced/src/gen/mocks/createAddPetRequestFaker.ts diff --git a/examples/advanced/src/gen/mocks/createAddPetRequestStatusEnumFaker.ts b/examples/openapi/advanced/src/gen/mocks/createAddPetRequestStatusEnumFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/createAddPetRequestStatusEnumFaker.ts rename to examples/openapi/advanced/src/gen/mocks/createAddPetRequestStatusEnumFaker.ts diff --git a/examples/advanced/src/gen/mocks/createAnimalFaker.ts b/examples/openapi/advanced/src/gen/mocks/createAnimalFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/createAnimalFaker.ts rename to examples/openapi/advanced/src/gen/mocks/createAnimalFaker.ts diff --git a/examples/advanced/src/gen/mocks/createAnimalTypeEnumFaker.ts b/examples/openapi/advanced/src/gen/mocks/createAnimalTypeEnumFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/createAnimalTypeEnumFaker.ts rename to examples/openapi/advanced/src/gen/mocks/createAnimalTypeEnumFaker.ts diff --git a/examples/advanced/src/gen/mocks/createApiResponseFaker.ts b/examples/openapi/advanced/src/gen/mocks/createApiResponseFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/createApiResponseFaker.ts rename to examples/openapi/advanced/src/gen/mocks/createApiResponseFaker.ts diff --git a/examples/advanced/src/gen/mocks/createCatFaker.ts b/examples/openapi/advanced/src/gen/mocks/createCatFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/createCatFaker.ts rename to examples/openapi/advanced/src/gen/mocks/createCatFaker.ts diff --git a/examples/advanced/src/gen/mocks/createCategoryFaker.ts b/examples/openapi/advanced/src/gen/mocks/createCategoryFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/createCategoryFaker.ts rename to examples/openapi/advanced/src/gen/mocks/createCategoryFaker.ts diff --git a/examples/advanced/src/gen/mocks/createCreatePetsBoolParamFaker.ts b/examples/openapi/advanced/src/gen/mocks/createCreatePetsBoolParamFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/createCreatePetsBoolParamFaker.ts rename to examples/openapi/advanced/src/gen/mocks/createCreatePetsBoolParamFaker.ts diff --git a/examples/advanced/src/gen/mocks/createCreatePetsXEXAMPLEFaker.ts b/examples/openapi/advanced/src/gen/mocks/createCreatePetsXEXAMPLEFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/createCreatePetsXEXAMPLEFaker.ts rename to examples/openapi/advanced/src/gen/mocks/createCreatePetsXEXAMPLEFaker.ts diff --git a/examples/advanced/src/gen/mocks/createDogFaker.ts b/examples/openapi/advanced/src/gen/mocks/createDogFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/createDogFaker.ts rename to examples/openapi/advanced/src/gen/mocks/createDogFaker.ts diff --git a/examples/advanced/src/gen/mocks/createFindPetsByTagsXEXAMPLEFaker.ts b/examples/openapi/advanced/src/gen/mocks/createFindPetsByTagsXEXAMPLEFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/createFindPetsByTagsXEXAMPLEFaker.ts rename to examples/openapi/advanced/src/gen/mocks/createFindPetsByTagsXEXAMPLEFaker.ts diff --git a/examples/advanced/src/gen/mocks/createImageFaker.ts b/examples/openapi/advanced/src/gen/mocks/createImageFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/createImageFaker.ts rename to examples/openapi/advanced/src/gen/mocks/createImageFaker.ts diff --git a/examples/advanced/src/gen/mocks/createOrderFaker.ts b/examples/openapi/advanced/src/gen/mocks/createOrderFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/createOrderFaker.ts rename to examples/openapi/advanced/src/gen/mocks/createOrderFaker.ts diff --git a/examples/advanced/src/gen/mocks/createOrderHttpStatusEnumFaker.ts b/examples/openapi/advanced/src/gen/mocks/createOrderHttpStatusEnumFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/createOrderHttpStatusEnumFaker.ts rename to examples/openapi/advanced/src/gen/mocks/createOrderHttpStatusEnumFaker.ts diff --git a/examples/advanced/src/gen/mocks/createOrderOrderTypeEnumFaker.ts b/examples/openapi/advanced/src/gen/mocks/createOrderOrderTypeEnumFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/createOrderOrderTypeEnumFaker.ts rename to examples/openapi/advanced/src/gen/mocks/createOrderOrderTypeEnumFaker.ts diff --git a/examples/advanced/src/gen/mocks/createOrderParamsStatusEnumFaker.ts b/examples/openapi/advanced/src/gen/mocks/createOrderParamsStatusEnumFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/createOrderParamsStatusEnumFaker.ts rename to examples/openapi/advanced/src/gen/mocks/createOrderParamsStatusEnumFaker.ts diff --git a/examples/advanced/src/gen/mocks/createOrderStatusEnumFaker.ts b/examples/openapi/advanced/src/gen/mocks/createOrderStatusEnumFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/createOrderStatusEnumFaker.ts rename to examples/openapi/advanced/src/gen/mocks/createOrderStatusEnumFaker.ts diff --git a/examples/advanced/src/gen/mocks/createPetEventFaker.ts b/examples/openapi/advanced/src/gen/mocks/createPetEventFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/createPetEventFaker.ts rename to examples/openapi/advanced/src/gen/mocks/createPetEventFaker.ts diff --git a/examples/advanced/src/gen/mocks/createPetEventTypeEnumFaker.ts b/examples/openapi/advanced/src/gen/mocks/createPetEventTypeEnumFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/createPetEventTypeEnumFaker.ts rename to examples/openapi/advanced/src/gen/mocks/createPetEventTypeEnumFaker.ts diff --git a/examples/advanced/src/gen/mocks/createPetFaker.ts b/examples/openapi/advanced/src/gen/mocks/createPetFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/createPetFaker.ts rename to examples/openapi/advanced/src/gen/mocks/createPetFaker.ts diff --git a/examples/advanced/src/gen/mocks/createPetNotFoundFaker.ts b/examples/openapi/advanced/src/gen/mocks/createPetNotFoundFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/createPetNotFoundFaker.ts rename to examples/openapi/advanced/src/gen/mocks/createPetNotFoundFaker.ts diff --git a/examples/advanced/src/gen/mocks/createPetStatusEnumFaker.ts b/examples/openapi/advanced/src/gen/mocks/createPetStatusEnumFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/createPetStatusEnumFaker.ts rename to examples/openapi/advanced/src/gen/mocks/createPetStatusEnumFaker.ts diff --git a/examples/advanced/src/gen/mocks/createTagTagFaker.ts b/examples/openapi/advanced/src/gen/mocks/createTagTagFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/createTagTagFaker.ts rename to examples/openapi/advanced/src/gen/mocks/createTagTagFaker.ts diff --git a/examples/advanced/src/gen/mocks/index.ts b/examples/openapi/advanced/src/gen/mocks/index.ts similarity index 100% rename from examples/advanced/src/gen/mocks/index.ts rename to examples/openapi/advanced/src/gen/mocks/index.ts diff --git a/examples/advanced/src/gen/mocks/pet/createAddFilesFaker.ts b/examples/openapi/advanced/src/gen/mocks/pet/createAddFilesFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/pet/createAddFilesFaker.ts rename to examples/openapi/advanced/src/gen/mocks/pet/createAddFilesFaker.ts diff --git a/examples/advanced/src/gen/mocks/pet/createAddPetFaker.ts b/examples/openapi/advanced/src/gen/mocks/pet/createAddPetFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/pet/createAddPetFaker.ts rename to examples/openapi/advanced/src/gen/mocks/pet/createAddPetFaker.ts diff --git a/examples/advanced/src/gen/mocks/pet/createDeletePetFaker.ts b/examples/openapi/advanced/src/gen/mocks/pet/createDeletePetFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/pet/createDeletePetFaker.ts rename to examples/openapi/advanced/src/gen/mocks/pet/createDeletePetFaker.ts diff --git a/examples/advanced/src/gen/mocks/pet/createFindPetsByStatusFaker.ts b/examples/openapi/advanced/src/gen/mocks/pet/createFindPetsByStatusFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/pet/createFindPetsByStatusFaker.ts rename to examples/openapi/advanced/src/gen/mocks/pet/createFindPetsByStatusFaker.ts diff --git a/examples/advanced/src/gen/mocks/pet/createFindPetsByTagsFaker.ts b/examples/openapi/advanced/src/gen/mocks/pet/createFindPetsByTagsFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/pet/createFindPetsByTagsFaker.ts rename to examples/openapi/advanced/src/gen/mocks/pet/createFindPetsByTagsFaker.ts diff --git a/examples/advanced/src/gen/mocks/pet/createGetPetByIdFaker.ts b/examples/openapi/advanced/src/gen/mocks/pet/createGetPetByIdFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/pet/createGetPetByIdFaker.ts rename to examples/openapi/advanced/src/gen/mocks/pet/createGetPetByIdFaker.ts diff --git a/examples/advanced/src/gen/mocks/pet/createUpdatePetFaker.ts b/examples/openapi/advanced/src/gen/mocks/pet/createUpdatePetFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/pet/createUpdatePetFaker.ts rename to examples/openapi/advanced/src/gen/mocks/pet/createUpdatePetFaker.ts diff --git a/examples/advanced/src/gen/mocks/pet/createUpdatePetWithFormFaker.ts b/examples/openapi/advanced/src/gen/mocks/pet/createUpdatePetWithFormFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/pet/createUpdatePetWithFormFaker.ts rename to examples/openapi/advanced/src/gen/mocks/pet/createUpdatePetWithFormFaker.ts diff --git a/examples/advanced/src/gen/mocks/pet/createUploadFileFaker.ts b/examples/openapi/advanced/src/gen/mocks/pet/createUploadFileFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/pet/createUploadFileFaker.ts rename to examples/openapi/advanced/src/gen/mocks/pet/createUploadFileFaker.ts diff --git a/examples/advanced/src/gen/mocks/pet/index.ts b/examples/openapi/advanced/src/gen/mocks/pet/index.ts similarity index 100% rename from examples/advanced/src/gen/mocks/pet/index.ts rename to examples/openapi/advanced/src/gen/mocks/pet/index.ts diff --git a/examples/advanced/src/gen/mocks/pets/createCreatePetsFaker.ts b/examples/openapi/advanced/src/gen/mocks/pets/createCreatePetsFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/pets/createCreatePetsFaker.ts rename to examples/openapi/advanced/src/gen/mocks/pets/createCreatePetsFaker.ts diff --git a/examples/advanced/src/gen/mocks/pets/index.ts b/examples/openapi/advanced/src/gen/mocks/pets/index.ts similarity index 100% rename from examples/advanced/src/gen/mocks/pets/index.ts rename to examples/openapi/advanced/src/gen/mocks/pets/index.ts diff --git a/examples/advanced/src/gen/mocks/stream/createStreamPetEventsFaker.ts b/examples/openapi/advanced/src/gen/mocks/stream/createStreamPetEventsFaker.ts similarity index 100% rename from examples/advanced/src/gen/mocks/stream/createStreamPetEventsFaker.ts rename to examples/openapi/advanced/src/gen/mocks/stream/createStreamPetEventsFaker.ts diff --git a/examples/advanced/src/gen/mocks/stream/index.ts b/examples/openapi/advanced/src/gen/mocks/stream/index.ts similarity index 100% rename from examples/advanced/src/gen/mocks/stream/index.ts rename to examples/openapi/advanced/src/gen/mocks/stream/index.ts diff --git a/examples/advanced/src/gen/models/ts/AddPetRequest.ts b/examples/openapi/advanced/src/gen/models/ts/AddPetRequest.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/AddPetRequest.ts rename to examples/openapi/advanced/src/gen/models/ts/AddPetRequest.ts diff --git a/examples/advanced/src/gen/models/ts/AddPetRequestStatusEnum.ts b/examples/openapi/advanced/src/gen/models/ts/AddPetRequestStatusEnum.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/AddPetRequestStatusEnum.ts rename to examples/openapi/advanced/src/gen/models/ts/AddPetRequestStatusEnum.ts diff --git a/examples/advanced/src/gen/models/ts/Animal.ts b/examples/openapi/advanced/src/gen/models/ts/Animal.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/Animal.ts rename to examples/openapi/advanced/src/gen/models/ts/Animal.ts diff --git a/examples/advanced/src/gen/models/ts/AnimalTypeEnum.ts b/examples/openapi/advanced/src/gen/models/ts/AnimalTypeEnum.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/AnimalTypeEnum.ts rename to examples/openapi/advanced/src/gen/models/ts/AnimalTypeEnum.ts diff --git a/examples/advanced/src/gen/models/ts/ApiResponse.ts b/examples/openapi/advanced/src/gen/models/ts/ApiResponse.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/ApiResponse.ts rename to examples/openapi/advanced/src/gen/models/ts/ApiResponse.ts diff --git a/examples/advanced/src/gen/models/ts/Cat.ts b/examples/openapi/advanced/src/gen/models/ts/Cat.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/Cat.ts rename to examples/openapi/advanced/src/gen/models/ts/Cat.ts diff --git a/examples/advanced/src/gen/models/ts/Category.ts b/examples/openapi/advanced/src/gen/models/ts/Category.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/Category.ts rename to examples/openapi/advanced/src/gen/models/ts/Category.ts diff --git a/examples/advanced/src/gen/models/ts/CreatePetsBoolParam.ts b/examples/openapi/advanced/src/gen/models/ts/CreatePetsBoolParam.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/CreatePetsBoolParam.ts rename to examples/openapi/advanced/src/gen/models/ts/CreatePetsBoolParam.ts diff --git a/examples/advanced/src/gen/models/ts/CreatePetsXEXAMPLE.ts b/examples/openapi/advanced/src/gen/models/ts/CreatePetsXEXAMPLE.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/CreatePetsXEXAMPLE.ts rename to examples/openapi/advanced/src/gen/models/ts/CreatePetsXEXAMPLE.ts diff --git a/examples/advanced/src/gen/models/ts/Dog.ts b/examples/openapi/advanced/src/gen/models/ts/Dog.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/Dog.ts rename to examples/openapi/advanced/src/gen/models/ts/Dog.ts diff --git a/examples/advanced/src/gen/models/ts/FindPetsByTagsXEXAMPLE.ts b/examples/openapi/advanced/src/gen/models/ts/FindPetsByTagsXEXAMPLE.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/FindPetsByTagsXEXAMPLE.ts rename to examples/openapi/advanced/src/gen/models/ts/FindPetsByTagsXEXAMPLE.ts diff --git a/examples/advanced/src/gen/models/ts/Image.ts b/examples/openapi/advanced/src/gen/models/ts/Image.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/Image.ts rename to examples/openapi/advanced/src/gen/models/ts/Image.ts diff --git a/examples/advanced/src/gen/models/ts/Order.ts b/examples/openapi/advanced/src/gen/models/ts/Order.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/Order.ts rename to examples/openapi/advanced/src/gen/models/ts/Order.ts diff --git a/examples/advanced/src/gen/models/ts/OrderHttpStatusEnum.ts b/examples/openapi/advanced/src/gen/models/ts/OrderHttpStatusEnum.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/OrderHttpStatusEnum.ts rename to examples/openapi/advanced/src/gen/models/ts/OrderHttpStatusEnum.ts diff --git a/examples/advanced/src/gen/models/ts/OrderOrderTypeEnum.ts b/examples/openapi/advanced/src/gen/models/ts/OrderOrderTypeEnum.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/OrderOrderTypeEnum.ts rename to examples/openapi/advanced/src/gen/models/ts/OrderOrderTypeEnum.ts diff --git a/examples/advanced/src/gen/models/ts/OrderParamsStatusEnum.ts b/examples/openapi/advanced/src/gen/models/ts/OrderParamsStatusEnum.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/OrderParamsStatusEnum.ts rename to examples/openapi/advanced/src/gen/models/ts/OrderParamsStatusEnum.ts diff --git a/examples/advanced/src/gen/models/ts/OrderStatusEnum.ts b/examples/openapi/advanced/src/gen/models/ts/OrderStatusEnum.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/OrderStatusEnum.ts rename to examples/openapi/advanced/src/gen/models/ts/OrderStatusEnum.ts diff --git a/examples/advanced/src/gen/models/ts/Pet.ts b/examples/openapi/advanced/src/gen/models/ts/Pet.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/Pet.ts rename to examples/openapi/advanced/src/gen/models/ts/Pet.ts diff --git a/examples/advanced/src/gen/models/ts/PetEvent.ts b/examples/openapi/advanced/src/gen/models/ts/PetEvent.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/PetEvent.ts rename to examples/openapi/advanced/src/gen/models/ts/PetEvent.ts diff --git a/examples/advanced/src/gen/models/ts/PetEventTypeEnum.ts b/examples/openapi/advanced/src/gen/models/ts/PetEventTypeEnum.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/PetEventTypeEnum.ts rename to examples/openapi/advanced/src/gen/models/ts/PetEventTypeEnum.ts diff --git a/examples/advanced/src/gen/models/ts/PetNotFound.ts b/examples/openapi/advanced/src/gen/models/ts/PetNotFound.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/PetNotFound.ts rename to examples/openapi/advanced/src/gen/models/ts/PetNotFound.ts diff --git a/examples/advanced/src/gen/models/ts/PetStatusEnum.ts b/examples/openapi/advanced/src/gen/models/ts/PetStatusEnum.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/PetStatusEnum.ts rename to examples/openapi/advanced/src/gen/models/ts/PetStatusEnum.ts diff --git a/examples/advanced/src/gen/models/ts/index.ts b/examples/openapi/advanced/src/gen/models/ts/index.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/index.ts rename to examples/openapi/advanced/src/gen/models/ts/index.ts diff --git a/examples/advanced/src/gen/models/ts/pet/AddFiles.ts b/examples/openapi/advanced/src/gen/models/ts/pet/AddFiles.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/pet/AddFiles.ts rename to examples/openapi/advanced/src/gen/models/ts/pet/AddFiles.ts diff --git a/examples/advanced/src/gen/models/ts/pet/AddPet.ts b/examples/openapi/advanced/src/gen/models/ts/pet/AddPet.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/pet/AddPet.ts rename to examples/openapi/advanced/src/gen/models/ts/pet/AddPet.ts diff --git a/examples/advanced/src/gen/models/ts/pet/DeletePet.ts b/examples/openapi/advanced/src/gen/models/ts/pet/DeletePet.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/pet/DeletePet.ts rename to examples/openapi/advanced/src/gen/models/ts/pet/DeletePet.ts diff --git a/examples/advanced/src/gen/models/ts/pet/FindPetsByStatus.ts b/examples/openapi/advanced/src/gen/models/ts/pet/FindPetsByStatus.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/pet/FindPetsByStatus.ts rename to examples/openapi/advanced/src/gen/models/ts/pet/FindPetsByStatus.ts diff --git a/examples/advanced/src/gen/models/ts/pet/FindPetsByTags.ts b/examples/openapi/advanced/src/gen/models/ts/pet/FindPetsByTags.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/pet/FindPetsByTags.ts rename to examples/openapi/advanced/src/gen/models/ts/pet/FindPetsByTags.ts diff --git a/examples/advanced/src/gen/models/ts/pet/GetPetById.ts b/examples/openapi/advanced/src/gen/models/ts/pet/GetPetById.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/pet/GetPetById.ts rename to examples/openapi/advanced/src/gen/models/ts/pet/GetPetById.ts diff --git a/examples/advanced/src/gen/models/ts/pet/UpdatePet.ts b/examples/openapi/advanced/src/gen/models/ts/pet/UpdatePet.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/pet/UpdatePet.ts rename to examples/openapi/advanced/src/gen/models/ts/pet/UpdatePet.ts diff --git a/examples/advanced/src/gen/models/ts/pet/UpdatePetWithForm.ts b/examples/openapi/advanced/src/gen/models/ts/pet/UpdatePetWithForm.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/pet/UpdatePetWithForm.ts rename to examples/openapi/advanced/src/gen/models/ts/pet/UpdatePetWithForm.ts diff --git a/examples/advanced/src/gen/models/ts/pet/UploadFile.ts b/examples/openapi/advanced/src/gen/models/ts/pet/UploadFile.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/pet/UploadFile.ts rename to examples/openapi/advanced/src/gen/models/ts/pet/UploadFile.ts diff --git a/examples/advanced/src/gen/models/ts/pet/index.ts b/examples/openapi/advanced/src/gen/models/ts/pet/index.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/pet/index.ts rename to examples/openapi/advanced/src/gen/models/ts/pet/index.ts diff --git a/examples/advanced/src/gen/models/ts/pets/CreatePets.ts b/examples/openapi/advanced/src/gen/models/ts/pets/CreatePets.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/pets/CreatePets.ts rename to examples/openapi/advanced/src/gen/models/ts/pets/CreatePets.ts diff --git a/examples/advanced/src/gen/models/ts/pets/index.ts b/examples/openapi/advanced/src/gen/models/ts/pets/index.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/pets/index.ts rename to examples/openapi/advanced/src/gen/models/ts/pets/index.ts diff --git a/examples/advanced/src/gen/models/ts/store/DeleteOrder.ts b/examples/openapi/advanced/src/gen/models/ts/store/DeleteOrder.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/store/DeleteOrder.ts rename to examples/openapi/advanced/src/gen/models/ts/store/DeleteOrder.ts diff --git a/examples/advanced/src/gen/models/ts/store/GetInventory.ts b/examples/openapi/advanced/src/gen/models/ts/store/GetInventory.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/store/GetInventory.ts rename to examples/openapi/advanced/src/gen/models/ts/store/GetInventory.ts diff --git a/examples/advanced/src/gen/models/ts/store/GetOrderById.ts b/examples/openapi/advanced/src/gen/models/ts/store/GetOrderById.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/store/GetOrderById.ts rename to examples/openapi/advanced/src/gen/models/ts/store/GetOrderById.ts diff --git a/examples/advanced/src/gen/models/ts/store/PlaceOrder.ts b/examples/openapi/advanced/src/gen/models/ts/store/PlaceOrder.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/store/PlaceOrder.ts rename to examples/openapi/advanced/src/gen/models/ts/store/PlaceOrder.ts diff --git a/examples/advanced/src/gen/models/ts/store/PlaceOrderPatch.ts b/examples/openapi/advanced/src/gen/models/ts/store/PlaceOrderPatch.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/store/PlaceOrderPatch.ts rename to examples/openapi/advanced/src/gen/models/ts/store/PlaceOrderPatch.ts diff --git a/examples/advanced/src/gen/models/ts/store/index.ts b/examples/openapi/advanced/src/gen/models/ts/store/index.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/store/index.ts rename to examples/openapi/advanced/src/gen/models/ts/store/index.ts diff --git a/examples/advanced/src/gen/models/ts/stream/StreamPetEvents.ts b/examples/openapi/advanced/src/gen/models/ts/stream/StreamPetEvents.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/stream/StreamPetEvents.ts rename to examples/openapi/advanced/src/gen/models/ts/stream/StreamPetEvents.ts diff --git a/examples/advanced/src/gen/models/ts/stream/index.ts b/examples/openapi/advanced/src/gen/models/ts/stream/index.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/stream/index.ts rename to examples/openapi/advanced/src/gen/models/ts/stream/index.ts diff --git a/examples/advanced/src/gen/models/ts/tag/Tag.ts b/examples/openapi/advanced/src/gen/models/ts/tag/Tag.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/tag/Tag.ts rename to examples/openapi/advanced/src/gen/models/ts/tag/Tag.ts diff --git a/examples/advanced/src/gen/models/ts/tag/index.ts b/examples/openapi/advanced/src/gen/models/ts/tag/index.ts similarity index 100% rename from examples/advanced/src/gen/models/ts/tag/index.ts rename to examples/openapi/advanced/src/gen/models/ts/tag/index.ts diff --git a/examples/advanced/src/gen/msw/handlers.ts b/examples/openapi/advanced/src/gen/msw/handlers.ts similarity index 100% rename from examples/advanced/src/gen/msw/handlers.ts rename to examples/openapi/advanced/src/gen/msw/handlers.ts diff --git a/examples/advanced/src/gen/msw/index.ts b/examples/openapi/advanced/src/gen/msw/index.ts similarity index 100% rename from examples/advanced/src/gen/msw/index.ts rename to examples/openapi/advanced/src/gen/msw/index.ts diff --git a/examples/advanced/src/gen/msw/pet/addFilesHandler.ts b/examples/openapi/advanced/src/gen/msw/pet/addFilesHandler.ts similarity index 100% rename from examples/advanced/src/gen/msw/pet/addFilesHandler.ts rename to examples/openapi/advanced/src/gen/msw/pet/addFilesHandler.ts diff --git a/examples/advanced/src/gen/msw/pet/addPetHandler.ts b/examples/openapi/advanced/src/gen/msw/pet/addPetHandler.ts similarity index 100% rename from examples/advanced/src/gen/msw/pet/addPetHandler.ts rename to examples/openapi/advanced/src/gen/msw/pet/addPetHandler.ts diff --git a/examples/advanced/src/gen/msw/pet/deletePetHandler.ts b/examples/openapi/advanced/src/gen/msw/pet/deletePetHandler.ts similarity index 100% rename from examples/advanced/src/gen/msw/pet/deletePetHandler.ts rename to examples/openapi/advanced/src/gen/msw/pet/deletePetHandler.ts diff --git a/examples/advanced/src/gen/msw/pet/findPetsByStatusHandler.ts b/examples/openapi/advanced/src/gen/msw/pet/findPetsByStatusHandler.ts similarity index 100% rename from examples/advanced/src/gen/msw/pet/findPetsByStatusHandler.ts rename to examples/openapi/advanced/src/gen/msw/pet/findPetsByStatusHandler.ts diff --git a/examples/advanced/src/gen/msw/pet/findPetsByTagsHandler.ts b/examples/openapi/advanced/src/gen/msw/pet/findPetsByTagsHandler.ts similarity index 100% rename from examples/advanced/src/gen/msw/pet/findPetsByTagsHandler.ts rename to examples/openapi/advanced/src/gen/msw/pet/findPetsByTagsHandler.ts diff --git a/examples/advanced/src/gen/msw/pet/getPetByIdHandler.ts b/examples/openapi/advanced/src/gen/msw/pet/getPetByIdHandler.ts similarity index 100% rename from examples/advanced/src/gen/msw/pet/getPetByIdHandler.ts rename to examples/openapi/advanced/src/gen/msw/pet/getPetByIdHandler.ts diff --git a/examples/advanced/src/gen/msw/pet/index.ts b/examples/openapi/advanced/src/gen/msw/pet/index.ts similarity index 100% rename from examples/advanced/src/gen/msw/pet/index.ts rename to examples/openapi/advanced/src/gen/msw/pet/index.ts diff --git a/examples/advanced/src/gen/msw/pet/updatePetHandler.ts b/examples/openapi/advanced/src/gen/msw/pet/updatePetHandler.ts similarity index 100% rename from examples/advanced/src/gen/msw/pet/updatePetHandler.ts rename to examples/openapi/advanced/src/gen/msw/pet/updatePetHandler.ts diff --git a/examples/advanced/src/gen/msw/pet/updatePetWithFormHandler.ts b/examples/openapi/advanced/src/gen/msw/pet/updatePetWithFormHandler.ts similarity index 100% rename from examples/advanced/src/gen/msw/pet/updatePetWithFormHandler.ts rename to examples/openapi/advanced/src/gen/msw/pet/updatePetWithFormHandler.ts diff --git a/examples/advanced/src/gen/msw/pet/uploadFileHandler.ts b/examples/openapi/advanced/src/gen/msw/pet/uploadFileHandler.ts similarity index 100% rename from examples/advanced/src/gen/msw/pet/uploadFileHandler.ts rename to examples/openapi/advanced/src/gen/msw/pet/uploadFileHandler.ts diff --git a/examples/advanced/src/gen/msw/pets/createPetsHandler.ts b/examples/openapi/advanced/src/gen/msw/pets/createPetsHandler.ts similarity index 100% rename from examples/advanced/src/gen/msw/pets/createPetsHandler.ts rename to examples/openapi/advanced/src/gen/msw/pets/createPetsHandler.ts diff --git a/examples/advanced/src/gen/msw/pets/index.ts b/examples/openapi/advanced/src/gen/msw/pets/index.ts similarity index 100% rename from examples/advanced/src/gen/msw/pets/index.ts rename to examples/openapi/advanced/src/gen/msw/pets/index.ts diff --git a/examples/advanced/src/gen/msw/stream/index.ts b/examples/openapi/advanced/src/gen/msw/stream/index.ts similarity index 100% rename from examples/advanced/src/gen/msw/stream/index.ts rename to examples/openapi/advanced/src/gen/msw/stream/index.ts diff --git a/examples/advanced/src/gen/msw/stream/streamPetEventsHandler.ts b/examples/openapi/advanced/src/gen/msw/stream/streamPetEventsHandler.ts similarity index 100% rename from examples/advanced/src/gen/msw/stream/streamPetEventsHandler.ts rename to examples/openapi/advanced/src/gen/msw/stream/streamPetEventsHandler.ts diff --git a/examples/advanced/src/gen/zod/addPetRequestSchema.ts b/examples/openapi/advanced/src/gen/zod/addPetRequestSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/addPetRequestSchema.ts rename to examples/openapi/advanced/src/gen/zod/addPetRequestSchema.ts diff --git a/examples/advanced/src/gen/zod/addPetRequestStatusEnumSchema.ts b/examples/openapi/advanced/src/gen/zod/addPetRequestStatusEnumSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/addPetRequestStatusEnumSchema.ts rename to examples/openapi/advanced/src/gen/zod/addPetRequestStatusEnumSchema.ts diff --git a/examples/advanced/src/gen/zod/animalSchema.ts b/examples/openapi/advanced/src/gen/zod/animalSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/animalSchema.ts rename to examples/openapi/advanced/src/gen/zod/animalSchema.ts diff --git a/examples/advanced/src/gen/zod/animalTypeEnumSchema.ts b/examples/openapi/advanced/src/gen/zod/animalTypeEnumSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/animalTypeEnumSchema.ts rename to examples/openapi/advanced/src/gen/zod/animalTypeEnumSchema.ts diff --git a/examples/advanced/src/gen/zod/apiResponseSchema.ts b/examples/openapi/advanced/src/gen/zod/apiResponseSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/apiResponseSchema.ts rename to examples/openapi/advanced/src/gen/zod/apiResponseSchema.ts diff --git a/examples/advanced/src/gen/zod/catSchema.ts b/examples/openapi/advanced/src/gen/zod/catSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/catSchema.ts rename to examples/openapi/advanced/src/gen/zod/catSchema.ts diff --git a/examples/advanced/src/gen/zod/categorySchema.ts b/examples/openapi/advanced/src/gen/zod/categorySchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/categorySchema.ts rename to examples/openapi/advanced/src/gen/zod/categorySchema.ts diff --git a/examples/advanced/src/gen/zod/createPetsBoolParamSchema.ts b/examples/openapi/advanced/src/gen/zod/createPetsBoolParamSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/createPetsBoolParamSchema.ts rename to examples/openapi/advanced/src/gen/zod/createPetsBoolParamSchema.ts diff --git a/examples/advanced/src/gen/zod/createPetsXEXAMPLESchema.ts b/examples/openapi/advanced/src/gen/zod/createPetsXEXAMPLESchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/createPetsXEXAMPLESchema.ts rename to examples/openapi/advanced/src/gen/zod/createPetsXEXAMPLESchema.ts diff --git a/examples/advanced/src/gen/zod/dogSchema.ts b/examples/openapi/advanced/src/gen/zod/dogSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/dogSchema.ts rename to examples/openapi/advanced/src/gen/zod/dogSchema.ts diff --git a/examples/advanced/src/gen/zod/findPetsByTagsXEXAMPLESchema.ts b/examples/openapi/advanced/src/gen/zod/findPetsByTagsXEXAMPLESchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/findPetsByTagsXEXAMPLESchema.ts rename to examples/openapi/advanced/src/gen/zod/findPetsByTagsXEXAMPLESchema.ts diff --git a/examples/advanced/src/gen/zod/imageSchema.ts b/examples/openapi/advanced/src/gen/zod/imageSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/imageSchema.ts rename to examples/openapi/advanced/src/gen/zod/imageSchema.ts diff --git a/examples/advanced/src/gen/zod/index.ts b/examples/openapi/advanced/src/gen/zod/index.ts similarity index 100% rename from examples/advanced/src/gen/zod/index.ts rename to examples/openapi/advanced/src/gen/zod/index.ts diff --git a/examples/advanced/src/gen/zod/orderHttpStatusEnumSchema.ts b/examples/openapi/advanced/src/gen/zod/orderHttpStatusEnumSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/orderHttpStatusEnumSchema.ts rename to examples/openapi/advanced/src/gen/zod/orderHttpStatusEnumSchema.ts diff --git a/examples/advanced/src/gen/zod/orderOrderTypeEnumSchema.ts b/examples/openapi/advanced/src/gen/zod/orderOrderTypeEnumSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/orderOrderTypeEnumSchema.ts rename to examples/openapi/advanced/src/gen/zod/orderOrderTypeEnumSchema.ts diff --git a/examples/advanced/src/gen/zod/orderParamsStatusEnumSchema.ts b/examples/openapi/advanced/src/gen/zod/orderParamsStatusEnumSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/orderParamsStatusEnumSchema.ts rename to examples/openapi/advanced/src/gen/zod/orderParamsStatusEnumSchema.ts diff --git a/examples/advanced/src/gen/zod/orderSchema.ts b/examples/openapi/advanced/src/gen/zod/orderSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/orderSchema.ts rename to examples/openapi/advanced/src/gen/zod/orderSchema.ts diff --git a/examples/advanced/src/gen/zod/orderStatusEnumSchema.ts b/examples/openapi/advanced/src/gen/zod/orderStatusEnumSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/orderStatusEnumSchema.ts rename to examples/openapi/advanced/src/gen/zod/orderStatusEnumSchema.ts diff --git a/examples/advanced/src/gen/zod/pet/addFilesSchema.ts b/examples/openapi/advanced/src/gen/zod/pet/addFilesSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/pet/addFilesSchema.ts rename to examples/openapi/advanced/src/gen/zod/pet/addFilesSchema.ts diff --git a/examples/advanced/src/gen/zod/pet/addPetSchema.ts b/examples/openapi/advanced/src/gen/zod/pet/addPetSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/pet/addPetSchema.ts rename to examples/openapi/advanced/src/gen/zod/pet/addPetSchema.ts diff --git a/examples/advanced/src/gen/zod/pet/deletePetSchema.ts b/examples/openapi/advanced/src/gen/zod/pet/deletePetSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/pet/deletePetSchema.ts rename to examples/openapi/advanced/src/gen/zod/pet/deletePetSchema.ts diff --git a/examples/advanced/src/gen/zod/pet/findPetsByStatusSchema.ts b/examples/openapi/advanced/src/gen/zod/pet/findPetsByStatusSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/pet/findPetsByStatusSchema.ts rename to examples/openapi/advanced/src/gen/zod/pet/findPetsByStatusSchema.ts diff --git a/examples/advanced/src/gen/zod/pet/findPetsByTagsSchema.ts b/examples/openapi/advanced/src/gen/zod/pet/findPetsByTagsSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/pet/findPetsByTagsSchema.ts rename to examples/openapi/advanced/src/gen/zod/pet/findPetsByTagsSchema.ts diff --git a/examples/advanced/src/gen/zod/pet/getPetByIdSchema.ts b/examples/openapi/advanced/src/gen/zod/pet/getPetByIdSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/pet/getPetByIdSchema.ts rename to examples/openapi/advanced/src/gen/zod/pet/getPetByIdSchema.ts diff --git a/examples/advanced/src/gen/zod/pet/index.ts b/examples/openapi/advanced/src/gen/zod/pet/index.ts similarity index 100% rename from examples/advanced/src/gen/zod/pet/index.ts rename to examples/openapi/advanced/src/gen/zod/pet/index.ts diff --git a/examples/advanced/src/gen/zod/pet/updatePetSchema.ts b/examples/openapi/advanced/src/gen/zod/pet/updatePetSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/pet/updatePetSchema.ts rename to examples/openapi/advanced/src/gen/zod/pet/updatePetSchema.ts diff --git a/examples/advanced/src/gen/zod/pet/updatePetWithFormSchema.ts b/examples/openapi/advanced/src/gen/zod/pet/updatePetWithFormSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/pet/updatePetWithFormSchema.ts rename to examples/openapi/advanced/src/gen/zod/pet/updatePetWithFormSchema.ts diff --git a/examples/advanced/src/gen/zod/pet/uploadFileSchema.ts b/examples/openapi/advanced/src/gen/zod/pet/uploadFileSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/pet/uploadFileSchema.ts rename to examples/openapi/advanced/src/gen/zod/pet/uploadFileSchema.ts diff --git a/examples/advanced/src/gen/zod/petEventSchema.ts b/examples/openapi/advanced/src/gen/zod/petEventSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/petEventSchema.ts rename to examples/openapi/advanced/src/gen/zod/petEventSchema.ts diff --git a/examples/advanced/src/gen/zod/petEventTypeEnumSchema.ts b/examples/openapi/advanced/src/gen/zod/petEventTypeEnumSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/petEventTypeEnumSchema.ts rename to examples/openapi/advanced/src/gen/zod/petEventTypeEnumSchema.ts diff --git a/examples/advanced/src/gen/zod/petNotFoundSchema.ts b/examples/openapi/advanced/src/gen/zod/petNotFoundSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/petNotFoundSchema.ts rename to examples/openapi/advanced/src/gen/zod/petNotFoundSchema.ts diff --git a/examples/advanced/src/gen/zod/petSchema.ts b/examples/openapi/advanced/src/gen/zod/petSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/petSchema.ts rename to examples/openapi/advanced/src/gen/zod/petSchema.ts diff --git a/examples/advanced/src/gen/zod/petStatusEnumSchema.ts b/examples/openapi/advanced/src/gen/zod/petStatusEnumSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/petStatusEnumSchema.ts rename to examples/openapi/advanced/src/gen/zod/petStatusEnumSchema.ts diff --git a/examples/advanced/src/gen/zod/pets/createPetsSchema.ts b/examples/openapi/advanced/src/gen/zod/pets/createPetsSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/pets/createPetsSchema.ts rename to examples/openapi/advanced/src/gen/zod/pets/createPetsSchema.ts diff --git a/examples/advanced/src/gen/zod/pets/index.ts b/examples/openapi/advanced/src/gen/zod/pets/index.ts similarity index 100% rename from examples/advanced/src/gen/zod/pets/index.ts rename to examples/openapi/advanced/src/gen/zod/pets/index.ts diff --git a/examples/advanced/src/gen/zod/stream/index.ts b/examples/openapi/advanced/src/gen/zod/stream/index.ts similarity index 100% rename from examples/advanced/src/gen/zod/stream/index.ts rename to examples/openapi/advanced/src/gen/zod/stream/index.ts diff --git a/examples/advanced/src/gen/zod/stream/streamPetEventsSchema.ts b/examples/openapi/advanced/src/gen/zod/stream/streamPetEventsSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/stream/streamPetEventsSchema.ts rename to examples/openapi/advanced/src/gen/zod/stream/streamPetEventsSchema.ts diff --git a/examples/advanced/src/gen/zod/tag/index.ts b/examples/openapi/advanced/src/gen/zod/tag/index.ts similarity index 100% rename from examples/advanced/src/gen/zod/tag/index.ts rename to examples/openapi/advanced/src/gen/zod/tag/index.ts diff --git a/examples/advanced/src/gen/zod/tag/tagSchema.ts b/examples/openapi/advanced/src/gen/zod/tag/tagSchema.ts similarity index 100% rename from examples/advanced/src/gen/zod/tag/tagSchema.ts rename to examples/openapi/advanced/src/gen/zod/tag/tagSchema.ts diff --git a/examples/advanced/src/index.ts b/examples/openapi/advanced/src/index.ts similarity index 100% rename from examples/advanced/src/index.ts rename to examples/openapi/advanced/src/index.ts diff --git a/examples/advanced/src/tanstack-query-hook.ts b/examples/openapi/advanced/src/tanstack-query-hook.ts similarity index 100% rename from examples/advanced/src/tanstack-query-hook.ts rename to examples/openapi/advanced/src/tanstack-query-hook.ts diff --git a/examples/advanced/tsconfig.json b/examples/openapi/advanced/tsconfig.json similarity index 100% rename from examples/advanced/tsconfig.json rename to examples/openapi/advanced/tsconfig.json diff --git a/examples/axios/kubb.config.ts b/examples/openapi/axios/kubb.config.ts similarity index 100% rename from examples/axios/kubb.config.ts rename to examples/openapi/axios/kubb.config.ts diff --git a/examples/axios/package.json b/examples/openapi/axios/package.json similarity index 95% rename from examples/axios/package.json rename to examples/openapi/axios/package.json index 21226bd2f..5938eb2a3 100644 --- a/examples/axios/package.json +++ b/examples/openapi/axios/package.json @@ -8,7 +8,7 @@ "repository": { "type": "git", "url": "https://github.com/kubb-labs/plugins.git", - "directory": "examples/axios" + "directory": "examples/openapi/axios" }, "type": "module", "sideEffects": false, diff --git a/examples/axios/petStore.yaml b/examples/openapi/axios/petStore.yaml similarity index 100% rename from examples/axios/petStore.yaml rename to examples/openapi/axios/petStore.yaml diff --git a/examples/axios/src/gen/.kubb/client.ts b/examples/openapi/axios/src/gen/.kubb/client.ts similarity index 100% rename from examples/axios/src/gen/.kubb/client.ts rename to examples/openapi/axios/src/gen/.kubb/client.ts diff --git a/examples/axios/src/gen/.kubb/serializers.ts b/examples/openapi/axios/src/gen/.kubb/serializers.ts similarity index 100% rename from examples/axios/src/gen/.kubb/serializers.ts rename to examples/openapi/axios/src/gen/.kubb/serializers.ts diff --git a/examples/axios/src/gen/.kubb/standardSchema.ts b/examples/openapi/axios/src/gen/.kubb/standardSchema.ts similarity index 100% rename from examples/axios/src/gen/.kubb/standardSchema.ts rename to examples/openapi/axios/src/gen/.kubb/standardSchema.ts diff --git a/examples/axios/src/gen/clients/index.ts b/examples/openapi/axios/src/gen/clients/index.ts similarity index 100% rename from examples/axios/src/gen/clients/index.ts rename to examples/openapi/axios/src/gen/clients/index.ts diff --git a/examples/axios/src/gen/clients/pet/addPet.ts b/examples/openapi/axios/src/gen/clients/pet/addPet.ts similarity index 100% rename from examples/axios/src/gen/clients/pet/addPet.ts rename to examples/openapi/axios/src/gen/clients/pet/addPet.ts diff --git a/examples/axios/src/gen/clients/pet/deletePet.ts b/examples/openapi/axios/src/gen/clients/pet/deletePet.ts similarity index 100% rename from examples/axios/src/gen/clients/pet/deletePet.ts rename to examples/openapi/axios/src/gen/clients/pet/deletePet.ts diff --git a/examples/axios/src/gen/clients/pet/findPetsByStatus.ts b/examples/openapi/axios/src/gen/clients/pet/findPetsByStatus.ts similarity index 100% rename from examples/axios/src/gen/clients/pet/findPetsByStatus.ts rename to examples/openapi/axios/src/gen/clients/pet/findPetsByStatus.ts diff --git a/examples/axios/src/gen/clients/pet/findPetsByTags.ts b/examples/openapi/axios/src/gen/clients/pet/findPetsByTags.ts similarity index 100% rename from examples/axios/src/gen/clients/pet/findPetsByTags.ts rename to examples/openapi/axios/src/gen/clients/pet/findPetsByTags.ts diff --git a/examples/axios/src/gen/clients/pet/getPetById.ts b/examples/openapi/axios/src/gen/clients/pet/getPetById.ts similarity index 100% rename from examples/axios/src/gen/clients/pet/getPetById.ts rename to examples/openapi/axios/src/gen/clients/pet/getPetById.ts diff --git a/examples/axios/src/gen/clients/pet/index.ts b/examples/openapi/axios/src/gen/clients/pet/index.ts similarity index 100% rename from examples/axios/src/gen/clients/pet/index.ts rename to examples/openapi/axios/src/gen/clients/pet/index.ts diff --git a/examples/axios/src/gen/clients/pet/updatePet.ts b/examples/openapi/axios/src/gen/clients/pet/updatePet.ts similarity index 100% rename from examples/axios/src/gen/clients/pet/updatePet.ts rename to examples/openapi/axios/src/gen/clients/pet/updatePet.ts diff --git a/examples/axios/src/gen/clients/pet/updatePetWithForm.ts b/examples/openapi/axios/src/gen/clients/pet/updatePetWithForm.ts similarity index 100% rename from examples/axios/src/gen/clients/pet/updatePetWithForm.ts rename to examples/openapi/axios/src/gen/clients/pet/updatePetWithForm.ts diff --git a/examples/axios/src/gen/clients/pet/uploadFile.ts b/examples/openapi/axios/src/gen/clients/pet/uploadFile.ts similarity index 100% rename from examples/axios/src/gen/clients/pet/uploadFile.ts rename to examples/openapi/axios/src/gen/clients/pet/uploadFile.ts diff --git a/examples/axios/src/gen/clients/store/deleteOrder.ts b/examples/openapi/axios/src/gen/clients/store/deleteOrder.ts similarity index 100% rename from examples/axios/src/gen/clients/store/deleteOrder.ts rename to examples/openapi/axios/src/gen/clients/store/deleteOrder.ts diff --git a/examples/axios/src/gen/clients/store/getInventory.ts b/examples/openapi/axios/src/gen/clients/store/getInventory.ts similarity index 100% rename from examples/axios/src/gen/clients/store/getInventory.ts rename to examples/openapi/axios/src/gen/clients/store/getInventory.ts diff --git a/examples/axios/src/gen/clients/store/getOrderById.ts b/examples/openapi/axios/src/gen/clients/store/getOrderById.ts similarity index 100% rename from examples/axios/src/gen/clients/store/getOrderById.ts rename to examples/openapi/axios/src/gen/clients/store/getOrderById.ts diff --git a/examples/axios/src/gen/clients/store/index.ts b/examples/openapi/axios/src/gen/clients/store/index.ts similarity index 100% rename from examples/axios/src/gen/clients/store/index.ts rename to examples/openapi/axios/src/gen/clients/store/index.ts diff --git a/examples/axios/src/gen/clients/store/placeOrder.ts b/examples/openapi/axios/src/gen/clients/store/placeOrder.ts similarity index 100% rename from examples/axios/src/gen/clients/store/placeOrder.ts rename to examples/openapi/axios/src/gen/clients/store/placeOrder.ts diff --git a/examples/axios/src/gen/clients/store/placeOrderPatch.ts b/examples/openapi/axios/src/gen/clients/store/placeOrderPatch.ts similarity index 100% rename from examples/axios/src/gen/clients/store/placeOrderPatch.ts rename to examples/openapi/axios/src/gen/clients/store/placeOrderPatch.ts diff --git a/examples/axios/src/gen/clients/user/createUser.ts b/examples/openapi/axios/src/gen/clients/user/createUser.ts similarity index 100% rename from examples/axios/src/gen/clients/user/createUser.ts rename to examples/openapi/axios/src/gen/clients/user/createUser.ts diff --git a/examples/axios/src/gen/clients/user/createUsersWithListInput.ts b/examples/openapi/axios/src/gen/clients/user/createUsersWithListInput.ts similarity index 100% rename from examples/axios/src/gen/clients/user/createUsersWithListInput.ts rename to examples/openapi/axios/src/gen/clients/user/createUsersWithListInput.ts diff --git a/examples/axios/src/gen/clients/user/deleteUser.ts b/examples/openapi/axios/src/gen/clients/user/deleteUser.ts similarity index 100% rename from examples/axios/src/gen/clients/user/deleteUser.ts rename to examples/openapi/axios/src/gen/clients/user/deleteUser.ts diff --git a/examples/axios/src/gen/clients/user/getUserByName.ts b/examples/openapi/axios/src/gen/clients/user/getUserByName.ts similarity index 100% rename from examples/axios/src/gen/clients/user/getUserByName.ts rename to examples/openapi/axios/src/gen/clients/user/getUserByName.ts diff --git a/examples/axios/src/gen/clients/user/index.ts b/examples/openapi/axios/src/gen/clients/user/index.ts similarity index 100% rename from examples/axios/src/gen/clients/user/index.ts rename to examples/openapi/axios/src/gen/clients/user/index.ts diff --git a/examples/axios/src/gen/clients/user/loginUser.ts b/examples/openapi/axios/src/gen/clients/user/loginUser.ts similarity index 100% rename from examples/axios/src/gen/clients/user/loginUser.ts rename to examples/openapi/axios/src/gen/clients/user/loginUser.ts diff --git a/examples/axios/src/gen/clients/user/logoutUser.ts b/examples/openapi/axios/src/gen/clients/user/logoutUser.ts similarity index 100% rename from examples/axios/src/gen/clients/user/logoutUser.ts rename to examples/openapi/axios/src/gen/clients/user/logoutUser.ts diff --git a/examples/axios/src/gen/clients/user/updateUser.ts b/examples/openapi/axios/src/gen/clients/user/updateUser.ts similarity index 100% rename from examples/axios/src/gen/clients/user/updateUser.ts rename to examples/openapi/axios/src/gen/clients/user/updateUser.ts diff --git a/examples/axios/src/gen/index.ts b/examples/openapi/axios/src/gen/index.ts similarity index 100% rename from examples/axios/src/gen/index.ts rename to examples/openapi/axios/src/gen/index.ts diff --git a/examples/axios/src/gen/models/AddPetRequest.ts b/examples/openapi/axios/src/gen/models/AddPetRequest.ts similarity index 100% rename from examples/axios/src/gen/models/AddPetRequest.ts rename to examples/openapi/axios/src/gen/models/AddPetRequest.ts diff --git a/examples/axios/src/gen/models/Address.ts b/examples/openapi/axios/src/gen/models/Address.ts similarity index 100% rename from examples/axios/src/gen/models/Address.ts rename to examples/openapi/axios/src/gen/models/Address.ts diff --git a/examples/axios/src/gen/models/ApiResponse.ts b/examples/openapi/axios/src/gen/models/ApiResponse.ts similarity index 100% rename from examples/axios/src/gen/models/ApiResponse.ts rename to examples/openapi/axios/src/gen/models/ApiResponse.ts diff --git a/examples/axios/src/gen/models/Category.ts b/examples/openapi/axios/src/gen/models/Category.ts similarity index 100% rename from examples/axios/src/gen/models/Category.ts rename to examples/openapi/axios/src/gen/models/Category.ts diff --git a/examples/axios/src/gen/models/Customer.ts b/examples/openapi/axios/src/gen/models/Customer.ts similarity index 100% rename from examples/axios/src/gen/models/Customer.ts rename to examples/openapi/axios/src/gen/models/Customer.ts diff --git a/examples/axios/src/gen/models/Order.ts b/examples/openapi/axios/src/gen/models/Order.ts similarity index 100% rename from examples/axios/src/gen/models/Order.ts rename to examples/openapi/axios/src/gen/models/Order.ts diff --git a/examples/axios/src/gen/models/Pet.ts b/examples/openapi/axios/src/gen/models/Pet.ts similarity index 100% rename from examples/axios/src/gen/models/Pet.ts rename to examples/openapi/axios/src/gen/models/Pet.ts diff --git a/examples/axios/src/gen/models/PetNotFound.ts b/examples/openapi/axios/src/gen/models/PetNotFound.ts similarity index 100% rename from examples/axios/src/gen/models/PetNotFound.ts rename to examples/openapi/axios/src/gen/models/PetNotFound.ts diff --git a/examples/axios/src/gen/models/Tag.ts b/examples/openapi/axios/src/gen/models/Tag.ts similarity index 100% rename from examples/axios/src/gen/models/Tag.ts rename to examples/openapi/axios/src/gen/models/Tag.ts diff --git a/examples/axios/src/gen/models/User.ts b/examples/openapi/axios/src/gen/models/User.ts similarity index 100% rename from examples/axios/src/gen/models/User.ts rename to examples/openapi/axios/src/gen/models/User.ts diff --git a/examples/axios/src/gen/models/UserArray.ts b/examples/openapi/axios/src/gen/models/UserArray.ts similarity index 100% rename from examples/axios/src/gen/models/UserArray.ts rename to examples/openapi/axios/src/gen/models/UserArray.ts diff --git a/examples/axios/src/gen/models/index.ts b/examples/openapi/axios/src/gen/models/index.ts similarity index 100% rename from examples/axios/src/gen/models/index.ts rename to examples/openapi/axios/src/gen/models/index.ts diff --git a/examples/axios/src/gen/models/pet/AddPet.ts b/examples/openapi/axios/src/gen/models/pet/AddPet.ts similarity index 100% rename from examples/axios/src/gen/models/pet/AddPet.ts rename to examples/openapi/axios/src/gen/models/pet/AddPet.ts diff --git a/examples/axios/src/gen/models/pet/DeletePet.ts b/examples/openapi/axios/src/gen/models/pet/DeletePet.ts similarity index 100% rename from examples/axios/src/gen/models/pet/DeletePet.ts rename to examples/openapi/axios/src/gen/models/pet/DeletePet.ts diff --git a/examples/axios/src/gen/models/pet/FindPetsByStatus.ts b/examples/openapi/axios/src/gen/models/pet/FindPetsByStatus.ts similarity index 100% rename from examples/axios/src/gen/models/pet/FindPetsByStatus.ts rename to examples/openapi/axios/src/gen/models/pet/FindPetsByStatus.ts diff --git a/examples/axios/src/gen/models/pet/FindPetsByTags.ts b/examples/openapi/axios/src/gen/models/pet/FindPetsByTags.ts similarity index 100% rename from examples/axios/src/gen/models/pet/FindPetsByTags.ts rename to examples/openapi/axios/src/gen/models/pet/FindPetsByTags.ts diff --git a/examples/axios/src/gen/models/pet/GetPetById.ts b/examples/openapi/axios/src/gen/models/pet/GetPetById.ts similarity index 100% rename from examples/axios/src/gen/models/pet/GetPetById.ts rename to examples/openapi/axios/src/gen/models/pet/GetPetById.ts diff --git a/examples/axios/src/gen/models/pet/UpdatePet.ts b/examples/openapi/axios/src/gen/models/pet/UpdatePet.ts similarity index 100% rename from examples/axios/src/gen/models/pet/UpdatePet.ts rename to examples/openapi/axios/src/gen/models/pet/UpdatePet.ts diff --git a/examples/axios/src/gen/models/pet/UpdatePetWithForm.ts b/examples/openapi/axios/src/gen/models/pet/UpdatePetWithForm.ts similarity index 100% rename from examples/axios/src/gen/models/pet/UpdatePetWithForm.ts rename to examples/openapi/axios/src/gen/models/pet/UpdatePetWithForm.ts diff --git a/examples/axios/src/gen/models/pet/UploadFile.ts b/examples/openapi/axios/src/gen/models/pet/UploadFile.ts similarity index 100% rename from examples/axios/src/gen/models/pet/UploadFile.ts rename to examples/openapi/axios/src/gen/models/pet/UploadFile.ts diff --git a/examples/axios/src/gen/models/pet/index.ts b/examples/openapi/axios/src/gen/models/pet/index.ts similarity index 100% rename from examples/axios/src/gen/models/pet/index.ts rename to examples/openapi/axios/src/gen/models/pet/index.ts diff --git a/examples/axios/src/gen/models/store/DeleteOrder.ts b/examples/openapi/axios/src/gen/models/store/DeleteOrder.ts similarity index 100% rename from examples/axios/src/gen/models/store/DeleteOrder.ts rename to examples/openapi/axios/src/gen/models/store/DeleteOrder.ts diff --git a/examples/axios/src/gen/models/store/GetInventory.ts b/examples/openapi/axios/src/gen/models/store/GetInventory.ts similarity index 100% rename from examples/axios/src/gen/models/store/GetInventory.ts rename to examples/openapi/axios/src/gen/models/store/GetInventory.ts diff --git a/examples/axios/src/gen/models/store/GetOrderById.ts b/examples/openapi/axios/src/gen/models/store/GetOrderById.ts similarity index 100% rename from examples/axios/src/gen/models/store/GetOrderById.ts rename to examples/openapi/axios/src/gen/models/store/GetOrderById.ts diff --git a/examples/axios/src/gen/models/store/PlaceOrder.ts b/examples/openapi/axios/src/gen/models/store/PlaceOrder.ts similarity index 100% rename from examples/axios/src/gen/models/store/PlaceOrder.ts rename to examples/openapi/axios/src/gen/models/store/PlaceOrder.ts diff --git a/examples/axios/src/gen/models/store/PlaceOrderPatch.ts b/examples/openapi/axios/src/gen/models/store/PlaceOrderPatch.ts similarity index 100% rename from examples/axios/src/gen/models/store/PlaceOrderPatch.ts rename to examples/openapi/axios/src/gen/models/store/PlaceOrderPatch.ts diff --git a/examples/axios/src/gen/models/store/index.ts b/examples/openapi/axios/src/gen/models/store/index.ts similarity index 100% rename from examples/axios/src/gen/models/store/index.ts rename to examples/openapi/axios/src/gen/models/store/index.ts diff --git a/examples/axios/src/gen/models/user/CreateUser.ts b/examples/openapi/axios/src/gen/models/user/CreateUser.ts similarity index 100% rename from examples/axios/src/gen/models/user/CreateUser.ts rename to examples/openapi/axios/src/gen/models/user/CreateUser.ts diff --git a/examples/axios/src/gen/models/user/CreateUsersWithListInput.ts b/examples/openapi/axios/src/gen/models/user/CreateUsersWithListInput.ts similarity index 100% rename from examples/axios/src/gen/models/user/CreateUsersWithListInput.ts rename to examples/openapi/axios/src/gen/models/user/CreateUsersWithListInput.ts diff --git a/examples/axios/src/gen/models/user/DeleteUser.ts b/examples/openapi/axios/src/gen/models/user/DeleteUser.ts similarity index 100% rename from examples/axios/src/gen/models/user/DeleteUser.ts rename to examples/openapi/axios/src/gen/models/user/DeleteUser.ts diff --git a/examples/axios/src/gen/models/user/GetUserByName.ts b/examples/openapi/axios/src/gen/models/user/GetUserByName.ts similarity index 100% rename from examples/axios/src/gen/models/user/GetUserByName.ts rename to examples/openapi/axios/src/gen/models/user/GetUserByName.ts diff --git a/examples/axios/src/gen/models/user/LoginUser.ts b/examples/openapi/axios/src/gen/models/user/LoginUser.ts similarity index 100% rename from examples/axios/src/gen/models/user/LoginUser.ts rename to examples/openapi/axios/src/gen/models/user/LoginUser.ts diff --git a/examples/axios/src/gen/models/user/LogoutUser.ts b/examples/openapi/axios/src/gen/models/user/LogoutUser.ts similarity index 100% rename from examples/axios/src/gen/models/user/LogoutUser.ts rename to examples/openapi/axios/src/gen/models/user/LogoutUser.ts diff --git a/examples/axios/src/gen/models/user/UpdateUser.ts b/examples/openapi/axios/src/gen/models/user/UpdateUser.ts similarity index 100% rename from examples/axios/src/gen/models/user/UpdateUser.ts rename to examples/openapi/axios/src/gen/models/user/UpdateUser.ts diff --git a/examples/axios/src/gen/models/user/index.ts b/examples/openapi/axios/src/gen/models/user/index.ts similarity index 100% rename from examples/axios/src/gen/models/user/index.ts rename to examples/openapi/axios/src/gen/models/user/index.ts diff --git a/examples/axios/tsconfig.json b/examples/openapi/axios/tsconfig.json similarity index 100% rename from examples/axios/tsconfig.json rename to examples/openapi/axios/tsconfig.json diff --git a/examples/cypress/kubb.config.js b/examples/openapi/cypress/kubb.config.js similarity index 100% rename from examples/cypress/kubb.config.js rename to examples/openapi/cypress/kubb.config.js diff --git a/examples/cypress/package.json b/examples/openapi/cypress/package.json similarity index 96% rename from examples/cypress/package.json rename to examples/openapi/cypress/package.json index 649837934..396278395 100644 --- a/examples/cypress/package.json +++ b/examples/openapi/cypress/package.json @@ -8,7 +8,7 @@ "repository": { "type": "git", "url": "https://github.com/kubb-labs/plugins.git", - "directory": "examples/cypress" + "directory": "examples/openapi/cypress" }, "type": "module", "sideEffects": false, diff --git a/examples/cypress/petStore.yaml b/examples/openapi/cypress/petStore.yaml similarity index 100% rename from examples/cypress/petStore.yaml rename to examples/openapi/cypress/petStore.yaml diff --git a/examples/cypress/src/gen-v4/cypress/addPet.ts b/examples/openapi/cypress/src/gen-v4/cypress/addPet.ts similarity index 100% rename from examples/cypress/src/gen-v4/cypress/addPet.ts rename to examples/openapi/cypress/src/gen-v4/cypress/addPet.ts diff --git a/examples/cypress/src/gen-v4/cypress/deleteOrder.ts b/examples/openapi/cypress/src/gen-v4/cypress/deleteOrder.ts similarity index 100% rename from examples/cypress/src/gen-v4/cypress/deleteOrder.ts rename to examples/openapi/cypress/src/gen-v4/cypress/deleteOrder.ts diff --git a/examples/cypress/src/gen-v4/cypress/deletePet.ts b/examples/openapi/cypress/src/gen-v4/cypress/deletePet.ts similarity index 100% rename from examples/cypress/src/gen-v4/cypress/deletePet.ts rename to examples/openapi/cypress/src/gen-v4/cypress/deletePet.ts diff --git a/examples/cypress/src/gen-v4/cypress/findPetsByStatus.ts b/examples/openapi/cypress/src/gen-v4/cypress/findPetsByStatus.ts similarity index 100% rename from examples/cypress/src/gen-v4/cypress/findPetsByStatus.ts rename to examples/openapi/cypress/src/gen-v4/cypress/findPetsByStatus.ts diff --git a/examples/cypress/src/gen-v4/cypress/findPetsByTags.ts b/examples/openapi/cypress/src/gen-v4/cypress/findPetsByTags.ts similarity index 100% rename from examples/cypress/src/gen-v4/cypress/findPetsByTags.ts rename to examples/openapi/cypress/src/gen-v4/cypress/findPetsByTags.ts diff --git a/examples/cypress/src/gen-v4/cypress/getInventory.ts b/examples/openapi/cypress/src/gen-v4/cypress/getInventory.ts similarity index 100% rename from examples/cypress/src/gen-v4/cypress/getInventory.ts rename to examples/openapi/cypress/src/gen-v4/cypress/getInventory.ts diff --git a/examples/cypress/src/gen-v4/cypress/getOrderById.ts b/examples/openapi/cypress/src/gen-v4/cypress/getOrderById.ts similarity index 100% rename from examples/cypress/src/gen-v4/cypress/getOrderById.ts rename to examples/openapi/cypress/src/gen-v4/cypress/getOrderById.ts diff --git a/examples/cypress/src/gen-v4/cypress/getPetById.ts b/examples/openapi/cypress/src/gen-v4/cypress/getPetById.ts similarity index 100% rename from examples/cypress/src/gen-v4/cypress/getPetById.ts rename to examples/openapi/cypress/src/gen-v4/cypress/getPetById.ts diff --git a/examples/cypress/src/gen-v4/cypress/optionsFindPetsByStatus.ts b/examples/openapi/cypress/src/gen-v4/cypress/optionsFindPetsByStatus.ts similarity index 100% rename from examples/cypress/src/gen-v4/cypress/optionsFindPetsByStatus.ts rename to examples/openapi/cypress/src/gen-v4/cypress/optionsFindPetsByStatus.ts diff --git a/examples/cypress/src/gen-v4/cypress/placeOrder.ts b/examples/openapi/cypress/src/gen-v4/cypress/placeOrder.ts similarity index 100% rename from examples/cypress/src/gen-v4/cypress/placeOrder.ts rename to examples/openapi/cypress/src/gen-v4/cypress/placeOrder.ts diff --git a/examples/cypress/src/gen-v4/cypress/placeOrderPatch.ts b/examples/openapi/cypress/src/gen-v4/cypress/placeOrderPatch.ts similarity index 100% rename from examples/cypress/src/gen-v4/cypress/placeOrderPatch.ts rename to examples/openapi/cypress/src/gen-v4/cypress/placeOrderPatch.ts diff --git a/examples/cypress/src/gen-v4/cypress/updatePet.ts b/examples/openapi/cypress/src/gen-v4/cypress/updatePet.ts similarity index 100% rename from examples/cypress/src/gen-v4/cypress/updatePet.ts rename to examples/openapi/cypress/src/gen-v4/cypress/updatePet.ts diff --git a/examples/cypress/src/gen-v4/cypress/updatePetWithForm.ts b/examples/openapi/cypress/src/gen-v4/cypress/updatePetWithForm.ts similarity index 100% rename from examples/cypress/src/gen-v4/cypress/updatePetWithForm.ts rename to examples/openapi/cypress/src/gen-v4/cypress/updatePetWithForm.ts diff --git a/examples/cypress/src/gen-v4/cypress/uploadFile.ts b/examples/openapi/cypress/src/gen-v4/cypress/uploadFile.ts similarity index 100% rename from examples/cypress/src/gen-v4/cypress/uploadFile.ts rename to examples/openapi/cypress/src/gen-v4/cypress/uploadFile.ts diff --git a/examples/cypress/src/gen-v4/models.ts b/examples/openapi/cypress/src/gen-v4/models.ts similarity index 100% rename from examples/cypress/src/gen-v4/models.ts rename to examples/openapi/cypress/src/gen-v4/models.ts diff --git a/examples/cypress/src/gen/cypress/index.ts b/examples/openapi/cypress/src/gen/cypress/index.ts similarity index 100% rename from examples/cypress/src/gen/cypress/index.ts rename to examples/openapi/cypress/src/gen/cypress/index.ts diff --git a/examples/cypress/src/gen/cypress/petRequests/addPet.ts b/examples/openapi/cypress/src/gen/cypress/petRequests/addPet.ts similarity index 100% rename from examples/cypress/src/gen/cypress/petRequests/addPet.ts rename to examples/openapi/cypress/src/gen/cypress/petRequests/addPet.ts diff --git a/examples/cypress/src/gen/cypress/petRequests/deletePet.ts b/examples/openapi/cypress/src/gen/cypress/petRequests/deletePet.ts similarity index 100% rename from examples/cypress/src/gen/cypress/petRequests/deletePet.ts rename to examples/openapi/cypress/src/gen/cypress/petRequests/deletePet.ts diff --git a/examples/cypress/src/gen/cypress/petRequests/findPetsByStatus.ts b/examples/openapi/cypress/src/gen/cypress/petRequests/findPetsByStatus.ts similarity index 100% rename from examples/cypress/src/gen/cypress/petRequests/findPetsByStatus.ts rename to examples/openapi/cypress/src/gen/cypress/petRequests/findPetsByStatus.ts diff --git a/examples/cypress/src/gen/cypress/petRequests/findPetsByTags.ts b/examples/openapi/cypress/src/gen/cypress/petRequests/findPetsByTags.ts similarity index 100% rename from examples/cypress/src/gen/cypress/petRequests/findPetsByTags.ts rename to examples/openapi/cypress/src/gen/cypress/petRequests/findPetsByTags.ts diff --git a/examples/cypress/src/gen/cypress/petRequests/getPetById.ts b/examples/openapi/cypress/src/gen/cypress/petRequests/getPetById.ts similarity index 100% rename from examples/cypress/src/gen/cypress/petRequests/getPetById.ts rename to examples/openapi/cypress/src/gen/cypress/petRequests/getPetById.ts diff --git a/examples/cypress/src/gen/cypress/petRequests/index.ts b/examples/openapi/cypress/src/gen/cypress/petRequests/index.ts similarity index 100% rename from examples/cypress/src/gen/cypress/petRequests/index.ts rename to examples/openapi/cypress/src/gen/cypress/petRequests/index.ts diff --git a/examples/cypress/src/gen/cypress/petRequests/optionsFindPetsByStatus.ts b/examples/openapi/cypress/src/gen/cypress/petRequests/optionsFindPetsByStatus.ts similarity index 100% rename from examples/cypress/src/gen/cypress/petRequests/optionsFindPetsByStatus.ts rename to examples/openapi/cypress/src/gen/cypress/petRequests/optionsFindPetsByStatus.ts diff --git a/examples/cypress/src/gen/cypress/petRequests/updatePet.ts b/examples/openapi/cypress/src/gen/cypress/petRequests/updatePet.ts similarity index 100% rename from examples/cypress/src/gen/cypress/petRequests/updatePet.ts rename to examples/openapi/cypress/src/gen/cypress/petRequests/updatePet.ts diff --git a/examples/cypress/src/gen/cypress/petRequests/updatePetWithForm.ts b/examples/openapi/cypress/src/gen/cypress/petRequests/updatePetWithForm.ts similarity index 100% rename from examples/cypress/src/gen/cypress/petRequests/updatePetWithForm.ts rename to examples/openapi/cypress/src/gen/cypress/petRequests/updatePetWithForm.ts diff --git a/examples/cypress/src/gen/cypress/petRequests/uploadFile.ts b/examples/openapi/cypress/src/gen/cypress/petRequests/uploadFile.ts similarity index 100% rename from examples/cypress/src/gen/cypress/petRequests/uploadFile.ts rename to examples/openapi/cypress/src/gen/cypress/petRequests/uploadFile.ts diff --git a/examples/cypress/src/gen/cypress/storeRequests/deleteOrder.ts b/examples/openapi/cypress/src/gen/cypress/storeRequests/deleteOrder.ts similarity index 100% rename from examples/cypress/src/gen/cypress/storeRequests/deleteOrder.ts rename to examples/openapi/cypress/src/gen/cypress/storeRequests/deleteOrder.ts diff --git a/examples/cypress/src/gen/cypress/storeRequests/getInventory.ts b/examples/openapi/cypress/src/gen/cypress/storeRequests/getInventory.ts similarity index 100% rename from examples/cypress/src/gen/cypress/storeRequests/getInventory.ts rename to examples/openapi/cypress/src/gen/cypress/storeRequests/getInventory.ts diff --git a/examples/cypress/src/gen/cypress/storeRequests/getOrderById.ts b/examples/openapi/cypress/src/gen/cypress/storeRequests/getOrderById.ts similarity index 100% rename from examples/cypress/src/gen/cypress/storeRequests/getOrderById.ts rename to examples/openapi/cypress/src/gen/cypress/storeRequests/getOrderById.ts diff --git a/examples/cypress/src/gen/cypress/storeRequests/index.ts b/examples/openapi/cypress/src/gen/cypress/storeRequests/index.ts similarity index 100% rename from examples/cypress/src/gen/cypress/storeRequests/index.ts rename to examples/openapi/cypress/src/gen/cypress/storeRequests/index.ts diff --git a/examples/cypress/src/gen/cypress/storeRequests/placeOrder.ts b/examples/openapi/cypress/src/gen/cypress/storeRequests/placeOrder.ts similarity index 100% rename from examples/cypress/src/gen/cypress/storeRequests/placeOrder.ts rename to examples/openapi/cypress/src/gen/cypress/storeRequests/placeOrder.ts diff --git a/examples/cypress/src/gen/cypress/storeRequests/placeOrderPatch.ts b/examples/openapi/cypress/src/gen/cypress/storeRequests/placeOrderPatch.ts similarity index 100% rename from examples/cypress/src/gen/cypress/storeRequests/placeOrderPatch.ts rename to examples/openapi/cypress/src/gen/cypress/storeRequests/placeOrderPatch.ts diff --git a/examples/cypress/src/gen/index.ts b/examples/openapi/cypress/src/gen/index.ts similarity index 100% rename from examples/cypress/src/gen/index.ts rename to examples/openapi/cypress/src/gen/index.ts diff --git a/examples/cypress/src/gen/models.ts b/examples/openapi/cypress/src/gen/models.ts similarity index 100% rename from examples/cypress/src/gen/models.ts rename to examples/openapi/cypress/src/gen/models.ts diff --git a/examples/cypress/src/index.ts b/examples/openapi/cypress/src/index.ts similarity index 100% rename from examples/cypress/src/index.ts rename to examples/openapi/cypress/src/index.ts diff --git a/examples/cypress/tsconfig.json b/examples/openapi/cypress/tsconfig.json similarity index 100% rename from examples/cypress/tsconfig.json rename to examples/openapi/cypress/tsconfig.json diff --git a/examples/faker/kubb.config.cjs b/examples/openapi/faker/kubb.config.cjs similarity index 100% rename from examples/faker/kubb.config.cjs rename to examples/openapi/faker/kubb.config.cjs diff --git a/examples/faker/package.json b/examples/openapi/faker/package.json similarity index 96% rename from examples/faker/package.json rename to examples/openapi/faker/package.json index da26146c7..71c27b41b 100644 --- a/examples/faker/package.json +++ b/examples/openapi/faker/package.json @@ -8,7 +8,7 @@ "repository": { "type": "git", "url": "https://github.com/kubb-labs/plugins.git", - "directory": "examples/faker" + "directory": "examples/openapi/faker" }, "type": "commonjs", "sideEffects": false, diff --git a/examples/faker/petStore.yaml b/examples/openapi/faker/petStore.yaml similarity index 100% rename from examples/faker/petStore.yaml rename to examples/openapi/faker/petStore.yaml diff --git a/examples/faker/src/gen/faker/createCategory.ts b/examples/openapi/faker/src/gen/faker/createCategory.ts similarity index 100% rename from examples/faker/src/gen/faker/createCategory.ts rename to examples/openapi/faker/src/gen/faker/createCategory.ts diff --git a/examples/faker/src/gen/faker/createPet.ts b/examples/openapi/faker/src/gen/faker/createPet.ts similarity index 100% rename from examples/faker/src/gen/faker/createPet.ts rename to examples/openapi/faker/src/gen/faker/createPet.ts diff --git a/examples/faker/src/gen/faker/createTag.ts b/examples/openapi/faker/src/gen/faker/createTag.ts similarity index 100% rename from examples/faker/src/gen/faker/createTag.ts rename to examples/openapi/faker/src/gen/faker/createTag.ts diff --git a/examples/faker/src/gen/faker/createUpdatePet.ts b/examples/openapi/faker/src/gen/faker/createUpdatePet.ts similarity index 100% rename from examples/faker/src/gen/faker/createUpdatePet.ts rename to examples/openapi/faker/src/gen/faker/createUpdatePet.ts diff --git a/examples/faker/src/gen/faker/createUpdatePetWithForm.ts b/examples/openapi/faker/src/gen/faker/createUpdatePetWithForm.ts similarity index 100% rename from examples/faker/src/gen/faker/createUpdatePetWithForm.ts rename to examples/openapi/faker/src/gen/faker/createUpdatePetWithForm.ts diff --git a/examples/faker/src/gen/models/AddPet.ts b/examples/openapi/faker/src/gen/models/AddPet.ts similarity index 100% rename from examples/faker/src/gen/models/AddPet.ts rename to examples/openapi/faker/src/gen/models/AddPet.ts diff --git a/examples/faker/src/gen/models/ApiResponse.ts b/examples/openapi/faker/src/gen/models/ApiResponse.ts similarity index 100% rename from examples/faker/src/gen/models/ApiResponse.ts rename to examples/openapi/faker/src/gen/models/ApiResponse.ts diff --git a/examples/faker/src/gen/models/Category.ts b/examples/openapi/faker/src/gen/models/Category.ts similarity index 100% rename from examples/faker/src/gen/models/Category.ts rename to examples/openapi/faker/src/gen/models/Category.ts diff --git a/examples/faker/src/gen/models/DeleteOrder.ts b/examples/openapi/faker/src/gen/models/DeleteOrder.ts similarity index 100% rename from examples/faker/src/gen/models/DeleteOrder.ts rename to examples/openapi/faker/src/gen/models/DeleteOrder.ts diff --git a/examples/faker/src/gen/models/DeletePet.ts b/examples/openapi/faker/src/gen/models/DeletePet.ts similarity index 100% rename from examples/faker/src/gen/models/DeletePet.ts rename to examples/openapi/faker/src/gen/models/DeletePet.ts diff --git a/examples/faker/src/gen/models/FindPetsByStatus.ts b/examples/openapi/faker/src/gen/models/FindPetsByStatus.ts similarity index 100% rename from examples/faker/src/gen/models/FindPetsByStatus.ts rename to examples/openapi/faker/src/gen/models/FindPetsByStatus.ts diff --git a/examples/faker/src/gen/models/FindPetsByTags.ts b/examples/openapi/faker/src/gen/models/FindPetsByTags.ts similarity index 100% rename from examples/faker/src/gen/models/FindPetsByTags.ts rename to examples/openapi/faker/src/gen/models/FindPetsByTags.ts diff --git a/examples/faker/src/gen/models/GetInventory.ts b/examples/openapi/faker/src/gen/models/GetInventory.ts similarity index 100% rename from examples/faker/src/gen/models/GetInventory.ts rename to examples/openapi/faker/src/gen/models/GetInventory.ts diff --git a/examples/faker/src/gen/models/GetOrderById.ts b/examples/openapi/faker/src/gen/models/GetOrderById.ts similarity index 100% rename from examples/faker/src/gen/models/GetOrderById.ts rename to examples/openapi/faker/src/gen/models/GetOrderById.ts diff --git a/examples/faker/src/gen/models/GetPetById.ts b/examples/openapi/faker/src/gen/models/GetPetById.ts similarity index 100% rename from examples/faker/src/gen/models/GetPetById.ts rename to examples/openapi/faker/src/gen/models/GetPetById.ts diff --git a/examples/faker/src/gen/models/Item.ts b/examples/openapi/faker/src/gen/models/Item.ts similarity index 100% rename from examples/faker/src/gen/models/Item.ts rename to examples/openapi/faker/src/gen/models/Item.ts diff --git a/examples/faker/src/gen/models/Order.ts b/examples/openapi/faker/src/gen/models/Order.ts similarity index 100% rename from examples/faker/src/gen/models/Order.ts rename to examples/openapi/faker/src/gen/models/Order.ts diff --git a/examples/faker/src/gen/models/Pet.ts b/examples/openapi/faker/src/gen/models/Pet.ts similarity index 100% rename from examples/faker/src/gen/models/Pet.ts rename to examples/openapi/faker/src/gen/models/Pet.ts diff --git a/examples/faker/src/gen/models/PlaceOrder.ts b/examples/openapi/faker/src/gen/models/PlaceOrder.ts similarity index 100% rename from examples/faker/src/gen/models/PlaceOrder.ts rename to examples/openapi/faker/src/gen/models/PlaceOrder.ts diff --git a/examples/faker/src/gen/models/Tag.ts b/examples/openapi/faker/src/gen/models/Tag.ts similarity index 100% rename from examples/faker/src/gen/models/Tag.ts rename to examples/openapi/faker/src/gen/models/Tag.ts diff --git a/examples/faker/src/gen/models/UpdatePet.ts b/examples/openapi/faker/src/gen/models/UpdatePet.ts similarity index 100% rename from examples/faker/src/gen/models/UpdatePet.ts rename to examples/openapi/faker/src/gen/models/UpdatePet.ts diff --git a/examples/faker/src/gen/models/UpdatePetWithForm.ts b/examples/openapi/faker/src/gen/models/UpdatePetWithForm.ts similarity index 100% rename from examples/faker/src/gen/models/UpdatePetWithForm.ts rename to examples/openapi/faker/src/gen/models/UpdatePetWithForm.ts diff --git a/examples/faker/src/gen/models/UploadFile.ts b/examples/openapi/faker/src/gen/models/UploadFile.ts similarity index 100% rename from examples/faker/src/gen/models/UploadFile.ts rename to examples/openapi/faker/src/gen/models/UploadFile.ts diff --git a/examples/faker/src/gen/tag/createDeleteOrder.ts b/examples/openapi/faker/src/gen/tag/createDeleteOrder.ts similarity index 100% rename from examples/faker/src/gen/tag/createDeleteOrder.ts rename to examples/openapi/faker/src/gen/tag/createDeleteOrder.ts diff --git a/examples/faker/src/gen/tag/createGetInventory.ts b/examples/openapi/faker/src/gen/tag/createGetInventory.ts similarity index 100% rename from examples/faker/src/gen/tag/createGetInventory.ts rename to examples/openapi/faker/src/gen/tag/createGetInventory.ts diff --git a/examples/faker/src/gen/tag/createGetOrderById.ts b/examples/openapi/faker/src/gen/tag/createGetOrderById.ts similarity index 100% rename from examples/faker/src/gen/tag/createGetOrderById.ts rename to examples/openapi/faker/src/gen/tag/createGetOrderById.ts diff --git a/examples/faker/src/gen/tag/createOrder.ts b/examples/openapi/faker/src/gen/tag/createOrder.ts similarity index 100% rename from examples/faker/src/gen/tag/createOrder.ts rename to examples/openapi/faker/src/gen/tag/createOrder.ts diff --git a/examples/faker/src/gen/tag/createPlaceOrder.ts b/examples/openapi/faker/src/gen/tag/createPlaceOrder.ts similarity index 100% rename from examples/faker/src/gen/tag/createPlaceOrder.ts rename to examples/openapi/faker/src/gen/tag/createPlaceOrder.ts diff --git a/examples/msw/src/index.ts b/examples/openapi/faker/src/index.ts similarity index 100% rename from examples/msw/src/index.ts rename to examples/openapi/faker/src/index.ts diff --git a/examples/faker/tsconfig.json b/examples/openapi/faker/tsconfig.json similarity index 88% rename from examples/faker/tsconfig.json rename to examples/openapi/faker/tsconfig.json index 4d2cf6e98..18759a2d4 100644 --- a/examples/faker/tsconfig.json +++ b/examples/openapi/faker/tsconfig.json @@ -17,6 +17,6 @@ "allowImportingTsExtensions": true, "noEmit": true }, - "include": ["./src/**/*", "../../typings.d.ts", "./kubb.config.cjs"], + "include": ["./src/**/*", "../../../typings.d.ts", "./kubb.config.cjs"], "exclude": ["**/node_modules", "**/types/**", "**/mocks/**"] } diff --git a/examples/fetch/kubb.config.ts b/examples/openapi/fetch/kubb.config.ts similarity index 100% rename from examples/fetch/kubb.config.ts rename to examples/openapi/fetch/kubb.config.ts diff --git a/examples/fetch/package.json b/examples/openapi/fetch/package.json similarity index 95% rename from examples/fetch/package.json rename to examples/openapi/fetch/package.json index 8177b6214..84e561ead 100644 --- a/examples/fetch/package.json +++ b/examples/openapi/fetch/package.json @@ -8,7 +8,7 @@ "repository": { "type": "git", "url": "https://github.com/kubb-labs/plugins.git", - "directory": "examples/fetch" + "directory": "examples/openapi/fetch" }, "type": "module", "sideEffects": false, diff --git a/examples/fetch/petStore.yaml b/examples/openapi/fetch/petStore.yaml similarity index 100% rename from examples/fetch/petStore.yaml rename to examples/openapi/fetch/petStore.yaml diff --git a/examples/fetch/src/gen/.kubb/client.ts b/examples/openapi/fetch/src/gen/.kubb/client.ts similarity index 100% rename from examples/fetch/src/gen/.kubb/client.ts rename to examples/openapi/fetch/src/gen/.kubb/client.ts diff --git a/examples/fetch/src/gen/.kubb/serializers.ts b/examples/openapi/fetch/src/gen/.kubb/serializers.ts similarity index 100% rename from examples/fetch/src/gen/.kubb/serializers.ts rename to examples/openapi/fetch/src/gen/.kubb/serializers.ts diff --git a/examples/fetch/src/gen/.kubb/standardSchema.ts b/examples/openapi/fetch/src/gen/.kubb/standardSchema.ts similarity index 100% rename from examples/fetch/src/gen/.kubb/standardSchema.ts rename to examples/openapi/fetch/src/gen/.kubb/standardSchema.ts diff --git a/examples/fetch/src/gen/clients/index.ts b/examples/openapi/fetch/src/gen/clients/index.ts similarity index 100% rename from examples/fetch/src/gen/clients/index.ts rename to examples/openapi/fetch/src/gen/clients/index.ts diff --git a/examples/fetch/src/gen/clients/pet/addPet.ts b/examples/openapi/fetch/src/gen/clients/pet/addPet.ts similarity index 100% rename from examples/fetch/src/gen/clients/pet/addPet.ts rename to examples/openapi/fetch/src/gen/clients/pet/addPet.ts diff --git a/examples/fetch/src/gen/clients/pet/deletePet.ts b/examples/openapi/fetch/src/gen/clients/pet/deletePet.ts similarity index 100% rename from examples/fetch/src/gen/clients/pet/deletePet.ts rename to examples/openapi/fetch/src/gen/clients/pet/deletePet.ts diff --git a/examples/fetch/src/gen/clients/pet/findPetsByStatus.ts b/examples/openapi/fetch/src/gen/clients/pet/findPetsByStatus.ts similarity index 100% rename from examples/fetch/src/gen/clients/pet/findPetsByStatus.ts rename to examples/openapi/fetch/src/gen/clients/pet/findPetsByStatus.ts diff --git a/examples/fetch/src/gen/clients/pet/findPetsByTags.ts b/examples/openapi/fetch/src/gen/clients/pet/findPetsByTags.ts similarity index 100% rename from examples/fetch/src/gen/clients/pet/findPetsByTags.ts rename to examples/openapi/fetch/src/gen/clients/pet/findPetsByTags.ts diff --git a/examples/fetch/src/gen/clients/pet/getPetById.ts b/examples/openapi/fetch/src/gen/clients/pet/getPetById.ts similarity index 100% rename from examples/fetch/src/gen/clients/pet/getPetById.ts rename to examples/openapi/fetch/src/gen/clients/pet/getPetById.ts diff --git a/examples/fetch/src/gen/clients/pet/index.ts b/examples/openapi/fetch/src/gen/clients/pet/index.ts similarity index 100% rename from examples/fetch/src/gen/clients/pet/index.ts rename to examples/openapi/fetch/src/gen/clients/pet/index.ts diff --git a/examples/fetch/src/gen/clients/pet/updatePet.ts b/examples/openapi/fetch/src/gen/clients/pet/updatePet.ts similarity index 100% rename from examples/fetch/src/gen/clients/pet/updatePet.ts rename to examples/openapi/fetch/src/gen/clients/pet/updatePet.ts diff --git a/examples/fetch/src/gen/clients/pet/updatePetWithForm.ts b/examples/openapi/fetch/src/gen/clients/pet/updatePetWithForm.ts similarity index 100% rename from examples/fetch/src/gen/clients/pet/updatePetWithForm.ts rename to examples/openapi/fetch/src/gen/clients/pet/updatePetWithForm.ts diff --git a/examples/fetch/src/gen/clients/pet/uploadFile.ts b/examples/openapi/fetch/src/gen/clients/pet/uploadFile.ts similarity index 100% rename from examples/fetch/src/gen/clients/pet/uploadFile.ts rename to examples/openapi/fetch/src/gen/clients/pet/uploadFile.ts diff --git a/examples/fetch/src/gen/clients/store/deleteOrder.ts b/examples/openapi/fetch/src/gen/clients/store/deleteOrder.ts similarity index 100% rename from examples/fetch/src/gen/clients/store/deleteOrder.ts rename to examples/openapi/fetch/src/gen/clients/store/deleteOrder.ts diff --git a/examples/fetch/src/gen/clients/store/getInventory.ts b/examples/openapi/fetch/src/gen/clients/store/getInventory.ts similarity index 100% rename from examples/fetch/src/gen/clients/store/getInventory.ts rename to examples/openapi/fetch/src/gen/clients/store/getInventory.ts diff --git a/examples/fetch/src/gen/clients/store/getOrderById.ts b/examples/openapi/fetch/src/gen/clients/store/getOrderById.ts similarity index 100% rename from examples/fetch/src/gen/clients/store/getOrderById.ts rename to examples/openapi/fetch/src/gen/clients/store/getOrderById.ts diff --git a/examples/fetch/src/gen/clients/store/index.ts b/examples/openapi/fetch/src/gen/clients/store/index.ts similarity index 100% rename from examples/fetch/src/gen/clients/store/index.ts rename to examples/openapi/fetch/src/gen/clients/store/index.ts diff --git a/examples/fetch/src/gen/clients/store/placeOrder.ts b/examples/openapi/fetch/src/gen/clients/store/placeOrder.ts similarity index 100% rename from examples/fetch/src/gen/clients/store/placeOrder.ts rename to examples/openapi/fetch/src/gen/clients/store/placeOrder.ts diff --git a/examples/fetch/src/gen/clients/store/placeOrderPatch.ts b/examples/openapi/fetch/src/gen/clients/store/placeOrderPatch.ts similarity index 100% rename from examples/fetch/src/gen/clients/store/placeOrderPatch.ts rename to examples/openapi/fetch/src/gen/clients/store/placeOrderPatch.ts diff --git a/examples/fetch/src/gen/clients/user/createUser.ts b/examples/openapi/fetch/src/gen/clients/user/createUser.ts similarity index 100% rename from examples/fetch/src/gen/clients/user/createUser.ts rename to examples/openapi/fetch/src/gen/clients/user/createUser.ts diff --git a/examples/fetch/src/gen/clients/user/createUsersWithListInput.ts b/examples/openapi/fetch/src/gen/clients/user/createUsersWithListInput.ts similarity index 100% rename from examples/fetch/src/gen/clients/user/createUsersWithListInput.ts rename to examples/openapi/fetch/src/gen/clients/user/createUsersWithListInput.ts diff --git a/examples/fetch/src/gen/clients/user/deleteUser.ts b/examples/openapi/fetch/src/gen/clients/user/deleteUser.ts similarity index 100% rename from examples/fetch/src/gen/clients/user/deleteUser.ts rename to examples/openapi/fetch/src/gen/clients/user/deleteUser.ts diff --git a/examples/fetch/src/gen/clients/user/getUserByName.ts b/examples/openapi/fetch/src/gen/clients/user/getUserByName.ts similarity index 100% rename from examples/fetch/src/gen/clients/user/getUserByName.ts rename to examples/openapi/fetch/src/gen/clients/user/getUserByName.ts diff --git a/examples/fetch/src/gen/clients/user/index.ts b/examples/openapi/fetch/src/gen/clients/user/index.ts similarity index 100% rename from examples/fetch/src/gen/clients/user/index.ts rename to examples/openapi/fetch/src/gen/clients/user/index.ts diff --git a/examples/fetch/src/gen/clients/user/loginUser.ts b/examples/openapi/fetch/src/gen/clients/user/loginUser.ts similarity index 100% rename from examples/fetch/src/gen/clients/user/loginUser.ts rename to examples/openapi/fetch/src/gen/clients/user/loginUser.ts diff --git a/examples/fetch/src/gen/clients/user/logoutUser.ts b/examples/openapi/fetch/src/gen/clients/user/logoutUser.ts similarity index 100% rename from examples/fetch/src/gen/clients/user/logoutUser.ts rename to examples/openapi/fetch/src/gen/clients/user/logoutUser.ts diff --git a/examples/fetch/src/gen/clients/user/updateUser.ts b/examples/openapi/fetch/src/gen/clients/user/updateUser.ts similarity index 100% rename from examples/fetch/src/gen/clients/user/updateUser.ts rename to examples/openapi/fetch/src/gen/clients/user/updateUser.ts diff --git a/examples/fetch/src/gen/index.ts b/examples/openapi/fetch/src/gen/index.ts similarity index 100% rename from examples/fetch/src/gen/index.ts rename to examples/openapi/fetch/src/gen/index.ts diff --git a/examples/fetch/src/gen/models/AddPetRequest.ts b/examples/openapi/fetch/src/gen/models/AddPetRequest.ts similarity index 100% rename from examples/fetch/src/gen/models/AddPetRequest.ts rename to examples/openapi/fetch/src/gen/models/AddPetRequest.ts diff --git a/examples/fetch/src/gen/models/Address.ts b/examples/openapi/fetch/src/gen/models/Address.ts similarity index 100% rename from examples/fetch/src/gen/models/Address.ts rename to examples/openapi/fetch/src/gen/models/Address.ts diff --git a/examples/fetch/src/gen/models/ApiResponse.ts b/examples/openapi/fetch/src/gen/models/ApiResponse.ts similarity index 100% rename from examples/fetch/src/gen/models/ApiResponse.ts rename to examples/openapi/fetch/src/gen/models/ApiResponse.ts diff --git a/examples/fetch/src/gen/models/Category.ts b/examples/openapi/fetch/src/gen/models/Category.ts similarity index 100% rename from examples/fetch/src/gen/models/Category.ts rename to examples/openapi/fetch/src/gen/models/Category.ts diff --git a/examples/fetch/src/gen/models/Customer.ts b/examples/openapi/fetch/src/gen/models/Customer.ts similarity index 100% rename from examples/fetch/src/gen/models/Customer.ts rename to examples/openapi/fetch/src/gen/models/Customer.ts diff --git a/examples/fetch/src/gen/models/Order.ts b/examples/openapi/fetch/src/gen/models/Order.ts similarity index 100% rename from examples/fetch/src/gen/models/Order.ts rename to examples/openapi/fetch/src/gen/models/Order.ts diff --git a/examples/fetch/src/gen/models/Pet.ts b/examples/openapi/fetch/src/gen/models/Pet.ts similarity index 100% rename from examples/fetch/src/gen/models/Pet.ts rename to examples/openapi/fetch/src/gen/models/Pet.ts diff --git a/examples/fetch/src/gen/models/PetNotFound.ts b/examples/openapi/fetch/src/gen/models/PetNotFound.ts similarity index 100% rename from examples/fetch/src/gen/models/PetNotFound.ts rename to examples/openapi/fetch/src/gen/models/PetNotFound.ts diff --git a/examples/fetch/src/gen/models/Tag.ts b/examples/openapi/fetch/src/gen/models/Tag.ts similarity index 100% rename from examples/fetch/src/gen/models/Tag.ts rename to examples/openapi/fetch/src/gen/models/Tag.ts diff --git a/examples/fetch/src/gen/models/User.ts b/examples/openapi/fetch/src/gen/models/User.ts similarity index 100% rename from examples/fetch/src/gen/models/User.ts rename to examples/openapi/fetch/src/gen/models/User.ts diff --git a/examples/fetch/src/gen/models/UserArray.ts b/examples/openapi/fetch/src/gen/models/UserArray.ts similarity index 100% rename from examples/fetch/src/gen/models/UserArray.ts rename to examples/openapi/fetch/src/gen/models/UserArray.ts diff --git a/examples/fetch/src/gen/models/index.ts b/examples/openapi/fetch/src/gen/models/index.ts similarity index 100% rename from examples/fetch/src/gen/models/index.ts rename to examples/openapi/fetch/src/gen/models/index.ts diff --git a/examples/fetch/src/gen/models/pet/AddPet.ts b/examples/openapi/fetch/src/gen/models/pet/AddPet.ts similarity index 100% rename from examples/fetch/src/gen/models/pet/AddPet.ts rename to examples/openapi/fetch/src/gen/models/pet/AddPet.ts diff --git a/examples/fetch/src/gen/models/pet/DeletePet.ts b/examples/openapi/fetch/src/gen/models/pet/DeletePet.ts similarity index 100% rename from examples/fetch/src/gen/models/pet/DeletePet.ts rename to examples/openapi/fetch/src/gen/models/pet/DeletePet.ts diff --git a/examples/fetch/src/gen/models/pet/FindPetsByStatus.ts b/examples/openapi/fetch/src/gen/models/pet/FindPetsByStatus.ts similarity index 100% rename from examples/fetch/src/gen/models/pet/FindPetsByStatus.ts rename to examples/openapi/fetch/src/gen/models/pet/FindPetsByStatus.ts diff --git a/examples/fetch/src/gen/models/pet/FindPetsByTags.ts b/examples/openapi/fetch/src/gen/models/pet/FindPetsByTags.ts similarity index 100% rename from examples/fetch/src/gen/models/pet/FindPetsByTags.ts rename to examples/openapi/fetch/src/gen/models/pet/FindPetsByTags.ts diff --git a/examples/fetch/src/gen/models/pet/GetPetById.ts b/examples/openapi/fetch/src/gen/models/pet/GetPetById.ts similarity index 100% rename from examples/fetch/src/gen/models/pet/GetPetById.ts rename to examples/openapi/fetch/src/gen/models/pet/GetPetById.ts diff --git a/examples/fetch/src/gen/models/pet/UpdatePet.ts b/examples/openapi/fetch/src/gen/models/pet/UpdatePet.ts similarity index 100% rename from examples/fetch/src/gen/models/pet/UpdatePet.ts rename to examples/openapi/fetch/src/gen/models/pet/UpdatePet.ts diff --git a/examples/fetch/src/gen/models/pet/UpdatePetWithForm.ts b/examples/openapi/fetch/src/gen/models/pet/UpdatePetWithForm.ts similarity index 100% rename from examples/fetch/src/gen/models/pet/UpdatePetWithForm.ts rename to examples/openapi/fetch/src/gen/models/pet/UpdatePetWithForm.ts diff --git a/examples/fetch/src/gen/models/pet/UploadFile.ts b/examples/openapi/fetch/src/gen/models/pet/UploadFile.ts similarity index 100% rename from examples/fetch/src/gen/models/pet/UploadFile.ts rename to examples/openapi/fetch/src/gen/models/pet/UploadFile.ts diff --git a/examples/fetch/src/gen/models/pet/index.ts b/examples/openapi/fetch/src/gen/models/pet/index.ts similarity index 100% rename from examples/fetch/src/gen/models/pet/index.ts rename to examples/openapi/fetch/src/gen/models/pet/index.ts diff --git a/examples/fetch/src/gen/models/store/DeleteOrder.ts b/examples/openapi/fetch/src/gen/models/store/DeleteOrder.ts similarity index 100% rename from examples/fetch/src/gen/models/store/DeleteOrder.ts rename to examples/openapi/fetch/src/gen/models/store/DeleteOrder.ts diff --git a/examples/fetch/src/gen/models/store/GetInventory.ts b/examples/openapi/fetch/src/gen/models/store/GetInventory.ts similarity index 100% rename from examples/fetch/src/gen/models/store/GetInventory.ts rename to examples/openapi/fetch/src/gen/models/store/GetInventory.ts diff --git a/examples/fetch/src/gen/models/store/GetOrderById.ts b/examples/openapi/fetch/src/gen/models/store/GetOrderById.ts similarity index 100% rename from examples/fetch/src/gen/models/store/GetOrderById.ts rename to examples/openapi/fetch/src/gen/models/store/GetOrderById.ts diff --git a/examples/fetch/src/gen/models/store/PlaceOrder.ts b/examples/openapi/fetch/src/gen/models/store/PlaceOrder.ts similarity index 100% rename from examples/fetch/src/gen/models/store/PlaceOrder.ts rename to examples/openapi/fetch/src/gen/models/store/PlaceOrder.ts diff --git a/examples/fetch/src/gen/models/store/PlaceOrderPatch.ts b/examples/openapi/fetch/src/gen/models/store/PlaceOrderPatch.ts similarity index 100% rename from examples/fetch/src/gen/models/store/PlaceOrderPatch.ts rename to examples/openapi/fetch/src/gen/models/store/PlaceOrderPatch.ts diff --git a/examples/fetch/src/gen/models/store/index.ts b/examples/openapi/fetch/src/gen/models/store/index.ts similarity index 100% rename from examples/fetch/src/gen/models/store/index.ts rename to examples/openapi/fetch/src/gen/models/store/index.ts diff --git a/examples/fetch/src/gen/models/user/CreateUser.ts b/examples/openapi/fetch/src/gen/models/user/CreateUser.ts similarity index 100% rename from examples/fetch/src/gen/models/user/CreateUser.ts rename to examples/openapi/fetch/src/gen/models/user/CreateUser.ts diff --git a/examples/fetch/src/gen/models/user/CreateUsersWithListInput.ts b/examples/openapi/fetch/src/gen/models/user/CreateUsersWithListInput.ts similarity index 100% rename from examples/fetch/src/gen/models/user/CreateUsersWithListInput.ts rename to examples/openapi/fetch/src/gen/models/user/CreateUsersWithListInput.ts diff --git a/examples/fetch/src/gen/models/user/DeleteUser.ts b/examples/openapi/fetch/src/gen/models/user/DeleteUser.ts similarity index 100% rename from examples/fetch/src/gen/models/user/DeleteUser.ts rename to examples/openapi/fetch/src/gen/models/user/DeleteUser.ts diff --git a/examples/fetch/src/gen/models/user/GetUserByName.ts b/examples/openapi/fetch/src/gen/models/user/GetUserByName.ts similarity index 100% rename from examples/fetch/src/gen/models/user/GetUserByName.ts rename to examples/openapi/fetch/src/gen/models/user/GetUserByName.ts diff --git a/examples/fetch/src/gen/models/user/LoginUser.ts b/examples/openapi/fetch/src/gen/models/user/LoginUser.ts similarity index 100% rename from examples/fetch/src/gen/models/user/LoginUser.ts rename to examples/openapi/fetch/src/gen/models/user/LoginUser.ts diff --git a/examples/fetch/src/gen/models/user/LogoutUser.ts b/examples/openapi/fetch/src/gen/models/user/LogoutUser.ts similarity index 100% rename from examples/fetch/src/gen/models/user/LogoutUser.ts rename to examples/openapi/fetch/src/gen/models/user/LogoutUser.ts diff --git a/examples/fetch/src/gen/models/user/UpdateUser.ts b/examples/openapi/fetch/src/gen/models/user/UpdateUser.ts similarity index 100% rename from examples/fetch/src/gen/models/user/UpdateUser.ts rename to examples/openapi/fetch/src/gen/models/user/UpdateUser.ts diff --git a/examples/fetch/src/gen/models/user/index.ts b/examples/openapi/fetch/src/gen/models/user/index.ts similarity index 100% rename from examples/fetch/src/gen/models/user/index.ts rename to examples/openapi/fetch/src/gen/models/user/index.ts diff --git a/examples/fetch/src/index.ts b/examples/openapi/fetch/src/index.ts similarity index 100% rename from examples/fetch/src/index.ts rename to examples/openapi/fetch/src/index.ts diff --git a/examples/fetch/tsconfig.json b/examples/openapi/fetch/tsconfig.json similarity index 100% rename from examples/fetch/tsconfig.json rename to examples/openapi/fetch/tsconfig.json diff --git a/examples/mcp/kubb.config.ts b/examples/openapi/mcp/kubb.config.ts similarity index 100% rename from examples/mcp/kubb.config.ts rename to examples/openapi/mcp/kubb.config.ts diff --git a/examples/mcp/package.json b/examples/openapi/mcp/package.json similarity index 96% rename from examples/mcp/package.json rename to examples/openapi/mcp/package.json index 2515db20c..bfffa1bb1 100644 --- a/examples/mcp/package.json +++ b/examples/openapi/mcp/package.json @@ -8,7 +8,7 @@ "repository": { "type": "git", "url": "https://github.com/kubb-labs/plugins.git", - "directory": "examples/mcp" + "directory": "examples/openapi/mcp" }, "sideEffects": false, "scripts": { diff --git a/examples/mcp/petStore.yaml b/examples/openapi/mcp/petStore.yaml similarity index 100% rename from examples/mcp/petStore.yaml rename to examples/openapi/mcp/petStore.yaml diff --git a/examples/mcp/src/client.ts b/examples/openapi/mcp/src/client.ts similarity index 100% rename from examples/mcp/src/client.ts rename to examples/openapi/mcp/src/client.ts diff --git a/examples/mcp/src/gen/.kubb/client.ts b/examples/openapi/mcp/src/gen/.kubb/client.ts similarity index 100% rename from examples/mcp/src/gen/.kubb/client.ts rename to examples/openapi/mcp/src/gen/.kubb/client.ts diff --git a/examples/mcp/src/gen/.kubb/serializers.ts b/examples/openapi/mcp/src/gen/.kubb/serializers.ts similarity index 100% rename from examples/mcp/src/gen/.kubb/serializers.ts rename to examples/openapi/mcp/src/gen/.kubb/serializers.ts diff --git a/examples/mcp/src/gen/.kubb/standardSchema.ts b/examples/openapi/mcp/src/gen/.kubb/standardSchema.ts similarity index 100% rename from examples/mcp/src/gen/.kubb/standardSchema.ts rename to examples/openapi/mcp/src/gen/.kubb/standardSchema.ts diff --git a/examples/mcp/src/gen/clients/addFiles.ts b/examples/openapi/mcp/src/gen/clients/addFiles.ts similarity index 100% rename from examples/mcp/src/gen/clients/addFiles.ts rename to examples/openapi/mcp/src/gen/clients/addFiles.ts diff --git a/examples/mcp/src/gen/clients/addPet.ts b/examples/openapi/mcp/src/gen/clients/addPet.ts similarity index 100% rename from examples/mcp/src/gen/clients/addPet.ts rename to examples/openapi/mcp/src/gen/clients/addPet.ts diff --git a/examples/mcp/src/gen/clients/createPets.ts b/examples/openapi/mcp/src/gen/clients/createPets.ts similarity index 100% rename from examples/mcp/src/gen/clients/createPets.ts rename to examples/openapi/mcp/src/gen/clients/createPets.ts diff --git a/examples/mcp/src/gen/clients/deleteOrder.ts b/examples/openapi/mcp/src/gen/clients/deleteOrder.ts similarity index 100% rename from examples/mcp/src/gen/clients/deleteOrder.ts rename to examples/openapi/mcp/src/gen/clients/deleteOrder.ts diff --git a/examples/mcp/src/gen/clients/deletePet.ts b/examples/openapi/mcp/src/gen/clients/deletePet.ts similarity index 100% rename from examples/mcp/src/gen/clients/deletePet.ts rename to examples/openapi/mcp/src/gen/clients/deletePet.ts diff --git a/examples/mcp/src/gen/clients/findPetsByStatus.ts b/examples/openapi/mcp/src/gen/clients/findPetsByStatus.ts similarity index 100% rename from examples/mcp/src/gen/clients/findPetsByStatus.ts rename to examples/openapi/mcp/src/gen/clients/findPetsByStatus.ts diff --git a/examples/mcp/src/gen/clients/findPetsByTags.ts b/examples/openapi/mcp/src/gen/clients/findPetsByTags.ts similarity index 100% rename from examples/mcp/src/gen/clients/findPetsByTags.ts rename to examples/openapi/mcp/src/gen/clients/findPetsByTags.ts diff --git a/examples/mcp/src/gen/clients/getInventory.ts b/examples/openapi/mcp/src/gen/clients/getInventory.ts similarity index 100% rename from examples/mcp/src/gen/clients/getInventory.ts rename to examples/openapi/mcp/src/gen/clients/getInventory.ts diff --git a/examples/mcp/src/gen/clients/getOrderById.ts b/examples/openapi/mcp/src/gen/clients/getOrderById.ts similarity index 100% rename from examples/mcp/src/gen/clients/getOrderById.ts rename to examples/openapi/mcp/src/gen/clients/getOrderById.ts diff --git a/examples/mcp/src/gen/clients/getPetById.ts b/examples/openapi/mcp/src/gen/clients/getPetById.ts similarity index 100% rename from examples/mcp/src/gen/clients/getPetById.ts rename to examples/openapi/mcp/src/gen/clients/getPetById.ts diff --git a/examples/mcp/src/gen/clients/index.ts b/examples/openapi/mcp/src/gen/clients/index.ts similarity index 100% rename from examples/mcp/src/gen/clients/index.ts rename to examples/openapi/mcp/src/gen/clients/index.ts diff --git a/examples/mcp/src/gen/clients/placeOrder.ts b/examples/openapi/mcp/src/gen/clients/placeOrder.ts similarity index 100% rename from examples/mcp/src/gen/clients/placeOrder.ts rename to examples/openapi/mcp/src/gen/clients/placeOrder.ts diff --git a/examples/mcp/src/gen/clients/placeOrderPatch.ts b/examples/openapi/mcp/src/gen/clients/placeOrderPatch.ts similarity index 100% rename from examples/mcp/src/gen/clients/placeOrderPatch.ts rename to examples/openapi/mcp/src/gen/clients/placeOrderPatch.ts diff --git a/examples/mcp/src/gen/clients/updatePet.ts b/examples/openapi/mcp/src/gen/clients/updatePet.ts similarity index 100% rename from examples/mcp/src/gen/clients/updatePet.ts rename to examples/openapi/mcp/src/gen/clients/updatePet.ts diff --git a/examples/mcp/src/gen/clients/updatePetWithForm.ts b/examples/openapi/mcp/src/gen/clients/updatePetWithForm.ts similarity index 100% rename from examples/mcp/src/gen/clients/updatePetWithForm.ts rename to examples/openapi/mcp/src/gen/clients/updatePetWithForm.ts diff --git a/examples/mcp/src/gen/index.ts b/examples/openapi/mcp/src/gen/index.ts similarity index 100% rename from examples/mcp/src/gen/index.ts rename to examples/openapi/mcp/src/gen/index.ts diff --git a/examples/mcp/src/gen/mcp/addFiles.ts b/examples/openapi/mcp/src/gen/mcp/addFiles.ts similarity index 100% rename from examples/mcp/src/gen/mcp/addFiles.ts rename to examples/openapi/mcp/src/gen/mcp/addFiles.ts diff --git a/examples/mcp/src/gen/mcp/addPet.ts b/examples/openapi/mcp/src/gen/mcp/addPet.ts similarity index 100% rename from examples/mcp/src/gen/mcp/addPet.ts rename to examples/openapi/mcp/src/gen/mcp/addPet.ts diff --git a/examples/mcp/src/gen/mcp/createPets.ts b/examples/openapi/mcp/src/gen/mcp/createPets.ts similarity index 100% rename from examples/mcp/src/gen/mcp/createPets.ts rename to examples/openapi/mcp/src/gen/mcp/createPets.ts diff --git a/examples/mcp/src/gen/mcp/deleteOrder.ts b/examples/openapi/mcp/src/gen/mcp/deleteOrder.ts similarity index 100% rename from examples/mcp/src/gen/mcp/deleteOrder.ts rename to examples/openapi/mcp/src/gen/mcp/deleteOrder.ts diff --git a/examples/mcp/src/gen/mcp/deletePet.ts b/examples/openapi/mcp/src/gen/mcp/deletePet.ts similarity index 100% rename from examples/mcp/src/gen/mcp/deletePet.ts rename to examples/openapi/mcp/src/gen/mcp/deletePet.ts diff --git a/examples/mcp/src/gen/mcp/findPetsByStatus.ts b/examples/openapi/mcp/src/gen/mcp/findPetsByStatus.ts similarity index 100% rename from examples/mcp/src/gen/mcp/findPetsByStatus.ts rename to examples/openapi/mcp/src/gen/mcp/findPetsByStatus.ts diff --git a/examples/mcp/src/gen/mcp/findPetsByTags.ts b/examples/openapi/mcp/src/gen/mcp/findPetsByTags.ts similarity index 100% rename from examples/mcp/src/gen/mcp/findPetsByTags.ts rename to examples/openapi/mcp/src/gen/mcp/findPetsByTags.ts diff --git a/examples/mcp/src/gen/mcp/getInventory.ts b/examples/openapi/mcp/src/gen/mcp/getInventory.ts similarity index 100% rename from examples/mcp/src/gen/mcp/getInventory.ts rename to examples/openapi/mcp/src/gen/mcp/getInventory.ts diff --git a/examples/mcp/src/gen/mcp/getOrderById.ts b/examples/openapi/mcp/src/gen/mcp/getOrderById.ts similarity index 100% rename from examples/mcp/src/gen/mcp/getOrderById.ts rename to examples/openapi/mcp/src/gen/mcp/getOrderById.ts diff --git a/examples/mcp/src/gen/mcp/getPetById.ts b/examples/openapi/mcp/src/gen/mcp/getPetById.ts similarity index 100% rename from examples/mcp/src/gen/mcp/getPetById.ts rename to examples/openapi/mcp/src/gen/mcp/getPetById.ts diff --git a/examples/mcp/src/gen/mcp/index.ts b/examples/openapi/mcp/src/gen/mcp/index.ts similarity index 100% rename from examples/mcp/src/gen/mcp/index.ts rename to examples/openapi/mcp/src/gen/mcp/index.ts diff --git a/examples/mcp/src/gen/mcp/placeOrder.ts b/examples/openapi/mcp/src/gen/mcp/placeOrder.ts similarity index 100% rename from examples/mcp/src/gen/mcp/placeOrder.ts rename to examples/openapi/mcp/src/gen/mcp/placeOrder.ts diff --git a/examples/mcp/src/gen/mcp/placeOrderPatch.ts b/examples/openapi/mcp/src/gen/mcp/placeOrderPatch.ts similarity index 100% rename from examples/mcp/src/gen/mcp/placeOrderPatch.ts rename to examples/openapi/mcp/src/gen/mcp/placeOrderPatch.ts diff --git a/examples/mcp/src/gen/mcp/server.ts b/examples/openapi/mcp/src/gen/mcp/server.ts similarity index 100% rename from examples/mcp/src/gen/mcp/server.ts rename to examples/openapi/mcp/src/gen/mcp/server.ts diff --git a/examples/mcp/src/gen/mcp/updatePet.ts b/examples/openapi/mcp/src/gen/mcp/updatePet.ts similarity index 100% rename from examples/mcp/src/gen/mcp/updatePet.ts rename to examples/openapi/mcp/src/gen/mcp/updatePet.ts diff --git a/examples/mcp/src/gen/mcp/updatePetWithForm.ts b/examples/openapi/mcp/src/gen/mcp/updatePetWithForm.ts similarity index 100% rename from examples/mcp/src/gen/mcp/updatePetWithForm.ts rename to examples/openapi/mcp/src/gen/mcp/updatePetWithForm.ts diff --git a/examples/mcp/src/gen/models/ts/AddFiles.ts b/examples/openapi/mcp/src/gen/models/ts/AddFiles.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/AddFiles.ts rename to examples/openapi/mcp/src/gen/models/ts/AddFiles.ts diff --git a/examples/mcp/src/gen/models/ts/AddPet.ts b/examples/openapi/mcp/src/gen/models/ts/AddPet.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/AddPet.ts rename to examples/openapi/mcp/src/gen/models/ts/AddPet.ts diff --git a/examples/mcp/src/gen/models/ts/AddPetRequest.ts b/examples/openapi/mcp/src/gen/models/ts/AddPetRequest.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/AddPetRequest.ts rename to examples/openapi/mcp/src/gen/models/ts/AddPetRequest.ts diff --git a/examples/mcp/src/gen/models/ts/AddPetRequestStatusEnum.ts b/examples/openapi/mcp/src/gen/models/ts/AddPetRequestStatusEnum.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/AddPetRequestStatusEnum.ts rename to examples/openapi/mcp/src/gen/models/ts/AddPetRequestStatusEnum.ts diff --git a/examples/mcp/src/gen/models/ts/ApiResponse.ts b/examples/openapi/mcp/src/gen/models/ts/ApiResponse.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/ApiResponse.ts rename to examples/openapi/mcp/src/gen/models/ts/ApiResponse.ts diff --git a/examples/mcp/src/gen/models/ts/Category.ts b/examples/openapi/mcp/src/gen/models/ts/Category.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/Category.ts rename to examples/openapi/mcp/src/gen/models/ts/Category.ts diff --git a/examples/mcp/src/gen/models/ts/CreatePets.ts b/examples/openapi/mcp/src/gen/models/ts/CreatePets.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/CreatePets.ts rename to examples/openapi/mcp/src/gen/models/ts/CreatePets.ts diff --git a/examples/mcp/src/gen/models/ts/CreatePetsXEXAMPLE.ts b/examples/openapi/mcp/src/gen/models/ts/CreatePetsXEXAMPLE.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/CreatePetsXEXAMPLE.ts rename to examples/openapi/mcp/src/gen/models/ts/CreatePetsXEXAMPLE.ts diff --git a/examples/mcp/src/gen/models/ts/DeleteOrder.ts b/examples/openapi/mcp/src/gen/models/ts/DeleteOrder.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/DeleteOrder.ts rename to examples/openapi/mcp/src/gen/models/ts/DeleteOrder.ts diff --git a/examples/mcp/src/gen/models/ts/DeletePet.ts b/examples/openapi/mcp/src/gen/models/ts/DeletePet.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/DeletePet.ts rename to examples/openapi/mcp/src/gen/models/ts/DeletePet.ts diff --git a/examples/mcp/src/gen/models/ts/FindPetsByStatus.ts b/examples/openapi/mcp/src/gen/models/ts/FindPetsByStatus.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/FindPetsByStatus.ts rename to examples/openapi/mcp/src/gen/models/ts/FindPetsByStatus.ts diff --git a/examples/mcp/src/gen/models/ts/FindPetsByTags.ts b/examples/openapi/mcp/src/gen/models/ts/FindPetsByTags.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/FindPetsByTags.ts rename to examples/openapi/mcp/src/gen/models/ts/FindPetsByTags.ts diff --git a/examples/mcp/src/gen/models/ts/FindPetsByTagsXEXAMPLE.ts b/examples/openapi/mcp/src/gen/models/ts/FindPetsByTagsXEXAMPLE.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/FindPetsByTagsXEXAMPLE.ts rename to examples/openapi/mcp/src/gen/models/ts/FindPetsByTagsXEXAMPLE.ts diff --git a/examples/mcp/src/gen/models/ts/GetInventory.ts b/examples/openapi/mcp/src/gen/models/ts/GetInventory.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/GetInventory.ts rename to examples/openapi/mcp/src/gen/models/ts/GetInventory.ts diff --git a/examples/mcp/src/gen/models/ts/GetOrderById.ts b/examples/openapi/mcp/src/gen/models/ts/GetOrderById.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/GetOrderById.ts rename to examples/openapi/mcp/src/gen/models/ts/GetOrderById.ts diff --git a/examples/mcp/src/gen/models/ts/GetPetById.ts b/examples/openapi/mcp/src/gen/models/ts/GetPetById.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/GetPetById.ts rename to examples/openapi/mcp/src/gen/models/ts/GetPetById.ts diff --git a/examples/mcp/src/gen/models/ts/Order.ts b/examples/openapi/mcp/src/gen/models/ts/Order.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/Order.ts rename to examples/openapi/mcp/src/gen/models/ts/Order.ts diff --git a/examples/mcp/src/gen/models/ts/OrderHttpStatusEnum.ts b/examples/openapi/mcp/src/gen/models/ts/OrderHttpStatusEnum.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/OrderHttpStatusEnum.ts rename to examples/openapi/mcp/src/gen/models/ts/OrderHttpStatusEnum.ts diff --git a/examples/mcp/src/gen/models/ts/OrderOrderTypeEnum.ts b/examples/openapi/mcp/src/gen/models/ts/OrderOrderTypeEnum.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/OrderOrderTypeEnum.ts rename to examples/openapi/mcp/src/gen/models/ts/OrderOrderTypeEnum.ts diff --git a/examples/mcp/src/gen/models/ts/OrderStatusEnum.ts b/examples/openapi/mcp/src/gen/models/ts/OrderStatusEnum.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/OrderStatusEnum.ts rename to examples/openapi/mcp/src/gen/models/ts/OrderStatusEnum.ts diff --git a/examples/mcp/src/gen/models/ts/Pet.ts b/examples/openapi/mcp/src/gen/models/ts/Pet.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/Pet.ts rename to examples/openapi/mcp/src/gen/models/ts/Pet.ts diff --git a/examples/mcp/src/gen/models/ts/PetNotFound.ts b/examples/openapi/mcp/src/gen/models/ts/PetNotFound.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/PetNotFound.ts rename to examples/openapi/mcp/src/gen/models/ts/PetNotFound.ts diff --git a/examples/mcp/src/gen/models/ts/PetStatusEnum.ts b/examples/openapi/mcp/src/gen/models/ts/PetStatusEnum.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/PetStatusEnum.ts rename to examples/openapi/mcp/src/gen/models/ts/PetStatusEnum.ts diff --git a/examples/mcp/src/gen/models/ts/PlaceOrder.ts b/examples/openapi/mcp/src/gen/models/ts/PlaceOrder.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/PlaceOrder.ts rename to examples/openapi/mcp/src/gen/models/ts/PlaceOrder.ts diff --git a/examples/mcp/src/gen/models/ts/PlaceOrderPatch.ts b/examples/openapi/mcp/src/gen/models/ts/PlaceOrderPatch.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/PlaceOrderPatch.ts rename to examples/openapi/mcp/src/gen/models/ts/PlaceOrderPatch.ts diff --git a/examples/mcp/src/gen/models/ts/UpdatePet.ts b/examples/openapi/mcp/src/gen/models/ts/UpdatePet.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/UpdatePet.ts rename to examples/openapi/mcp/src/gen/models/ts/UpdatePet.ts diff --git a/examples/mcp/src/gen/models/ts/UpdatePetWithForm.ts b/examples/openapi/mcp/src/gen/models/ts/UpdatePetWithForm.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/UpdatePetWithForm.ts rename to examples/openapi/mcp/src/gen/models/ts/UpdatePetWithForm.ts diff --git a/examples/mcp/src/gen/models/ts/index.ts b/examples/openapi/mcp/src/gen/models/ts/index.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/index.ts rename to examples/openapi/mcp/src/gen/models/ts/index.ts diff --git a/examples/mcp/src/gen/models/ts/tag/Tag.ts b/examples/openapi/mcp/src/gen/models/ts/tag/Tag.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/tag/Tag.ts rename to examples/openapi/mcp/src/gen/models/ts/tag/Tag.ts diff --git a/examples/mcp/src/gen/models/ts/tag/index.ts b/examples/openapi/mcp/src/gen/models/ts/tag/index.ts similarity index 100% rename from examples/mcp/src/gen/models/ts/tag/index.ts rename to examples/openapi/mcp/src/gen/models/ts/tag/index.ts diff --git a/examples/mcp/src/gen/zod/addFilesSchema.ts b/examples/openapi/mcp/src/gen/zod/addFilesSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/addFilesSchema.ts rename to examples/openapi/mcp/src/gen/zod/addFilesSchema.ts diff --git a/examples/mcp/src/gen/zod/addPetRequestSchema.ts b/examples/openapi/mcp/src/gen/zod/addPetRequestSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/addPetRequestSchema.ts rename to examples/openapi/mcp/src/gen/zod/addPetRequestSchema.ts diff --git a/examples/mcp/src/gen/zod/addPetRequestStatusEnumSchema.ts b/examples/openapi/mcp/src/gen/zod/addPetRequestStatusEnumSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/addPetRequestStatusEnumSchema.ts rename to examples/openapi/mcp/src/gen/zod/addPetRequestStatusEnumSchema.ts diff --git a/examples/mcp/src/gen/zod/addPetSchema.ts b/examples/openapi/mcp/src/gen/zod/addPetSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/addPetSchema.ts rename to examples/openapi/mcp/src/gen/zod/addPetSchema.ts diff --git a/examples/mcp/src/gen/zod/apiResponseSchema.ts b/examples/openapi/mcp/src/gen/zod/apiResponseSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/apiResponseSchema.ts rename to examples/openapi/mcp/src/gen/zod/apiResponseSchema.ts diff --git a/examples/mcp/src/gen/zod/categorySchema.ts b/examples/openapi/mcp/src/gen/zod/categorySchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/categorySchema.ts rename to examples/openapi/mcp/src/gen/zod/categorySchema.ts diff --git a/examples/mcp/src/gen/zod/createPetsSchema.ts b/examples/openapi/mcp/src/gen/zod/createPetsSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/createPetsSchema.ts rename to examples/openapi/mcp/src/gen/zod/createPetsSchema.ts diff --git a/examples/mcp/src/gen/zod/createPetsXEXAMPLESchema.ts b/examples/openapi/mcp/src/gen/zod/createPetsXEXAMPLESchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/createPetsXEXAMPLESchema.ts rename to examples/openapi/mcp/src/gen/zod/createPetsXEXAMPLESchema.ts diff --git a/examples/mcp/src/gen/zod/deleteOrderSchema.ts b/examples/openapi/mcp/src/gen/zod/deleteOrderSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/deleteOrderSchema.ts rename to examples/openapi/mcp/src/gen/zod/deleteOrderSchema.ts diff --git a/examples/mcp/src/gen/zod/deletePetSchema.ts b/examples/openapi/mcp/src/gen/zod/deletePetSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/deletePetSchema.ts rename to examples/openapi/mcp/src/gen/zod/deletePetSchema.ts diff --git a/examples/mcp/src/gen/zod/findPetsByStatusSchema.ts b/examples/openapi/mcp/src/gen/zod/findPetsByStatusSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/findPetsByStatusSchema.ts rename to examples/openapi/mcp/src/gen/zod/findPetsByStatusSchema.ts diff --git a/examples/mcp/src/gen/zod/findPetsByTagsSchema.ts b/examples/openapi/mcp/src/gen/zod/findPetsByTagsSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/findPetsByTagsSchema.ts rename to examples/openapi/mcp/src/gen/zod/findPetsByTagsSchema.ts diff --git a/examples/mcp/src/gen/zod/findPetsByTagsXEXAMPLESchema.ts b/examples/openapi/mcp/src/gen/zod/findPetsByTagsXEXAMPLESchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/findPetsByTagsXEXAMPLESchema.ts rename to examples/openapi/mcp/src/gen/zod/findPetsByTagsXEXAMPLESchema.ts diff --git a/examples/mcp/src/gen/zod/getInventorySchema.ts b/examples/openapi/mcp/src/gen/zod/getInventorySchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/getInventorySchema.ts rename to examples/openapi/mcp/src/gen/zod/getInventorySchema.ts diff --git a/examples/mcp/src/gen/zod/getOrderByIdSchema.ts b/examples/openapi/mcp/src/gen/zod/getOrderByIdSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/getOrderByIdSchema.ts rename to examples/openapi/mcp/src/gen/zod/getOrderByIdSchema.ts diff --git a/examples/mcp/src/gen/zod/getPetByIdSchema.ts b/examples/openapi/mcp/src/gen/zod/getPetByIdSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/getPetByIdSchema.ts rename to examples/openapi/mcp/src/gen/zod/getPetByIdSchema.ts diff --git a/examples/mcp/src/gen/zod/index.ts b/examples/openapi/mcp/src/gen/zod/index.ts similarity index 100% rename from examples/mcp/src/gen/zod/index.ts rename to examples/openapi/mcp/src/gen/zod/index.ts diff --git a/examples/mcp/src/gen/zod/orderHttpStatusEnumSchema.ts b/examples/openapi/mcp/src/gen/zod/orderHttpStatusEnumSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/orderHttpStatusEnumSchema.ts rename to examples/openapi/mcp/src/gen/zod/orderHttpStatusEnumSchema.ts diff --git a/examples/mcp/src/gen/zod/orderOrderTypeEnumSchema.ts b/examples/openapi/mcp/src/gen/zod/orderOrderTypeEnumSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/orderOrderTypeEnumSchema.ts rename to examples/openapi/mcp/src/gen/zod/orderOrderTypeEnumSchema.ts diff --git a/examples/mcp/src/gen/zod/orderSchema.ts b/examples/openapi/mcp/src/gen/zod/orderSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/orderSchema.ts rename to examples/openapi/mcp/src/gen/zod/orderSchema.ts diff --git a/examples/mcp/src/gen/zod/orderStatusEnumSchema.ts b/examples/openapi/mcp/src/gen/zod/orderStatusEnumSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/orderStatusEnumSchema.ts rename to examples/openapi/mcp/src/gen/zod/orderStatusEnumSchema.ts diff --git a/examples/mcp/src/gen/zod/petNotFoundSchema.ts b/examples/openapi/mcp/src/gen/zod/petNotFoundSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/petNotFoundSchema.ts rename to examples/openapi/mcp/src/gen/zod/petNotFoundSchema.ts diff --git a/examples/mcp/src/gen/zod/petSchema.ts b/examples/openapi/mcp/src/gen/zod/petSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/petSchema.ts rename to examples/openapi/mcp/src/gen/zod/petSchema.ts diff --git a/examples/mcp/src/gen/zod/petStatusEnumSchema.ts b/examples/openapi/mcp/src/gen/zod/petStatusEnumSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/petStatusEnumSchema.ts rename to examples/openapi/mcp/src/gen/zod/petStatusEnumSchema.ts diff --git a/examples/mcp/src/gen/zod/placeOrderPatchSchema.ts b/examples/openapi/mcp/src/gen/zod/placeOrderPatchSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/placeOrderPatchSchema.ts rename to examples/openapi/mcp/src/gen/zod/placeOrderPatchSchema.ts diff --git a/examples/mcp/src/gen/zod/placeOrderSchema.ts b/examples/openapi/mcp/src/gen/zod/placeOrderSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/placeOrderSchema.ts rename to examples/openapi/mcp/src/gen/zod/placeOrderSchema.ts diff --git a/examples/mcp/src/gen/zod/tag/index.ts b/examples/openapi/mcp/src/gen/zod/tag/index.ts similarity index 100% rename from examples/mcp/src/gen/zod/tag/index.ts rename to examples/openapi/mcp/src/gen/zod/tag/index.ts diff --git a/examples/mcp/src/gen/zod/tag/tagSchema.ts b/examples/openapi/mcp/src/gen/zod/tag/tagSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/tag/tagSchema.ts rename to examples/openapi/mcp/src/gen/zod/tag/tagSchema.ts diff --git a/examples/mcp/src/gen/zod/updatePetSchema.ts b/examples/openapi/mcp/src/gen/zod/updatePetSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/updatePetSchema.ts rename to examples/openapi/mcp/src/gen/zod/updatePetSchema.ts diff --git a/examples/mcp/src/gen/zod/updatePetWithFormSchema.ts b/examples/openapi/mcp/src/gen/zod/updatePetWithFormSchema.ts similarity index 100% rename from examples/mcp/src/gen/zod/updatePetWithFormSchema.ts rename to examples/openapi/mcp/src/gen/zod/updatePetWithFormSchema.ts diff --git a/examples/mcp/src/index.ts b/examples/openapi/mcp/src/index.ts similarity index 100% rename from examples/mcp/src/index.ts rename to examples/openapi/mcp/src/index.ts diff --git a/examples/mcp/tsconfig.json b/examples/openapi/mcp/tsconfig.json similarity index 100% rename from examples/mcp/tsconfig.json rename to examples/openapi/mcp/tsconfig.json diff --git a/examples/msw/kubb.config.js b/examples/openapi/msw/kubb.config.js similarity index 100% rename from examples/msw/kubb.config.js rename to examples/openapi/msw/kubb.config.js diff --git a/examples/msw/package.json b/examples/openapi/msw/package.json similarity index 97% rename from examples/msw/package.json rename to examples/openapi/msw/package.json index 8323eb7d9..8c7ab16d4 100644 --- a/examples/msw/package.json +++ b/examples/openapi/msw/package.json @@ -8,7 +8,7 @@ "repository": { "type": "git", "url": "https://github.com/kubb-labs/plugins.git", - "directory": "examples/msw" + "directory": "examples/openapi/msw" }, "type": "module", "sideEffects": false, diff --git a/examples/msw/petStore.yaml b/examples/openapi/msw/petStore.yaml similarity index 100% rename from examples/msw/petStore.yaml rename to examples/openapi/msw/petStore.yaml diff --git a/examples/msw/src/gen/mocks/createAddPetRequest.ts b/examples/openapi/msw/src/gen/mocks/createAddPetRequest.ts similarity index 100% rename from examples/msw/src/gen/mocks/createAddPetRequest.ts rename to examples/openapi/msw/src/gen/mocks/createAddPetRequest.ts diff --git a/examples/msw/src/gen/mocks/createAddPetRequestStatusEnum.ts b/examples/openapi/msw/src/gen/mocks/createAddPetRequestStatusEnum.ts similarity index 100% rename from examples/msw/src/gen/mocks/createAddPetRequestStatusEnum.ts rename to examples/openapi/msw/src/gen/mocks/createAddPetRequestStatusEnum.ts diff --git a/examples/msw/src/gen/mocks/createApiResponse.ts b/examples/openapi/msw/src/gen/mocks/createApiResponse.ts similarity index 100% rename from examples/msw/src/gen/mocks/createApiResponse.ts rename to examples/openapi/msw/src/gen/mocks/createApiResponse.ts diff --git a/examples/msw/src/gen/mocks/createCategory.ts b/examples/openapi/msw/src/gen/mocks/createCategory.ts similarity index 100% rename from examples/msw/src/gen/mocks/createCategory.ts rename to examples/openapi/msw/src/gen/mocks/createCategory.ts diff --git a/examples/msw/src/gen/mocks/createFindPetsByStatusStatus.ts b/examples/openapi/msw/src/gen/mocks/createFindPetsByStatusStatus.ts similarity index 100% rename from examples/msw/src/gen/mocks/createFindPetsByStatusStatus.ts rename to examples/openapi/msw/src/gen/mocks/createFindPetsByStatusStatus.ts diff --git a/examples/msw/src/gen/mocks/createOrder.ts b/examples/openapi/msw/src/gen/mocks/createOrder.ts similarity index 100% rename from examples/msw/src/gen/mocks/createOrder.ts rename to examples/openapi/msw/src/gen/mocks/createOrder.ts diff --git a/examples/msw/src/gen/mocks/createOrderHttpStatusEnum.ts b/examples/openapi/msw/src/gen/mocks/createOrderHttpStatusEnum.ts similarity index 100% rename from examples/msw/src/gen/mocks/createOrderHttpStatusEnum.ts rename to examples/openapi/msw/src/gen/mocks/createOrderHttpStatusEnum.ts diff --git a/examples/msw/src/gen/mocks/createOrderStatusEnum.ts b/examples/openapi/msw/src/gen/mocks/createOrderStatusEnum.ts similarity index 100% rename from examples/msw/src/gen/mocks/createOrderStatusEnum.ts rename to examples/openapi/msw/src/gen/mocks/createOrderStatusEnum.ts diff --git a/examples/msw/src/gen/mocks/createPet.ts b/examples/openapi/msw/src/gen/mocks/createPet.ts similarity index 100% rename from examples/msw/src/gen/mocks/createPet.ts rename to examples/openapi/msw/src/gen/mocks/createPet.ts diff --git a/examples/msw/src/gen/mocks/createPetNotFound.ts b/examples/openapi/msw/src/gen/mocks/createPetNotFound.ts similarity index 100% rename from examples/msw/src/gen/mocks/createPetNotFound.ts rename to examples/openapi/msw/src/gen/mocks/createPetNotFound.ts diff --git a/examples/msw/src/gen/mocks/createPetStatusEnum.ts b/examples/openapi/msw/src/gen/mocks/createPetStatusEnum.ts similarity index 100% rename from examples/msw/src/gen/mocks/createPetStatusEnum.ts rename to examples/openapi/msw/src/gen/mocks/createPetStatusEnum.ts diff --git a/examples/msw/src/gen/mocks/createTag.ts b/examples/openapi/msw/src/gen/mocks/createTag.ts similarity index 100% rename from examples/msw/src/gen/mocks/createTag.ts rename to examples/openapi/msw/src/gen/mocks/createTag.ts diff --git a/examples/msw/src/gen/mocks/pet/createAddPet.ts b/examples/openapi/msw/src/gen/mocks/pet/createAddPet.ts similarity index 100% rename from examples/msw/src/gen/mocks/pet/createAddPet.ts rename to examples/openapi/msw/src/gen/mocks/pet/createAddPet.ts diff --git a/examples/msw/src/gen/mocks/pet/createDeletePet.ts b/examples/openapi/msw/src/gen/mocks/pet/createDeletePet.ts similarity index 100% rename from examples/msw/src/gen/mocks/pet/createDeletePet.ts rename to examples/openapi/msw/src/gen/mocks/pet/createDeletePet.ts diff --git a/examples/msw/src/gen/mocks/pet/createFindPetsByStatus.ts b/examples/openapi/msw/src/gen/mocks/pet/createFindPetsByStatus.ts similarity index 100% rename from examples/msw/src/gen/mocks/pet/createFindPetsByStatus.ts rename to examples/openapi/msw/src/gen/mocks/pet/createFindPetsByStatus.ts diff --git a/examples/msw/src/gen/mocks/pet/createFindPetsByTags.ts b/examples/openapi/msw/src/gen/mocks/pet/createFindPetsByTags.ts similarity index 100% rename from examples/msw/src/gen/mocks/pet/createFindPetsByTags.ts rename to examples/openapi/msw/src/gen/mocks/pet/createFindPetsByTags.ts diff --git a/examples/msw/src/gen/mocks/pet/createGetPetById.ts b/examples/openapi/msw/src/gen/mocks/pet/createGetPetById.ts similarity index 100% rename from examples/msw/src/gen/mocks/pet/createGetPetById.ts rename to examples/openapi/msw/src/gen/mocks/pet/createGetPetById.ts diff --git a/examples/msw/src/gen/mocks/pet/createOptionsFindPetsByStatus.ts b/examples/openapi/msw/src/gen/mocks/pet/createOptionsFindPetsByStatus.ts similarity index 100% rename from examples/msw/src/gen/mocks/pet/createOptionsFindPetsByStatus.ts rename to examples/openapi/msw/src/gen/mocks/pet/createOptionsFindPetsByStatus.ts diff --git a/examples/msw/src/gen/mocks/pet/createUpdatePet.ts b/examples/openapi/msw/src/gen/mocks/pet/createUpdatePet.ts similarity index 100% rename from examples/msw/src/gen/mocks/pet/createUpdatePet.ts rename to examples/openapi/msw/src/gen/mocks/pet/createUpdatePet.ts diff --git a/examples/msw/src/gen/mocks/pet/createUpdatePetWithForm.ts b/examples/openapi/msw/src/gen/mocks/pet/createUpdatePetWithForm.ts similarity index 100% rename from examples/msw/src/gen/mocks/pet/createUpdatePetWithForm.ts rename to examples/openapi/msw/src/gen/mocks/pet/createUpdatePetWithForm.ts diff --git a/examples/msw/src/gen/mocks/pet/createUploadFile.ts b/examples/openapi/msw/src/gen/mocks/pet/createUploadFile.ts similarity index 100% rename from examples/msw/src/gen/mocks/pet/createUploadFile.ts rename to examples/openapi/msw/src/gen/mocks/pet/createUploadFile.ts diff --git a/examples/msw/src/gen/mocks/store/createDeleteOrder.ts b/examples/openapi/msw/src/gen/mocks/store/createDeleteOrder.ts similarity index 100% rename from examples/msw/src/gen/mocks/store/createDeleteOrder.ts rename to examples/openapi/msw/src/gen/mocks/store/createDeleteOrder.ts diff --git a/examples/msw/src/gen/mocks/store/createGetInventory.ts b/examples/openapi/msw/src/gen/mocks/store/createGetInventory.ts similarity index 100% rename from examples/msw/src/gen/mocks/store/createGetInventory.ts rename to examples/openapi/msw/src/gen/mocks/store/createGetInventory.ts diff --git a/examples/msw/src/gen/mocks/store/createGetOrderById.ts b/examples/openapi/msw/src/gen/mocks/store/createGetOrderById.ts similarity index 100% rename from examples/msw/src/gen/mocks/store/createGetOrderById.ts rename to examples/openapi/msw/src/gen/mocks/store/createGetOrderById.ts diff --git a/examples/msw/src/gen/mocks/store/createPlaceOrder.ts b/examples/openapi/msw/src/gen/mocks/store/createPlaceOrder.ts similarity index 100% rename from examples/msw/src/gen/mocks/store/createPlaceOrder.ts rename to examples/openapi/msw/src/gen/mocks/store/createPlaceOrder.ts diff --git a/examples/msw/src/gen/mocks/store/createPlaceOrderPatch.ts b/examples/openapi/msw/src/gen/mocks/store/createPlaceOrderPatch.ts similarity index 100% rename from examples/msw/src/gen/mocks/store/createPlaceOrderPatch.ts rename to examples/openapi/msw/src/gen/mocks/store/createPlaceOrderPatch.ts diff --git a/examples/msw/src/gen/models/AddPet.ts b/examples/openapi/msw/src/gen/models/AddPet.ts similarity index 100% rename from examples/msw/src/gen/models/AddPet.ts rename to examples/openapi/msw/src/gen/models/AddPet.ts diff --git a/examples/msw/src/gen/models/AddPetRequest.ts b/examples/openapi/msw/src/gen/models/AddPetRequest.ts similarity index 100% rename from examples/msw/src/gen/models/AddPetRequest.ts rename to examples/openapi/msw/src/gen/models/AddPetRequest.ts diff --git a/examples/msw/src/gen/models/AddPetRequestStatusEnum.ts b/examples/openapi/msw/src/gen/models/AddPetRequestStatusEnum.ts similarity index 100% rename from examples/msw/src/gen/models/AddPetRequestStatusEnum.ts rename to examples/openapi/msw/src/gen/models/AddPetRequestStatusEnum.ts diff --git a/examples/msw/src/gen/models/ApiResponse.ts b/examples/openapi/msw/src/gen/models/ApiResponse.ts similarity index 100% rename from examples/msw/src/gen/models/ApiResponse.ts rename to examples/openapi/msw/src/gen/models/ApiResponse.ts diff --git a/examples/msw/src/gen/models/Category.ts b/examples/openapi/msw/src/gen/models/Category.ts similarity index 100% rename from examples/msw/src/gen/models/Category.ts rename to examples/openapi/msw/src/gen/models/Category.ts diff --git a/examples/msw/src/gen/models/DeleteOrder.ts b/examples/openapi/msw/src/gen/models/DeleteOrder.ts similarity index 100% rename from examples/msw/src/gen/models/DeleteOrder.ts rename to examples/openapi/msw/src/gen/models/DeleteOrder.ts diff --git a/examples/msw/src/gen/models/DeletePet.ts b/examples/openapi/msw/src/gen/models/DeletePet.ts similarity index 100% rename from examples/msw/src/gen/models/DeletePet.ts rename to examples/openapi/msw/src/gen/models/DeletePet.ts diff --git a/examples/msw/src/gen/models/FindPetsByStatus.ts b/examples/openapi/msw/src/gen/models/FindPetsByStatus.ts similarity index 100% rename from examples/msw/src/gen/models/FindPetsByStatus.ts rename to examples/openapi/msw/src/gen/models/FindPetsByStatus.ts diff --git a/examples/msw/src/gen/models/FindPetsByStatusStatus.ts b/examples/openapi/msw/src/gen/models/FindPetsByStatusStatus.ts similarity index 100% rename from examples/msw/src/gen/models/FindPetsByStatusStatus.ts rename to examples/openapi/msw/src/gen/models/FindPetsByStatusStatus.ts diff --git a/examples/msw/src/gen/models/FindPetsByTags.ts b/examples/openapi/msw/src/gen/models/FindPetsByTags.ts similarity index 100% rename from examples/msw/src/gen/models/FindPetsByTags.ts rename to examples/openapi/msw/src/gen/models/FindPetsByTags.ts diff --git a/examples/msw/src/gen/models/GetInventory.ts b/examples/openapi/msw/src/gen/models/GetInventory.ts similarity index 100% rename from examples/msw/src/gen/models/GetInventory.ts rename to examples/openapi/msw/src/gen/models/GetInventory.ts diff --git a/examples/msw/src/gen/models/GetOrderById.ts b/examples/openapi/msw/src/gen/models/GetOrderById.ts similarity index 100% rename from examples/msw/src/gen/models/GetOrderById.ts rename to examples/openapi/msw/src/gen/models/GetOrderById.ts diff --git a/examples/msw/src/gen/models/GetPetById.ts b/examples/openapi/msw/src/gen/models/GetPetById.ts similarity index 100% rename from examples/msw/src/gen/models/GetPetById.ts rename to examples/openapi/msw/src/gen/models/GetPetById.ts diff --git a/examples/msw/src/gen/models/OptionsFindPetsByStatus.ts b/examples/openapi/msw/src/gen/models/OptionsFindPetsByStatus.ts similarity index 100% rename from examples/msw/src/gen/models/OptionsFindPetsByStatus.ts rename to examples/openapi/msw/src/gen/models/OptionsFindPetsByStatus.ts diff --git a/examples/msw/src/gen/models/Order.ts b/examples/openapi/msw/src/gen/models/Order.ts similarity index 100% rename from examples/msw/src/gen/models/Order.ts rename to examples/openapi/msw/src/gen/models/Order.ts diff --git a/examples/msw/src/gen/models/OrderHttpStatusEnum.ts b/examples/openapi/msw/src/gen/models/OrderHttpStatusEnum.ts similarity index 100% rename from examples/msw/src/gen/models/OrderHttpStatusEnum.ts rename to examples/openapi/msw/src/gen/models/OrderHttpStatusEnum.ts diff --git a/examples/msw/src/gen/models/OrderStatusEnum.ts b/examples/openapi/msw/src/gen/models/OrderStatusEnum.ts similarity index 100% rename from examples/msw/src/gen/models/OrderStatusEnum.ts rename to examples/openapi/msw/src/gen/models/OrderStatusEnum.ts diff --git a/examples/msw/src/gen/models/Pet.ts b/examples/openapi/msw/src/gen/models/Pet.ts similarity index 100% rename from examples/msw/src/gen/models/Pet.ts rename to examples/openapi/msw/src/gen/models/Pet.ts diff --git a/examples/msw/src/gen/models/PetNotFound.ts b/examples/openapi/msw/src/gen/models/PetNotFound.ts similarity index 100% rename from examples/msw/src/gen/models/PetNotFound.ts rename to examples/openapi/msw/src/gen/models/PetNotFound.ts diff --git a/examples/msw/src/gen/models/PetStatusEnum.ts b/examples/openapi/msw/src/gen/models/PetStatusEnum.ts similarity index 100% rename from examples/msw/src/gen/models/PetStatusEnum.ts rename to examples/openapi/msw/src/gen/models/PetStatusEnum.ts diff --git a/examples/msw/src/gen/models/PlaceOrder.ts b/examples/openapi/msw/src/gen/models/PlaceOrder.ts similarity index 100% rename from examples/msw/src/gen/models/PlaceOrder.ts rename to examples/openapi/msw/src/gen/models/PlaceOrder.ts diff --git a/examples/msw/src/gen/models/PlaceOrderPatch.ts b/examples/openapi/msw/src/gen/models/PlaceOrderPatch.ts similarity index 100% rename from examples/msw/src/gen/models/PlaceOrderPatch.ts rename to examples/openapi/msw/src/gen/models/PlaceOrderPatch.ts diff --git a/examples/msw/src/gen/models/Tag.ts b/examples/openapi/msw/src/gen/models/Tag.ts similarity index 100% rename from examples/msw/src/gen/models/Tag.ts rename to examples/openapi/msw/src/gen/models/Tag.ts diff --git a/examples/msw/src/gen/models/UpdatePet.ts b/examples/openapi/msw/src/gen/models/UpdatePet.ts similarity index 100% rename from examples/msw/src/gen/models/UpdatePet.ts rename to examples/openapi/msw/src/gen/models/UpdatePet.ts diff --git a/examples/msw/src/gen/models/UpdatePetWithForm.ts b/examples/openapi/msw/src/gen/models/UpdatePetWithForm.ts similarity index 100% rename from examples/msw/src/gen/models/UpdatePetWithForm.ts rename to examples/openapi/msw/src/gen/models/UpdatePetWithForm.ts diff --git a/examples/msw/src/gen/models/UploadFile.ts b/examples/openapi/msw/src/gen/models/UploadFile.ts similarity index 100% rename from examples/msw/src/gen/models/UploadFile.ts rename to examples/openapi/msw/src/gen/models/UploadFile.ts diff --git a/examples/msw/src/gen/msw/handlers.ts b/examples/openapi/msw/src/gen/msw/handlers.ts similarity index 100% rename from examples/msw/src/gen/msw/handlers.ts rename to examples/openapi/msw/src/gen/msw/handlers.ts diff --git a/examples/msw/src/gen/msw/pet/Handlers/addPetHandler.ts b/examples/openapi/msw/src/gen/msw/pet/Handlers/addPetHandler.ts similarity index 100% rename from examples/msw/src/gen/msw/pet/Handlers/addPetHandler.ts rename to examples/openapi/msw/src/gen/msw/pet/Handlers/addPetHandler.ts diff --git a/examples/msw/src/gen/msw/pet/Handlers/deletePetHandler.ts b/examples/openapi/msw/src/gen/msw/pet/Handlers/deletePetHandler.ts similarity index 100% rename from examples/msw/src/gen/msw/pet/Handlers/deletePetHandler.ts rename to examples/openapi/msw/src/gen/msw/pet/Handlers/deletePetHandler.ts diff --git a/examples/msw/src/gen/msw/pet/Handlers/findPetsByStatusHandler.ts b/examples/openapi/msw/src/gen/msw/pet/Handlers/findPetsByStatusHandler.ts similarity index 100% rename from examples/msw/src/gen/msw/pet/Handlers/findPetsByStatusHandler.ts rename to examples/openapi/msw/src/gen/msw/pet/Handlers/findPetsByStatusHandler.ts diff --git a/examples/msw/src/gen/msw/pet/Handlers/findPetsByTagsHandler.ts b/examples/openapi/msw/src/gen/msw/pet/Handlers/findPetsByTagsHandler.ts similarity index 100% rename from examples/msw/src/gen/msw/pet/Handlers/findPetsByTagsHandler.ts rename to examples/openapi/msw/src/gen/msw/pet/Handlers/findPetsByTagsHandler.ts diff --git a/examples/msw/src/gen/msw/pet/Handlers/getPetByIdHandler.ts b/examples/openapi/msw/src/gen/msw/pet/Handlers/getPetByIdHandler.ts similarity index 100% rename from examples/msw/src/gen/msw/pet/Handlers/getPetByIdHandler.ts rename to examples/openapi/msw/src/gen/msw/pet/Handlers/getPetByIdHandler.ts diff --git a/examples/msw/src/gen/msw/pet/Handlers/optionsFindPetsByStatusHandler.ts b/examples/openapi/msw/src/gen/msw/pet/Handlers/optionsFindPetsByStatusHandler.ts similarity index 100% rename from examples/msw/src/gen/msw/pet/Handlers/optionsFindPetsByStatusHandler.ts rename to examples/openapi/msw/src/gen/msw/pet/Handlers/optionsFindPetsByStatusHandler.ts diff --git a/examples/msw/src/gen/msw/pet/Handlers/updatePetHandler.ts b/examples/openapi/msw/src/gen/msw/pet/Handlers/updatePetHandler.ts similarity index 100% rename from examples/msw/src/gen/msw/pet/Handlers/updatePetHandler.ts rename to examples/openapi/msw/src/gen/msw/pet/Handlers/updatePetHandler.ts diff --git a/examples/msw/src/gen/msw/pet/Handlers/updatePetWithFormHandler.ts b/examples/openapi/msw/src/gen/msw/pet/Handlers/updatePetWithFormHandler.ts similarity index 100% rename from examples/msw/src/gen/msw/pet/Handlers/updatePetWithFormHandler.ts rename to examples/openapi/msw/src/gen/msw/pet/Handlers/updatePetWithFormHandler.ts diff --git a/examples/msw/src/gen/msw/pet/Handlers/uploadFileHandler.ts b/examples/openapi/msw/src/gen/msw/pet/Handlers/uploadFileHandler.ts similarity index 100% rename from examples/msw/src/gen/msw/pet/Handlers/uploadFileHandler.ts rename to examples/openapi/msw/src/gen/msw/pet/Handlers/uploadFileHandler.ts diff --git a/examples/msw/src/gen/msw/store/Handlers/deleteOrderHandler.ts b/examples/openapi/msw/src/gen/msw/store/Handlers/deleteOrderHandler.ts similarity index 100% rename from examples/msw/src/gen/msw/store/Handlers/deleteOrderHandler.ts rename to examples/openapi/msw/src/gen/msw/store/Handlers/deleteOrderHandler.ts diff --git a/examples/msw/src/gen/msw/store/Handlers/getInventoryHandler.ts b/examples/openapi/msw/src/gen/msw/store/Handlers/getInventoryHandler.ts similarity index 100% rename from examples/msw/src/gen/msw/store/Handlers/getInventoryHandler.ts rename to examples/openapi/msw/src/gen/msw/store/Handlers/getInventoryHandler.ts diff --git a/examples/msw/src/gen/msw/store/Handlers/getOrderByIdHandler.ts b/examples/openapi/msw/src/gen/msw/store/Handlers/getOrderByIdHandler.ts similarity index 100% rename from examples/msw/src/gen/msw/store/Handlers/getOrderByIdHandler.ts rename to examples/openapi/msw/src/gen/msw/store/Handlers/getOrderByIdHandler.ts diff --git a/examples/msw/src/gen/msw/store/Handlers/placeOrderHandler.ts b/examples/openapi/msw/src/gen/msw/store/Handlers/placeOrderHandler.ts similarity index 100% rename from examples/msw/src/gen/msw/store/Handlers/placeOrderHandler.ts rename to examples/openapi/msw/src/gen/msw/store/Handlers/placeOrderHandler.ts diff --git a/examples/msw/src/gen/msw/store/Handlers/placeOrderPatchHandler.ts b/examples/openapi/msw/src/gen/msw/store/Handlers/placeOrderPatchHandler.ts similarity index 100% rename from examples/msw/src/gen/msw/store/Handlers/placeOrderPatchHandler.ts rename to examples/openapi/msw/src/gen/msw/store/Handlers/placeOrderPatchHandler.ts diff --git a/examples/simple-single/src/index.ts b/examples/openapi/msw/src/index.ts similarity index 100% rename from examples/simple-single/src/index.ts rename to examples/openapi/msw/src/index.ts diff --git a/examples/msw/src/server.ts b/examples/openapi/msw/src/server.ts similarity index 100% rename from examples/msw/src/server.ts rename to examples/openapi/msw/src/server.ts diff --git a/examples/msw/tsconfig.json b/examples/openapi/msw/tsconfig.json similarity index 100% rename from examples/msw/tsconfig.json rename to examples/openapi/msw/tsconfig.json diff --git a/examples/react-query/kubb.config.ts b/examples/openapi/react-query/kubb.config.ts similarity index 100% rename from examples/react-query/kubb.config.ts rename to examples/openapi/react-query/kubb.config.ts diff --git a/examples/react-query/package.json b/examples/openapi/react-query/package.json similarity index 95% rename from examples/react-query/package.json rename to examples/openapi/react-query/package.json index 31a0d3d2f..7dc357694 100644 --- a/examples/react-query/package.json +++ b/examples/openapi/react-query/package.json @@ -8,7 +8,7 @@ "repository": { "type": "git", "url": "https://github.com/kubb-labs/plugins.git", - "directory": "examples/react-query" + "directory": "examples/openapi/react-query" }, "type": "module", "sideEffects": false, diff --git a/examples/react-query/petStore.yaml b/examples/openapi/react-query/petStore.yaml similarity index 100% rename from examples/react-query/petStore.yaml rename to examples/openapi/react-query/petStore.yaml diff --git a/examples/react-query/src/gen/.kubb/client.ts b/examples/openapi/react-query/src/gen/.kubb/client.ts similarity index 100% rename from examples/react-query/src/gen/.kubb/client.ts rename to examples/openapi/react-query/src/gen/.kubb/client.ts diff --git a/examples/react-query/src/gen/.kubb/serializers.ts b/examples/openapi/react-query/src/gen/.kubb/serializers.ts similarity index 100% rename from examples/react-query/src/gen/.kubb/serializers.ts rename to examples/openapi/react-query/src/gen/.kubb/serializers.ts diff --git a/examples/react-query/src/gen/.kubb/standardSchema.ts b/examples/openapi/react-query/src/gen/.kubb/standardSchema.ts similarity index 100% rename from examples/react-query/src/gen/.kubb/standardSchema.ts rename to examples/openapi/react-query/src/gen/.kubb/standardSchema.ts diff --git a/examples/react-query/src/gen/clients/index.ts b/examples/openapi/react-query/src/gen/clients/index.ts similarity index 100% rename from examples/react-query/src/gen/clients/index.ts rename to examples/openapi/react-query/src/gen/clients/index.ts diff --git a/examples/react-query/src/gen/clients/pet/addPet.ts b/examples/openapi/react-query/src/gen/clients/pet/addPet.ts similarity index 100% rename from examples/react-query/src/gen/clients/pet/addPet.ts rename to examples/openapi/react-query/src/gen/clients/pet/addPet.ts diff --git a/examples/react-query/src/gen/clients/pet/deletePet.ts b/examples/openapi/react-query/src/gen/clients/pet/deletePet.ts similarity index 100% rename from examples/react-query/src/gen/clients/pet/deletePet.ts rename to examples/openapi/react-query/src/gen/clients/pet/deletePet.ts diff --git a/examples/react-query/src/gen/clients/pet/findPetsByStatus.ts b/examples/openapi/react-query/src/gen/clients/pet/findPetsByStatus.ts similarity index 100% rename from examples/react-query/src/gen/clients/pet/findPetsByStatus.ts rename to examples/openapi/react-query/src/gen/clients/pet/findPetsByStatus.ts diff --git a/examples/react-query/src/gen/clients/pet/findPetsByTags.ts b/examples/openapi/react-query/src/gen/clients/pet/findPetsByTags.ts similarity index 100% rename from examples/react-query/src/gen/clients/pet/findPetsByTags.ts rename to examples/openapi/react-query/src/gen/clients/pet/findPetsByTags.ts diff --git a/examples/react-query/src/gen/clients/pet/getPetById.ts b/examples/openapi/react-query/src/gen/clients/pet/getPetById.ts similarity index 100% rename from examples/react-query/src/gen/clients/pet/getPetById.ts rename to examples/openapi/react-query/src/gen/clients/pet/getPetById.ts diff --git a/examples/react-query/src/gen/clients/pet/index.ts b/examples/openapi/react-query/src/gen/clients/pet/index.ts similarity index 100% rename from examples/react-query/src/gen/clients/pet/index.ts rename to examples/openapi/react-query/src/gen/clients/pet/index.ts diff --git a/examples/react-query/src/gen/clients/pet/updatePet.ts b/examples/openapi/react-query/src/gen/clients/pet/updatePet.ts similarity index 100% rename from examples/react-query/src/gen/clients/pet/updatePet.ts rename to examples/openapi/react-query/src/gen/clients/pet/updatePet.ts diff --git a/examples/react-query/src/gen/clients/pet/updatePetWithForm.ts b/examples/openapi/react-query/src/gen/clients/pet/updatePetWithForm.ts similarity index 100% rename from examples/react-query/src/gen/clients/pet/updatePetWithForm.ts rename to examples/openapi/react-query/src/gen/clients/pet/updatePetWithForm.ts diff --git a/examples/react-query/src/gen/clients/pet/uploadFile.ts b/examples/openapi/react-query/src/gen/clients/pet/uploadFile.ts similarity index 100% rename from examples/react-query/src/gen/clients/pet/uploadFile.ts rename to examples/openapi/react-query/src/gen/clients/pet/uploadFile.ts diff --git a/examples/react-query/src/gen/clients/store/deleteOrder.ts b/examples/openapi/react-query/src/gen/clients/store/deleteOrder.ts similarity index 100% rename from examples/react-query/src/gen/clients/store/deleteOrder.ts rename to examples/openapi/react-query/src/gen/clients/store/deleteOrder.ts diff --git a/examples/react-query/src/gen/clients/store/getInventory.ts b/examples/openapi/react-query/src/gen/clients/store/getInventory.ts similarity index 100% rename from examples/react-query/src/gen/clients/store/getInventory.ts rename to examples/openapi/react-query/src/gen/clients/store/getInventory.ts diff --git a/examples/react-query/src/gen/clients/store/getOrderById.ts b/examples/openapi/react-query/src/gen/clients/store/getOrderById.ts similarity index 100% rename from examples/react-query/src/gen/clients/store/getOrderById.ts rename to examples/openapi/react-query/src/gen/clients/store/getOrderById.ts diff --git a/examples/react-query/src/gen/clients/store/index.ts b/examples/openapi/react-query/src/gen/clients/store/index.ts similarity index 100% rename from examples/react-query/src/gen/clients/store/index.ts rename to examples/openapi/react-query/src/gen/clients/store/index.ts diff --git a/examples/react-query/src/gen/clients/store/placeOrder.ts b/examples/openapi/react-query/src/gen/clients/store/placeOrder.ts similarity index 100% rename from examples/react-query/src/gen/clients/store/placeOrder.ts rename to examples/openapi/react-query/src/gen/clients/store/placeOrder.ts diff --git a/examples/react-query/src/gen/clients/store/placeOrderPatch.ts b/examples/openapi/react-query/src/gen/clients/store/placeOrderPatch.ts similarity index 100% rename from examples/react-query/src/gen/clients/store/placeOrderPatch.ts rename to examples/openapi/react-query/src/gen/clients/store/placeOrderPatch.ts diff --git a/examples/react-query/src/gen/clients/user/createUser.ts b/examples/openapi/react-query/src/gen/clients/user/createUser.ts similarity index 100% rename from examples/react-query/src/gen/clients/user/createUser.ts rename to examples/openapi/react-query/src/gen/clients/user/createUser.ts diff --git a/examples/react-query/src/gen/clients/user/createUsersWithListInput.ts b/examples/openapi/react-query/src/gen/clients/user/createUsersWithListInput.ts similarity index 100% rename from examples/react-query/src/gen/clients/user/createUsersWithListInput.ts rename to examples/openapi/react-query/src/gen/clients/user/createUsersWithListInput.ts diff --git a/examples/react-query/src/gen/clients/user/deleteUser.ts b/examples/openapi/react-query/src/gen/clients/user/deleteUser.ts similarity index 100% rename from examples/react-query/src/gen/clients/user/deleteUser.ts rename to examples/openapi/react-query/src/gen/clients/user/deleteUser.ts diff --git a/examples/react-query/src/gen/clients/user/getUserByName.ts b/examples/openapi/react-query/src/gen/clients/user/getUserByName.ts similarity index 100% rename from examples/react-query/src/gen/clients/user/getUserByName.ts rename to examples/openapi/react-query/src/gen/clients/user/getUserByName.ts diff --git a/examples/react-query/src/gen/clients/user/index.ts b/examples/openapi/react-query/src/gen/clients/user/index.ts similarity index 100% rename from examples/react-query/src/gen/clients/user/index.ts rename to examples/openapi/react-query/src/gen/clients/user/index.ts diff --git a/examples/react-query/src/gen/clients/user/loginUser.ts b/examples/openapi/react-query/src/gen/clients/user/loginUser.ts similarity index 100% rename from examples/react-query/src/gen/clients/user/loginUser.ts rename to examples/openapi/react-query/src/gen/clients/user/loginUser.ts diff --git a/examples/react-query/src/gen/clients/user/logoutUser.ts b/examples/openapi/react-query/src/gen/clients/user/logoutUser.ts similarity index 100% rename from examples/react-query/src/gen/clients/user/logoutUser.ts rename to examples/openapi/react-query/src/gen/clients/user/logoutUser.ts diff --git a/examples/react-query/src/gen/clients/user/updateUser.ts b/examples/openapi/react-query/src/gen/clients/user/updateUser.ts similarity index 100% rename from examples/react-query/src/gen/clients/user/updateUser.ts rename to examples/openapi/react-query/src/gen/clients/user/updateUser.ts diff --git a/examples/react-query/src/gen/hooks/index.ts b/examples/openapi/react-query/src/gen/hooks/index.ts similarity index 100% rename from examples/react-query/src/gen/hooks/index.ts rename to examples/openapi/react-query/src/gen/hooks/index.ts diff --git a/examples/react-query/src/gen/hooks/pet/index.ts b/examples/openapi/react-query/src/gen/hooks/pet/index.ts similarity index 100% rename from examples/react-query/src/gen/hooks/pet/index.ts rename to examples/openapi/react-query/src/gen/hooks/pet/index.ts diff --git a/examples/react-query/src/gen/hooks/pet/useAddPet.ts b/examples/openapi/react-query/src/gen/hooks/pet/useAddPet.ts similarity index 100% rename from examples/react-query/src/gen/hooks/pet/useAddPet.ts rename to examples/openapi/react-query/src/gen/hooks/pet/useAddPet.ts diff --git a/examples/react-query/src/gen/hooks/pet/useDeletePet.ts b/examples/openapi/react-query/src/gen/hooks/pet/useDeletePet.ts similarity index 100% rename from examples/react-query/src/gen/hooks/pet/useDeletePet.ts rename to examples/openapi/react-query/src/gen/hooks/pet/useDeletePet.ts diff --git a/examples/react-query/src/gen/hooks/pet/useFindPetsByStatus.ts b/examples/openapi/react-query/src/gen/hooks/pet/useFindPetsByStatus.ts similarity index 100% rename from examples/react-query/src/gen/hooks/pet/useFindPetsByStatus.ts rename to examples/openapi/react-query/src/gen/hooks/pet/useFindPetsByStatus.ts diff --git a/examples/react-query/src/gen/hooks/pet/useFindPetsByTags.ts b/examples/openapi/react-query/src/gen/hooks/pet/useFindPetsByTags.ts similarity index 100% rename from examples/react-query/src/gen/hooks/pet/useFindPetsByTags.ts rename to examples/openapi/react-query/src/gen/hooks/pet/useFindPetsByTags.ts diff --git a/examples/react-query/src/gen/hooks/pet/useGetPetById.ts b/examples/openapi/react-query/src/gen/hooks/pet/useGetPetById.ts similarity index 100% rename from examples/react-query/src/gen/hooks/pet/useGetPetById.ts rename to examples/openapi/react-query/src/gen/hooks/pet/useGetPetById.ts diff --git a/examples/react-query/src/gen/hooks/pet/useUpdatePet.ts b/examples/openapi/react-query/src/gen/hooks/pet/useUpdatePet.ts similarity index 100% rename from examples/react-query/src/gen/hooks/pet/useUpdatePet.ts rename to examples/openapi/react-query/src/gen/hooks/pet/useUpdatePet.ts diff --git a/examples/react-query/src/gen/hooks/pet/useUpdatePetWithForm.ts b/examples/openapi/react-query/src/gen/hooks/pet/useUpdatePetWithForm.ts similarity index 100% rename from examples/react-query/src/gen/hooks/pet/useUpdatePetWithForm.ts rename to examples/openapi/react-query/src/gen/hooks/pet/useUpdatePetWithForm.ts diff --git a/examples/react-query/src/gen/hooks/pet/useUploadFile.ts b/examples/openapi/react-query/src/gen/hooks/pet/useUploadFile.ts similarity index 100% rename from examples/react-query/src/gen/hooks/pet/useUploadFile.ts rename to examples/openapi/react-query/src/gen/hooks/pet/useUploadFile.ts diff --git a/examples/react-query/src/gen/hooks/store/index.ts b/examples/openapi/react-query/src/gen/hooks/store/index.ts similarity index 100% rename from examples/react-query/src/gen/hooks/store/index.ts rename to examples/openapi/react-query/src/gen/hooks/store/index.ts diff --git a/examples/react-query/src/gen/hooks/store/useDeleteOrder.ts b/examples/openapi/react-query/src/gen/hooks/store/useDeleteOrder.ts similarity index 100% rename from examples/react-query/src/gen/hooks/store/useDeleteOrder.ts rename to examples/openapi/react-query/src/gen/hooks/store/useDeleteOrder.ts diff --git a/examples/react-query/src/gen/hooks/store/useGetInventory.ts b/examples/openapi/react-query/src/gen/hooks/store/useGetInventory.ts similarity index 100% rename from examples/react-query/src/gen/hooks/store/useGetInventory.ts rename to examples/openapi/react-query/src/gen/hooks/store/useGetInventory.ts diff --git a/examples/react-query/src/gen/hooks/store/useGetOrderById.ts b/examples/openapi/react-query/src/gen/hooks/store/useGetOrderById.ts similarity index 100% rename from examples/react-query/src/gen/hooks/store/useGetOrderById.ts rename to examples/openapi/react-query/src/gen/hooks/store/useGetOrderById.ts diff --git a/examples/react-query/src/gen/hooks/store/usePlaceOrder.ts b/examples/openapi/react-query/src/gen/hooks/store/usePlaceOrder.ts similarity index 100% rename from examples/react-query/src/gen/hooks/store/usePlaceOrder.ts rename to examples/openapi/react-query/src/gen/hooks/store/usePlaceOrder.ts diff --git a/examples/react-query/src/gen/hooks/store/usePlaceOrderPatch.ts b/examples/openapi/react-query/src/gen/hooks/store/usePlaceOrderPatch.ts similarity index 100% rename from examples/react-query/src/gen/hooks/store/usePlaceOrderPatch.ts rename to examples/openapi/react-query/src/gen/hooks/store/usePlaceOrderPatch.ts diff --git a/examples/react-query/src/gen/hooks/user/index.ts b/examples/openapi/react-query/src/gen/hooks/user/index.ts similarity index 100% rename from examples/react-query/src/gen/hooks/user/index.ts rename to examples/openapi/react-query/src/gen/hooks/user/index.ts diff --git a/examples/react-query/src/gen/hooks/user/useCreateUser.ts b/examples/openapi/react-query/src/gen/hooks/user/useCreateUser.ts similarity index 100% rename from examples/react-query/src/gen/hooks/user/useCreateUser.ts rename to examples/openapi/react-query/src/gen/hooks/user/useCreateUser.ts diff --git a/examples/react-query/src/gen/hooks/user/useCreateUsersWithListInput.ts b/examples/openapi/react-query/src/gen/hooks/user/useCreateUsersWithListInput.ts similarity index 100% rename from examples/react-query/src/gen/hooks/user/useCreateUsersWithListInput.ts rename to examples/openapi/react-query/src/gen/hooks/user/useCreateUsersWithListInput.ts diff --git a/examples/react-query/src/gen/hooks/user/useDeleteUser.ts b/examples/openapi/react-query/src/gen/hooks/user/useDeleteUser.ts similarity index 100% rename from examples/react-query/src/gen/hooks/user/useDeleteUser.ts rename to examples/openapi/react-query/src/gen/hooks/user/useDeleteUser.ts diff --git a/examples/react-query/src/gen/hooks/user/useGetUserByName.ts b/examples/openapi/react-query/src/gen/hooks/user/useGetUserByName.ts similarity index 100% rename from examples/react-query/src/gen/hooks/user/useGetUserByName.ts rename to examples/openapi/react-query/src/gen/hooks/user/useGetUserByName.ts diff --git a/examples/react-query/src/gen/hooks/user/useLoginUser.ts b/examples/openapi/react-query/src/gen/hooks/user/useLoginUser.ts similarity index 100% rename from examples/react-query/src/gen/hooks/user/useLoginUser.ts rename to examples/openapi/react-query/src/gen/hooks/user/useLoginUser.ts diff --git a/examples/react-query/src/gen/hooks/user/useLogoutUser.ts b/examples/openapi/react-query/src/gen/hooks/user/useLogoutUser.ts similarity index 100% rename from examples/react-query/src/gen/hooks/user/useLogoutUser.ts rename to examples/openapi/react-query/src/gen/hooks/user/useLogoutUser.ts diff --git a/examples/react-query/src/gen/hooks/user/useUpdateUser.ts b/examples/openapi/react-query/src/gen/hooks/user/useUpdateUser.ts similarity index 100% rename from examples/react-query/src/gen/hooks/user/useUpdateUser.ts rename to examples/openapi/react-query/src/gen/hooks/user/useUpdateUser.ts diff --git a/examples/react-query/src/gen/index.ts b/examples/openapi/react-query/src/gen/index.ts similarity index 100% rename from examples/react-query/src/gen/index.ts rename to examples/openapi/react-query/src/gen/index.ts diff --git a/examples/react-query/src/gen/models/AddPetRequest.ts b/examples/openapi/react-query/src/gen/models/AddPetRequest.ts similarity index 100% rename from examples/react-query/src/gen/models/AddPetRequest.ts rename to examples/openapi/react-query/src/gen/models/AddPetRequest.ts diff --git a/examples/react-query/src/gen/models/Address.ts b/examples/openapi/react-query/src/gen/models/Address.ts similarity index 100% rename from examples/react-query/src/gen/models/Address.ts rename to examples/openapi/react-query/src/gen/models/Address.ts diff --git a/examples/react-query/src/gen/models/ApiResponse.ts b/examples/openapi/react-query/src/gen/models/ApiResponse.ts similarity index 100% rename from examples/react-query/src/gen/models/ApiResponse.ts rename to examples/openapi/react-query/src/gen/models/ApiResponse.ts diff --git a/examples/react-query/src/gen/models/Category.ts b/examples/openapi/react-query/src/gen/models/Category.ts similarity index 100% rename from examples/react-query/src/gen/models/Category.ts rename to examples/openapi/react-query/src/gen/models/Category.ts diff --git a/examples/react-query/src/gen/models/Customer.ts b/examples/openapi/react-query/src/gen/models/Customer.ts similarity index 100% rename from examples/react-query/src/gen/models/Customer.ts rename to examples/openapi/react-query/src/gen/models/Customer.ts diff --git a/examples/react-query/src/gen/models/Order.ts b/examples/openapi/react-query/src/gen/models/Order.ts similarity index 100% rename from examples/react-query/src/gen/models/Order.ts rename to examples/openapi/react-query/src/gen/models/Order.ts diff --git a/examples/react-query/src/gen/models/Pet.ts b/examples/openapi/react-query/src/gen/models/Pet.ts similarity index 100% rename from examples/react-query/src/gen/models/Pet.ts rename to examples/openapi/react-query/src/gen/models/Pet.ts diff --git a/examples/react-query/src/gen/models/PetNotFound.ts b/examples/openapi/react-query/src/gen/models/PetNotFound.ts similarity index 100% rename from examples/react-query/src/gen/models/PetNotFound.ts rename to examples/openapi/react-query/src/gen/models/PetNotFound.ts diff --git a/examples/react-query/src/gen/models/Tag.ts b/examples/openapi/react-query/src/gen/models/Tag.ts similarity index 100% rename from examples/react-query/src/gen/models/Tag.ts rename to examples/openapi/react-query/src/gen/models/Tag.ts diff --git a/examples/react-query/src/gen/models/User.ts b/examples/openapi/react-query/src/gen/models/User.ts similarity index 100% rename from examples/react-query/src/gen/models/User.ts rename to examples/openapi/react-query/src/gen/models/User.ts diff --git a/examples/react-query/src/gen/models/UserArray.ts b/examples/openapi/react-query/src/gen/models/UserArray.ts similarity index 100% rename from examples/react-query/src/gen/models/UserArray.ts rename to examples/openapi/react-query/src/gen/models/UserArray.ts diff --git a/examples/react-query/src/gen/models/index.ts b/examples/openapi/react-query/src/gen/models/index.ts similarity index 100% rename from examples/react-query/src/gen/models/index.ts rename to examples/openapi/react-query/src/gen/models/index.ts diff --git a/examples/react-query/src/gen/models/pet/AddPet.ts b/examples/openapi/react-query/src/gen/models/pet/AddPet.ts similarity index 100% rename from examples/react-query/src/gen/models/pet/AddPet.ts rename to examples/openapi/react-query/src/gen/models/pet/AddPet.ts diff --git a/examples/react-query/src/gen/models/pet/DeletePet.ts b/examples/openapi/react-query/src/gen/models/pet/DeletePet.ts similarity index 100% rename from examples/react-query/src/gen/models/pet/DeletePet.ts rename to examples/openapi/react-query/src/gen/models/pet/DeletePet.ts diff --git a/examples/react-query/src/gen/models/pet/FindPetsByStatus.ts b/examples/openapi/react-query/src/gen/models/pet/FindPetsByStatus.ts similarity index 100% rename from examples/react-query/src/gen/models/pet/FindPetsByStatus.ts rename to examples/openapi/react-query/src/gen/models/pet/FindPetsByStatus.ts diff --git a/examples/react-query/src/gen/models/pet/FindPetsByTags.ts b/examples/openapi/react-query/src/gen/models/pet/FindPetsByTags.ts similarity index 100% rename from examples/react-query/src/gen/models/pet/FindPetsByTags.ts rename to examples/openapi/react-query/src/gen/models/pet/FindPetsByTags.ts diff --git a/examples/react-query/src/gen/models/pet/GetPetById.ts b/examples/openapi/react-query/src/gen/models/pet/GetPetById.ts similarity index 100% rename from examples/react-query/src/gen/models/pet/GetPetById.ts rename to examples/openapi/react-query/src/gen/models/pet/GetPetById.ts diff --git a/examples/react-query/src/gen/models/pet/UpdatePet.ts b/examples/openapi/react-query/src/gen/models/pet/UpdatePet.ts similarity index 100% rename from examples/react-query/src/gen/models/pet/UpdatePet.ts rename to examples/openapi/react-query/src/gen/models/pet/UpdatePet.ts diff --git a/examples/react-query/src/gen/models/pet/UpdatePetWithForm.ts b/examples/openapi/react-query/src/gen/models/pet/UpdatePetWithForm.ts similarity index 100% rename from examples/react-query/src/gen/models/pet/UpdatePetWithForm.ts rename to examples/openapi/react-query/src/gen/models/pet/UpdatePetWithForm.ts diff --git a/examples/react-query/src/gen/models/pet/UploadFile.ts b/examples/openapi/react-query/src/gen/models/pet/UploadFile.ts similarity index 100% rename from examples/react-query/src/gen/models/pet/UploadFile.ts rename to examples/openapi/react-query/src/gen/models/pet/UploadFile.ts diff --git a/examples/react-query/src/gen/models/pet/index.ts b/examples/openapi/react-query/src/gen/models/pet/index.ts similarity index 100% rename from examples/react-query/src/gen/models/pet/index.ts rename to examples/openapi/react-query/src/gen/models/pet/index.ts diff --git a/examples/react-query/src/gen/models/store/DeleteOrder.ts b/examples/openapi/react-query/src/gen/models/store/DeleteOrder.ts similarity index 100% rename from examples/react-query/src/gen/models/store/DeleteOrder.ts rename to examples/openapi/react-query/src/gen/models/store/DeleteOrder.ts diff --git a/examples/react-query/src/gen/models/store/GetInventory.ts b/examples/openapi/react-query/src/gen/models/store/GetInventory.ts similarity index 100% rename from examples/react-query/src/gen/models/store/GetInventory.ts rename to examples/openapi/react-query/src/gen/models/store/GetInventory.ts diff --git a/examples/react-query/src/gen/models/store/GetOrderById.ts b/examples/openapi/react-query/src/gen/models/store/GetOrderById.ts similarity index 100% rename from examples/react-query/src/gen/models/store/GetOrderById.ts rename to examples/openapi/react-query/src/gen/models/store/GetOrderById.ts diff --git a/examples/react-query/src/gen/models/store/PlaceOrder.ts b/examples/openapi/react-query/src/gen/models/store/PlaceOrder.ts similarity index 100% rename from examples/react-query/src/gen/models/store/PlaceOrder.ts rename to examples/openapi/react-query/src/gen/models/store/PlaceOrder.ts diff --git a/examples/react-query/src/gen/models/store/PlaceOrderPatch.ts b/examples/openapi/react-query/src/gen/models/store/PlaceOrderPatch.ts similarity index 100% rename from examples/react-query/src/gen/models/store/PlaceOrderPatch.ts rename to examples/openapi/react-query/src/gen/models/store/PlaceOrderPatch.ts diff --git a/examples/react-query/src/gen/models/store/index.ts b/examples/openapi/react-query/src/gen/models/store/index.ts similarity index 100% rename from examples/react-query/src/gen/models/store/index.ts rename to examples/openapi/react-query/src/gen/models/store/index.ts diff --git a/examples/react-query/src/gen/models/user/CreateUser.ts b/examples/openapi/react-query/src/gen/models/user/CreateUser.ts similarity index 100% rename from examples/react-query/src/gen/models/user/CreateUser.ts rename to examples/openapi/react-query/src/gen/models/user/CreateUser.ts diff --git a/examples/react-query/src/gen/models/user/CreateUsersWithListInput.ts b/examples/openapi/react-query/src/gen/models/user/CreateUsersWithListInput.ts similarity index 100% rename from examples/react-query/src/gen/models/user/CreateUsersWithListInput.ts rename to examples/openapi/react-query/src/gen/models/user/CreateUsersWithListInput.ts diff --git a/examples/react-query/src/gen/models/user/DeleteUser.ts b/examples/openapi/react-query/src/gen/models/user/DeleteUser.ts similarity index 100% rename from examples/react-query/src/gen/models/user/DeleteUser.ts rename to examples/openapi/react-query/src/gen/models/user/DeleteUser.ts diff --git a/examples/react-query/src/gen/models/user/GetUserByName.ts b/examples/openapi/react-query/src/gen/models/user/GetUserByName.ts similarity index 100% rename from examples/react-query/src/gen/models/user/GetUserByName.ts rename to examples/openapi/react-query/src/gen/models/user/GetUserByName.ts diff --git a/examples/react-query/src/gen/models/user/LoginUser.ts b/examples/openapi/react-query/src/gen/models/user/LoginUser.ts similarity index 100% rename from examples/react-query/src/gen/models/user/LoginUser.ts rename to examples/openapi/react-query/src/gen/models/user/LoginUser.ts diff --git a/examples/react-query/src/gen/models/user/LogoutUser.ts b/examples/openapi/react-query/src/gen/models/user/LogoutUser.ts similarity index 100% rename from examples/react-query/src/gen/models/user/LogoutUser.ts rename to examples/openapi/react-query/src/gen/models/user/LogoutUser.ts diff --git a/examples/react-query/src/gen/models/user/UpdateUser.ts b/examples/openapi/react-query/src/gen/models/user/UpdateUser.ts similarity index 100% rename from examples/react-query/src/gen/models/user/UpdateUser.ts rename to examples/openapi/react-query/src/gen/models/user/UpdateUser.ts diff --git a/examples/react-query/src/gen/models/user/index.ts b/examples/openapi/react-query/src/gen/models/user/index.ts similarity index 100% rename from examples/react-query/src/gen/models/user/index.ts rename to examples/openapi/react-query/src/gen/models/user/index.ts diff --git a/examples/react-query/src/index.ts b/examples/openapi/react-query/src/index.ts similarity index 100% rename from examples/react-query/src/index.ts rename to examples/openapi/react-query/src/index.ts diff --git a/examples/react-query/tsconfig.json b/examples/openapi/react-query/tsconfig.json similarity index 100% rename from examples/react-query/tsconfig.json rename to examples/openapi/react-query/tsconfig.json diff --git a/examples/sdk/kubb.config.ts b/examples/openapi/sdk/kubb.config.ts similarity index 100% rename from examples/sdk/kubb.config.ts rename to examples/openapi/sdk/kubb.config.ts diff --git a/examples/sdk/package.json b/examples/openapi/sdk/package.json similarity index 95% rename from examples/sdk/package.json rename to examples/openapi/sdk/package.json index bc1e67e14..15f3f8804 100644 --- a/examples/sdk/package.json +++ b/examples/openapi/sdk/package.json @@ -8,7 +8,7 @@ "repository": { "type": "git", "url": "https://github.com/kubb-labs/plugins.git", - "directory": "examples/sdk" + "directory": "examples/openapi/sdk" }, "type": "module", "sideEffects": false, diff --git a/examples/sdk/petStore.yaml b/examples/openapi/sdk/petStore.yaml similarity index 100% rename from examples/sdk/petStore.yaml rename to examples/openapi/sdk/petStore.yaml diff --git a/examples/sdk/sandbox.config.json b/examples/openapi/sdk/sandbox.config.json similarity index 100% rename from examples/sdk/sandbox.config.json rename to examples/openapi/sdk/sandbox.config.json diff --git a/examples/sdk/src/gen/.kubb/client.ts b/examples/openapi/sdk/src/gen/.kubb/client.ts similarity index 100% rename from examples/sdk/src/gen/.kubb/client.ts rename to examples/openapi/sdk/src/gen/.kubb/client.ts diff --git a/examples/sdk/src/gen/.kubb/serializers.ts b/examples/openapi/sdk/src/gen/.kubb/serializers.ts similarity index 100% rename from examples/sdk/src/gen/.kubb/serializers.ts rename to examples/openapi/sdk/src/gen/.kubb/serializers.ts diff --git a/examples/sdk/src/gen/.kubb/standardSchema.ts b/examples/openapi/sdk/src/gen/.kubb/standardSchema.ts similarity index 100% rename from examples/sdk/src/gen/.kubb/standardSchema.ts rename to examples/openapi/sdk/src/gen/.kubb/standardSchema.ts diff --git a/examples/sdk/src/gen/models/AddPetRequest.ts b/examples/openapi/sdk/src/gen/models/AddPetRequest.ts similarity index 100% rename from examples/sdk/src/gen/models/AddPetRequest.ts rename to examples/openapi/sdk/src/gen/models/AddPetRequest.ts diff --git a/examples/sdk/src/gen/models/AddPetRequestStatusEnum.ts b/examples/openapi/sdk/src/gen/models/AddPetRequestStatusEnum.ts similarity index 100% rename from examples/sdk/src/gen/models/AddPetRequestStatusEnum.ts rename to examples/openapi/sdk/src/gen/models/AddPetRequestStatusEnum.ts diff --git a/examples/sdk/src/gen/models/ApiResponse.ts b/examples/openapi/sdk/src/gen/models/ApiResponse.ts similarity index 100% rename from examples/sdk/src/gen/models/ApiResponse.ts rename to examples/openapi/sdk/src/gen/models/ApiResponse.ts diff --git a/examples/sdk/src/gen/models/Category.ts b/examples/openapi/sdk/src/gen/models/Category.ts similarity index 100% rename from examples/sdk/src/gen/models/Category.ts rename to examples/openapi/sdk/src/gen/models/Category.ts diff --git a/examples/sdk/src/gen/models/FindPetsByStatusStatus.ts b/examples/openapi/sdk/src/gen/models/FindPetsByStatusStatus.ts similarity index 100% rename from examples/sdk/src/gen/models/FindPetsByStatusStatus.ts rename to examples/openapi/sdk/src/gen/models/FindPetsByStatusStatus.ts diff --git a/examples/sdk/src/gen/models/Order.ts b/examples/openapi/sdk/src/gen/models/Order.ts similarity index 100% rename from examples/sdk/src/gen/models/Order.ts rename to examples/openapi/sdk/src/gen/models/Order.ts diff --git a/examples/sdk/src/gen/models/OrderHttpStatusEnum.ts b/examples/openapi/sdk/src/gen/models/OrderHttpStatusEnum.ts similarity index 100% rename from examples/sdk/src/gen/models/OrderHttpStatusEnum.ts rename to examples/openapi/sdk/src/gen/models/OrderHttpStatusEnum.ts diff --git a/examples/sdk/src/gen/models/OrderStatusEnum.ts b/examples/openapi/sdk/src/gen/models/OrderStatusEnum.ts similarity index 100% rename from examples/sdk/src/gen/models/OrderStatusEnum.ts rename to examples/openapi/sdk/src/gen/models/OrderStatusEnum.ts diff --git a/examples/sdk/src/gen/models/Pet.ts b/examples/openapi/sdk/src/gen/models/Pet.ts similarity index 100% rename from examples/sdk/src/gen/models/Pet.ts rename to examples/openapi/sdk/src/gen/models/Pet.ts diff --git a/examples/sdk/src/gen/models/PetNotFound.ts b/examples/openapi/sdk/src/gen/models/PetNotFound.ts similarity index 100% rename from examples/sdk/src/gen/models/PetNotFound.ts rename to examples/openapi/sdk/src/gen/models/PetNotFound.ts diff --git a/examples/sdk/src/gen/models/PetStatusEnum.ts b/examples/openapi/sdk/src/gen/models/PetStatusEnum.ts similarity index 100% rename from examples/sdk/src/gen/models/PetStatusEnum.ts rename to examples/openapi/sdk/src/gen/models/PetStatusEnum.ts diff --git a/examples/sdk/src/gen/models/Tag.ts b/examples/openapi/sdk/src/gen/models/Tag.ts similarity index 100% rename from examples/sdk/src/gen/models/Tag.ts rename to examples/openapi/sdk/src/gen/models/Tag.ts diff --git a/examples/sdk/src/gen/models/pet/AddPet.ts b/examples/openapi/sdk/src/gen/models/pet/AddPet.ts similarity index 100% rename from examples/sdk/src/gen/models/pet/AddPet.ts rename to examples/openapi/sdk/src/gen/models/pet/AddPet.ts diff --git a/examples/sdk/src/gen/models/pet/DeletePet.ts b/examples/openapi/sdk/src/gen/models/pet/DeletePet.ts similarity index 100% rename from examples/sdk/src/gen/models/pet/DeletePet.ts rename to examples/openapi/sdk/src/gen/models/pet/DeletePet.ts diff --git a/examples/sdk/src/gen/models/pet/FindPetsByStatus.ts b/examples/openapi/sdk/src/gen/models/pet/FindPetsByStatus.ts similarity index 100% rename from examples/sdk/src/gen/models/pet/FindPetsByStatus.ts rename to examples/openapi/sdk/src/gen/models/pet/FindPetsByStatus.ts diff --git a/examples/sdk/src/gen/models/pet/FindPetsByTags.ts b/examples/openapi/sdk/src/gen/models/pet/FindPetsByTags.ts similarity index 100% rename from examples/sdk/src/gen/models/pet/FindPetsByTags.ts rename to examples/openapi/sdk/src/gen/models/pet/FindPetsByTags.ts diff --git a/examples/sdk/src/gen/models/pet/GetPetById.ts b/examples/openapi/sdk/src/gen/models/pet/GetPetById.ts similarity index 100% rename from examples/sdk/src/gen/models/pet/GetPetById.ts rename to examples/openapi/sdk/src/gen/models/pet/GetPetById.ts diff --git a/examples/sdk/src/gen/models/pet/UpdatePet.ts b/examples/openapi/sdk/src/gen/models/pet/UpdatePet.ts similarity index 100% rename from examples/sdk/src/gen/models/pet/UpdatePet.ts rename to examples/openapi/sdk/src/gen/models/pet/UpdatePet.ts diff --git a/examples/sdk/src/gen/models/pet/UpdatePetWithForm.ts b/examples/openapi/sdk/src/gen/models/pet/UpdatePetWithForm.ts similarity index 100% rename from examples/sdk/src/gen/models/pet/UpdatePetWithForm.ts rename to examples/openapi/sdk/src/gen/models/pet/UpdatePetWithForm.ts diff --git a/examples/sdk/src/gen/models/pet/UploadFile.ts b/examples/openapi/sdk/src/gen/models/pet/UploadFile.ts similarity index 100% rename from examples/sdk/src/gen/models/pet/UploadFile.ts rename to examples/openapi/sdk/src/gen/models/pet/UploadFile.ts diff --git a/examples/sdk/src/gen/models/store/DeleteOrder.ts b/examples/openapi/sdk/src/gen/models/store/DeleteOrder.ts similarity index 100% rename from examples/sdk/src/gen/models/store/DeleteOrder.ts rename to examples/openapi/sdk/src/gen/models/store/DeleteOrder.ts diff --git a/examples/sdk/src/gen/models/store/GetInventory.ts b/examples/openapi/sdk/src/gen/models/store/GetInventory.ts similarity index 100% rename from examples/sdk/src/gen/models/store/GetInventory.ts rename to examples/openapi/sdk/src/gen/models/store/GetInventory.ts diff --git a/examples/sdk/src/gen/models/store/GetOrderById.ts b/examples/openapi/sdk/src/gen/models/store/GetOrderById.ts similarity index 100% rename from examples/sdk/src/gen/models/store/GetOrderById.ts rename to examples/openapi/sdk/src/gen/models/store/GetOrderById.ts diff --git a/examples/sdk/src/gen/models/store/PlaceOrder.ts b/examples/openapi/sdk/src/gen/models/store/PlaceOrder.ts similarity index 100% rename from examples/sdk/src/gen/models/store/PlaceOrder.ts rename to examples/openapi/sdk/src/gen/models/store/PlaceOrder.ts diff --git a/examples/sdk/src/gen/models/store/PlaceOrderPatch.ts b/examples/openapi/sdk/src/gen/models/store/PlaceOrderPatch.ts similarity index 100% rename from examples/sdk/src/gen/models/store/PlaceOrderPatch.ts rename to examples/openapi/sdk/src/gen/models/store/PlaceOrderPatch.ts diff --git a/examples/sdk/src/gen/sdk/index.ts b/examples/openapi/sdk/src/gen/sdk/index.ts similarity index 100% rename from examples/sdk/src/gen/sdk/index.ts rename to examples/openapi/sdk/src/gen/sdk/index.ts diff --git a/examples/sdk/src/gen/sdk/pet/index.ts b/examples/openapi/sdk/src/gen/sdk/pet/index.ts similarity index 100% rename from examples/sdk/src/gen/sdk/pet/index.ts rename to examples/openapi/sdk/src/gen/sdk/pet/index.ts diff --git a/examples/sdk/src/gen/sdk/pet/pet.ts b/examples/openapi/sdk/src/gen/sdk/pet/pet.ts similarity index 100% rename from examples/sdk/src/gen/sdk/pet/pet.ts rename to examples/openapi/sdk/src/gen/sdk/pet/pet.ts diff --git a/examples/sdk/src/gen/sdk/petStoreSDK.ts b/examples/openapi/sdk/src/gen/sdk/petStoreSDK.ts similarity index 100% rename from examples/sdk/src/gen/sdk/petStoreSDK.ts rename to examples/openapi/sdk/src/gen/sdk/petStoreSDK.ts diff --git a/examples/sdk/src/gen/sdk/store/index.ts b/examples/openapi/sdk/src/gen/sdk/store/index.ts similarity index 100% rename from examples/sdk/src/gen/sdk/store/index.ts rename to examples/openapi/sdk/src/gen/sdk/store/index.ts diff --git a/examples/sdk/src/gen/sdk/store/store.ts b/examples/openapi/sdk/src/gen/sdk/store/store.ts similarity index 100% rename from examples/sdk/src/gen/sdk/store/store.ts rename to examples/openapi/sdk/src/gen/sdk/store/store.ts diff --git a/examples/sdk/src/index.ts b/examples/openapi/sdk/src/index.ts similarity index 100% rename from examples/sdk/src/index.ts rename to examples/openapi/sdk/src/index.ts diff --git a/examples/sdk/tsconfig.json b/examples/openapi/sdk/tsconfig.json similarity index 100% rename from examples/sdk/tsconfig.json rename to examples/openapi/sdk/tsconfig.json diff --git a/examples/simple-single/kubb.config.js b/examples/openapi/simple-single/kubb.config.js similarity index 100% rename from examples/simple-single/kubb.config.js rename to examples/openapi/simple-single/kubb.config.js diff --git a/examples/simple-single/package.json b/examples/openapi/simple-single/package.json similarity index 96% rename from examples/simple-single/package.json rename to examples/openapi/simple-single/package.json index 9bedd4558..a25831f6c 100644 --- a/examples/simple-single/package.json +++ b/examples/openapi/simple-single/package.json @@ -8,7 +8,7 @@ "repository": { "type": "git", "url": "https://github.com/kubb-labs/plugins.git", - "directory": "examples/single-single" + "directory": "examples/openapi/simple-single" }, "type": "module", "sideEffects": false, diff --git a/examples/simple-single/petStore.yaml b/examples/openapi/simple-single/petStore.yaml similarity index 100% rename from examples/simple-single/petStore.yaml rename to examples/openapi/simple-single/petStore.yaml diff --git a/examples/simple-single/src/gen/.kubb/client.ts b/examples/openapi/simple-single/src/gen/.kubb/client.ts similarity index 100% rename from examples/simple-single/src/gen/.kubb/client.ts rename to examples/openapi/simple-single/src/gen/.kubb/client.ts diff --git a/examples/simple-single/src/gen/.kubb/serializers.ts b/examples/openapi/simple-single/src/gen/.kubb/serializers.ts similarity index 100% rename from examples/simple-single/src/gen/.kubb/serializers.ts rename to examples/openapi/simple-single/src/gen/.kubb/serializers.ts diff --git a/examples/simple-single/src/gen/.kubb/standardSchema.ts b/examples/openapi/simple-single/src/gen/.kubb/standardSchema.ts similarity index 100% rename from examples/simple-single/src/gen/.kubb/standardSchema.ts rename to examples/openapi/simple-single/src/gen/.kubb/standardSchema.ts diff --git a/examples/simple-single/src/gen/clients/addPet.ts b/examples/openapi/simple-single/src/gen/clients/addPet.ts similarity index 100% rename from examples/simple-single/src/gen/clients/addPet.ts rename to examples/openapi/simple-single/src/gen/clients/addPet.ts diff --git a/examples/simple-single/src/gen/clients/deleteOrder.ts b/examples/openapi/simple-single/src/gen/clients/deleteOrder.ts similarity index 100% rename from examples/simple-single/src/gen/clients/deleteOrder.ts rename to examples/openapi/simple-single/src/gen/clients/deleteOrder.ts diff --git a/examples/simple-single/src/gen/clients/deletePet.ts b/examples/openapi/simple-single/src/gen/clients/deletePet.ts similarity index 100% rename from examples/simple-single/src/gen/clients/deletePet.ts rename to examples/openapi/simple-single/src/gen/clients/deletePet.ts diff --git a/examples/simple-single/src/gen/clients/findPetsByStatus.ts b/examples/openapi/simple-single/src/gen/clients/findPetsByStatus.ts similarity index 100% rename from examples/simple-single/src/gen/clients/findPetsByStatus.ts rename to examples/openapi/simple-single/src/gen/clients/findPetsByStatus.ts diff --git a/examples/simple-single/src/gen/clients/findPetsByTags.ts b/examples/openapi/simple-single/src/gen/clients/findPetsByTags.ts similarity index 100% rename from examples/simple-single/src/gen/clients/findPetsByTags.ts rename to examples/openapi/simple-single/src/gen/clients/findPetsByTags.ts diff --git a/examples/simple-single/src/gen/clients/getInventory.ts b/examples/openapi/simple-single/src/gen/clients/getInventory.ts similarity index 100% rename from examples/simple-single/src/gen/clients/getInventory.ts rename to examples/openapi/simple-single/src/gen/clients/getInventory.ts diff --git a/examples/simple-single/src/gen/clients/getOrderById.ts b/examples/openapi/simple-single/src/gen/clients/getOrderById.ts similarity index 100% rename from examples/simple-single/src/gen/clients/getOrderById.ts rename to examples/openapi/simple-single/src/gen/clients/getOrderById.ts diff --git a/examples/simple-single/src/gen/clients/getPetById.ts b/examples/openapi/simple-single/src/gen/clients/getPetById.ts similarity index 100% rename from examples/simple-single/src/gen/clients/getPetById.ts rename to examples/openapi/simple-single/src/gen/clients/getPetById.ts diff --git a/examples/simple-single/src/gen/clients/index.ts b/examples/openapi/simple-single/src/gen/clients/index.ts similarity index 100% rename from examples/simple-single/src/gen/clients/index.ts rename to examples/openapi/simple-single/src/gen/clients/index.ts diff --git a/examples/simple-single/src/gen/clients/placeOrder.ts b/examples/openapi/simple-single/src/gen/clients/placeOrder.ts similarity index 100% rename from examples/simple-single/src/gen/clients/placeOrder.ts rename to examples/openapi/simple-single/src/gen/clients/placeOrder.ts diff --git a/examples/simple-single/src/gen/clients/placeOrderPatch.ts b/examples/openapi/simple-single/src/gen/clients/placeOrderPatch.ts similarity index 100% rename from examples/simple-single/src/gen/clients/placeOrderPatch.ts rename to examples/openapi/simple-single/src/gen/clients/placeOrderPatch.ts diff --git a/examples/simple-single/src/gen/clients/updatePet.ts b/examples/openapi/simple-single/src/gen/clients/updatePet.ts similarity index 100% rename from examples/simple-single/src/gen/clients/updatePet.ts rename to examples/openapi/simple-single/src/gen/clients/updatePet.ts diff --git a/examples/simple-single/src/gen/clients/updatePetWithForm.ts b/examples/openapi/simple-single/src/gen/clients/updatePetWithForm.ts similarity index 100% rename from examples/simple-single/src/gen/clients/updatePetWithForm.ts rename to examples/openapi/simple-single/src/gen/clients/updatePetWithForm.ts diff --git a/examples/simple-single/src/gen/clients/uploadFile.ts b/examples/openapi/simple-single/src/gen/clients/uploadFile.ts similarity index 100% rename from examples/simple-single/src/gen/clients/uploadFile.ts rename to examples/openapi/simple-single/src/gen/clients/uploadFile.ts diff --git a/examples/simple-single/src/gen/docs/index.html b/examples/openapi/simple-single/src/gen/docs/index.html similarity index 100% rename from examples/simple-single/src/gen/docs/index.html rename to examples/openapi/simple-single/src/gen/docs/index.html diff --git a/examples/simple-single/src/gen/hooks.ts b/examples/openapi/simple-single/src/gen/hooks.ts similarity index 100% rename from examples/simple-single/src/gen/hooks.ts rename to examples/openapi/simple-single/src/gen/hooks.ts diff --git a/examples/simple-single/src/gen/index.ts b/examples/openapi/simple-single/src/gen/index.ts similarity index 100% rename from examples/simple-single/src/gen/index.ts rename to examples/openapi/simple-single/src/gen/index.ts diff --git a/examples/simple-single/src/gen/models.ts b/examples/openapi/simple-single/src/gen/models.ts similarity index 100% rename from examples/simple-single/src/gen/models.ts rename to examples/openapi/simple-single/src/gen/models.ts diff --git a/examples/simple-single/src/gen/zod.ts b/examples/openapi/simple-single/src/gen/zod.ts similarity index 100% rename from examples/simple-single/src/gen/zod.ts rename to examples/openapi/simple-single/src/gen/zod.ts diff --git a/examples/typescript/src/index.ts b/examples/openapi/simple-single/src/index.ts similarity index 100% rename from examples/typescript/src/index.ts rename to examples/openapi/simple-single/src/index.ts diff --git a/examples/simple-single/tsconfig.json b/examples/openapi/simple-single/tsconfig.json similarity index 100% rename from examples/simple-single/tsconfig.json rename to examples/openapi/simple-single/tsconfig.json diff --git a/examples/swr/kubb.config.ts b/examples/openapi/swr/kubb.config.ts similarity index 100% rename from examples/swr/kubb.config.ts rename to examples/openapi/swr/kubb.config.ts diff --git a/examples/swr/package.json b/examples/openapi/swr/package.json similarity index 96% rename from examples/swr/package.json rename to examples/openapi/swr/package.json index f50404ed0..de12d5a6c 100644 --- a/examples/swr/package.json +++ b/examples/openapi/swr/package.json @@ -8,7 +8,7 @@ "repository": { "type": "git", "url": "https://github.com/kubb-labs/plugins.git", - "directory": "examples/swr" + "directory": "examples/openapi/swr" }, "type": "module", "sideEffects": false, diff --git a/examples/swr/petStore.yaml b/examples/openapi/swr/petStore.yaml similarity index 100% rename from examples/swr/petStore.yaml rename to examples/openapi/swr/petStore.yaml diff --git a/examples/swr/src/gen/.kubb/client.ts b/examples/openapi/swr/src/gen/.kubb/client.ts similarity index 100% rename from examples/swr/src/gen/.kubb/client.ts rename to examples/openapi/swr/src/gen/.kubb/client.ts diff --git a/examples/swr/src/gen/.kubb/serializers.ts b/examples/openapi/swr/src/gen/.kubb/serializers.ts similarity index 100% rename from examples/swr/src/gen/.kubb/serializers.ts rename to examples/openapi/swr/src/gen/.kubb/serializers.ts diff --git a/examples/swr/src/gen/.kubb/standardSchema.ts b/examples/openapi/swr/src/gen/.kubb/standardSchema.ts similarity index 100% rename from examples/swr/src/gen/.kubb/standardSchema.ts rename to examples/openapi/swr/src/gen/.kubb/standardSchema.ts diff --git a/examples/swr/src/gen/clients/index.ts b/examples/openapi/swr/src/gen/clients/index.ts similarity index 100% rename from examples/swr/src/gen/clients/index.ts rename to examples/openapi/swr/src/gen/clients/index.ts diff --git a/examples/swr/src/gen/clients/pet/addPet.ts b/examples/openapi/swr/src/gen/clients/pet/addPet.ts similarity index 100% rename from examples/swr/src/gen/clients/pet/addPet.ts rename to examples/openapi/swr/src/gen/clients/pet/addPet.ts diff --git a/examples/swr/src/gen/clients/pet/deletePet.ts b/examples/openapi/swr/src/gen/clients/pet/deletePet.ts similarity index 100% rename from examples/swr/src/gen/clients/pet/deletePet.ts rename to examples/openapi/swr/src/gen/clients/pet/deletePet.ts diff --git a/examples/swr/src/gen/clients/pet/findPetsByStatus.ts b/examples/openapi/swr/src/gen/clients/pet/findPetsByStatus.ts similarity index 100% rename from examples/swr/src/gen/clients/pet/findPetsByStatus.ts rename to examples/openapi/swr/src/gen/clients/pet/findPetsByStatus.ts diff --git a/examples/swr/src/gen/clients/pet/findPetsByTags.ts b/examples/openapi/swr/src/gen/clients/pet/findPetsByTags.ts similarity index 100% rename from examples/swr/src/gen/clients/pet/findPetsByTags.ts rename to examples/openapi/swr/src/gen/clients/pet/findPetsByTags.ts diff --git a/examples/swr/src/gen/clients/pet/getPetById.ts b/examples/openapi/swr/src/gen/clients/pet/getPetById.ts similarity index 100% rename from examples/swr/src/gen/clients/pet/getPetById.ts rename to examples/openapi/swr/src/gen/clients/pet/getPetById.ts diff --git a/examples/swr/src/gen/clients/pet/index.ts b/examples/openapi/swr/src/gen/clients/pet/index.ts similarity index 100% rename from examples/swr/src/gen/clients/pet/index.ts rename to examples/openapi/swr/src/gen/clients/pet/index.ts diff --git a/examples/swr/src/gen/clients/pet/updatePet.ts b/examples/openapi/swr/src/gen/clients/pet/updatePet.ts similarity index 100% rename from examples/swr/src/gen/clients/pet/updatePet.ts rename to examples/openapi/swr/src/gen/clients/pet/updatePet.ts diff --git a/examples/swr/src/gen/clients/pet/updatePetWithForm.ts b/examples/openapi/swr/src/gen/clients/pet/updatePetWithForm.ts similarity index 100% rename from examples/swr/src/gen/clients/pet/updatePetWithForm.ts rename to examples/openapi/swr/src/gen/clients/pet/updatePetWithForm.ts diff --git a/examples/swr/src/gen/clients/pet/uploadFile.ts b/examples/openapi/swr/src/gen/clients/pet/uploadFile.ts similarity index 100% rename from examples/swr/src/gen/clients/pet/uploadFile.ts rename to examples/openapi/swr/src/gen/clients/pet/uploadFile.ts diff --git a/examples/swr/src/gen/clients/store/deleteOrder.ts b/examples/openapi/swr/src/gen/clients/store/deleteOrder.ts similarity index 100% rename from examples/swr/src/gen/clients/store/deleteOrder.ts rename to examples/openapi/swr/src/gen/clients/store/deleteOrder.ts diff --git a/examples/swr/src/gen/clients/store/getInventory.ts b/examples/openapi/swr/src/gen/clients/store/getInventory.ts similarity index 100% rename from examples/swr/src/gen/clients/store/getInventory.ts rename to examples/openapi/swr/src/gen/clients/store/getInventory.ts diff --git a/examples/swr/src/gen/clients/store/getOrderById.ts b/examples/openapi/swr/src/gen/clients/store/getOrderById.ts similarity index 100% rename from examples/swr/src/gen/clients/store/getOrderById.ts rename to examples/openapi/swr/src/gen/clients/store/getOrderById.ts diff --git a/examples/swr/src/gen/clients/store/index.ts b/examples/openapi/swr/src/gen/clients/store/index.ts similarity index 100% rename from examples/swr/src/gen/clients/store/index.ts rename to examples/openapi/swr/src/gen/clients/store/index.ts diff --git a/examples/swr/src/gen/clients/store/placeOrder.ts b/examples/openapi/swr/src/gen/clients/store/placeOrder.ts similarity index 100% rename from examples/swr/src/gen/clients/store/placeOrder.ts rename to examples/openapi/swr/src/gen/clients/store/placeOrder.ts diff --git a/examples/swr/src/gen/clients/store/placeOrderPatch.ts b/examples/openapi/swr/src/gen/clients/store/placeOrderPatch.ts similarity index 100% rename from examples/swr/src/gen/clients/store/placeOrderPatch.ts rename to examples/openapi/swr/src/gen/clients/store/placeOrderPatch.ts diff --git a/examples/swr/src/gen/clients/user/createUser.ts b/examples/openapi/swr/src/gen/clients/user/createUser.ts similarity index 100% rename from examples/swr/src/gen/clients/user/createUser.ts rename to examples/openapi/swr/src/gen/clients/user/createUser.ts diff --git a/examples/swr/src/gen/clients/user/createUsersWithListInput.ts b/examples/openapi/swr/src/gen/clients/user/createUsersWithListInput.ts similarity index 100% rename from examples/swr/src/gen/clients/user/createUsersWithListInput.ts rename to examples/openapi/swr/src/gen/clients/user/createUsersWithListInput.ts diff --git a/examples/swr/src/gen/clients/user/deleteUser.ts b/examples/openapi/swr/src/gen/clients/user/deleteUser.ts similarity index 100% rename from examples/swr/src/gen/clients/user/deleteUser.ts rename to examples/openapi/swr/src/gen/clients/user/deleteUser.ts diff --git a/examples/swr/src/gen/clients/user/getUserByName.ts b/examples/openapi/swr/src/gen/clients/user/getUserByName.ts similarity index 100% rename from examples/swr/src/gen/clients/user/getUserByName.ts rename to examples/openapi/swr/src/gen/clients/user/getUserByName.ts diff --git a/examples/swr/src/gen/clients/user/index.ts b/examples/openapi/swr/src/gen/clients/user/index.ts similarity index 100% rename from examples/swr/src/gen/clients/user/index.ts rename to examples/openapi/swr/src/gen/clients/user/index.ts diff --git a/examples/swr/src/gen/clients/user/loginUser.ts b/examples/openapi/swr/src/gen/clients/user/loginUser.ts similarity index 100% rename from examples/swr/src/gen/clients/user/loginUser.ts rename to examples/openapi/swr/src/gen/clients/user/loginUser.ts diff --git a/examples/swr/src/gen/clients/user/logoutUser.ts b/examples/openapi/swr/src/gen/clients/user/logoutUser.ts similarity index 100% rename from examples/swr/src/gen/clients/user/logoutUser.ts rename to examples/openapi/swr/src/gen/clients/user/logoutUser.ts diff --git a/examples/swr/src/gen/clients/user/updateUser.ts b/examples/openapi/swr/src/gen/clients/user/updateUser.ts similarity index 100% rename from examples/swr/src/gen/clients/user/updateUser.ts rename to examples/openapi/swr/src/gen/clients/user/updateUser.ts diff --git a/examples/swr/src/gen/hooks/index.ts b/examples/openapi/swr/src/gen/hooks/index.ts similarity index 100% rename from examples/swr/src/gen/hooks/index.ts rename to examples/openapi/swr/src/gen/hooks/index.ts diff --git a/examples/swr/src/gen/hooks/pet/index.ts b/examples/openapi/swr/src/gen/hooks/pet/index.ts similarity index 100% rename from examples/swr/src/gen/hooks/pet/index.ts rename to examples/openapi/swr/src/gen/hooks/pet/index.ts diff --git a/examples/swr/src/gen/hooks/pet/useAddPet.ts b/examples/openapi/swr/src/gen/hooks/pet/useAddPet.ts similarity index 100% rename from examples/swr/src/gen/hooks/pet/useAddPet.ts rename to examples/openapi/swr/src/gen/hooks/pet/useAddPet.ts diff --git a/examples/swr/src/gen/hooks/pet/useDeletePet.ts b/examples/openapi/swr/src/gen/hooks/pet/useDeletePet.ts similarity index 100% rename from examples/swr/src/gen/hooks/pet/useDeletePet.ts rename to examples/openapi/swr/src/gen/hooks/pet/useDeletePet.ts diff --git a/examples/swr/src/gen/hooks/pet/useFindPetsByStatus.ts b/examples/openapi/swr/src/gen/hooks/pet/useFindPetsByStatus.ts similarity index 100% rename from examples/swr/src/gen/hooks/pet/useFindPetsByStatus.ts rename to examples/openapi/swr/src/gen/hooks/pet/useFindPetsByStatus.ts diff --git a/examples/swr/src/gen/hooks/pet/useFindPetsByTags.ts b/examples/openapi/swr/src/gen/hooks/pet/useFindPetsByTags.ts similarity index 100% rename from examples/swr/src/gen/hooks/pet/useFindPetsByTags.ts rename to examples/openapi/swr/src/gen/hooks/pet/useFindPetsByTags.ts diff --git a/examples/swr/src/gen/hooks/pet/useGetPetById.ts b/examples/openapi/swr/src/gen/hooks/pet/useGetPetById.ts similarity index 100% rename from examples/swr/src/gen/hooks/pet/useGetPetById.ts rename to examples/openapi/swr/src/gen/hooks/pet/useGetPetById.ts diff --git a/examples/swr/src/gen/hooks/pet/useUpdatePet.ts b/examples/openapi/swr/src/gen/hooks/pet/useUpdatePet.ts similarity index 100% rename from examples/swr/src/gen/hooks/pet/useUpdatePet.ts rename to examples/openapi/swr/src/gen/hooks/pet/useUpdatePet.ts diff --git a/examples/swr/src/gen/hooks/pet/useUpdatePetWithForm.ts b/examples/openapi/swr/src/gen/hooks/pet/useUpdatePetWithForm.ts similarity index 100% rename from examples/swr/src/gen/hooks/pet/useUpdatePetWithForm.ts rename to examples/openapi/swr/src/gen/hooks/pet/useUpdatePetWithForm.ts diff --git a/examples/swr/src/gen/hooks/pet/useUploadFile.ts b/examples/openapi/swr/src/gen/hooks/pet/useUploadFile.ts similarity index 100% rename from examples/swr/src/gen/hooks/pet/useUploadFile.ts rename to examples/openapi/swr/src/gen/hooks/pet/useUploadFile.ts diff --git a/examples/swr/src/gen/hooks/store/index.ts b/examples/openapi/swr/src/gen/hooks/store/index.ts similarity index 100% rename from examples/swr/src/gen/hooks/store/index.ts rename to examples/openapi/swr/src/gen/hooks/store/index.ts diff --git a/examples/swr/src/gen/hooks/store/useDeleteOrder.ts b/examples/openapi/swr/src/gen/hooks/store/useDeleteOrder.ts similarity index 100% rename from examples/swr/src/gen/hooks/store/useDeleteOrder.ts rename to examples/openapi/swr/src/gen/hooks/store/useDeleteOrder.ts diff --git a/examples/swr/src/gen/hooks/store/useGetInventory.ts b/examples/openapi/swr/src/gen/hooks/store/useGetInventory.ts similarity index 100% rename from examples/swr/src/gen/hooks/store/useGetInventory.ts rename to examples/openapi/swr/src/gen/hooks/store/useGetInventory.ts diff --git a/examples/swr/src/gen/hooks/store/useGetOrderById.ts b/examples/openapi/swr/src/gen/hooks/store/useGetOrderById.ts similarity index 100% rename from examples/swr/src/gen/hooks/store/useGetOrderById.ts rename to examples/openapi/swr/src/gen/hooks/store/useGetOrderById.ts diff --git a/examples/swr/src/gen/hooks/store/usePlaceOrder.ts b/examples/openapi/swr/src/gen/hooks/store/usePlaceOrder.ts similarity index 100% rename from examples/swr/src/gen/hooks/store/usePlaceOrder.ts rename to examples/openapi/swr/src/gen/hooks/store/usePlaceOrder.ts diff --git a/examples/swr/src/gen/hooks/store/usePlaceOrderPatch.ts b/examples/openapi/swr/src/gen/hooks/store/usePlaceOrderPatch.ts similarity index 100% rename from examples/swr/src/gen/hooks/store/usePlaceOrderPatch.ts rename to examples/openapi/swr/src/gen/hooks/store/usePlaceOrderPatch.ts diff --git a/examples/swr/src/gen/hooks/user/index.ts b/examples/openapi/swr/src/gen/hooks/user/index.ts similarity index 100% rename from examples/swr/src/gen/hooks/user/index.ts rename to examples/openapi/swr/src/gen/hooks/user/index.ts diff --git a/examples/swr/src/gen/hooks/user/useCreateUser.ts b/examples/openapi/swr/src/gen/hooks/user/useCreateUser.ts similarity index 100% rename from examples/swr/src/gen/hooks/user/useCreateUser.ts rename to examples/openapi/swr/src/gen/hooks/user/useCreateUser.ts diff --git a/examples/swr/src/gen/hooks/user/useCreateUsersWithListInput.ts b/examples/openapi/swr/src/gen/hooks/user/useCreateUsersWithListInput.ts similarity index 100% rename from examples/swr/src/gen/hooks/user/useCreateUsersWithListInput.ts rename to examples/openapi/swr/src/gen/hooks/user/useCreateUsersWithListInput.ts diff --git a/examples/swr/src/gen/hooks/user/useDeleteUser.ts b/examples/openapi/swr/src/gen/hooks/user/useDeleteUser.ts similarity index 100% rename from examples/swr/src/gen/hooks/user/useDeleteUser.ts rename to examples/openapi/swr/src/gen/hooks/user/useDeleteUser.ts diff --git a/examples/swr/src/gen/hooks/user/useGetUserByName.ts b/examples/openapi/swr/src/gen/hooks/user/useGetUserByName.ts similarity index 100% rename from examples/swr/src/gen/hooks/user/useGetUserByName.ts rename to examples/openapi/swr/src/gen/hooks/user/useGetUserByName.ts diff --git a/examples/swr/src/gen/hooks/user/useLoginUser.ts b/examples/openapi/swr/src/gen/hooks/user/useLoginUser.ts similarity index 100% rename from examples/swr/src/gen/hooks/user/useLoginUser.ts rename to examples/openapi/swr/src/gen/hooks/user/useLoginUser.ts diff --git a/examples/swr/src/gen/hooks/user/useLogoutUser.ts b/examples/openapi/swr/src/gen/hooks/user/useLogoutUser.ts similarity index 100% rename from examples/swr/src/gen/hooks/user/useLogoutUser.ts rename to examples/openapi/swr/src/gen/hooks/user/useLogoutUser.ts diff --git a/examples/swr/src/gen/hooks/user/useUpdateUser.ts b/examples/openapi/swr/src/gen/hooks/user/useUpdateUser.ts similarity index 100% rename from examples/swr/src/gen/hooks/user/useUpdateUser.ts rename to examples/openapi/swr/src/gen/hooks/user/useUpdateUser.ts diff --git a/examples/swr/src/gen/index.ts b/examples/openapi/swr/src/gen/index.ts similarity index 100% rename from examples/swr/src/gen/index.ts rename to examples/openapi/swr/src/gen/index.ts diff --git a/examples/swr/src/gen/models/AddPetRequest.ts b/examples/openapi/swr/src/gen/models/AddPetRequest.ts similarity index 100% rename from examples/swr/src/gen/models/AddPetRequest.ts rename to examples/openapi/swr/src/gen/models/AddPetRequest.ts diff --git a/examples/swr/src/gen/models/Address.ts b/examples/openapi/swr/src/gen/models/Address.ts similarity index 100% rename from examples/swr/src/gen/models/Address.ts rename to examples/openapi/swr/src/gen/models/Address.ts diff --git a/examples/swr/src/gen/models/ApiResponse.ts b/examples/openapi/swr/src/gen/models/ApiResponse.ts similarity index 100% rename from examples/swr/src/gen/models/ApiResponse.ts rename to examples/openapi/swr/src/gen/models/ApiResponse.ts diff --git a/examples/swr/src/gen/models/Category.ts b/examples/openapi/swr/src/gen/models/Category.ts similarity index 100% rename from examples/swr/src/gen/models/Category.ts rename to examples/openapi/swr/src/gen/models/Category.ts diff --git a/examples/swr/src/gen/models/Customer.ts b/examples/openapi/swr/src/gen/models/Customer.ts similarity index 100% rename from examples/swr/src/gen/models/Customer.ts rename to examples/openapi/swr/src/gen/models/Customer.ts diff --git a/examples/swr/src/gen/models/Order.ts b/examples/openapi/swr/src/gen/models/Order.ts similarity index 100% rename from examples/swr/src/gen/models/Order.ts rename to examples/openapi/swr/src/gen/models/Order.ts diff --git a/examples/swr/src/gen/models/Pet.ts b/examples/openapi/swr/src/gen/models/Pet.ts similarity index 100% rename from examples/swr/src/gen/models/Pet.ts rename to examples/openapi/swr/src/gen/models/Pet.ts diff --git a/examples/swr/src/gen/models/PetNotFound.ts b/examples/openapi/swr/src/gen/models/PetNotFound.ts similarity index 100% rename from examples/swr/src/gen/models/PetNotFound.ts rename to examples/openapi/swr/src/gen/models/PetNotFound.ts diff --git a/examples/swr/src/gen/models/Tag.ts b/examples/openapi/swr/src/gen/models/Tag.ts similarity index 100% rename from examples/swr/src/gen/models/Tag.ts rename to examples/openapi/swr/src/gen/models/Tag.ts diff --git a/examples/swr/src/gen/models/User.ts b/examples/openapi/swr/src/gen/models/User.ts similarity index 100% rename from examples/swr/src/gen/models/User.ts rename to examples/openapi/swr/src/gen/models/User.ts diff --git a/examples/swr/src/gen/models/UserArray.ts b/examples/openapi/swr/src/gen/models/UserArray.ts similarity index 100% rename from examples/swr/src/gen/models/UserArray.ts rename to examples/openapi/swr/src/gen/models/UserArray.ts diff --git a/examples/swr/src/gen/models/index.ts b/examples/openapi/swr/src/gen/models/index.ts similarity index 100% rename from examples/swr/src/gen/models/index.ts rename to examples/openapi/swr/src/gen/models/index.ts diff --git a/examples/swr/src/gen/models/pet/AddPet.ts b/examples/openapi/swr/src/gen/models/pet/AddPet.ts similarity index 100% rename from examples/swr/src/gen/models/pet/AddPet.ts rename to examples/openapi/swr/src/gen/models/pet/AddPet.ts diff --git a/examples/swr/src/gen/models/pet/DeletePet.ts b/examples/openapi/swr/src/gen/models/pet/DeletePet.ts similarity index 100% rename from examples/swr/src/gen/models/pet/DeletePet.ts rename to examples/openapi/swr/src/gen/models/pet/DeletePet.ts diff --git a/examples/swr/src/gen/models/pet/FindPetsByStatus.ts b/examples/openapi/swr/src/gen/models/pet/FindPetsByStatus.ts similarity index 100% rename from examples/swr/src/gen/models/pet/FindPetsByStatus.ts rename to examples/openapi/swr/src/gen/models/pet/FindPetsByStatus.ts diff --git a/examples/swr/src/gen/models/pet/FindPetsByTags.ts b/examples/openapi/swr/src/gen/models/pet/FindPetsByTags.ts similarity index 100% rename from examples/swr/src/gen/models/pet/FindPetsByTags.ts rename to examples/openapi/swr/src/gen/models/pet/FindPetsByTags.ts diff --git a/examples/swr/src/gen/models/pet/GetPetById.ts b/examples/openapi/swr/src/gen/models/pet/GetPetById.ts similarity index 100% rename from examples/swr/src/gen/models/pet/GetPetById.ts rename to examples/openapi/swr/src/gen/models/pet/GetPetById.ts diff --git a/examples/swr/src/gen/models/pet/UpdatePet.ts b/examples/openapi/swr/src/gen/models/pet/UpdatePet.ts similarity index 100% rename from examples/swr/src/gen/models/pet/UpdatePet.ts rename to examples/openapi/swr/src/gen/models/pet/UpdatePet.ts diff --git a/examples/swr/src/gen/models/pet/UpdatePetWithForm.ts b/examples/openapi/swr/src/gen/models/pet/UpdatePetWithForm.ts similarity index 100% rename from examples/swr/src/gen/models/pet/UpdatePetWithForm.ts rename to examples/openapi/swr/src/gen/models/pet/UpdatePetWithForm.ts diff --git a/examples/swr/src/gen/models/pet/UploadFile.ts b/examples/openapi/swr/src/gen/models/pet/UploadFile.ts similarity index 100% rename from examples/swr/src/gen/models/pet/UploadFile.ts rename to examples/openapi/swr/src/gen/models/pet/UploadFile.ts diff --git a/examples/swr/src/gen/models/pet/index.ts b/examples/openapi/swr/src/gen/models/pet/index.ts similarity index 100% rename from examples/swr/src/gen/models/pet/index.ts rename to examples/openapi/swr/src/gen/models/pet/index.ts diff --git a/examples/swr/src/gen/models/store/DeleteOrder.ts b/examples/openapi/swr/src/gen/models/store/DeleteOrder.ts similarity index 100% rename from examples/swr/src/gen/models/store/DeleteOrder.ts rename to examples/openapi/swr/src/gen/models/store/DeleteOrder.ts diff --git a/examples/swr/src/gen/models/store/GetInventory.ts b/examples/openapi/swr/src/gen/models/store/GetInventory.ts similarity index 100% rename from examples/swr/src/gen/models/store/GetInventory.ts rename to examples/openapi/swr/src/gen/models/store/GetInventory.ts diff --git a/examples/swr/src/gen/models/store/GetOrderById.ts b/examples/openapi/swr/src/gen/models/store/GetOrderById.ts similarity index 100% rename from examples/swr/src/gen/models/store/GetOrderById.ts rename to examples/openapi/swr/src/gen/models/store/GetOrderById.ts diff --git a/examples/swr/src/gen/models/store/PlaceOrder.ts b/examples/openapi/swr/src/gen/models/store/PlaceOrder.ts similarity index 100% rename from examples/swr/src/gen/models/store/PlaceOrder.ts rename to examples/openapi/swr/src/gen/models/store/PlaceOrder.ts diff --git a/examples/swr/src/gen/models/store/PlaceOrderPatch.ts b/examples/openapi/swr/src/gen/models/store/PlaceOrderPatch.ts similarity index 100% rename from examples/swr/src/gen/models/store/PlaceOrderPatch.ts rename to examples/openapi/swr/src/gen/models/store/PlaceOrderPatch.ts diff --git a/examples/swr/src/gen/models/store/index.ts b/examples/openapi/swr/src/gen/models/store/index.ts similarity index 100% rename from examples/swr/src/gen/models/store/index.ts rename to examples/openapi/swr/src/gen/models/store/index.ts diff --git a/examples/swr/src/gen/models/user/CreateUser.ts b/examples/openapi/swr/src/gen/models/user/CreateUser.ts similarity index 100% rename from examples/swr/src/gen/models/user/CreateUser.ts rename to examples/openapi/swr/src/gen/models/user/CreateUser.ts diff --git a/examples/swr/src/gen/models/user/CreateUsersWithListInput.ts b/examples/openapi/swr/src/gen/models/user/CreateUsersWithListInput.ts similarity index 100% rename from examples/swr/src/gen/models/user/CreateUsersWithListInput.ts rename to examples/openapi/swr/src/gen/models/user/CreateUsersWithListInput.ts diff --git a/examples/swr/src/gen/models/user/DeleteUser.ts b/examples/openapi/swr/src/gen/models/user/DeleteUser.ts similarity index 100% rename from examples/swr/src/gen/models/user/DeleteUser.ts rename to examples/openapi/swr/src/gen/models/user/DeleteUser.ts diff --git a/examples/swr/src/gen/models/user/GetUserByName.ts b/examples/openapi/swr/src/gen/models/user/GetUserByName.ts similarity index 100% rename from examples/swr/src/gen/models/user/GetUserByName.ts rename to examples/openapi/swr/src/gen/models/user/GetUserByName.ts diff --git a/examples/swr/src/gen/models/user/LoginUser.ts b/examples/openapi/swr/src/gen/models/user/LoginUser.ts similarity index 100% rename from examples/swr/src/gen/models/user/LoginUser.ts rename to examples/openapi/swr/src/gen/models/user/LoginUser.ts diff --git a/examples/swr/src/gen/models/user/LogoutUser.ts b/examples/openapi/swr/src/gen/models/user/LogoutUser.ts similarity index 100% rename from examples/swr/src/gen/models/user/LogoutUser.ts rename to examples/openapi/swr/src/gen/models/user/LogoutUser.ts diff --git a/examples/swr/src/gen/models/user/UpdateUser.ts b/examples/openapi/swr/src/gen/models/user/UpdateUser.ts similarity index 100% rename from examples/swr/src/gen/models/user/UpdateUser.ts rename to examples/openapi/swr/src/gen/models/user/UpdateUser.ts diff --git a/examples/swr/src/gen/models/user/index.ts b/examples/openapi/swr/src/gen/models/user/index.ts similarity index 100% rename from examples/swr/src/gen/models/user/index.ts rename to examples/openapi/swr/src/gen/models/user/index.ts diff --git a/examples/swr/src/index.ts b/examples/openapi/swr/src/index.ts similarity index 100% rename from examples/swr/src/index.ts rename to examples/openapi/swr/src/index.ts diff --git a/examples/swr/tsconfig.json b/examples/openapi/swr/tsconfig.json similarity index 100% rename from examples/swr/tsconfig.json rename to examples/openapi/swr/tsconfig.json diff --git a/examples/typescript/kubb.config.ts b/examples/openapi/typescript/kubb.config.ts similarity index 100% rename from examples/typescript/kubb.config.ts rename to examples/openapi/typescript/kubb.config.ts diff --git a/examples/typescript/package.json b/examples/openapi/typescript/package.json similarity index 95% rename from examples/typescript/package.json rename to examples/openapi/typescript/package.json index 4f0453b38..dd80e80c9 100644 --- a/examples/typescript/package.json +++ b/examples/openapi/typescript/package.json @@ -8,7 +8,7 @@ "repository": { "type": "git", "url": "https://github.com/kubb-labs/plugins.git", - "directory": "examples/typescript" + "directory": "examples/openapi/typescript" }, "sideEffects": false, "scripts": { diff --git a/examples/typescript/petStore.yaml b/examples/openapi/typescript/petStore.yaml similarity index 100% rename from examples/typescript/petStore.yaml rename to examples/openapi/typescript/petStore.yaml diff --git a/examples/typescript/src/gen/models.ts b/examples/openapi/typescript/src/gen/models.ts similarity index 100% rename from examples/typescript/src/gen/models.ts rename to examples/openapi/typescript/src/gen/models.ts diff --git a/examples/typescript/src/gen10/models/AddPetRequest.ts b/examples/openapi/typescript/src/gen10/models/AddPetRequest.ts similarity index 100% rename from examples/typescript/src/gen10/models/AddPetRequest.ts rename to examples/openapi/typescript/src/gen10/models/AddPetRequest.ts diff --git a/examples/typescript/src/gen10/models/AddPetRequestStatusEnum.ts b/examples/openapi/typescript/src/gen10/models/AddPetRequestStatusEnum.ts similarity index 100% rename from examples/typescript/src/gen10/models/AddPetRequestStatusEnum.ts rename to examples/openapi/typescript/src/gen10/models/AddPetRequestStatusEnum.ts diff --git a/examples/typescript/src/gen10/models/Address.ts b/examples/openapi/typescript/src/gen10/models/Address.ts similarity index 100% rename from examples/typescript/src/gen10/models/Address.ts rename to examples/openapi/typescript/src/gen10/models/Address.ts diff --git a/examples/typescript/src/gen10/models/ApiResponse.ts b/examples/openapi/typescript/src/gen10/models/ApiResponse.ts similarity index 100% rename from examples/typescript/src/gen10/models/ApiResponse.ts rename to examples/openapi/typescript/src/gen10/models/ApiResponse.ts diff --git a/examples/typescript/src/gen10/models/Cat.ts b/examples/openapi/typescript/src/gen10/models/Cat.ts similarity index 100% rename from examples/typescript/src/gen10/models/Cat.ts rename to examples/openapi/typescript/src/gen10/models/Cat.ts diff --git a/examples/typescript/src/gen10/models/Category.ts b/examples/openapi/typescript/src/gen10/models/Category.ts similarity index 100% rename from examples/typescript/src/gen10/models/Category.ts rename to examples/openapi/typescript/src/gen10/models/Category.ts diff --git a/examples/typescript/src/gen10/models/Customer.ts b/examples/openapi/typescript/src/gen10/models/Customer.ts similarity index 100% rename from examples/typescript/src/gen10/models/Customer.ts rename to examples/openapi/typescript/src/gen10/models/Customer.ts diff --git a/examples/typescript/src/gen10/models/CustomerParamsStatusEnum.ts b/examples/openapi/typescript/src/gen10/models/CustomerParamsStatusEnum.ts similarity index 100% rename from examples/typescript/src/gen10/models/CustomerParamsStatusEnum.ts rename to examples/openapi/typescript/src/gen10/models/CustomerParamsStatusEnum.ts diff --git a/examples/typescript/src/gen10/models/DeletePetStatus200Enum.ts b/examples/openapi/typescript/src/gen10/models/DeletePetStatus200Enum.ts similarity index 100% rename from examples/typescript/src/gen10/models/DeletePetStatus200Enum.ts rename to examples/openapi/typescript/src/gen10/models/DeletePetStatus200Enum.ts diff --git a/examples/typescript/src/gen10/models/Dog.ts b/examples/openapi/typescript/src/gen10/models/Dog.ts similarity index 100% rename from examples/typescript/src/gen10/models/Dog.ts rename to examples/openapi/typescript/src/gen10/models/Dog.ts diff --git a/examples/typescript/src/gen10/models/FindPetsByStatusStatus.ts b/examples/openapi/typescript/src/gen10/models/FindPetsByStatusStatus.ts similarity index 100% rename from examples/typescript/src/gen10/models/FindPetsByStatusStatus.ts rename to examples/openapi/typescript/src/gen10/models/FindPetsByStatusStatus.ts diff --git a/examples/typescript/src/gen10/models/FullAddress.ts b/examples/openapi/typescript/src/gen10/models/FullAddress.ts similarity index 100% rename from examples/typescript/src/gen10/models/FullAddress.ts rename to examples/openapi/typescript/src/gen10/models/FullAddress.ts diff --git a/examples/typescript/src/gen10/models/HappyCustomer.ts b/examples/openapi/typescript/src/gen10/models/HappyCustomer.ts similarity index 100% rename from examples/typescript/src/gen10/models/HappyCustomer.ts rename to examples/openapi/typescript/src/gen10/models/HappyCustomer.ts diff --git a/examples/typescript/src/gen10/models/Order.ts b/examples/openapi/typescript/src/gen10/models/Order.ts similarity index 100% rename from examples/typescript/src/gen10/models/Order.ts rename to examples/openapi/typescript/src/gen10/models/Order.ts diff --git a/examples/typescript/src/gen10/models/OrderHttpStatusEnum.ts b/examples/openapi/typescript/src/gen10/models/OrderHttpStatusEnum.ts similarity index 100% rename from examples/typescript/src/gen10/models/OrderHttpStatusEnum.ts rename to examples/openapi/typescript/src/gen10/models/OrderHttpStatusEnum.ts diff --git a/examples/typescript/src/gen10/models/OrderParamsStatusEnum.ts b/examples/openapi/typescript/src/gen10/models/OrderParamsStatusEnum.ts similarity index 100% rename from examples/typescript/src/gen10/models/OrderParamsStatusEnum.ts rename to examples/openapi/typescript/src/gen10/models/OrderParamsStatusEnum.ts diff --git a/examples/typescript/src/gen10/models/OrderStatus.ts b/examples/openapi/typescript/src/gen10/models/OrderStatus.ts similarity index 100% rename from examples/typescript/src/gen10/models/OrderStatus.ts rename to examples/openapi/typescript/src/gen10/models/OrderStatus.ts diff --git a/examples/typescript/src/gen10/models/Pet.ts b/examples/openapi/typescript/src/gen10/models/Pet.ts similarity index 100% rename from examples/typescript/src/gen10/models/Pet.ts rename to examples/openapi/typescript/src/gen10/models/Pet.ts diff --git a/examples/typescript/src/gen10/models/PetNotFound.ts b/examples/openapi/typescript/src/gen10/models/PetNotFound.ts similarity index 100% rename from examples/typescript/src/gen10/models/PetNotFound.ts rename to examples/openapi/typescript/src/gen10/models/PetNotFound.ts diff --git a/examples/typescript/src/gen10/models/PetStatusEnum.ts b/examples/openapi/typescript/src/gen10/models/PetStatusEnum.ts similarity index 100% rename from examples/typescript/src/gen10/models/PetStatusEnum.ts rename to examples/openapi/typescript/src/gen10/models/PetStatusEnum.ts diff --git a/examples/typescript/src/gen10/models/PetTypeEnum.ts b/examples/openapi/typescript/src/gen10/models/PetTypeEnum.ts similarity index 100% rename from examples/typescript/src/gen10/models/PetTypeEnum.ts rename to examples/openapi/typescript/src/gen10/models/PetTypeEnum.ts diff --git a/examples/typescript/src/gen10/models/Tag.ts b/examples/openapi/typescript/src/gen10/models/Tag.ts similarity index 100% rename from examples/typescript/src/gen10/models/Tag.ts rename to examples/openapi/typescript/src/gen10/models/Tag.ts diff --git a/examples/typescript/src/gen10/models/UnhappyCustomer.ts b/examples/openapi/typescript/src/gen10/models/UnhappyCustomer.ts similarity index 100% rename from examples/typescript/src/gen10/models/UnhappyCustomer.ts rename to examples/openapi/typescript/src/gen10/models/UnhappyCustomer.ts diff --git a/examples/typescript/src/gen10/models/pet/AddPet.ts b/examples/openapi/typescript/src/gen10/models/pet/AddPet.ts similarity index 100% rename from examples/typescript/src/gen10/models/pet/AddPet.ts rename to examples/openapi/typescript/src/gen10/models/pet/AddPet.ts diff --git a/examples/typescript/src/gen10/models/pet/DeletePet.ts b/examples/openapi/typescript/src/gen10/models/pet/DeletePet.ts similarity index 100% rename from examples/typescript/src/gen10/models/pet/DeletePet.ts rename to examples/openapi/typescript/src/gen10/models/pet/DeletePet.ts diff --git a/examples/typescript/src/gen10/models/pet/FindPetsByStatus.ts b/examples/openapi/typescript/src/gen10/models/pet/FindPetsByStatus.ts similarity index 100% rename from examples/typescript/src/gen10/models/pet/FindPetsByStatus.ts rename to examples/openapi/typescript/src/gen10/models/pet/FindPetsByStatus.ts diff --git a/examples/typescript/src/gen10/models/pet/FindPetsByTags.ts b/examples/openapi/typescript/src/gen10/models/pet/FindPetsByTags.ts similarity index 100% rename from examples/typescript/src/gen10/models/pet/FindPetsByTags.ts rename to examples/openapi/typescript/src/gen10/models/pet/FindPetsByTags.ts diff --git a/examples/typescript/src/gen10/models/pet/GetPetById.ts b/examples/openapi/typescript/src/gen10/models/pet/GetPetById.ts similarity index 100% rename from examples/typescript/src/gen10/models/pet/GetPetById.ts rename to examples/openapi/typescript/src/gen10/models/pet/GetPetById.ts diff --git a/examples/typescript/src/gen10/models/pet/UpdatePet.ts b/examples/openapi/typescript/src/gen10/models/pet/UpdatePet.ts similarity index 100% rename from examples/typescript/src/gen10/models/pet/UpdatePet.ts rename to examples/openapi/typescript/src/gen10/models/pet/UpdatePet.ts diff --git a/examples/typescript/src/gen10/models/pet/UpdatePetWithForm.ts b/examples/openapi/typescript/src/gen10/models/pet/UpdatePetWithForm.ts similarity index 100% rename from examples/typescript/src/gen10/models/pet/UpdatePetWithForm.ts rename to examples/openapi/typescript/src/gen10/models/pet/UpdatePetWithForm.ts diff --git a/examples/typescript/src/gen10/models/pet/UploadFile.ts b/examples/openapi/typescript/src/gen10/models/pet/UploadFile.ts similarity index 100% rename from examples/typescript/src/gen10/models/pet/UploadFile.ts rename to examples/openapi/typescript/src/gen10/models/pet/UploadFile.ts diff --git a/examples/typescript/src/gen10/models/store/DeleteOrder.ts b/examples/openapi/typescript/src/gen10/models/store/DeleteOrder.ts similarity index 100% rename from examples/typescript/src/gen10/models/store/DeleteOrder.ts rename to examples/openapi/typescript/src/gen10/models/store/DeleteOrder.ts diff --git a/examples/typescript/src/gen10/models/store/GetInventory.ts b/examples/openapi/typescript/src/gen10/models/store/GetInventory.ts similarity index 100% rename from examples/typescript/src/gen10/models/store/GetInventory.ts rename to examples/openapi/typescript/src/gen10/models/store/GetInventory.ts diff --git a/examples/typescript/src/gen10/models/store/GetOrderById.ts b/examples/openapi/typescript/src/gen10/models/store/GetOrderById.ts similarity index 100% rename from examples/typescript/src/gen10/models/store/GetOrderById.ts rename to examples/openapi/typescript/src/gen10/models/store/GetOrderById.ts diff --git a/examples/typescript/src/gen10/models/store/PlaceOrder.ts b/examples/openapi/typescript/src/gen10/models/store/PlaceOrder.ts similarity index 100% rename from examples/typescript/src/gen10/models/store/PlaceOrder.ts rename to examples/openapi/typescript/src/gen10/models/store/PlaceOrder.ts diff --git a/examples/typescript/src/gen10/models/store/PlaceOrderPatch.ts b/examples/openapi/typescript/src/gen10/models/store/PlaceOrderPatch.ts similarity index 100% rename from examples/typescript/src/gen10/models/store/PlaceOrderPatch.ts rename to examples/openapi/typescript/src/gen10/models/store/PlaceOrderPatch.ts diff --git a/examples/typescript/src/gen11/modelsPascalCaseKeys.ts b/examples/openapi/typescript/src/gen11/modelsPascalCaseKeys.ts similarity index 100% rename from examples/typescript/src/gen11/modelsPascalCaseKeys.ts rename to examples/openapi/typescript/src/gen11/modelsPascalCaseKeys.ts diff --git a/examples/typescript/src/gen12/modelsCamelCaseKeys.ts b/examples/openapi/typescript/src/gen12/modelsCamelCaseKeys.ts similarity index 100% rename from examples/typescript/src/gen12/modelsCamelCaseKeys.ts rename to examples/openapi/typescript/src/gen12/modelsCamelCaseKeys.ts diff --git a/examples/typescript/src/gen2/modelsConst.ts b/examples/openapi/typescript/src/gen2/modelsConst.ts similarity index 100% rename from examples/typescript/src/gen2/modelsConst.ts rename to examples/openapi/typescript/src/gen2/modelsConst.ts diff --git a/examples/typescript/src/gen3/modelsPascalConst.ts b/examples/openapi/typescript/src/gen3/modelsPascalConst.ts similarity index 100% rename from examples/typescript/src/gen3/modelsPascalConst.ts rename to examples/openapi/typescript/src/gen3/modelsPascalConst.ts diff --git a/examples/typescript/src/gen4/modelsConstEnum.ts b/examples/openapi/typescript/src/gen4/modelsConstEnum.ts similarity index 100% rename from examples/typescript/src/gen4/modelsConstEnum.ts rename to examples/openapi/typescript/src/gen4/modelsConstEnum.ts diff --git a/examples/typescript/src/gen5/modelsLiteral.ts b/examples/openapi/typescript/src/gen5/modelsLiteral.ts similarity index 100% rename from examples/typescript/src/gen5/modelsLiteral.ts rename to examples/openapi/typescript/src/gen5/modelsLiteral.ts diff --git a/examples/typescript/src/gen6/ts/models/AddPet.ts b/examples/openapi/typescript/src/gen6/ts/models/AddPet.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/AddPet.ts rename to examples/openapi/typescript/src/gen6/ts/models/AddPet.ts diff --git a/examples/typescript/src/gen6/ts/models/AddPetRequest.ts b/examples/openapi/typescript/src/gen6/ts/models/AddPetRequest.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/AddPetRequest.ts rename to examples/openapi/typescript/src/gen6/ts/models/AddPetRequest.ts diff --git a/examples/typescript/src/gen6/ts/models/AddPetRequestStatusEnum.ts b/examples/openapi/typescript/src/gen6/ts/models/AddPetRequestStatusEnum.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/AddPetRequestStatusEnum.ts rename to examples/openapi/typescript/src/gen6/ts/models/AddPetRequestStatusEnum.ts diff --git a/examples/typescript/src/gen6/ts/models/Address.ts b/examples/openapi/typescript/src/gen6/ts/models/Address.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/Address.ts rename to examples/openapi/typescript/src/gen6/ts/models/Address.ts diff --git a/examples/typescript/src/gen6/ts/models/ApiResponse.ts b/examples/openapi/typescript/src/gen6/ts/models/ApiResponse.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/ApiResponse.ts rename to examples/openapi/typescript/src/gen6/ts/models/ApiResponse.ts diff --git a/examples/typescript/src/gen6/ts/models/Cat.ts b/examples/openapi/typescript/src/gen6/ts/models/Cat.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/Cat.ts rename to examples/openapi/typescript/src/gen6/ts/models/Cat.ts diff --git a/examples/typescript/src/gen6/ts/models/Category.ts b/examples/openapi/typescript/src/gen6/ts/models/Category.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/Category.ts rename to examples/openapi/typescript/src/gen6/ts/models/Category.ts diff --git a/examples/typescript/src/gen6/ts/models/Customer.ts b/examples/openapi/typescript/src/gen6/ts/models/Customer.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/Customer.ts rename to examples/openapi/typescript/src/gen6/ts/models/Customer.ts diff --git a/examples/typescript/src/gen6/ts/models/CustomerParamsStatusEnum.ts b/examples/openapi/typescript/src/gen6/ts/models/CustomerParamsStatusEnum.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/CustomerParamsStatusEnum.ts rename to examples/openapi/typescript/src/gen6/ts/models/CustomerParamsStatusEnum.ts diff --git a/examples/typescript/src/gen6/ts/models/DeleteOrder.ts b/examples/openapi/typescript/src/gen6/ts/models/DeleteOrder.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/DeleteOrder.ts rename to examples/openapi/typescript/src/gen6/ts/models/DeleteOrder.ts diff --git a/examples/typescript/src/gen6/ts/models/DeletePet.ts b/examples/openapi/typescript/src/gen6/ts/models/DeletePet.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/DeletePet.ts rename to examples/openapi/typescript/src/gen6/ts/models/DeletePet.ts diff --git a/examples/typescript/src/gen6/ts/models/DeletePetStatus200Enum.ts b/examples/openapi/typescript/src/gen6/ts/models/DeletePetStatus200Enum.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/DeletePetStatus200Enum.ts rename to examples/openapi/typescript/src/gen6/ts/models/DeletePetStatus200Enum.ts diff --git a/examples/typescript/src/gen6/ts/models/Dog.ts b/examples/openapi/typescript/src/gen6/ts/models/Dog.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/Dog.ts rename to examples/openapi/typescript/src/gen6/ts/models/Dog.ts diff --git a/examples/typescript/src/gen6/ts/models/FindPetsByStatus.ts b/examples/openapi/typescript/src/gen6/ts/models/FindPetsByStatus.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/FindPetsByStatus.ts rename to examples/openapi/typescript/src/gen6/ts/models/FindPetsByStatus.ts diff --git a/examples/typescript/src/gen6/ts/models/FindPetsByStatusStatus.ts b/examples/openapi/typescript/src/gen6/ts/models/FindPetsByStatusStatus.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/FindPetsByStatusStatus.ts rename to examples/openapi/typescript/src/gen6/ts/models/FindPetsByStatusStatus.ts diff --git a/examples/typescript/src/gen6/ts/models/FindPetsByTags.ts b/examples/openapi/typescript/src/gen6/ts/models/FindPetsByTags.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/FindPetsByTags.ts rename to examples/openapi/typescript/src/gen6/ts/models/FindPetsByTags.ts diff --git a/examples/typescript/src/gen6/ts/models/FullAddress.ts b/examples/openapi/typescript/src/gen6/ts/models/FullAddress.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/FullAddress.ts rename to examples/openapi/typescript/src/gen6/ts/models/FullAddress.ts diff --git a/examples/typescript/src/gen6/ts/models/GetInventory.ts b/examples/openapi/typescript/src/gen6/ts/models/GetInventory.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/GetInventory.ts rename to examples/openapi/typescript/src/gen6/ts/models/GetInventory.ts diff --git a/examples/typescript/src/gen6/ts/models/GetOrderById.ts b/examples/openapi/typescript/src/gen6/ts/models/GetOrderById.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/GetOrderById.ts rename to examples/openapi/typescript/src/gen6/ts/models/GetOrderById.ts diff --git a/examples/typescript/src/gen6/ts/models/GetPetById.ts b/examples/openapi/typescript/src/gen6/ts/models/GetPetById.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/GetPetById.ts rename to examples/openapi/typescript/src/gen6/ts/models/GetPetById.ts diff --git a/examples/typescript/src/gen6/ts/models/HappyCustomer.ts b/examples/openapi/typescript/src/gen6/ts/models/HappyCustomer.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/HappyCustomer.ts rename to examples/openapi/typescript/src/gen6/ts/models/HappyCustomer.ts diff --git a/examples/typescript/src/gen6/ts/models/Order.ts b/examples/openapi/typescript/src/gen6/ts/models/Order.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/Order.ts rename to examples/openapi/typescript/src/gen6/ts/models/Order.ts diff --git a/examples/typescript/src/gen6/ts/models/OrderHttpStatusEnum.ts b/examples/openapi/typescript/src/gen6/ts/models/OrderHttpStatusEnum.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/OrderHttpStatusEnum.ts rename to examples/openapi/typescript/src/gen6/ts/models/OrderHttpStatusEnum.ts diff --git a/examples/typescript/src/gen6/ts/models/OrderParamsStatusEnum.ts b/examples/openapi/typescript/src/gen6/ts/models/OrderParamsStatusEnum.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/OrderParamsStatusEnum.ts rename to examples/openapi/typescript/src/gen6/ts/models/OrderParamsStatusEnum.ts diff --git a/examples/typescript/src/gen6/ts/models/OrderStatus.ts b/examples/openapi/typescript/src/gen6/ts/models/OrderStatus.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/OrderStatus.ts rename to examples/openapi/typescript/src/gen6/ts/models/OrderStatus.ts diff --git a/examples/typescript/src/gen6/ts/models/Pet.ts b/examples/openapi/typescript/src/gen6/ts/models/Pet.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/Pet.ts rename to examples/openapi/typescript/src/gen6/ts/models/Pet.ts diff --git a/examples/typescript/src/gen6/ts/models/PetNotFound.ts b/examples/openapi/typescript/src/gen6/ts/models/PetNotFound.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/PetNotFound.ts rename to examples/openapi/typescript/src/gen6/ts/models/PetNotFound.ts diff --git a/examples/typescript/src/gen6/ts/models/PetStatusEnum.ts b/examples/openapi/typescript/src/gen6/ts/models/PetStatusEnum.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/PetStatusEnum.ts rename to examples/openapi/typescript/src/gen6/ts/models/PetStatusEnum.ts diff --git a/examples/typescript/src/gen6/ts/models/PetTypeEnum.ts b/examples/openapi/typescript/src/gen6/ts/models/PetTypeEnum.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/PetTypeEnum.ts rename to examples/openapi/typescript/src/gen6/ts/models/PetTypeEnum.ts diff --git a/examples/typescript/src/gen6/ts/models/PlaceOrder.ts b/examples/openapi/typescript/src/gen6/ts/models/PlaceOrder.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/PlaceOrder.ts rename to examples/openapi/typescript/src/gen6/ts/models/PlaceOrder.ts diff --git a/examples/typescript/src/gen6/ts/models/PlaceOrderPatch.ts b/examples/openapi/typescript/src/gen6/ts/models/PlaceOrderPatch.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/PlaceOrderPatch.ts rename to examples/openapi/typescript/src/gen6/ts/models/PlaceOrderPatch.ts diff --git a/examples/typescript/src/gen6/ts/models/Tag.ts b/examples/openapi/typescript/src/gen6/ts/models/Tag.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/Tag.ts rename to examples/openapi/typescript/src/gen6/ts/models/Tag.ts diff --git a/examples/typescript/src/gen6/ts/models/UnhappyCustomer.ts b/examples/openapi/typescript/src/gen6/ts/models/UnhappyCustomer.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/UnhappyCustomer.ts rename to examples/openapi/typescript/src/gen6/ts/models/UnhappyCustomer.ts diff --git a/examples/typescript/src/gen6/ts/models/UpdatePet.ts b/examples/openapi/typescript/src/gen6/ts/models/UpdatePet.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/UpdatePet.ts rename to examples/openapi/typescript/src/gen6/ts/models/UpdatePet.ts diff --git a/examples/typescript/src/gen6/ts/models/UpdatePetWithForm.ts b/examples/openapi/typescript/src/gen6/ts/models/UpdatePetWithForm.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/UpdatePetWithForm.ts rename to examples/openapi/typescript/src/gen6/ts/models/UpdatePetWithForm.ts diff --git a/examples/typescript/src/gen6/ts/models/UploadFile.ts b/examples/openapi/typescript/src/gen6/ts/models/UploadFile.ts similarity index 100% rename from examples/typescript/src/gen6/ts/models/UploadFile.ts rename to examples/openapi/typescript/src/gen6/ts/models/UploadFile.ts diff --git a/examples/typescript/src/gen7/modelsInlineLiteral.ts b/examples/openapi/typescript/src/gen7/modelsInlineLiteral.ts similarity index 100% rename from examples/typescript/src/gen7/modelsInlineLiteral.ts rename to examples/openapi/typescript/src/gen7/modelsInlineLiteral.ts diff --git a/examples/typescript/src/gen8/modelsOptionalUndefined.ts b/examples/openapi/typescript/src/gen8/modelsOptionalUndefined.ts similarity index 100% rename from examples/typescript/src/gen8/modelsOptionalUndefined.ts rename to examples/openapi/typescript/src/gen8/modelsOptionalUndefined.ts diff --git a/examples/typescript/src/gen9/modelsOptionalBoth.ts b/examples/openapi/typescript/src/gen9/modelsOptionalBoth.ts similarity index 100% rename from examples/typescript/src/gen9/modelsOptionalBoth.ts rename to examples/openapi/typescript/src/gen9/modelsOptionalBoth.ts diff --git a/examples/zod/src/index.ts b/examples/openapi/typescript/src/index.ts similarity index 100% rename from examples/zod/src/index.ts rename to examples/openapi/typescript/src/index.ts diff --git a/examples/typescript/src/legacy/models.ts b/examples/openapi/typescript/src/legacy/models.ts similarity index 100% rename from examples/typescript/src/legacy/models.ts rename to examples/openapi/typescript/src/legacy/models.ts diff --git a/examples/openapi/typescript/tsconfig.json b/examples/openapi/typescript/tsconfig.json new file mode 100644 index 000000000..cc7e0af70 --- /dev/null +++ b/examples/openapi/typescript/tsconfig.json @@ -0,0 +1,23 @@ +{ + "compilerOptions": { + "target": "ES2021", + /* If NOT transpiling with TypeScript: */ + "module": "ES2020", + "moduleResolution": "Bundler", + "sourceMap": true, + "strictNullChecks": true, + "jsx": "react-jsx", + "outDir": "es", + "experimentalDecorators": true, + "skipLibCheck": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "allowJs": true, + "allowImportingTsExtensions": true, + "noEmit": true, + "alwaysStrict": true, + "strict": true + }, + "include": ["./src/**/*", "./kubb.config.ts"], + "exclude": ["**/node_modules", "**/types/**", "**/mocks/**"] +} diff --git a/examples/vue-query/kubb.config.ts b/examples/openapi/vue-query/kubb.config.ts similarity index 100% rename from examples/vue-query/kubb.config.ts rename to examples/openapi/vue-query/kubb.config.ts diff --git a/examples/vue-query/package.json b/examples/openapi/vue-query/package.json similarity index 95% rename from examples/vue-query/package.json rename to examples/openapi/vue-query/package.json index 7fb64e7ae..cdf3bcdf2 100644 --- a/examples/vue-query/package.json +++ b/examples/openapi/vue-query/package.json @@ -8,7 +8,7 @@ "repository": { "type": "git", "url": "https://github.com/kubb-labs/plugins.git", - "directory": "examples/vue-query" + "directory": "examples/openapi/vue-query" }, "type": "module", "sideEffects": false, diff --git a/examples/vue-query/petStore.yaml b/examples/openapi/vue-query/petStore.yaml similarity index 100% rename from examples/vue-query/petStore.yaml rename to examples/openapi/vue-query/petStore.yaml diff --git a/examples/vue-query/src/gen/.kubb/client.ts b/examples/openapi/vue-query/src/gen/.kubb/client.ts similarity index 100% rename from examples/vue-query/src/gen/.kubb/client.ts rename to examples/openapi/vue-query/src/gen/.kubb/client.ts diff --git a/examples/vue-query/src/gen/.kubb/serializers.ts b/examples/openapi/vue-query/src/gen/.kubb/serializers.ts similarity index 100% rename from examples/vue-query/src/gen/.kubb/serializers.ts rename to examples/openapi/vue-query/src/gen/.kubb/serializers.ts diff --git a/examples/vue-query/src/gen/.kubb/standardSchema.ts b/examples/openapi/vue-query/src/gen/.kubb/standardSchema.ts similarity index 100% rename from examples/vue-query/src/gen/.kubb/standardSchema.ts rename to examples/openapi/vue-query/src/gen/.kubb/standardSchema.ts diff --git a/examples/vue-query/src/gen/clients/index.ts b/examples/openapi/vue-query/src/gen/clients/index.ts similarity index 100% rename from examples/vue-query/src/gen/clients/index.ts rename to examples/openapi/vue-query/src/gen/clients/index.ts diff --git a/examples/vue-query/src/gen/clients/pet/addPet.ts b/examples/openapi/vue-query/src/gen/clients/pet/addPet.ts similarity index 100% rename from examples/vue-query/src/gen/clients/pet/addPet.ts rename to examples/openapi/vue-query/src/gen/clients/pet/addPet.ts diff --git a/examples/vue-query/src/gen/clients/pet/deletePet.ts b/examples/openapi/vue-query/src/gen/clients/pet/deletePet.ts similarity index 100% rename from examples/vue-query/src/gen/clients/pet/deletePet.ts rename to examples/openapi/vue-query/src/gen/clients/pet/deletePet.ts diff --git a/examples/vue-query/src/gen/clients/pet/findPetsByStatus.ts b/examples/openapi/vue-query/src/gen/clients/pet/findPetsByStatus.ts similarity index 100% rename from examples/vue-query/src/gen/clients/pet/findPetsByStatus.ts rename to examples/openapi/vue-query/src/gen/clients/pet/findPetsByStatus.ts diff --git a/examples/vue-query/src/gen/clients/pet/findPetsByTags.ts b/examples/openapi/vue-query/src/gen/clients/pet/findPetsByTags.ts similarity index 100% rename from examples/vue-query/src/gen/clients/pet/findPetsByTags.ts rename to examples/openapi/vue-query/src/gen/clients/pet/findPetsByTags.ts diff --git a/examples/vue-query/src/gen/clients/pet/getPetById.ts b/examples/openapi/vue-query/src/gen/clients/pet/getPetById.ts similarity index 100% rename from examples/vue-query/src/gen/clients/pet/getPetById.ts rename to examples/openapi/vue-query/src/gen/clients/pet/getPetById.ts diff --git a/examples/vue-query/src/gen/clients/pet/index.ts b/examples/openapi/vue-query/src/gen/clients/pet/index.ts similarity index 100% rename from examples/vue-query/src/gen/clients/pet/index.ts rename to examples/openapi/vue-query/src/gen/clients/pet/index.ts diff --git a/examples/vue-query/src/gen/clients/pet/updatePet.ts b/examples/openapi/vue-query/src/gen/clients/pet/updatePet.ts similarity index 100% rename from examples/vue-query/src/gen/clients/pet/updatePet.ts rename to examples/openapi/vue-query/src/gen/clients/pet/updatePet.ts diff --git a/examples/vue-query/src/gen/clients/pet/updatePetWithForm.ts b/examples/openapi/vue-query/src/gen/clients/pet/updatePetWithForm.ts similarity index 100% rename from examples/vue-query/src/gen/clients/pet/updatePetWithForm.ts rename to examples/openapi/vue-query/src/gen/clients/pet/updatePetWithForm.ts diff --git a/examples/vue-query/src/gen/clients/pet/uploadFile.ts b/examples/openapi/vue-query/src/gen/clients/pet/uploadFile.ts similarity index 100% rename from examples/vue-query/src/gen/clients/pet/uploadFile.ts rename to examples/openapi/vue-query/src/gen/clients/pet/uploadFile.ts diff --git a/examples/vue-query/src/gen/clients/store/deleteOrder.ts b/examples/openapi/vue-query/src/gen/clients/store/deleteOrder.ts similarity index 100% rename from examples/vue-query/src/gen/clients/store/deleteOrder.ts rename to examples/openapi/vue-query/src/gen/clients/store/deleteOrder.ts diff --git a/examples/vue-query/src/gen/clients/store/getInventory.ts b/examples/openapi/vue-query/src/gen/clients/store/getInventory.ts similarity index 100% rename from examples/vue-query/src/gen/clients/store/getInventory.ts rename to examples/openapi/vue-query/src/gen/clients/store/getInventory.ts diff --git a/examples/vue-query/src/gen/clients/store/getOrderById.ts b/examples/openapi/vue-query/src/gen/clients/store/getOrderById.ts similarity index 100% rename from examples/vue-query/src/gen/clients/store/getOrderById.ts rename to examples/openapi/vue-query/src/gen/clients/store/getOrderById.ts diff --git a/examples/vue-query/src/gen/clients/store/index.ts b/examples/openapi/vue-query/src/gen/clients/store/index.ts similarity index 100% rename from examples/vue-query/src/gen/clients/store/index.ts rename to examples/openapi/vue-query/src/gen/clients/store/index.ts diff --git a/examples/vue-query/src/gen/clients/store/placeOrder.ts b/examples/openapi/vue-query/src/gen/clients/store/placeOrder.ts similarity index 100% rename from examples/vue-query/src/gen/clients/store/placeOrder.ts rename to examples/openapi/vue-query/src/gen/clients/store/placeOrder.ts diff --git a/examples/vue-query/src/gen/clients/store/placeOrderPatch.ts b/examples/openapi/vue-query/src/gen/clients/store/placeOrderPatch.ts similarity index 100% rename from examples/vue-query/src/gen/clients/store/placeOrderPatch.ts rename to examples/openapi/vue-query/src/gen/clients/store/placeOrderPatch.ts diff --git a/examples/vue-query/src/gen/clients/user/createUser.ts b/examples/openapi/vue-query/src/gen/clients/user/createUser.ts similarity index 100% rename from examples/vue-query/src/gen/clients/user/createUser.ts rename to examples/openapi/vue-query/src/gen/clients/user/createUser.ts diff --git a/examples/vue-query/src/gen/clients/user/createUsersWithListInput.ts b/examples/openapi/vue-query/src/gen/clients/user/createUsersWithListInput.ts similarity index 100% rename from examples/vue-query/src/gen/clients/user/createUsersWithListInput.ts rename to examples/openapi/vue-query/src/gen/clients/user/createUsersWithListInput.ts diff --git a/examples/vue-query/src/gen/clients/user/deleteUser.ts b/examples/openapi/vue-query/src/gen/clients/user/deleteUser.ts similarity index 100% rename from examples/vue-query/src/gen/clients/user/deleteUser.ts rename to examples/openapi/vue-query/src/gen/clients/user/deleteUser.ts diff --git a/examples/vue-query/src/gen/clients/user/getUserByName.ts b/examples/openapi/vue-query/src/gen/clients/user/getUserByName.ts similarity index 100% rename from examples/vue-query/src/gen/clients/user/getUserByName.ts rename to examples/openapi/vue-query/src/gen/clients/user/getUserByName.ts diff --git a/examples/vue-query/src/gen/clients/user/index.ts b/examples/openapi/vue-query/src/gen/clients/user/index.ts similarity index 100% rename from examples/vue-query/src/gen/clients/user/index.ts rename to examples/openapi/vue-query/src/gen/clients/user/index.ts diff --git a/examples/vue-query/src/gen/clients/user/loginUser.ts b/examples/openapi/vue-query/src/gen/clients/user/loginUser.ts similarity index 100% rename from examples/vue-query/src/gen/clients/user/loginUser.ts rename to examples/openapi/vue-query/src/gen/clients/user/loginUser.ts diff --git a/examples/vue-query/src/gen/clients/user/logoutUser.ts b/examples/openapi/vue-query/src/gen/clients/user/logoutUser.ts similarity index 100% rename from examples/vue-query/src/gen/clients/user/logoutUser.ts rename to examples/openapi/vue-query/src/gen/clients/user/logoutUser.ts diff --git a/examples/vue-query/src/gen/clients/user/updateUser.ts b/examples/openapi/vue-query/src/gen/clients/user/updateUser.ts similarity index 100% rename from examples/vue-query/src/gen/clients/user/updateUser.ts rename to examples/openapi/vue-query/src/gen/clients/user/updateUser.ts diff --git a/examples/vue-query/src/gen/hooks/index.ts b/examples/openapi/vue-query/src/gen/hooks/index.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/index.ts rename to examples/openapi/vue-query/src/gen/hooks/index.ts diff --git a/examples/vue-query/src/gen/hooks/pet/index.ts b/examples/openapi/vue-query/src/gen/hooks/pet/index.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/pet/index.ts rename to examples/openapi/vue-query/src/gen/hooks/pet/index.ts diff --git a/examples/vue-query/src/gen/hooks/pet/useAddPet.ts b/examples/openapi/vue-query/src/gen/hooks/pet/useAddPet.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/pet/useAddPet.ts rename to examples/openapi/vue-query/src/gen/hooks/pet/useAddPet.ts diff --git a/examples/vue-query/src/gen/hooks/pet/useDeletePet.ts b/examples/openapi/vue-query/src/gen/hooks/pet/useDeletePet.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/pet/useDeletePet.ts rename to examples/openapi/vue-query/src/gen/hooks/pet/useDeletePet.ts diff --git a/examples/vue-query/src/gen/hooks/pet/useFindPetsByStatus.ts b/examples/openapi/vue-query/src/gen/hooks/pet/useFindPetsByStatus.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/pet/useFindPetsByStatus.ts rename to examples/openapi/vue-query/src/gen/hooks/pet/useFindPetsByStatus.ts diff --git a/examples/vue-query/src/gen/hooks/pet/useFindPetsByTags.ts b/examples/openapi/vue-query/src/gen/hooks/pet/useFindPetsByTags.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/pet/useFindPetsByTags.ts rename to examples/openapi/vue-query/src/gen/hooks/pet/useFindPetsByTags.ts diff --git a/examples/vue-query/src/gen/hooks/pet/useGetPetById.ts b/examples/openapi/vue-query/src/gen/hooks/pet/useGetPetById.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/pet/useGetPetById.ts rename to examples/openapi/vue-query/src/gen/hooks/pet/useGetPetById.ts diff --git a/examples/vue-query/src/gen/hooks/pet/useUpdatePet.ts b/examples/openapi/vue-query/src/gen/hooks/pet/useUpdatePet.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/pet/useUpdatePet.ts rename to examples/openapi/vue-query/src/gen/hooks/pet/useUpdatePet.ts diff --git a/examples/vue-query/src/gen/hooks/pet/useUpdatePetWithForm.ts b/examples/openapi/vue-query/src/gen/hooks/pet/useUpdatePetWithForm.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/pet/useUpdatePetWithForm.ts rename to examples/openapi/vue-query/src/gen/hooks/pet/useUpdatePetWithForm.ts diff --git a/examples/vue-query/src/gen/hooks/pet/useUploadFile.ts b/examples/openapi/vue-query/src/gen/hooks/pet/useUploadFile.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/pet/useUploadFile.ts rename to examples/openapi/vue-query/src/gen/hooks/pet/useUploadFile.ts diff --git a/examples/vue-query/src/gen/hooks/store/index.ts b/examples/openapi/vue-query/src/gen/hooks/store/index.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/store/index.ts rename to examples/openapi/vue-query/src/gen/hooks/store/index.ts diff --git a/examples/vue-query/src/gen/hooks/store/useDeleteOrder.ts b/examples/openapi/vue-query/src/gen/hooks/store/useDeleteOrder.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/store/useDeleteOrder.ts rename to examples/openapi/vue-query/src/gen/hooks/store/useDeleteOrder.ts diff --git a/examples/vue-query/src/gen/hooks/store/useGetInventory.ts b/examples/openapi/vue-query/src/gen/hooks/store/useGetInventory.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/store/useGetInventory.ts rename to examples/openapi/vue-query/src/gen/hooks/store/useGetInventory.ts diff --git a/examples/vue-query/src/gen/hooks/store/useGetOrderById.ts b/examples/openapi/vue-query/src/gen/hooks/store/useGetOrderById.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/store/useGetOrderById.ts rename to examples/openapi/vue-query/src/gen/hooks/store/useGetOrderById.ts diff --git a/examples/vue-query/src/gen/hooks/store/usePlaceOrder.ts b/examples/openapi/vue-query/src/gen/hooks/store/usePlaceOrder.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/store/usePlaceOrder.ts rename to examples/openapi/vue-query/src/gen/hooks/store/usePlaceOrder.ts diff --git a/examples/vue-query/src/gen/hooks/store/usePlaceOrderPatch.ts b/examples/openapi/vue-query/src/gen/hooks/store/usePlaceOrderPatch.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/store/usePlaceOrderPatch.ts rename to examples/openapi/vue-query/src/gen/hooks/store/usePlaceOrderPatch.ts diff --git a/examples/vue-query/src/gen/hooks/user/index.ts b/examples/openapi/vue-query/src/gen/hooks/user/index.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/user/index.ts rename to examples/openapi/vue-query/src/gen/hooks/user/index.ts diff --git a/examples/vue-query/src/gen/hooks/user/useCreateUser.ts b/examples/openapi/vue-query/src/gen/hooks/user/useCreateUser.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/user/useCreateUser.ts rename to examples/openapi/vue-query/src/gen/hooks/user/useCreateUser.ts diff --git a/examples/vue-query/src/gen/hooks/user/useCreateUsersWithListInput.ts b/examples/openapi/vue-query/src/gen/hooks/user/useCreateUsersWithListInput.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/user/useCreateUsersWithListInput.ts rename to examples/openapi/vue-query/src/gen/hooks/user/useCreateUsersWithListInput.ts diff --git a/examples/vue-query/src/gen/hooks/user/useDeleteUser.ts b/examples/openapi/vue-query/src/gen/hooks/user/useDeleteUser.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/user/useDeleteUser.ts rename to examples/openapi/vue-query/src/gen/hooks/user/useDeleteUser.ts diff --git a/examples/vue-query/src/gen/hooks/user/useGetUserByName.ts b/examples/openapi/vue-query/src/gen/hooks/user/useGetUserByName.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/user/useGetUserByName.ts rename to examples/openapi/vue-query/src/gen/hooks/user/useGetUserByName.ts diff --git a/examples/vue-query/src/gen/hooks/user/useLoginUser.ts b/examples/openapi/vue-query/src/gen/hooks/user/useLoginUser.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/user/useLoginUser.ts rename to examples/openapi/vue-query/src/gen/hooks/user/useLoginUser.ts diff --git a/examples/vue-query/src/gen/hooks/user/useLogoutUser.ts b/examples/openapi/vue-query/src/gen/hooks/user/useLogoutUser.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/user/useLogoutUser.ts rename to examples/openapi/vue-query/src/gen/hooks/user/useLogoutUser.ts diff --git a/examples/vue-query/src/gen/hooks/user/useUpdateUser.ts b/examples/openapi/vue-query/src/gen/hooks/user/useUpdateUser.ts similarity index 100% rename from examples/vue-query/src/gen/hooks/user/useUpdateUser.ts rename to examples/openapi/vue-query/src/gen/hooks/user/useUpdateUser.ts diff --git a/examples/vue-query/src/gen/index.ts b/examples/openapi/vue-query/src/gen/index.ts similarity index 100% rename from examples/vue-query/src/gen/index.ts rename to examples/openapi/vue-query/src/gen/index.ts diff --git a/examples/vue-query/src/gen/models/AddPetRequest.ts b/examples/openapi/vue-query/src/gen/models/AddPetRequest.ts similarity index 100% rename from examples/vue-query/src/gen/models/AddPetRequest.ts rename to examples/openapi/vue-query/src/gen/models/AddPetRequest.ts diff --git a/examples/vue-query/src/gen/models/Address.ts b/examples/openapi/vue-query/src/gen/models/Address.ts similarity index 100% rename from examples/vue-query/src/gen/models/Address.ts rename to examples/openapi/vue-query/src/gen/models/Address.ts diff --git a/examples/vue-query/src/gen/models/ApiResponse.ts b/examples/openapi/vue-query/src/gen/models/ApiResponse.ts similarity index 100% rename from examples/vue-query/src/gen/models/ApiResponse.ts rename to examples/openapi/vue-query/src/gen/models/ApiResponse.ts diff --git a/examples/vue-query/src/gen/models/Category.ts b/examples/openapi/vue-query/src/gen/models/Category.ts similarity index 100% rename from examples/vue-query/src/gen/models/Category.ts rename to examples/openapi/vue-query/src/gen/models/Category.ts diff --git a/examples/vue-query/src/gen/models/Customer.ts b/examples/openapi/vue-query/src/gen/models/Customer.ts similarity index 100% rename from examples/vue-query/src/gen/models/Customer.ts rename to examples/openapi/vue-query/src/gen/models/Customer.ts diff --git a/examples/vue-query/src/gen/models/Order.ts b/examples/openapi/vue-query/src/gen/models/Order.ts similarity index 100% rename from examples/vue-query/src/gen/models/Order.ts rename to examples/openapi/vue-query/src/gen/models/Order.ts diff --git a/examples/vue-query/src/gen/models/Pet.ts b/examples/openapi/vue-query/src/gen/models/Pet.ts similarity index 100% rename from examples/vue-query/src/gen/models/Pet.ts rename to examples/openapi/vue-query/src/gen/models/Pet.ts diff --git a/examples/vue-query/src/gen/models/PetNotFound.ts b/examples/openapi/vue-query/src/gen/models/PetNotFound.ts similarity index 100% rename from examples/vue-query/src/gen/models/PetNotFound.ts rename to examples/openapi/vue-query/src/gen/models/PetNotFound.ts diff --git a/examples/vue-query/src/gen/models/Tag.ts b/examples/openapi/vue-query/src/gen/models/Tag.ts similarity index 100% rename from examples/vue-query/src/gen/models/Tag.ts rename to examples/openapi/vue-query/src/gen/models/Tag.ts diff --git a/examples/vue-query/src/gen/models/User.ts b/examples/openapi/vue-query/src/gen/models/User.ts similarity index 100% rename from examples/vue-query/src/gen/models/User.ts rename to examples/openapi/vue-query/src/gen/models/User.ts diff --git a/examples/vue-query/src/gen/models/UserArray.ts b/examples/openapi/vue-query/src/gen/models/UserArray.ts similarity index 100% rename from examples/vue-query/src/gen/models/UserArray.ts rename to examples/openapi/vue-query/src/gen/models/UserArray.ts diff --git a/examples/vue-query/src/gen/models/index.ts b/examples/openapi/vue-query/src/gen/models/index.ts similarity index 100% rename from examples/vue-query/src/gen/models/index.ts rename to examples/openapi/vue-query/src/gen/models/index.ts diff --git a/examples/vue-query/src/gen/models/pet/AddPet.ts b/examples/openapi/vue-query/src/gen/models/pet/AddPet.ts similarity index 100% rename from examples/vue-query/src/gen/models/pet/AddPet.ts rename to examples/openapi/vue-query/src/gen/models/pet/AddPet.ts diff --git a/examples/vue-query/src/gen/models/pet/DeletePet.ts b/examples/openapi/vue-query/src/gen/models/pet/DeletePet.ts similarity index 100% rename from examples/vue-query/src/gen/models/pet/DeletePet.ts rename to examples/openapi/vue-query/src/gen/models/pet/DeletePet.ts diff --git a/examples/vue-query/src/gen/models/pet/FindPetsByStatus.ts b/examples/openapi/vue-query/src/gen/models/pet/FindPetsByStatus.ts similarity index 100% rename from examples/vue-query/src/gen/models/pet/FindPetsByStatus.ts rename to examples/openapi/vue-query/src/gen/models/pet/FindPetsByStatus.ts diff --git a/examples/vue-query/src/gen/models/pet/FindPetsByTags.ts b/examples/openapi/vue-query/src/gen/models/pet/FindPetsByTags.ts similarity index 100% rename from examples/vue-query/src/gen/models/pet/FindPetsByTags.ts rename to examples/openapi/vue-query/src/gen/models/pet/FindPetsByTags.ts diff --git a/examples/vue-query/src/gen/models/pet/GetPetById.ts b/examples/openapi/vue-query/src/gen/models/pet/GetPetById.ts similarity index 100% rename from examples/vue-query/src/gen/models/pet/GetPetById.ts rename to examples/openapi/vue-query/src/gen/models/pet/GetPetById.ts diff --git a/examples/vue-query/src/gen/models/pet/UpdatePet.ts b/examples/openapi/vue-query/src/gen/models/pet/UpdatePet.ts similarity index 100% rename from examples/vue-query/src/gen/models/pet/UpdatePet.ts rename to examples/openapi/vue-query/src/gen/models/pet/UpdatePet.ts diff --git a/examples/vue-query/src/gen/models/pet/UpdatePetWithForm.ts b/examples/openapi/vue-query/src/gen/models/pet/UpdatePetWithForm.ts similarity index 100% rename from examples/vue-query/src/gen/models/pet/UpdatePetWithForm.ts rename to examples/openapi/vue-query/src/gen/models/pet/UpdatePetWithForm.ts diff --git a/examples/vue-query/src/gen/models/pet/UploadFile.ts b/examples/openapi/vue-query/src/gen/models/pet/UploadFile.ts similarity index 100% rename from examples/vue-query/src/gen/models/pet/UploadFile.ts rename to examples/openapi/vue-query/src/gen/models/pet/UploadFile.ts diff --git a/examples/vue-query/src/gen/models/pet/index.ts b/examples/openapi/vue-query/src/gen/models/pet/index.ts similarity index 100% rename from examples/vue-query/src/gen/models/pet/index.ts rename to examples/openapi/vue-query/src/gen/models/pet/index.ts diff --git a/examples/vue-query/src/gen/models/store/DeleteOrder.ts b/examples/openapi/vue-query/src/gen/models/store/DeleteOrder.ts similarity index 100% rename from examples/vue-query/src/gen/models/store/DeleteOrder.ts rename to examples/openapi/vue-query/src/gen/models/store/DeleteOrder.ts diff --git a/examples/vue-query/src/gen/models/store/GetInventory.ts b/examples/openapi/vue-query/src/gen/models/store/GetInventory.ts similarity index 100% rename from examples/vue-query/src/gen/models/store/GetInventory.ts rename to examples/openapi/vue-query/src/gen/models/store/GetInventory.ts diff --git a/examples/vue-query/src/gen/models/store/GetOrderById.ts b/examples/openapi/vue-query/src/gen/models/store/GetOrderById.ts similarity index 100% rename from examples/vue-query/src/gen/models/store/GetOrderById.ts rename to examples/openapi/vue-query/src/gen/models/store/GetOrderById.ts diff --git a/examples/vue-query/src/gen/models/store/PlaceOrder.ts b/examples/openapi/vue-query/src/gen/models/store/PlaceOrder.ts similarity index 100% rename from examples/vue-query/src/gen/models/store/PlaceOrder.ts rename to examples/openapi/vue-query/src/gen/models/store/PlaceOrder.ts diff --git a/examples/vue-query/src/gen/models/store/PlaceOrderPatch.ts b/examples/openapi/vue-query/src/gen/models/store/PlaceOrderPatch.ts similarity index 100% rename from examples/vue-query/src/gen/models/store/PlaceOrderPatch.ts rename to examples/openapi/vue-query/src/gen/models/store/PlaceOrderPatch.ts diff --git a/examples/vue-query/src/gen/models/store/index.ts b/examples/openapi/vue-query/src/gen/models/store/index.ts similarity index 100% rename from examples/vue-query/src/gen/models/store/index.ts rename to examples/openapi/vue-query/src/gen/models/store/index.ts diff --git a/examples/vue-query/src/gen/models/user/CreateUser.ts b/examples/openapi/vue-query/src/gen/models/user/CreateUser.ts similarity index 100% rename from examples/vue-query/src/gen/models/user/CreateUser.ts rename to examples/openapi/vue-query/src/gen/models/user/CreateUser.ts diff --git a/examples/vue-query/src/gen/models/user/CreateUsersWithListInput.ts b/examples/openapi/vue-query/src/gen/models/user/CreateUsersWithListInput.ts similarity index 100% rename from examples/vue-query/src/gen/models/user/CreateUsersWithListInput.ts rename to examples/openapi/vue-query/src/gen/models/user/CreateUsersWithListInput.ts diff --git a/examples/vue-query/src/gen/models/user/DeleteUser.ts b/examples/openapi/vue-query/src/gen/models/user/DeleteUser.ts similarity index 100% rename from examples/vue-query/src/gen/models/user/DeleteUser.ts rename to examples/openapi/vue-query/src/gen/models/user/DeleteUser.ts diff --git a/examples/vue-query/src/gen/models/user/GetUserByName.ts b/examples/openapi/vue-query/src/gen/models/user/GetUserByName.ts similarity index 100% rename from examples/vue-query/src/gen/models/user/GetUserByName.ts rename to examples/openapi/vue-query/src/gen/models/user/GetUserByName.ts diff --git a/examples/vue-query/src/gen/models/user/LoginUser.ts b/examples/openapi/vue-query/src/gen/models/user/LoginUser.ts similarity index 100% rename from examples/vue-query/src/gen/models/user/LoginUser.ts rename to examples/openapi/vue-query/src/gen/models/user/LoginUser.ts diff --git a/examples/vue-query/src/gen/models/user/LogoutUser.ts b/examples/openapi/vue-query/src/gen/models/user/LogoutUser.ts similarity index 100% rename from examples/vue-query/src/gen/models/user/LogoutUser.ts rename to examples/openapi/vue-query/src/gen/models/user/LogoutUser.ts diff --git a/examples/vue-query/src/gen/models/user/UpdateUser.ts b/examples/openapi/vue-query/src/gen/models/user/UpdateUser.ts similarity index 100% rename from examples/vue-query/src/gen/models/user/UpdateUser.ts rename to examples/openapi/vue-query/src/gen/models/user/UpdateUser.ts diff --git a/examples/vue-query/src/gen/models/user/index.ts b/examples/openapi/vue-query/src/gen/models/user/index.ts similarity index 100% rename from examples/vue-query/src/gen/models/user/index.ts rename to examples/openapi/vue-query/src/gen/models/user/index.ts diff --git a/examples/vue-query/src/index.ts b/examples/openapi/vue-query/src/index.ts similarity index 100% rename from examples/vue-query/src/index.ts rename to examples/openapi/vue-query/src/index.ts diff --git a/examples/vue-query/tsconfig.json b/examples/openapi/vue-query/tsconfig.json similarity index 100% rename from examples/vue-query/tsconfig.json rename to examples/openapi/vue-query/tsconfig.json diff --git a/examples/zod/kubb.config.js b/examples/openapi/zod/kubb.config.js similarity index 100% rename from examples/zod/kubb.config.js rename to examples/openapi/zod/kubb.config.js diff --git a/examples/zod/operationsPlugin.ts b/examples/openapi/zod/operationsPlugin.ts similarity index 100% rename from examples/zod/operationsPlugin.ts rename to examples/openapi/zod/operationsPlugin.ts diff --git a/examples/zod/package.json b/examples/openapi/zod/package.json similarity index 95% rename from examples/zod/package.json rename to examples/openapi/zod/package.json index 42ee5eeeb..d78d8a4a1 100644 --- a/examples/zod/package.json +++ b/examples/openapi/zod/package.json @@ -8,7 +8,7 @@ "repository": { "type": "git", "url": "https://github.com/kubb-labs/plugins.git", - "directory": "examples/zod" + "directory": "examples/openapi/zod" }, "type": "module", "sideEffects": false, diff --git a/examples/zod/petStore.yaml b/examples/openapi/zod/petStore.yaml similarity index 100% rename from examples/zod/petStore.yaml rename to examples/openapi/zod/petStore.yaml diff --git a/examples/zod/src/gen3/zod/createItemSchema.ts b/examples/openapi/zod/src/gen3/zod/createItemSchema.ts similarity index 100% rename from examples/zod/src/gen3/zod/createItemSchema.ts rename to examples/openapi/zod/src/gen3/zod/createItemSchema.ts diff --git a/examples/zod/src/gen3/zod/itemSchema.ts b/examples/openapi/zod/src/gen3/zod/itemSchema.ts similarity index 100% rename from examples/zod/src/gen3/zod/itemSchema.ts rename to examples/openapi/zod/src/gen3/zod/itemSchema.ts diff --git a/examples/zod/src/gen3/zod/itemTypeASchema.ts b/examples/openapi/zod/src/gen3/zod/itemTypeASchema.ts similarity index 100% rename from examples/zod/src/gen3/zod/itemTypeASchema.ts rename to examples/openapi/zod/src/gen3/zod/itemTypeASchema.ts diff --git a/examples/zod/src/gen3/zod/itemTypeBSchema.ts b/examples/openapi/zod/src/gen3/zod/itemTypeBSchema.ts similarity index 100% rename from examples/zod/src/gen3/zod/itemTypeBSchema.ts rename to examples/openapi/zod/src/gen3/zod/itemTypeBSchema.ts diff --git a/examples/zod/src/gen3/zod/updateItemSchema.ts b/examples/openapi/zod/src/gen3/zod/updateItemSchema.ts similarity index 100% rename from examples/zod/src/gen3/zod/updateItemSchema.ts rename to examples/openapi/zod/src/gen3/zod/updateItemSchema.ts diff --git a/examples/openapi/zod/src/index.ts b/examples/openapi/zod/src/index.ts new file mode 100644 index 000000000..e69de29bb diff --git a/examples/zod/src/mini/zod/addPetRequestSchema.ts b/examples/openapi/zod/src/mini/zod/addPetRequestSchema.ts similarity index 100% rename from examples/zod/src/mini/zod/addPetRequestSchema.ts rename to examples/openapi/zod/src/mini/zod/addPetRequestSchema.ts diff --git a/examples/zod/src/mini/zod/addPetSchema.ts b/examples/openapi/zod/src/mini/zod/addPetSchema.ts similarity index 100% rename from examples/zod/src/mini/zod/addPetSchema.ts rename to examples/openapi/zod/src/mini/zod/addPetSchema.ts diff --git a/examples/zod/src/mini/zod/apiResponseSchema.ts b/examples/openapi/zod/src/mini/zod/apiResponseSchema.ts similarity index 100% rename from examples/zod/src/mini/zod/apiResponseSchema.ts rename to examples/openapi/zod/src/mini/zod/apiResponseSchema.ts diff --git a/examples/zod/src/mini/zod/categorySchema.ts b/examples/openapi/zod/src/mini/zod/categorySchema.ts similarity index 100% rename from examples/zod/src/mini/zod/categorySchema.ts rename to examples/openapi/zod/src/mini/zod/categorySchema.ts diff --git a/examples/zod/src/mini/zod/createPetsSchema.ts b/examples/openapi/zod/src/mini/zod/createPetsSchema.ts similarity index 100% rename from examples/zod/src/mini/zod/createPetsSchema.ts rename to examples/openapi/zod/src/mini/zod/createPetsSchema.ts diff --git a/examples/zod/src/mini/zod/deleteOrderSchema.ts b/examples/openapi/zod/src/mini/zod/deleteOrderSchema.ts similarity index 100% rename from examples/zod/src/mini/zod/deleteOrderSchema.ts rename to examples/openapi/zod/src/mini/zod/deleteOrderSchema.ts diff --git a/examples/zod/src/mini/zod/deletePetSchema.ts b/examples/openapi/zod/src/mini/zod/deletePetSchema.ts similarity index 100% rename from examples/zod/src/mini/zod/deletePetSchema.ts rename to examples/openapi/zod/src/mini/zod/deletePetSchema.ts diff --git a/examples/zod/src/mini/zod/findPetsByStatusSchema.ts b/examples/openapi/zod/src/mini/zod/findPetsByStatusSchema.ts similarity index 100% rename from examples/zod/src/mini/zod/findPetsByStatusSchema.ts rename to examples/openapi/zod/src/mini/zod/findPetsByStatusSchema.ts diff --git a/examples/zod/src/mini/zod/findPetsByTagsSchema.ts b/examples/openapi/zod/src/mini/zod/findPetsByTagsSchema.ts similarity index 100% rename from examples/zod/src/mini/zod/findPetsByTagsSchema.ts rename to examples/openapi/zod/src/mini/zod/findPetsByTagsSchema.ts diff --git a/examples/zod/src/mini/zod/getInventorySchema.ts b/examples/openapi/zod/src/mini/zod/getInventorySchema.ts similarity index 100% rename from examples/zod/src/mini/zod/getInventorySchema.ts rename to examples/openapi/zod/src/mini/zod/getInventorySchema.ts diff --git a/examples/zod/src/mini/zod/getOrderByIdSchema.ts b/examples/openapi/zod/src/mini/zod/getOrderByIdSchema.ts similarity index 100% rename from examples/zod/src/mini/zod/getOrderByIdSchema.ts rename to examples/openapi/zod/src/mini/zod/getOrderByIdSchema.ts diff --git a/examples/zod/src/mini/zod/getPetByIdSchema.ts b/examples/openapi/zod/src/mini/zod/getPetByIdSchema.ts similarity index 100% rename from examples/zod/src/mini/zod/getPetByIdSchema.ts rename to examples/openapi/zod/src/mini/zod/getPetByIdSchema.ts diff --git a/examples/zod/src/mini/zod/getThingsSchema.ts b/examples/openapi/zod/src/mini/zod/getThingsSchema.ts similarity index 100% rename from examples/zod/src/mini/zod/getThingsSchema.ts rename to examples/openapi/zod/src/mini/zod/getThingsSchema.ts diff --git a/examples/zod/src/mini/zod/orderSchema.ts b/examples/openapi/zod/src/mini/zod/orderSchema.ts similarity index 100% rename from examples/zod/src/mini/zod/orderSchema.ts rename to examples/openapi/zod/src/mini/zod/orderSchema.ts diff --git a/examples/zod/src/mini/zod/petNotFoundSchema.ts b/examples/openapi/zod/src/mini/zod/petNotFoundSchema.ts similarity index 100% rename from examples/zod/src/mini/zod/petNotFoundSchema.ts rename to examples/openapi/zod/src/mini/zod/petNotFoundSchema.ts diff --git a/examples/zod/src/mini/zod/petSchema.ts b/examples/openapi/zod/src/mini/zod/petSchema.ts similarity index 100% rename from examples/zod/src/mini/zod/petSchema.ts rename to examples/openapi/zod/src/mini/zod/petSchema.ts diff --git a/examples/zod/src/mini/zod/phoneNumberSchema.ts b/examples/openapi/zod/src/mini/zod/phoneNumberSchema.ts similarity index 100% rename from examples/zod/src/mini/zod/phoneNumberSchema.ts rename to examples/openapi/zod/src/mini/zod/phoneNumberSchema.ts diff --git a/examples/zod/src/mini/zod/phoneWithMaxLengthExplicitSchema.ts b/examples/openapi/zod/src/mini/zod/phoneWithMaxLengthExplicitSchema.ts similarity index 100% rename from examples/zod/src/mini/zod/phoneWithMaxLengthExplicitSchema.ts rename to examples/openapi/zod/src/mini/zod/phoneWithMaxLengthExplicitSchema.ts diff --git a/examples/zod/src/mini/zod/phoneWithMaxLengthSchema.ts b/examples/openapi/zod/src/mini/zod/phoneWithMaxLengthSchema.ts similarity index 100% rename from examples/zod/src/mini/zod/phoneWithMaxLengthSchema.ts rename to examples/openapi/zod/src/mini/zod/phoneWithMaxLengthSchema.ts diff --git a/examples/zod/src/mini/zod/placeOrderPatchSchema.ts b/examples/openapi/zod/src/mini/zod/placeOrderPatchSchema.ts similarity index 100% rename from examples/zod/src/mini/zod/placeOrderPatchSchema.ts rename to examples/openapi/zod/src/mini/zod/placeOrderPatchSchema.ts diff --git a/examples/zod/src/mini/zod/placeOrderSchema.ts b/examples/openapi/zod/src/mini/zod/placeOrderSchema.ts similarity index 100% rename from examples/zod/src/mini/zod/placeOrderSchema.ts rename to examples/openapi/zod/src/mini/zod/placeOrderSchema.ts diff --git a/examples/zod/src/mini/zod/tagSchema.ts b/examples/openapi/zod/src/mini/zod/tagSchema.ts similarity index 100% rename from examples/zod/src/mini/zod/tagSchema.ts rename to examples/openapi/zod/src/mini/zod/tagSchema.ts diff --git a/examples/zod/src/mini/zod/updatePetSchema.ts b/examples/openapi/zod/src/mini/zod/updatePetSchema.ts similarity index 100% rename from examples/zod/src/mini/zod/updatePetSchema.ts rename to examples/openapi/zod/src/mini/zod/updatePetSchema.ts diff --git a/examples/zod/src/mini/zod/updatePetWithFormSchema.ts b/examples/openapi/zod/src/mini/zod/updatePetWithFormSchema.ts similarity index 100% rename from examples/zod/src/mini/zod/updatePetWithFormSchema.ts rename to examples/openapi/zod/src/mini/zod/updatePetWithFormSchema.ts diff --git a/examples/zod/src/mini/zod/uploadFileSchema.ts b/examples/openapi/zod/src/mini/zod/uploadFileSchema.ts similarity index 100% rename from examples/zod/src/mini/zod/uploadFileSchema.ts rename to examples/openapi/zod/src/mini/zod/uploadFileSchema.ts diff --git a/examples/zod/src/zod.ts b/examples/openapi/zod/src/zod.ts similarity index 100% rename from examples/zod/src/zod.ts rename to examples/openapi/zod/src/zod.ts diff --git a/examples/zod/src/zod/ts/AddPet.ts b/examples/openapi/zod/src/zod/ts/AddPet.ts similarity index 100% rename from examples/zod/src/zod/ts/AddPet.ts rename to examples/openapi/zod/src/zod/ts/AddPet.ts diff --git a/examples/zod/src/zod/ts/AddPetRequest.ts b/examples/openapi/zod/src/zod/ts/AddPetRequest.ts similarity index 100% rename from examples/zod/src/zod/ts/AddPetRequest.ts rename to examples/openapi/zod/src/zod/ts/AddPetRequest.ts diff --git a/examples/zod/src/zod/ts/ApiResponse.ts b/examples/openapi/zod/src/zod/ts/ApiResponse.ts similarity index 100% rename from examples/zod/src/zod/ts/ApiResponse.ts rename to examples/openapi/zod/src/zod/ts/ApiResponse.ts diff --git a/examples/zod/src/zod/ts/Category.ts b/examples/openapi/zod/src/zod/ts/Category.ts similarity index 100% rename from examples/zod/src/zod/ts/Category.ts rename to examples/openapi/zod/src/zod/ts/Category.ts diff --git a/examples/zod/src/zod/ts/CreatePets.ts b/examples/openapi/zod/src/zod/ts/CreatePets.ts similarity index 100% rename from examples/zod/src/zod/ts/CreatePets.ts rename to examples/openapi/zod/src/zod/ts/CreatePets.ts diff --git a/examples/zod/src/zod/ts/DeleteOrder.ts b/examples/openapi/zod/src/zod/ts/DeleteOrder.ts similarity index 100% rename from examples/zod/src/zod/ts/DeleteOrder.ts rename to examples/openapi/zod/src/zod/ts/DeleteOrder.ts diff --git a/examples/zod/src/zod/ts/DeletePet.ts b/examples/openapi/zod/src/zod/ts/DeletePet.ts similarity index 100% rename from examples/zod/src/zod/ts/DeletePet.ts rename to examples/openapi/zod/src/zod/ts/DeletePet.ts diff --git a/examples/zod/src/zod/ts/FindPetsByStatus.ts b/examples/openapi/zod/src/zod/ts/FindPetsByStatus.ts similarity index 100% rename from examples/zod/src/zod/ts/FindPetsByStatus.ts rename to examples/openapi/zod/src/zod/ts/FindPetsByStatus.ts diff --git a/examples/zod/src/zod/ts/FindPetsByTags.ts b/examples/openapi/zod/src/zod/ts/FindPetsByTags.ts similarity index 100% rename from examples/zod/src/zod/ts/FindPetsByTags.ts rename to examples/openapi/zod/src/zod/ts/FindPetsByTags.ts diff --git a/examples/zod/src/zod/ts/GetInventory.ts b/examples/openapi/zod/src/zod/ts/GetInventory.ts similarity index 100% rename from examples/zod/src/zod/ts/GetInventory.ts rename to examples/openapi/zod/src/zod/ts/GetInventory.ts diff --git a/examples/zod/src/zod/ts/GetOrderById.ts b/examples/openapi/zod/src/zod/ts/GetOrderById.ts similarity index 100% rename from examples/zod/src/zod/ts/GetOrderById.ts rename to examples/openapi/zod/src/zod/ts/GetOrderById.ts diff --git a/examples/zod/src/zod/ts/GetPetById.ts b/examples/openapi/zod/src/zod/ts/GetPetById.ts similarity index 100% rename from examples/zod/src/zod/ts/GetPetById.ts rename to examples/openapi/zod/src/zod/ts/GetPetById.ts diff --git a/examples/zod/src/zod/ts/GetThings.ts b/examples/openapi/zod/src/zod/ts/GetThings.ts similarity index 100% rename from examples/zod/src/zod/ts/GetThings.ts rename to examples/openapi/zod/src/zod/ts/GetThings.ts diff --git a/examples/zod/src/zod/ts/Order.ts b/examples/openapi/zod/src/zod/ts/Order.ts similarity index 100% rename from examples/zod/src/zod/ts/Order.ts rename to examples/openapi/zod/src/zod/ts/Order.ts diff --git a/examples/zod/src/zod/ts/Pet.ts b/examples/openapi/zod/src/zod/ts/Pet.ts similarity index 100% rename from examples/zod/src/zod/ts/Pet.ts rename to examples/openapi/zod/src/zod/ts/Pet.ts diff --git a/examples/zod/src/zod/ts/PetNotFound.ts b/examples/openapi/zod/src/zod/ts/PetNotFound.ts similarity index 100% rename from examples/zod/src/zod/ts/PetNotFound.ts rename to examples/openapi/zod/src/zod/ts/PetNotFound.ts diff --git a/examples/zod/src/zod/ts/PhoneNumber.ts b/examples/openapi/zod/src/zod/ts/PhoneNumber.ts similarity index 100% rename from examples/zod/src/zod/ts/PhoneNumber.ts rename to examples/openapi/zod/src/zod/ts/PhoneNumber.ts diff --git a/examples/zod/src/zod/ts/PhoneWithMaxLength.ts b/examples/openapi/zod/src/zod/ts/PhoneWithMaxLength.ts similarity index 100% rename from examples/zod/src/zod/ts/PhoneWithMaxLength.ts rename to examples/openapi/zod/src/zod/ts/PhoneWithMaxLength.ts diff --git a/examples/zod/src/zod/ts/PhoneWithMaxLengthExplicit.ts b/examples/openapi/zod/src/zod/ts/PhoneWithMaxLengthExplicit.ts similarity index 100% rename from examples/zod/src/zod/ts/PhoneWithMaxLengthExplicit.ts rename to examples/openapi/zod/src/zod/ts/PhoneWithMaxLengthExplicit.ts diff --git a/examples/zod/src/zod/ts/PlaceOrder.ts b/examples/openapi/zod/src/zod/ts/PlaceOrder.ts similarity index 100% rename from examples/zod/src/zod/ts/PlaceOrder.ts rename to examples/openapi/zod/src/zod/ts/PlaceOrder.ts diff --git a/examples/zod/src/zod/ts/PlaceOrderPatch.ts b/examples/openapi/zod/src/zod/ts/PlaceOrderPatch.ts similarity index 100% rename from examples/zod/src/zod/ts/PlaceOrderPatch.ts rename to examples/openapi/zod/src/zod/ts/PlaceOrderPatch.ts diff --git a/examples/zod/src/zod/ts/Tag.ts b/examples/openapi/zod/src/zod/ts/Tag.ts similarity index 100% rename from examples/zod/src/zod/ts/Tag.ts rename to examples/openapi/zod/src/zod/ts/Tag.ts diff --git a/examples/zod/src/zod/ts/UpdatePet.ts b/examples/openapi/zod/src/zod/ts/UpdatePet.ts similarity index 100% rename from examples/zod/src/zod/ts/UpdatePet.ts rename to examples/openapi/zod/src/zod/ts/UpdatePet.ts diff --git a/examples/zod/src/zod/ts/UpdatePetWithForm.ts b/examples/openapi/zod/src/zod/ts/UpdatePetWithForm.ts similarity index 100% rename from examples/zod/src/zod/ts/UpdatePetWithForm.ts rename to examples/openapi/zod/src/zod/ts/UpdatePetWithForm.ts diff --git a/examples/zod/src/zod/ts/UploadFile.ts b/examples/openapi/zod/src/zod/ts/UploadFile.ts similarity index 100% rename from examples/zod/src/zod/ts/UploadFile.ts rename to examples/openapi/zod/src/zod/ts/UploadFile.ts diff --git a/examples/zod/src/zod/zod/addPetRequestSchema.ts b/examples/openapi/zod/src/zod/zod/addPetRequestSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/addPetRequestSchema.ts rename to examples/openapi/zod/src/zod/zod/addPetRequestSchema.ts diff --git a/examples/zod/src/zod/zod/addPetSchema.ts b/examples/openapi/zod/src/zod/zod/addPetSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/addPetSchema.ts rename to examples/openapi/zod/src/zod/zod/addPetSchema.ts diff --git a/examples/zod/src/zod/zod/apiResponseSchema.ts b/examples/openapi/zod/src/zod/zod/apiResponseSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/apiResponseSchema.ts rename to examples/openapi/zod/src/zod/zod/apiResponseSchema.ts diff --git a/examples/zod/src/zod/zod/categorySchema.ts b/examples/openapi/zod/src/zod/zod/categorySchema.ts similarity index 100% rename from examples/zod/src/zod/zod/categorySchema.ts rename to examples/openapi/zod/src/zod/zod/categorySchema.ts diff --git a/examples/zod/src/zod/zod/createPetsSchema.ts b/examples/openapi/zod/src/zod/zod/createPetsSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/createPetsSchema.ts rename to examples/openapi/zod/src/zod/zod/createPetsSchema.ts diff --git a/examples/zod/src/zod/zod/deleteOrderSchema.ts b/examples/openapi/zod/src/zod/zod/deleteOrderSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/deleteOrderSchema.ts rename to examples/openapi/zod/src/zod/zod/deleteOrderSchema.ts diff --git a/examples/zod/src/zod/zod/deletePetSchema.ts b/examples/openapi/zod/src/zod/zod/deletePetSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/deletePetSchema.ts rename to examples/openapi/zod/src/zod/zod/deletePetSchema.ts diff --git a/examples/zod/src/zod/zod/findPetsByStatusSchema.ts b/examples/openapi/zod/src/zod/zod/findPetsByStatusSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/findPetsByStatusSchema.ts rename to examples/openapi/zod/src/zod/zod/findPetsByStatusSchema.ts diff --git a/examples/zod/src/zod/zod/findPetsByTagsSchema.ts b/examples/openapi/zod/src/zod/zod/findPetsByTagsSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/findPetsByTagsSchema.ts rename to examples/openapi/zod/src/zod/zod/findPetsByTagsSchema.ts diff --git a/examples/zod/src/zod/zod/getInventorySchema.ts b/examples/openapi/zod/src/zod/zod/getInventorySchema.ts similarity index 100% rename from examples/zod/src/zod/zod/getInventorySchema.ts rename to examples/openapi/zod/src/zod/zod/getInventorySchema.ts diff --git a/examples/zod/src/zod/zod/getOrderByIdSchema.ts b/examples/openapi/zod/src/zod/zod/getOrderByIdSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/getOrderByIdSchema.ts rename to examples/openapi/zod/src/zod/zod/getOrderByIdSchema.ts diff --git a/examples/zod/src/zod/zod/getPetByIdSchema.ts b/examples/openapi/zod/src/zod/zod/getPetByIdSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/getPetByIdSchema.ts rename to examples/openapi/zod/src/zod/zod/getPetByIdSchema.ts diff --git a/examples/zod/src/zod/zod/getThingsSchema.ts b/examples/openapi/zod/src/zod/zod/getThingsSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/getThingsSchema.ts rename to examples/openapi/zod/src/zod/zod/getThingsSchema.ts diff --git a/examples/zod/src/zod/zod/operationsSchema.ts b/examples/openapi/zod/src/zod/zod/operationsSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/operationsSchema.ts rename to examples/openapi/zod/src/zod/zod/operationsSchema.ts diff --git a/examples/zod/src/zod/zod/orderSchema.ts b/examples/openapi/zod/src/zod/zod/orderSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/orderSchema.ts rename to examples/openapi/zod/src/zod/zod/orderSchema.ts diff --git a/examples/zod/src/zod/zod/petNotFoundSchema.ts b/examples/openapi/zod/src/zod/zod/petNotFoundSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/petNotFoundSchema.ts rename to examples/openapi/zod/src/zod/zod/petNotFoundSchema.ts diff --git a/examples/zod/src/zod/zod/petSchema.ts b/examples/openapi/zod/src/zod/zod/petSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/petSchema.ts rename to examples/openapi/zod/src/zod/zod/petSchema.ts diff --git a/examples/zod/src/zod/zod/phoneNumberSchema.ts b/examples/openapi/zod/src/zod/zod/phoneNumberSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/phoneNumberSchema.ts rename to examples/openapi/zod/src/zod/zod/phoneNumberSchema.ts diff --git a/examples/zod/src/zod/zod/phoneWithMaxLengthExplicitSchema.ts b/examples/openapi/zod/src/zod/zod/phoneWithMaxLengthExplicitSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/phoneWithMaxLengthExplicitSchema.ts rename to examples/openapi/zod/src/zod/zod/phoneWithMaxLengthExplicitSchema.ts diff --git a/examples/zod/src/zod/zod/phoneWithMaxLengthSchema.ts b/examples/openapi/zod/src/zod/zod/phoneWithMaxLengthSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/phoneWithMaxLengthSchema.ts rename to examples/openapi/zod/src/zod/zod/phoneWithMaxLengthSchema.ts diff --git a/examples/zod/src/zod/zod/placeOrderPatchSchema.ts b/examples/openapi/zod/src/zod/zod/placeOrderPatchSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/placeOrderPatchSchema.ts rename to examples/openapi/zod/src/zod/zod/placeOrderPatchSchema.ts diff --git a/examples/zod/src/zod/zod/placeOrderSchema.ts b/examples/openapi/zod/src/zod/zod/placeOrderSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/placeOrderSchema.ts rename to examples/openapi/zod/src/zod/zod/placeOrderSchema.ts diff --git a/examples/zod/src/zod/zod/tagSchema.ts b/examples/openapi/zod/src/zod/zod/tagSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/tagSchema.ts rename to examples/openapi/zod/src/zod/zod/tagSchema.ts diff --git a/examples/zod/src/zod/zod/updatePetSchema.ts b/examples/openapi/zod/src/zod/zod/updatePetSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/updatePetSchema.ts rename to examples/openapi/zod/src/zod/zod/updatePetSchema.ts diff --git a/examples/zod/src/zod/zod/updatePetWithFormSchema.ts b/examples/openapi/zod/src/zod/zod/updatePetWithFormSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/updatePetWithFormSchema.ts rename to examples/openapi/zod/src/zod/zod/updatePetWithFormSchema.ts diff --git a/examples/zod/src/zod/zod/uploadFileSchema.ts b/examples/openapi/zod/src/zod/zod/uploadFileSchema.ts similarity index 100% rename from examples/zod/src/zod/zod/uploadFileSchema.ts rename to examples/openapi/zod/src/zod/zod/uploadFileSchema.ts diff --git a/examples/zod/tsconfig.json b/examples/openapi/zod/tsconfig.json similarity index 100% rename from examples/zod/tsconfig.json rename to examples/openapi/zod/tsconfig.json diff --git a/examples/zod/unionWithReadOnly.yaml b/examples/openapi/zod/unionWithReadOnly.yaml similarity index 100% rename from examples/zod/unionWithReadOnly.yaml rename to examples/openapi/zod/unionWithReadOnly.yaml diff --git a/package.json b/package.json index 78d79bbf7..8ca683803 100644 --- a/package.json +++ b/package.json @@ -13,18 +13,18 @@ "packages": [ "packages/*", "internals/*", - "examples/*", + "examples/**", "tests/**" ] }, "type": "module", "scripts": { "build": "turbo run build --filter=./packages/*", - "build:examples": "turbo run build --filter=./examples/*", + "build:examples": "turbo run build --filter=./examples/**", "changeset": "changeset", "clean": "turbo run clean", "format": "oxfmt -c oxfmt.config.ts packages internals configs examples", - "generate": "KUBB_DISABLE_TELEMETRY=1 turbo run generate --filter=./examples/* --continue --concurrency=5", + "generate": "KUBB_DISABLE_TELEMETRY=1 turbo run generate --filter=./examples/** --continue --concurrency=5", "graph": "npx nx graph ", "lint": "oxlint -c oxlint.config.ts ./packages ./examples", "lint:fix": "oxlint -c oxlint.config.ts --fix ./packages ./examples", @@ -34,7 +34,7 @@ "test:bench": "vitest bench --config ./configs/vitest.bench.config.ts", "test:watch": "vitest --config ./configs/vitest.config.ts", "typecheck": "turbo run typecheck --continue --filter='./packages/*' --filter='./tests/**'", - "typecheck:examples": "turbo run typecheck --continue --filter='./examples/*'", + "typecheck:examples": "turbo run typecheck --continue --filter='./examples/**'", "upgrade": "npx taze -r -w --exclude pnpm --maturity-period 3" }, "devDependencies": { diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index ed9d50fd8..b183fdb6d 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,7 +1,7 @@ packages: - packages/* - internals/* - - examples/* + - examples/** - tests/** allowBuilds: @@ -14,6 +14,7 @@ allowBuilds: catalog: # Ranges, not pins: these end up in the published dependencies and peerDependencies of every # plugin, and a pin there conflicts with any newer Kubb release the user installs. + '@kubb/adapter-arazzo': ^5.0.1 '@kubb/adapter-oas': ^5.0.1 '@kubb/core': ^5.0.1 '@kubb/plugin-barrel': ^5.0.1 @@ -31,6 +32,7 @@ catalog: vitest: ^4.1.11 # #overrides: +# '@kubb/adapter-arazzo': link:../kubb/packages/adapter-arazzo # '@kubb/adapter-oas': link:../kubb/packages/adapter-oas # '@kubb/ast': link:../kubb/packages/ast # '@kubb/cli': link:../kubb/packages/cli @@ -44,6 +46,7 @@ catalog: # '@kubb/tui': link:../kubb/packages/tui # kubb: link:../kubb/packages/kubb # unplugin-kubb: link:../kubb/packages/unplugin-kubb +# unplugin-kubb: link:../kubb/packages/unplugin-kubb minimumReleaseAge: 2880 # 48 hours, matches CI's SAFE_CHAIN_MINIMUM_PACKAGE_AGE_HOURS minimumReleaseAgeExclude: diff --git a/tests/3.0.x/tsconfig.json b/tests/3.0.x/tsconfig.json deleted file mode 100644 index 9c35a0723..000000000 --- a/tests/3.0.x/tsconfig.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "extends": "../../tsconfig.json", - "compilerOptions": { - "types": ["bun-types", "../../reset.d.ts"] - }, - "include": ["./**/*.ts"] -} diff --git a/tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/Credentials.ts b/tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/Credentials.ts new file mode 100644 index 000000000..29c3d564c --- /dev/null +++ b/tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/Credentials.ts @@ -0,0 +1,9 @@ +/** +* Generated by Kubb (https://kubb.dev/). +* Do not edit manually. +*/ + +export type Credentials = { + username?: string; + password?: string; +}; diff --git a/tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/LoginAndReadPet.ts b/tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/LoginAndReadPet.ts new file mode 100644 index 000000000..6428bf63c --- /dev/null +++ b/tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/LoginAndReadPet.ts @@ -0,0 +1,27 @@ +/** +* Generated by Kubb (https://kubb.dev/). +* Do not edit manually. +*/ + +import type { LoginAndReadPetInputs } from './LoginAndReadPetInputs' +import type { LoginAndReadPetOutputs } from './LoginAndReadPetOutputs' + +export type LoginAndReadPetStatus200 = LoginAndReadPetOutputs; + +export type LoginAndReadPetBody = LoginAndReadPetInputs; + +export type LoginAndReadPetOptions = { + body: LoginAndReadPetBody; + path?: never; + query?: never; + headers?: never; +}; + +export type LoginAndReadPetResponses = { + "200": LoginAndReadPetStatus200; +}; + +/** + * @description Union of all possible responses +*/ +export type LoginAndReadPetResponse = LoginAndReadPetStatus200; diff --git a/tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/LoginAndReadPetInputs.ts b/tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/LoginAndReadPetInputs.ts new file mode 100644 index 000000000..f481ff989 --- /dev/null +++ b/tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/LoginAndReadPetInputs.ts @@ -0,0 +1,9 @@ +/** +* Generated by Kubb (https://kubb.dev/). +* Do not edit manually. +*/ + +export type LoginAndReadPetInputs = { + username: string; + petId?: number; +}; diff --git a/tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/LoginAndReadPetOutputs.ts b/tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/LoginAndReadPetOutputs.ts new file mode 100644 index 000000000..6c85b94a7 --- /dev/null +++ b/tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/LoginAndReadPetOutputs.ts @@ -0,0 +1,20 @@ +/** +* Generated by Kubb (https://kubb.dev/). +* Do not edit manually. +*/ + +import type { Pet } from './Pet' + +export const statusEnum = { + available: "available", + pending: "pending", + sold: "sold" +} as const; + +export type StatusEnumKey = (typeof statusEnum)[keyof typeof statusEnum]; + +export type LoginAndReadPetOutputs = { + token: string; + pet: Pet; + status: StatusEnumKey; +}; diff --git a/tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/ReadPetOnly.ts b/tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/ReadPetOnly.ts new file mode 100644 index 000000000..e7711cc51 --- /dev/null +++ b/tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/ReadPetOnly.ts @@ -0,0 +1,24 @@ +/** +* Generated by Kubb (https://kubb.dev/). +* Do not edit manually. +*/ + +import type { ReadPetOnlyOutputs } from './ReadPetOnlyOutputs' + +export type ReadPetOnlyStatus200 = ReadPetOnlyOutputs; + +export type ReadPetOnlyOptions = { + body?: never; + path?: never; + query?: never; + headers?: never; +}; + +export type ReadPetOnlyResponses = { + "200": ReadPetOnlyStatus200; +}; + +/** + * @description Union of all possible responses +*/ +export type ReadPetOnlyResponse = ReadPetOnlyStatus200; diff --git a/tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/ReadPetOnlyOutputs.ts b/tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/ReadPetOnlyOutputs.ts new file mode 100644 index 000000000..7f6caa441 --- /dev/null +++ b/tests/arazzo/1.1.0/__snapshots__/pluginTs/workflows/types/ReadPetOnlyOutputs.ts @@ -0,0 +1,8 @@ +/** +* Generated by Kubb (https://kubb.dev/). +* Do not edit manually. +*/ + +export type ReadPetOnlyOutputs = { + petId: number; +}; diff --git a/tests/arazzo/1.1.0/mocks/petStore.yaml b/tests/arazzo/1.1.0/mocks/petStore.yaml new file mode 100644 index 000000000..976f8d2c2 --- /dev/null +++ b/tests/arazzo/1.1.0/mocks/petStore.yaml @@ -0,0 +1,77 @@ +openapi: 3.1.0 +info: + title: Pet Store + version: 1.0.0 +servers: + - url: https://petstore.example.com/v1 +paths: + /user/login: + get: + operationId: loginUser + parameters: + - name: username + in: query + required: true + schema: + type: string + responses: + '200': + description: Logged in + headers: + X-Expires-After: + schema: + type: string + format: date-time + content: + application/json: + schema: + $ref: '#/components/schemas/Session' + /pet/{petId}: + get: + operationId: getPetById + parameters: + - name: petId + in: path + required: true + schema: + type: integer + responses: + '200': + description: A pet + content: + application/json: + schema: + $ref: '#/components/schemas/Pet' +components: + schemas: + Session: + type: object + required: + - token + properties: + token: + type: string + user: + $ref: '#/components/schemas/User' + User: + type: object + properties: + id: + type: integer + name: + type: string + Pet: + type: object + required: + - id + properties: + id: + type: integer + name: + type: string + status: + type: string + enum: + - available + - pending + - sold diff --git a/tests/arazzo/1.1.0/mocks/workflows.arazzo.yaml b/tests/arazzo/1.1.0/mocks/workflows.arazzo.yaml new file mode 100644 index 000000000..ff3590e06 --- /dev/null +++ b/tests/arazzo/1.1.0/mocks/workflows.arazzo.yaml @@ -0,0 +1,89 @@ +arazzo: 1.1.0 +info: + title: Pet Store workflows + version: 1.0.0 + description: Log in, then read a pet. +sourceDescriptions: + - name: petStore + url: ./petStore.yaml + type: openapi +workflows: + - workflowId: loginAndReadPet + summary: Log in and read one pet + parameters: + - name: X-Trace + in: header + value: kubb + - name: username + in: query + value: workflow-default + failureActions: + - name: giveUp + type: end + inputs: + type: object + required: + - username + properties: + username: + type: string + petId: + type: integer + steps: + - stepId: login + operationId: $sourceDescriptions.petStore.loginUser + parameters: + - name: username + in: query + value: $inputs.username + successCriteria: + - condition: $statusCode == 200 + onFailure: + - name: giveUp + type: retry + retryLimit: 3 + - reference: $components.failureActions.notFound + onSuccess: + - name: next + type: goto + stepId: readPet + timeout: 5000 + dependsOn: [] + outputs: + token: $response.body#/token + expires: $response.header.X-Expires-After + - stepId: readPet + operationPath: '{$sourceDescriptions.petStore.url}#/paths/~1pet~1{petId}/get' + parameters: + - name: petId + in: path + value: $inputs.petId + outputs: + pet: $response.body + outputs: + token: $steps.login.outputs.token + pet: $steps.readPet.outputs.pet + status: $steps.readPet.outputs.pet#/status + - workflowId: readPetOnly + dependsOn: + - loginAndReadPet + steps: + - stepId: readPet + operationId: getPetById + outputs: + petId: $response.body#/id + outputs: + petId: $steps.readPet.outputs.petId +components: + failureActions: + notFound: + name: notFound + type: end + inputs: + Credentials: + type: object + properties: + username: + type: string + password: + type: string diff --git a/tests/arazzo/1.1.0/package.json b/tests/arazzo/1.1.0/package.json new file mode 100644 index 000000000..bf214ddd4 --- /dev/null +++ b/tests/arazzo/1.1.0/package.json @@ -0,0 +1,35 @@ +{ + "name": "tests-arazzo-1.1.0", + "version": "0.0.0", + "private": true, + "description": "Integration tests for the Arazzo adapter", + "license": "MIT", + "author": "stijnvanhulle", + "repository": { + "type": "git", + "url": "https://github.com/kubb-labs/plugins.git", + "directory": "tests/arazzo/1.1.0" + }, + "type": "module", + "sideEffects": false, + "scripts": { + "typecheck": "tsc -p ./tsconfig.json --noEmit --emitDeclarationOnly false" + }, + "dependencies": { + "@internals/utils": "workspace:*", + "@kubb/adapter-arazzo": "catalog:", + "@kubb/core": "catalog:", + "@kubb/parser-ts": "catalog:", + "@kubb/plugin-ts": "workspace:*", + "kubb": "catalog:" + }, + "devDependencies": { + "typescript": "catalog:", + "vitest": "catalog:" + }, + "engines": { + "node": ">=22", + "pnpm": ">=11.0.0" + }, + "packageManager": "pnpm@11.20.0" +} diff --git a/tests/arazzo/1.1.0/pluginTs.test.ts b/tests/arazzo/1.1.0/pluginTs.test.ts new file mode 100644 index 000000000..ebe26baa6 --- /dev/null +++ b/tests/arazzo/1.1.0/pluginTs.test.ts @@ -0,0 +1,71 @@ +import fs from 'node:fs/promises' +import os from 'node:os' +import path from 'node:path' +import { fileURLToPath } from 'node:url' +import { getRelativePath } from '@internals/utils' +import { adapterArazzo } from '@kubb/adapter-arazzo' +import { Hookable, createKubb } from '@kubb/core' +import { type Config, Diagnostics, type KubbHooks, fsStorage } from 'kubb/kit' +import { parserTs } from '@kubb/parser-ts' +import { pluginTs } from '@kubb/plugin-ts' +import { describe, expect, test } from 'vitest' + +const __filename = fileURLToPath(import.meta.url) +const __dirname = path.dirname(__filename) + +const version = '1.1.0' + +type BuildConfig = Omit & { plugins: unknown } + +const configs: Array<{ name: string; config: BuildConfig }> = [ + { + /** + * Every workflow becomes one operation with an `Inputs` schema, so `plugin-ts` + * must generate a type for each workflow's inputs and named `components.inputs` entries. + */ + name: 'workflows', + config: { + root: __dirname, + input: './mocks/workflows.arazzo.yaml', + output: { path: './gen', barrel: false }, + adapter: adapterArazzo({ validate: false }), + parsers: [parserTs()], + storage: fsStorage(), + plugins: [ + pluginTs({ + output: { path: './types', mode: 'directory', barrel: false }, + enum: { type: 'asConst' }, + }), + ], + }, + }, +] + +describe(`plugin-ts options with @kubb/adapter-arazzo ${version}`, () => { + test.each(configs)('config testing with config as $name', async ({ name, config }) => { + const tmpDir = path.join(os.tmpdir(), `kubb-test-${name}-${Date.now()}`) + const output = path.join(tmpDir, name) + const { files, diagnostics } = await createKubb( + { + ...config, + output: { + ...config.output, + path: output, + }, + } as Config, + { + hooks: new Hookable(), + }, + ).safeBuild() + + expect(files.length).toBeGreaterThan(0) + expect(Diagnostics.hasError(diagnostics)).toBe(false) + + for (const file of files) { + const fileContent = await fs.readFile(file.path, 'utf-8') + await expect(fileContent).toMatchFileSnapshot(path.join(__dirname, '__snapshots__', 'pluginTs', name, getRelativePath(output, file.path))) + } + + await fs.rm(tmpDir, { recursive: true, force: true }) + }) +}) diff --git a/tests/arazzo/1.1.0/tsconfig.json b/tests/arazzo/1.1.0/tsconfig.json new file mode 100644 index 000000000..0bee156ca --- /dev/null +++ b/tests/arazzo/1.1.0/tsconfig.json @@ -0,0 +1,7 @@ +{ + "extends": "../../../tsconfig.json", + "compilerOptions": { + "types": ["bun-types", "../../../reset.d.ts"] + }, + "include": ["./**/*.ts"] +} diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/cypress/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/excludeByOperationId/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/addPet.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/addPet.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/cypress/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/includeByTag/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/cypress/config/createConfigV20250.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/cypress/config/createConfigV20250.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/cypress/config/createConfigV20250.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/cypress/config/createConfigV20250.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/cypress/config/getConfigIdV20250.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/cypress/config/getConfigIdV20250.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/cypress/config/getConfigIdV20250.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/cypress/config/getConfigIdV20250.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/types/Config.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/types/Config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/types/Config.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/types/Config.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/types/ConfigCreate.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/types/ConfigCreate.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/types/ConfigCreate.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/types/ConfigCreate.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/types/CreateConfigV20250.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/types/CreateConfigV20250.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/types/CreateConfigV20250.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/types/CreateConfigV20250.ts diff --git a/tests/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/types/GetConfigIdV20250.ts b/tests/openapi/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/types/GetConfigIdV20250.ts similarity index 100% rename from tests/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/types/GetConfigIdV20250.ts rename to tests/openapi/3.0.x/__snapshots__/cypressPlugin/noTagsGroup/types/GetConfigIdV20250.ts diff --git a/tests/3.0.x/__snapshots__/main/asConstEnum/types/Priority.ts b/tests/openapi/3.0.x/__snapshots__/main/asConstEnum/types/Priority.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/asConstEnum/types/Priority.ts rename to tests/openapi/3.0.x/__snapshots__/main/asConstEnum/types/Priority.ts diff --git a/tests/3.0.x/__snapshots__/main/asConstEnum/types/Status.ts b/tests/openapi/3.0.x/__snapshots__/main/asConstEnum/types/Status.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/asConstEnum/types/Status.ts rename to tests/openapi/3.0.x/__snapshots__/main/asConstEnum/types/Status.ts diff --git a/tests/3.0.x/__snapshots__/main/asConstEnum/types/Task.ts b/tests/openapi/3.0.x/__snapshots__/main/asConstEnum/types/Task.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/asConstEnum/types/Task.ts rename to tests/openapi/3.0.x/__snapshots__/main/asConstEnum/types/Task.ts diff --git a/tests/3.0.x/__snapshots__/main/caseSensitivity/types/CreateOrder.ts b/tests/openapi/3.0.x/__snapshots__/main/caseSensitivity/types/CreateOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/caseSensitivity/types/CreateOrder.ts rename to tests/openapi/3.0.x/__snapshots__/main/caseSensitivity/types/CreateOrder.ts diff --git a/tests/3.0.x/__snapshots__/main/caseSensitivity/types/GetProducts.ts b/tests/openapi/3.0.x/__snapshots__/main/caseSensitivity/types/GetProducts.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/caseSensitivity/types/GetProducts.ts rename to tests/openapi/3.0.x/__snapshots__/main/caseSensitivity/types/GetProducts.ts diff --git a/tests/3.0.x/__snapshots__/main/caseSensitivity/types/GetVariants.ts b/tests/openapi/3.0.x/__snapshots__/main/caseSensitivity/types/GetVariants.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/caseSensitivity/types/GetVariants.ts rename to tests/openapi/3.0.x/__snapshots__/main/caseSensitivity/types/GetVariants.ts diff --git a/tests/3.0.x/__snapshots__/main/caseSensitivity/types/OrderRequest.ts b/tests/openapi/3.0.x/__snapshots__/main/caseSensitivity/types/OrderRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/caseSensitivity/types/OrderRequest.ts rename to tests/openapi/3.0.x/__snapshots__/main/caseSensitivity/types/OrderRequest.ts diff --git a/tests/3.0.x/__snapshots__/main/caseSensitivity/types/OrderSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/caseSensitivity/types/OrderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/caseSensitivity/types/OrderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/caseSensitivity/types/OrderSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/caseSensitivity/types/ProductResponse.ts b/tests/openapi/3.0.x/__snapshots__/main/caseSensitivity/types/ProductResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/caseSensitivity/types/ProductResponse.ts rename to tests/openapi/3.0.x/__snapshots__/main/caseSensitivity/types/ProductResponse.ts diff --git a/tests/3.0.x/__snapshots__/main/caseSensitivity/types/ProductSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/caseSensitivity/types/ProductSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/caseSensitivity/types/ProductSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/caseSensitivity/types/ProductSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/caseSensitivity/types/Variant.ts b/tests/openapi/3.0.x/__snapshots__/main/caseSensitivity/types/Variant.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/caseSensitivity/types/Variant.ts rename to tests/openapi/3.0.x/__snapshots__/main/caseSensitivity/types/Variant.ts diff --git a/tests/3.0.x/__snapshots__/main/caseSensitivity/types/Variant2.ts b/tests/openapi/3.0.x/__snapshots__/main/caseSensitivity/types/Variant2.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/caseSensitivity/types/Variant2.ts rename to tests/openapi/3.0.x/__snapshots__/main/caseSensitivity/types/Variant2.ts diff --git a/tests/3.0.x/__snapshots__/main/caseSensitivity/types/Variant2CategoryEnum.ts b/tests/openapi/3.0.x/__snapshots__/main/caseSensitivity/types/Variant2CategoryEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/caseSensitivity/types/Variant2CategoryEnum.ts rename to tests/openapi/3.0.x/__snapshots__/main/caseSensitivity/types/Variant2CategoryEnum.ts diff --git a/tests/3.0.x/__snapshots__/main/caseSensitivity/types/VariantTypeEnum.ts b/tests/openapi/3.0.x/__snapshots__/main/caseSensitivity/types/VariantTypeEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/caseSensitivity/types/VariantTypeEnum.ts rename to tests/openapi/3.0.x/__snapshots__/main/caseSensitivity/types/VariantTypeEnum.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/BankTransferPayment.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/BankTransferPayment.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/BankTransferPayment.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/BankTransferPayment.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/BankTransferPaymentMapped.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/BankTransferPaymentMapped.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/BankTransferPaymentMapped.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/BankTransferPaymentMapped.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/BankTransferPaymentUnion.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/BankTransferPaymentUnion.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/BankTransferPaymentUnion.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/BankTransferPaymentUnion.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/CardPayment.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/CardPayment.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/CardPayment.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/CardPayment.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/CardPaymentMapped.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/CardPaymentMapped.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/CardPaymentMapped.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/CardPaymentMapped.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/CardPaymentUnion.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/CardPaymentUnion.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/CardPaymentUnion.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/CardPaymentUnion.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/ExtendedPaymentMethodUnion.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/ExtendedPaymentMethodUnion.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/ExtendedPaymentMethodUnion.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/ExtendedPaymentMethodUnion.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/PaymentMethod.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/PaymentMethod.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/PaymentMethod.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/PaymentMethod.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/PaymentMethodMapped.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/PaymentMethodMapped.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/PaymentMethodMapped.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/PaymentMethodMapped.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/PaymentMethodMappedTypeEnum.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/PaymentMethodMappedTypeEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/PaymentMethodMappedTypeEnum.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/PaymentMethodMappedTypeEnum.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/PaymentMethodUnion.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/PaymentMethodUnion.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/PaymentMethodUnion.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/PaymentMethodUnion.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/WalletPayment.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/WalletPayment.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/WalletPayment.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/WalletPayment.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/WalletPaymentMapped.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/WalletPaymentMapped.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/types/WalletPaymentMapped.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/types/WalletPaymentMapped.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/bankTransferPaymentMappedSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/bankTransferPaymentMappedSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/bankTransferPaymentMappedSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/bankTransferPaymentMappedSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/bankTransferPaymentSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/bankTransferPaymentSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/bankTransferPaymentSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/bankTransferPaymentSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/bankTransferPaymentUnionSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/bankTransferPaymentUnionSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/bankTransferPaymentUnionSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/bankTransferPaymentUnionSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/cardPaymentMappedSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/cardPaymentMappedSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/cardPaymentMappedSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/cardPaymentMappedSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/cardPaymentSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/cardPaymentSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/cardPaymentSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/cardPaymentSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/cardPaymentUnionSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/cardPaymentUnionSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/cardPaymentUnionSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/cardPaymentUnionSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/extendedPaymentMethodUnionSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/extendedPaymentMethodUnionSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/extendedPaymentMethodUnionSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/extendedPaymentMethodUnionSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/paymentMethodMappedSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/paymentMethodMappedSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/paymentMethodMappedSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/paymentMethodMappedSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/paymentMethodMappedTypeEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/paymentMethodMappedTypeEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/paymentMethodMappedTypeEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/paymentMethodMappedTypeEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/paymentMethodSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/paymentMethodSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/paymentMethodSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/paymentMethodSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/paymentMethodUnionSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/paymentMethodUnionSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/paymentMethodUnionSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/paymentMethodUnionSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/walletPaymentMappedSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/walletPaymentMappedSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/walletPaymentMappedSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/walletPaymentMappedSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/walletPaymentSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/walletPaymentSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAllOf/zod/walletPaymentSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAllOf/zod/walletPaymentSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAnyOf/types/Car.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/types/Car.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAnyOf/types/Car.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/types/Car.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAnyOf/types/ElectricCar.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/types/ElectricCar.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAnyOf/types/ElectricCar.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/types/ElectricCar.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAnyOf/types/SUV.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/types/SUV.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAnyOf/types/SUV.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/types/SUV.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAnyOf/types/Sedan.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/types/Sedan.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAnyOf/types/Sedan.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/types/Sedan.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAnyOf/types/TypeEnum.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/types/TypeEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAnyOf/types/TypeEnum.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/types/TypeEnum.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAnyOf/types/Vehicle.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/types/Vehicle.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAnyOf/types/Vehicle.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/types/Vehicle.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAnyOf/types/VehicleChoice.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/types/VehicleChoice.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAnyOf/types/VehicleChoice.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/types/VehicleChoice.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/SUVSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/SUVSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/SUVSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/SUVSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/carSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/carSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/carSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/carSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/electricCarSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/electricCarSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/electricCarSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/electricCarSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/sedanSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/sedanSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/sedanSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/sedanSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/typeEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/typeEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/typeEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/typeEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/vehicleChoiceSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/vehicleChoiceSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/vehicleChoiceSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/vehicleChoiceSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/vehicleSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/vehicleSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/vehicleSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorAnyOf/zod/vehicleSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorImplicit/zod/animalSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorImplicit/zod/animalSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorImplicit/zod/animalSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorImplicit/zod/animalSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorImplicit/zod/catSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorImplicit/zod/catSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorImplicit/zod/catSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorImplicit/zod/catSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorImplicit/zod/dogSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorImplicit/zod/dogSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorImplicit/zod/dogSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorImplicit/zod/dogSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorImplicit/zod/petSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorImplicit/zod/petSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorImplicit/zod/petSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorImplicit/zod/petSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOf/types/Car.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/types/Car.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOf/types/Car.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/types/Car.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOf/types/ElectricCar.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/types/ElectricCar.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOf/types/ElectricCar.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/types/ElectricCar.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOf/types/ElectricCarTypeEnum.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/types/ElectricCarTypeEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOf/types/ElectricCarTypeEnum.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/types/ElectricCarTypeEnum.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOf/types/SUV.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/types/SUV.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOf/types/SUV.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/types/SUV.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOf/types/SUVTypeEnum.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/types/SUVTypeEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOf/types/SUVTypeEnum.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/types/SUVTypeEnum.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOf/types/Sedan.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/types/Sedan.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOf/types/Sedan.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/types/Sedan.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOf/types/SedanTypeEnum.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/types/SedanTypeEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOf/types/SedanTypeEnum.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/types/SedanTypeEnum.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOf/types/Vehicle.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/types/Vehicle.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOf/types/Vehicle.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/types/Vehicle.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOf/types/VehicleChoice.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/types/VehicleChoice.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOf/types/VehicleChoice.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/types/VehicleChoice.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOf/zod/SUVSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/zod/SUVSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOf/zod/SUVSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/zod/SUVSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOf/zod/SUVTypeEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/zod/SUVTypeEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOf/zod/SUVTypeEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/zod/SUVTypeEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOf/zod/carSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/zod/carSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOf/zod/carSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/zod/carSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOf/zod/electricCarSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/zod/electricCarSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOf/zod/electricCarSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/zod/electricCarSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOf/zod/electricCarTypeEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/zod/electricCarTypeEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOf/zod/electricCarTypeEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/zod/electricCarTypeEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOf/zod/sedanSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/zod/sedanSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOf/zod/sedanSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/zod/sedanSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOf/zod/sedanTypeEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/zod/sedanTypeEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOf/zod/sedanTypeEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/zod/sedanTypeEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOf/zod/vehicleChoiceSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/zod/vehicleChoiceSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOf/zod/vehicleChoiceSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/zod/vehicleChoiceSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOf/zod/vehicleSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/zod/vehicleSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOf/zod/vehicleSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOf/zod/vehicleSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOfExternalRef/zod/notificationTypeSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfExternalRef/zod/notificationTypeSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOfExternalRef/zod/notificationTypeSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfExternalRef/zod/notificationTypeSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOfExternalRef/zod/orderCreatedNotificationDTOSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfExternalRef/zod/orderCreatedNotificationDTOSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOfExternalRef/zod/orderCreatedNotificationDTOSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfExternalRef/zod/orderCreatedNotificationDTOSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOfExternalRef/zod/pingNotificationDTOSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfExternalRef/zod/pingNotificationDTOSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOfExternalRef/zod/pingNotificationDTOSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfExternalRef/zod/pingNotificationDTOSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOfExternalRef/zod/sendNotificationRequestSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfExternalRef/zod/sendNotificationRequestSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOfExternalRef/zod/sendNotificationRequestSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfExternalRef/zod/sendNotificationRequestSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/SUVSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/SUVSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/SUVSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/SUVSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/SUVTypeEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/SUVTypeEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/SUVTypeEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/SUVTypeEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/carSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/carSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/carSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/carSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/electricCarSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/electricCarSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/electricCarSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/electricCarSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/electricCarTypeEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/electricCarTypeEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/electricCarTypeEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/electricCarTypeEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/sedanSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/sedanSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/sedanSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/sedanSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/sedanTypeEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/sedanTypeEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/sedanTypeEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/sedanTypeEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/vehicleChoiceSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/vehicleChoiceSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/vehicleChoiceSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/vehicleChoiceSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/vehicleSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/vehicleSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/vehicleSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/discriminatorOneOfMini/zod/vehicleSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/duplicateEnum/types/GetNotifications.ts b/tests/openapi/3.0.x/__snapshots__/main/duplicateEnum/types/GetNotifications.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/duplicateEnum/types/GetNotifications.ts rename to tests/openapi/3.0.x/__snapshots__/main/duplicateEnum/types/GetNotifications.ts diff --git a/tests/3.0.x/__snapshots__/main/duplicateEnum/types/NotificationTypeA.ts b/tests/openapi/3.0.x/__snapshots__/main/duplicateEnum/types/NotificationTypeA.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/duplicateEnum/types/NotificationTypeA.ts rename to tests/openapi/3.0.x/__snapshots__/main/duplicateEnum/types/NotificationTypeA.ts diff --git a/tests/3.0.x/__snapshots__/main/duplicateEnum/types/NotificationTypeAParamsChannelEnum.ts b/tests/openapi/3.0.x/__snapshots__/main/duplicateEnum/types/NotificationTypeAParamsChannelEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/duplicateEnum/types/NotificationTypeAParamsChannelEnum.ts rename to tests/openapi/3.0.x/__snapshots__/main/duplicateEnum/types/NotificationTypeAParamsChannelEnum.ts diff --git a/tests/3.0.x/__snapshots__/main/duplicateEnum/types/NotificationTypeB.ts b/tests/openapi/3.0.x/__snapshots__/main/duplicateEnum/types/NotificationTypeB.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/duplicateEnum/types/NotificationTypeB.ts rename to tests/openapi/3.0.x/__snapshots__/main/duplicateEnum/types/NotificationTypeB.ts diff --git a/tests/3.0.x/__snapshots__/main/duplicateEnum/types/NotificationTypeBParamsChannelEnum.ts b/tests/openapi/3.0.x/__snapshots__/main/duplicateEnum/types/NotificationTypeBParamsChannelEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/duplicateEnum/types/NotificationTypeBParamsChannelEnum.ts rename to tests/openapi/3.0.x/__snapshots__/main/duplicateEnum/types/NotificationTypeBParamsChannelEnum.ts diff --git a/tests/3.0.x/__snapshots__/main/issue2619/zod/contactDetailsTypeSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/issue2619/zod/contactDetailsTypeSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/issue2619/zod/contactDetailsTypeSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/issue2619/zod/contactDetailsTypeSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/issue2619/zod/createReturnTypeASchema.ts b/tests/openapi/3.0.x/__snapshots__/main/issue2619/zod/createReturnTypeASchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/issue2619/zod/createReturnTypeASchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/issue2619/zod/createReturnTypeASchema.ts diff --git a/tests/3.0.x/__snapshots__/main/issue2619/zod/createReturnTypeBSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/issue2619/zod/createReturnTypeBSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/issue2619/zod/createReturnTypeBSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/issue2619/zod/createReturnTypeBSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/issue2619/zod/parcelSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/issue2619/zod/parcelSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/issue2619/zod/parcelSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/issue2619/zod/parcelSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/issue2619/zod/productDetailsSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/issue2619/zod/productDetailsSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/issue2619/zod/productDetailsSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/issue2619/zod/productDetailsSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/issue2619/zod/resultSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/issue2619/zod/resultSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/issue2619/zod/resultSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/issue2619/zod/resultSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/issue2619/zod/resultStateEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/issue2619/zod/resultStateEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/issue2619/zod/resultStateEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/issue2619/zod/resultStateEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/issue2619/zod/typeARequestSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/issue2619/zod/typeARequestSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/issue2619/zod/typeARequestSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/issue2619/zod/typeARequestSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/issue2619/zod/typeBRequestSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/issue2619/zod/typeBRequestSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/issue2619/zod/typeBRequestSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/issue2619/zod/typeBRequestSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/issue2696/types/AppState.ts b/tests/openapi/3.0.x/__snapshots__/main/issue2696/types/AppState.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/issue2696/types/AppState.ts rename to tests/openapi/3.0.x/__snapshots__/main/issue2696/types/AppState.ts diff --git a/tests/3.0.x/__snapshots__/main/issue2696/types/Employer.ts b/tests/openapi/3.0.x/__snapshots__/main/issue2696/types/Employer.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/issue2696/types/Employer.ts rename to tests/openapi/3.0.x/__snapshots__/main/issue2696/types/Employer.ts diff --git a/tests/3.0.x/__snapshots__/main/issue2696/types/GetEmployers.ts b/tests/openapi/3.0.x/__snapshots__/main/issue2696/types/GetEmployers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/issue2696/types/GetEmployers.ts rename to tests/openapi/3.0.x/__snapshots__/main/issue2696/types/GetEmployers.ts diff --git a/tests/3.0.x/__snapshots__/main/issue2696/types/GetMe.ts b/tests/openapi/3.0.x/__snapshots__/main/issue2696/types/GetMe.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/issue2696/types/GetMe.ts rename to tests/openapi/3.0.x/__snapshots__/main/issue2696/types/GetMe.ts diff --git a/tests/3.0.x/__snapshots__/main/issue2696/types/User.ts b/tests/openapi/3.0.x/__snapshots__/main/issue2696/types/User.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/issue2696/types/User.ts rename to tests/openapi/3.0.x/__snapshots__/main/issue2696/types/User.ts diff --git a/tests/3.0.x/__snapshots__/main/noTagsDotOperationId/types/Config.ts b/tests/openapi/3.0.x/__snapshots__/main/noTagsDotOperationId/types/Config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/noTagsDotOperationId/types/Config.ts rename to tests/openapi/3.0.x/__snapshots__/main/noTagsDotOperationId/types/Config.ts diff --git a/tests/3.0.x/__snapshots__/main/noTagsDotOperationId/types/ConfigCreate.ts b/tests/openapi/3.0.x/__snapshots__/main/noTagsDotOperationId/types/ConfigCreate.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/noTagsDotOperationId/types/ConfigCreate.ts rename to tests/openapi/3.0.x/__snapshots__/main/noTagsDotOperationId/types/ConfigCreate.ts diff --git a/tests/3.0.x/__snapshots__/main/noTagsDotOperationId/types/config/CreateConfigV20250.ts b/tests/openapi/3.0.x/__snapshots__/main/noTagsDotOperationId/types/config/CreateConfigV20250.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/noTagsDotOperationId/types/config/CreateConfigV20250.ts rename to tests/openapi/3.0.x/__snapshots__/main/noTagsDotOperationId/types/config/CreateConfigV20250.ts diff --git a/tests/3.0.x/__snapshots__/main/noTagsDotOperationId/types/config/GetConfigIdV20250.ts b/tests/openapi/3.0.x/__snapshots__/main/noTagsDotOperationId/types/config/GetConfigIdV20250.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/noTagsDotOperationId/types/config/GetConfigIdV20250.ts rename to tests/openapi/3.0.x/__snapshots__/main/noTagsDotOperationId/types/config/GetConfigIdV20250.ts diff --git a/tests/3.0.x/__snapshots__/main/petStore/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/main/petStore/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/petStore/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/main/petStore/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/main/petStore/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/main/petStore/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/petStore/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/main/petStore/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/main/petStore/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/main/petStore/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/petStore/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/main/petStore/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/main/petStore/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/main/petStore/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/petStore/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/main/petStore/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/main/petStore/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/main/petStore/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/petStore/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/main/petStore/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/main/petStore/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/main/petStore/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/petStore/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/main/petStore/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/main/petStore/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/main/petStore/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/petStore/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/main/petStore/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/main/petStore/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/main/petStore/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/petStore/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/main/petStore/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/main/petStore/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/main/petStore/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/petStore/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/main/petStore/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/main/petStore/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/main/petStore/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/petStore/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/main/petStore/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/main/petStore/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/main/petStore/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/petStore/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/main/petStore/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/main/petStore/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/main/petStore/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/petStore/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/main/petStore/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/main/petStore/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/main/petStore/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/petStore/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/main/petStore/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/main/petStore/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/main/petStore/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/petStore/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/main/petStore/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/main/petStore/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/main/petStore/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/petStore/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/main/petStore/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/main/petStore/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/main/petStore/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/petStore/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/main/petStore/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/main/petStore/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/main/petStore/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/petStore/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/main/petStore/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/main/printerNodesZod/zod/getItemSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/printerNodesZod/zod/getItemSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/printerNodesZod/zod/getItemSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/printerNodesZod/zod/getItemSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/printerNodesZod/zod/itemSchema.ts b/tests/openapi/3.0.x/__snapshots__/main/printerNodesZod/zod/itemSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/printerNodesZod/zod/itemSchema.ts rename to tests/openapi/3.0.x/__snapshots__/main/printerNodesZod/zod/itemSchema.ts diff --git a/tests/3.0.x/__snapshots__/main/resolverCustomPrefix/types/GetItem.ts b/tests/openapi/3.0.x/__snapshots__/main/resolverCustomPrefix/types/GetItem.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/resolverCustomPrefix/types/GetItem.ts rename to tests/openapi/3.0.x/__snapshots__/main/resolverCustomPrefix/types/GetItem.ts diff --git a/tests/3.0.x/__snapshots__/main/resolverCustomPrefix/types/Item.ts b/tests/openapi/3.0.x/__snapshots__/main/resolverCustomPrefix/types/Item.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/resolverCustomPrefix/types/Item.ts rename to tests/openapi/3.0.x/__snapshots__/main/resolverCustomPrefix/types/Item.ts diff --git a/tests/3.0.x/__snapshots__/main/simple/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/main/simple/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/simple/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/main/simple/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/main/simple/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/main/simple/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/simple/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/main/simple/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/main/simple/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/main/simple/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/simple/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/main/simple/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/main/simple/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/main/simple/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/simple/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/main/simple/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/main/simple/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/main/simple/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/simple/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/main/simple/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/main/simple/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/main/simple/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/simple/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/main/simple/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/main/simple/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/main/simple/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/simple/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/main/simple/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/main/simple/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/main/simple/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/simple/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/main/simple/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/main/simple/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/main/simple/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/simple/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/main/simple/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/main/simple/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/main/simple/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/simple/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/main/simple/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/main/simple/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/main/simple/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/simple/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/main/simple/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/main/simple/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/main/simple/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/simple/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/main/simple/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/main/simple/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/main/simple/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/simple/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/main/simple/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/main/simple/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/main/simple/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/simple/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/main/simple/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/main/simple/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/main/simple/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/simple/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/main/simple/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/main/simple/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/main/simple/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/simple/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/main/simple/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/main/simple/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/main/simple/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/simple/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/main/simple/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/main/transformerStripDescriptions/types/GetItem.ts b/tests/openapi/3.0.x/__snapshots__/main/transformerStripDescriptions/types/GetItem.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/transformerStripDescriptions/types/GetItem.ts rename to tests/openapi/3.0.x/__snapshots__/main/transformerStripDescriptions/types/GetItem.ts diff --git a/tests/3.0.x/__snapshots__/main/transformerStripDescriptions/types/Item.ts b/tests/openapi/3.0.x/__snapshots__/main/transformerStripDescriptions/types/Item.ts similarity index 100% rename from tests/3.0.x/__snapshots__/main/transformerStripDescriptions/types/Item.ts rename to tests/openapi/3.0.x/__snapshots__/main/transformerStripDescriptions/types/Item.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/default/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/default/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/default/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/paramsCasing/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/paramsCasing/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/paramsCasing/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/paramsCasing/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/paramsCasing/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/paramsCasing/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/paramsCasing/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/paramsCasing/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/paramsCasing/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/paramsCasing/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/paramsCasing/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/paramsCasing/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/paramsCasing/clients/updatePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/paramsCasing/clients/updatePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/paramsCasing/clients/updatePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/paramsCasing/clients/updatePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/paramsCasing/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/paramsCasing/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/paramsCasing/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/paramsCasing/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/paramsCasing/types/PetUpdate.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/paramsCasing/types/PetUpdate.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/paramsCasing/types/PetUpdate.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/paramsCasing/types/PetUpdate.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/paramsCasing/types/UpdatePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/paramsCasing/types/UpdatePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/paramsCasing/types/UpdatePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/paramsCasing/types/UpdatePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClass/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClass/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClass/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClass/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClass/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClass/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClass/clients/petClient.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/clients/petClient.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClass/clients/petClient.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/clients/petClient.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClass/clients/storeClient.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/clients/storeClient.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClass/clients/storeClient.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/clients/storeClient.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClass/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClass/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/clients/petClient.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/clients/petClient.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/clients/petClient.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/clients/petClient.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/clients/petStore.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/clients/petStore.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/clients/petStore.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/clients/petStore.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/clients/storeClient.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/clients/storeClient.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/clients/storeClient.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/clients/storeClient.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkClassWithName/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/clients/petStore.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/clients/petStore.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/clients/petStore.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/clients/petStore.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/sdkSingle/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createAddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createAddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createAddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createAddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createAddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createAddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createAddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createAddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createCategory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createCategory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createCategory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createCategory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createFindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createFindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createFindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createFindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createOrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createOrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createOrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createOrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createPetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createPetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createPetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createPetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createPlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createPlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createPlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createPlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createTag.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createTag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createTag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createTag.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/faker/createUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/dateParserDayjs/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createAddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createAddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createAddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createAddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createAddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createAddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createAddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createAddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createCategory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createCategory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createCategory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createCategory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createFindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createFindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createFindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createFindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createOrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createOrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createOrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createOrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createPetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createPetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createPetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createPetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createPlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createPlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createPlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createPlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createTag.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createTag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createTag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createTag.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/faker/createUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/excludeByOperationId/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createAddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createAddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createAddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createAddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createAddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createAddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createAddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createAddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createCategory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createCategory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createCategory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createCategory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createFindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createFindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createFindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createFindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createOrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createOrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createOrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createOrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createPetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createPetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createPetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createPetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createTag.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createTag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createTag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/createTag.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/pet/createUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/store/createGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/store/createGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/store/createGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/store/createGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/store/createPlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/store/createPlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/store/createPlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/faker/store/createPlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/groupByTag/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/groupByTag/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createAddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createAddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createAddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createAddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createAddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createAddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createAddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createAddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createCategory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createCategory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createCategory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createCategory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createFindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createFindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createFindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createFindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createPetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createPetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createPetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createPetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createTag.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createTag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createTag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createTag.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/faker/createUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/includeByTag/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/includeByTag/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createAddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createAddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createAddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createAddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createAddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createAddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createAddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createAddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createCategory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createCategory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createCategory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createCategory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createFindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createFindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createFindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createFindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createOrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createOrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createOrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createOrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createPetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createPetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createPetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createPetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createPlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createPlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createPlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createPlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createTag.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createTag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createTag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createTag.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/faker/createUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/faker/createUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/locale/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/locale/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/locale/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createAddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createAddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createAddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createAddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createAddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createAddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createAddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createAddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createCategory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createCategory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createCategory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createCategory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createFindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createFindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createFindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createFindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createOrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createOrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createOrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createOrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createPetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createPetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createPetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createPetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createPlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createPlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createPlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createPlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createTag.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createTag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createTag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createTag.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/faker/createUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/faker/createUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/macros/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/macros/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/macros/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/paramsCasing/faker/createPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/paramsCasing/faker/createPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/paramsCasing/faker/createPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/paramsCasing/faker/createPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/paramsCasing/faker/createPetUpdate.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/paramsCasing/faker/createPetUpdate.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/paramsCasing/faker/createPetUpdate.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/paramsCasing/faker/createPetUpdate.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/paramsCasing/faker/createUpdatePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/paramsCasing/faker/createUpdatePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/paramsCasing/faker/createUpdatePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/paramsCasing/faker/createUpdatePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/paramsCasing/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/paramsCasing/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/paramsCasing/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/paramsCasing/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/paramsCasing/types/PetUpdate.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/paramsCasing/types/PetUpdate.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/paramsCasing/types/PetUpdate.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/paramsCasing/types/PetUpdate.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/paramsCasing/types/UpdatePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/paramsCasing/types/UpdatePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/paramsCasing/types/UpdatePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/paramsCasing/types/UpdatePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createAddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createAddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createAddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createAddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createAddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createAddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createAddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createAddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createCategory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createCategory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createCategory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createCategory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createFindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createFindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createFindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createFindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createOrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createOrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createOrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createOrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createPetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createPetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createPetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createPetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createPlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createPlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createPlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createPlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createTag.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createTag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createTag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createTag.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/faker/createUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/faker/createUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/petStore/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/petStore/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/petStore/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createAddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createAddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createAddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createAddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createAddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createAddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createAddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createAddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createCategory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createCategory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createCategory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createCategory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createFindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createFindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createFindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createFindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createOrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createOrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createOrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createOrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createPetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createPetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createPetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createPetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createPlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createPlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createPlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createPlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createTag.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createTag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createTag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createTag.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/faker/createUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/regexGeneratorRandexp/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createAddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createAddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createAddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createAddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createAddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createAddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createAddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createAddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createCategory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createCategory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createCategory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createCategory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createFindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createFindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createFindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createFindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createOrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createOrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createOrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createOrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createPetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createPetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createPetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createPetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createPlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createPlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createPlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createPlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createTag.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createTag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createTag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createTag.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/faker/createUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/faker/createUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginFaker/seed/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFaker/seed/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFaker/seed/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/default/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/default/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/default/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/paramsCasing/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/paramsCasing/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/paramsCasing/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/paramsCasing/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/paramsCasing/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/paramsCasing/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/paramsCasing/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/paramsCasing/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/paramsCasing/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/paramsCasing/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/paramsCasing/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/paramsCasing/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/paramsCasing/clients/updatePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/paramsCasing/clients/updatePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/paramsCasing/clients/updatePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/paramsCasing/clients/updatePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/paramsCasing/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/paramsCasing/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/paramsCasing/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/paramsCasing/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/paramsCasing/types/PetUpdate.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/paramsCasing/types/PetUpdate.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/paramsCasing/types/PetUpdate.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/paramsCasing/types/PetUpdate.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/paramsCasing/types/UpdatePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/paramsCasing/types/UpdatePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/paramsCasing/types/UpdatePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/paramsCasing/types/UpdatePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClass/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClass/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClass/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClass/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClass/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClass/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClass/clients/petClient.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/clients/petClient.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClass/clients/petClient.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/clients/petClient.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClass/clients/storeClient.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/clients/storeClient.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClass/clients/storeClient.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/clients/storeClient.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClass/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClass/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/clients/petClient.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/clients/petClient.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/clients/petClient.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/clients/petClient.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/clients/petStore.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/clients/petStore.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/clients/petStore.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/clients/petStore.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/clients/storeClient.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/clients/storeClient.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/clients/storeClient.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/clients/storeClient.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkClassWithName/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/clients/petStore.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/clients/petStore.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/clients/petStore.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/clients/petStore.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/sdkSingle/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/.mcp.json b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/.mcp.json similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/.mcp.json rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/.mcp.json diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/server.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/server.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/server.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/server.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/mcp/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/addPetRequestSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/addPetRequestSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/addPetRequestSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/addPetRequestSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/addPetRequestStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/addPetRequestStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/addPetRequestStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/addPetRequestStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/addPetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/addPetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/addPetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/addPetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/apiResponseSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/apiResponseSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/apiResponseSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/apiResponseSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/categorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/categorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/categorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/categorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/deletePetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/deletePetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/deletePetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/deletePetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/findPetsByStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/findPetsByStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/findPetsByStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/findPetsByStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/findPetsByStatusStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/findPetsByStatusStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/findPetsByStatusStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/findPetsByStatusStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/getInventorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/getInventorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/getInventorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/getInventorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/getPetByIdSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/getPetByIdSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/getPetByIdSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/getPetByIdSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/orderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/orderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/orderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/orderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/orderStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/orderStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/orderStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/orderStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/petSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/petSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/petSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/petSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/petStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/petStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/petStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/petStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/placeOrderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/placeOrderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/placeOrderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/placeOrderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/tagSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/tagSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/tagSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/tagSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/uploadFileSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/uploadFileSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/uploadFileSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/excludeByOperationId/zod/uploadFileSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/.mcp.json b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/.mcp.json similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/.mcp.json rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/.mcp.json diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/pet/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/server.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/server.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/server.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/server.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/store/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/store/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/store/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/store/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/store/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/store/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/store/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/mcp/store/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/addPetRequestSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/addPetRequestSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/addPetRequestSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/addPetRequestSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/addPetRequestStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/addPetRequestStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/addPetRequestStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/addPetRequestStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/addPetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/addPetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/addPetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/addPetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/apiResponseSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/apiResponseSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/apiResponseSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/apiResponseSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/categorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/categorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/categorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/categorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/deletePetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/deletePetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/deletePetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/deletePetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/findPetsByStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/findPetsByStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/findPetsByStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/findPetsByStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/findPetsByStatusStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/findPetsByStatusStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/findPetsByStatusStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/findPetsByStatusStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/getInventorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/getInventorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/getInventorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/getInventorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/getPetByIdSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/getPetByIdSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/getPetByIdSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/getPetByIdSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/orderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/orderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/orderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/orderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/orderStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/orderStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/orderStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/orderStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/petSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/petSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/petSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/petSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/petStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/petStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/petStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/petStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/placeOrderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/placeOrderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/placeOrderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/placeOrderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/tagSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/tagSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/tagSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/tagSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/uploadFileSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/uploadFileSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/uploadFileSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/groupByTag/zod/uploadFileSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/.mcp.json b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/.mcp.json similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/.mcp.json rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/.mcp.json diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/server.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/server.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/server.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/server.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/mcp/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/addPetRequestSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/addPetRequestSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/addPetRequestSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/addPetRequestSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/addPetRequestStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/addPetRequestStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/addPetRequestStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/addPetRequestStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/addPetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/addPetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/addPetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/addPetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/apiResponseSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/apiResponseSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/apiResponseSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/apiResponseSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/categorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/categorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/categorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/categorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/deletePetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/deletePetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/deletePetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/deletePetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/findPetsByStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/findPetsByStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/findPetsByStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/findPetsByStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/findPetsByStatusStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/findPetsByStatusStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/findPetsByStatusStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/findPetsByStatusStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/getInventorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/getInventorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/getInventorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/getInventorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/getPetByIdSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/getPetByIdSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/getPetByIdSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/getPetByIdSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/orderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/orderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/orderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/orderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/orderStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/orderStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/orderStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/orderStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/petSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/petSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/petSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/petSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/petStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/petStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/petStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/petStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/placeOrderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/placeOrderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/placeOrderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/placeOrderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/tagSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/tagSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/tagSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/tagSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/uploadFileSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/uploadFileSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/uploadFileSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/includeByTag/zod/uploadFileSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/clients/updatePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/clients/updatePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/clients/updatePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/clients/updatePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/mcp/.mcp.json b/tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/mcp/.mcp.json similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/mcp/.mcp.json rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/mcp/.mcp.json diff --git a/tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/mcp/server.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/mcp/server.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/mcp/server.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/mcp/server.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/mcp/updatePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/mcp/updatePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/mcp/updatePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/mcp/updatePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/types/PetUpdate.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/types/PetUpdate.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/types/PetUpdate.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/types/PetUpdate.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/types/UpdatePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/types/UpdatePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/types/UpdatePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/types/UpdatePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/zod/petSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/zod/petSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/zod/petSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/zod/petSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/zod/petUpdateSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/zod/petUpdateSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/zod/petUpdateSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/zod/petUpdateSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/zod/updatePetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/zod/updatePetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/paramsCasing/zod/updatePetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/paramsCasing/zod/updatePetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/mcp/.mcp.json b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/mcp/.mcp.json similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/mcp/.mcp.json rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/mcp/.mcp.json diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/mcp/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/mcp/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/mcp/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/mcp/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/mcp/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/mcp/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/mcp/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/mcp/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/mcp/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/mcp/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/mcp/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/mcp/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/mcp/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/mcp/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/mcp/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/mcp/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/mcp/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/mcp/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/mcp/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/mcp/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/mcp/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/mcp/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/mcp/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/mcp/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/mcp/server.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/mcp/server.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/mcp/server.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/mcp/server.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/mcp/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/mcp/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/mcp/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/mcp/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/addPetRequestSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/addPetRequestSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/addPetRequestSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/addPetRequestSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/addPetRequestStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/addPetRequestStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/addPetRequestStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/addPetRequestStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/addPetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/addPetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/addPetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/addPetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/apiResponseSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/apiResponseSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/apiResponseSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/apiResponseSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/categorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/categorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/categorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/categorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/deletePetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/deletePetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/deletePetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/deletePetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/findPetsByStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/findPetsByStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/findPetsByStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/findPetsByStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/findPetsByStatusStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/findPetsByStatusStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/findPetsByStatusStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/findPetsByStatusStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/getInventorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/getInventorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/getInventorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/getInventorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/getPetByIdSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/getPetByIdSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/getPetByIdSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/getPetByIdSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/orderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/orderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/orderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/orderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/orderStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/orderStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/orderStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/orderStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/petSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/petSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/petSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/petSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/petStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/petStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/petStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/petStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/placeOrderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/placeOrderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/placeOrderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/placeOrderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/tagSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/tagSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/tagSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/tagSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/uploadFileSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/uploadFileSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/petStore/zod/uploadFileSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/petStore/zod/uploadFileSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/.mcp.json b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/.mcp.json similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/.mcp.json rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/.mcp.json diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/server.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/server.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/server.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/server.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/mcp/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/addPetRequestSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/addPetRequestSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/addPetRequestSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/addPetRequestSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/addPetRequestStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/addPetRequestStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/addPetRequestStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/addPetRequestStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/addPetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/addPetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/addPetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/addPetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/apiResponseSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/apiResponseSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/apiResponseSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/apiResponseSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/categorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/categorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/categorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/categorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/deletePetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/deletePetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/deletePetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/deletePetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/findPetsByStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/findPetsByStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/findPetsByStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/findPetsByStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/findPetsByStatusStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/findPetsByStatusStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/findPetsByStatusStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/findPetsByStatusStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/getInventorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/getInventorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/getInventorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/getInventorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/getPetByIdSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/getPetByIdSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/getPetByIdSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/getPetByIdSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/orderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/orderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/orderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/orderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/orderStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/orderStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/orderStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/orderStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/petSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/petSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/petSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/petSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/petStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/petStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/petStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/petStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/placeOrderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/placeOrderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/placeOrderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/placeOrderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/tagSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/tagSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/tagSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/tagSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/uploadFileSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/uploadFileSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/uploadFileSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMcp/withClientPlugin/zod/uploadFileSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/msw/addPetHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/msw/addPetHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/msw/addPetHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/msw/addPetHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/msw/deletePetHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/msw/deletePetHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/msw/deletePetHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/msw/deletePetHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/msw/findPetsByStatusHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/msw/findPetsByStatusHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/msw/findPetsByStatusHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/msw/findPetsByStatusHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/msw/getInventoryHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/msw/getInventoryHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/msw/getInventoryHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/msw/getInventoryHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/msw/getPetByIdHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/msw/getPetByIdHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/msw/getPetByIdHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/msw/getPetByIdHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/msw/placeOrderHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/msw/placeOrderHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/msw/placeOrderHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/msw/placeOrderHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/msw/uploadFileHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/msw/uploadFileHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/msw/uploadFileHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/msw/uploadFileHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/baseURL/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/baseURL/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/findPetsByStatusHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/findPetsByStatusHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/findPetsByStatusHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/findPetsByStatusHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/getInventoryHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/getInventoryHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/getInventoryHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/getInventoryHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/getPetByIdHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/getPetByIdHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/getPetByIdHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/getPetByIdHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/placeOrderHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/placeOrderHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/placeOrderHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/placeOrderHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/uploadFileHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/uploadFileHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/uploadFileHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/msw/uploadFileHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/excludeByOperationId/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/addPetHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/addPetHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/addPetHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/addPetHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/deletePetHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/deletePetHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/deletePetHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/deletePetHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/findPetsByStatusHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/findPetsByStatusHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/findPetsByStatusHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/findPetsByStatusHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/getPetByIdHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/getPetByIdHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/getPetByIdHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/getPetByIdHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/uploadFileHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/uploadFileHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/uploadFileHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/pet/uploadFileHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/store/getInventoryHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/store/getInventoryHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/store/getInventoryHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/store/getInventoryHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/store/placeOrderHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/store/placeOrderHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/store/placeOrderHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/msw/store/placeOrderHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/groupByTag/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/groupByTag/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/msw/addPetHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/msw/addPetHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/msw/addPetHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/msw/addPetHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/msw/deletePetHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/msw/deletePetHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/msw/deletePetHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/msw/deletePetHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/msw/findPetsByStatusHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/msw/findPetsByStatusHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/msw/findPetsByStatusHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/msw/findPetsByStatusHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/msw/getInventoryHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/msw/getInventoryHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/msw/getInventoryHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/msw/getInventoryHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/msw/getPetByIdHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/msw/getPetByIdHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/msw/getPetByIdHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/msw/getPetByIdHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/msw/handlers.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/msw/handlers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/msw/handlers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/msw/handlers.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/msw/placeOrderHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/msw/placeOrderHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/msw/placeOrderHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/msw/placeOrderHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/msw/uploadFileHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/msw/uploadFileHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/msw/uploadFileHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/msw/uploadFileHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/handlers/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/handlers/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/handlers/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/addPetHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/addPetHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/addPetHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/addPetHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/deletePetHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/deletePetHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/deletePetHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/deletePetHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/findPetsByStatusHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/findPetsByStatusHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/findPetsByStatusHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/findPetsByStatusHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/getPetByIdHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/getPetByIdHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/getPetByIdHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/getPetByIdHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/uploadFileHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/uploadFileHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/uploadFileHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/msw/uploadFileHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/includeByTag/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/includeByTag/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createAddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createAddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createAddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createAddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createAddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createAddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createAddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createAddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createCategory.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createCategory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createCategory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createCategory.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createFindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createFindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createFindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createFindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createOrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createOrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createOrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createOrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createPetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createPetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createPetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createPetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createPlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createPlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createPlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createPlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createTag.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createTag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createTag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createTag.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/faker/createUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/addPetHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/addPetHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/addPetHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/addPetHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/deletePetHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/deletePetHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/deletePetHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/deletePetHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/findPetsByStatusHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/findPetsByStatusHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/findPetsByStatusHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/findPetsByStatusHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/getInventoryHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/getInventoryHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/getInventoryHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/getInventoryHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/getPetByIdHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/getPetByIdHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/getPetByIdHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/getPetByIdHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/placeOrderHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/placeOrderHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/placeOrderHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/placeOrderHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/uploadFileHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/uploadFileHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/uploadFileHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/msw/uploadFileHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/parserFaker/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/parserFaker/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/msw/addPetHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/msw/addPetHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/msw/addPetHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/msw/addPetHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/msw/deletePetHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/msw/deletePetHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/msw/deletePetHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/msw/deletePetHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/msw/findPetsByStatusHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/msw/findPetsByStatusHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/msw/findPetsByStatusHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/msw/findPetsByStatusHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/msw/getInventoryHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/msw/getInventoryHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/msw/getInventoryHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/msw/getInventoryHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/msw/getPetByIdHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/msw/getPetByIdHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/msw/getPetByIdHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/msw/getPetByIdHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/msw/placeOrderHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/msw/placeOrderHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/msw/placeOrderHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/msw/placeOrderHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/msw/uploadFileHandler.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/msw/uploadFileHandler.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/msw/uploadFileHandler.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/msw/uploadFileHandler.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginMsw/petStore/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginMsw/petStore/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginMsw/petStore/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useFindPetsByStatusSuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useFindPetsByStatusSuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useFindPetsByStatusSuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useFindPetsByStatusSuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useGetInventorySuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useGetInventorySuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useGetInventorySuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useGetInventorySuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useGetPetByIdSuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useGetPetByIdSuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useGetPetByIdSuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useGetPetByIdSuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/usePlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/usePlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/usePlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/usePlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/hooks/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/excludeByOperationId/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useFindPetsByStatusSuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useFindPetsByStatusSuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useFindPetsByStatusSuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useFindPetsByStatusSuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useGetPetByIdSuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useGetPetByIdSuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useGetPetByIdSuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useGetPetByIdSuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/pet/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/store/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/store/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/store/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/store/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/store/useGetInventorySuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/store/useGetInventorySuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/store/useGetInventorySuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/store/useGetInventorySuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/store/usePlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/store/usePlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/store/usePlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/hooks/store/usePlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/groupByTag/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useFindPetsByStatusSuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useFindPetsByStatusSuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useFindPetsByStatusSuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useFindPetsByStatusSuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useGetPetByIdSuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useGetPetByIdSuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useGetPetByIdSuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useGetPetByIdSuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/hooks/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/includeByTag/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useFindPetsByStatusSuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useFindPetsByStatusSuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useFindPetsByStatusSuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useFindPetsByStatusSuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useGetInventorySuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useGetInventorySuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useGetInventorySuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useGetInventorySuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useGetPetByIdSuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useGetPetByIdSuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useGetPetByIdSuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useGetPetByIdSuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/usePlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/usePlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/usePlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/usePlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/hooks/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/infinite/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/infinite/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useFindPetsByStatusSuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useFindPetsByStatusSuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useFindPetsByStatusSuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useFindPetsByStatusSuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useGetInventorySuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useGetInventorySuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useGetInventorySuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useGetInventorySuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useGetPetByIdSuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useGetPetByIdSuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useGetPetByIdSuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/hooks/useGetPetByIdSuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/mutationDisabled/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/clients/updatePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/clients/updatePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/clients/updatePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/clients/updatePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/hooks/useUpdatePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/hooks/useUpdatePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/hooks/useUpdatePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/hooks/useUpdatePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/types/PetUpdate.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/types/PetUpdate.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/types/PetUpdate.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/types/PetUpdate.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/types/UpdatePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/types/UpdatePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/types/UpdatePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/paramsCasing/types/UpdatePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useFindPetsByStatusSuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useFindPetsByStatusSuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useFindPetsByStatusSuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useFindPetsByStatusSuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useGetInventorySuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useGetInventorySuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useGetInventorySuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useGetInventorySuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useGetPetByIdSuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useGetPetByIdSuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useGetPetByIdSuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useGetPetByIdSuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/usePlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/usePlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/usePlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/usePlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/hooks/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/addPetRequestSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/addPetRequestSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/addPetRequestSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/addPetRequestSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/addPetRequestStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/addPetRequestStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/addPetRequestStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/addPetRequestStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/addPetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/addPetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/addPetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/addPetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/apiResponseSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/apiResponseSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/apiResponseSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/apiResponseSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/categorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/categorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/categorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/categorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/deletePetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/deletePetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/deletePetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/deletePetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/findPetsByStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/findPetsByStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/findPetsByStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/findPetsByStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/findPetsByStatusStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/findPetsByStatusStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/findPetsByStatusStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/findPetsByStatusStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/getInventorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/getInventorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/getInventorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/getInventorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/getPetByIdSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/getPetByIdSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/getPetByIdSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/getPetByIdSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/orderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/orderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/orderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/orderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/orderStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/orderStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/orderStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/orderStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/petSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/petSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/petSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/petSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/petStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/petStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/petStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/petStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/placeOrderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/placeOrderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/placeOrderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/placeOrderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/tagSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/tagSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/tagSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/tagSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/uploadFileSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/uploadFileSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/uploadFileSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/parserZod/zod/uploadFileSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useFindPetsByStatusSuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useFindPetsByStatusSuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useFindPetsByStatusSuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useFindPetsByStatusSuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useGetInventorySuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useGetInventorySuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useGetInventorySuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useGetInventorySuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useGetPetByIdSuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useGetPetByIdSuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useGetPetByIdSuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useGetPetByIdSuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/usePlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/usePlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/usePlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/usePlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/hooks/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/petStore/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/petStore/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useFindPetsByStatusSuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useFindPetsByStatusSuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useFindPetsByStatusSuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useFindPetsByStatusSuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useGetInventorySuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useGetInventorySuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useGetInventorySuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useGetInventorySuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useGetPetByIdSuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useGetPetByIdSuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useGetPetByIdSuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useGetPetByIdSuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/usePlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/usePlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/usePlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/usePlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/hooks/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/queryMethods/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useFindPetsByStatusSuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useFindPetsByStatusSuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useFindPetsByStatusSuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useFindPetsByStatusSuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useGetInventorySuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useGetInventorySuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useGetInventorySuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useGetInventorySuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useGetPetByIdSuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useGetPetByIdSuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useGetPetByIdSuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useGetPetByIdSuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/usePlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/usePlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/usePlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/usePlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/hooks/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/suspense/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/suspense/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useFindPetsByStatusSuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useFindPetsByStatusSuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useFindPetsByStatusSuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useFindPetsByStatusSuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useGetInventorySuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useGetInventorySuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useGetInventorySuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useGetInventorySuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useGetPetByIdSuspense.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useGetPetByIdSuspense.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useGetPetByIdSuspense.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useGetPetByIdSuspense.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/usePlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/usePlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/usePlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/usePlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/hooks/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginReactQuery/withClientPlugin/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginRedoc/petStore/docs.html b/tests/openapi/3.0.x/__snapshots__/pluginRedoc/petStore/docs.html similarity index 100% rename from tests/3.0.x/__snapshots__/pluginRedoc/petStore/docs.html rename to tests/openapi/3.0.x/__snapshots__/pluginRedoc/petStore/docs.html diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/usePlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/usePlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/usePlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/usePlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/hooks/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/excludeByOperationId/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/pet/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/store/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/store/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/store/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/store/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/store/usePlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/store/usePlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/store/usePlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/hooks/store/usePlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/groupByTag/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/groupByTag/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/hooks/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/includeByTag/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/includeByTag/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/hooks/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/hooks/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/hooks/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/hooks/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/mutationDisabled/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/paramsCasing/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/paramsCasing/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/paramsCasing/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/paramsCasing/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/paramsCasing/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/paramsCasing/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/paramsCasing/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/paramsCasing/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/paramsCasing/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/paramsCasing/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/paramsCasing/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/paramsCasing/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/paramsCasing/clients/updatePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/paramsCasing/clients/updatePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/paramsCasing/clients/updatePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/paramsCasing/clients/updatePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/paramsCasing/hooks/useUpdatePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/paramsCasing/hooks/useUpdatePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/paramsCasing/hooks/useUpdatePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/paramsCasing/hooks/useUpdatePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/paramsCasing/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/paramsCasing/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/paramsCasing/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/paramsCasing/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/paramsCasing/types/PetUpdate.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/paramsCasing/types/PetUpdate.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/paramsCasing/types/PetUpdate.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/paramsCasing/types/PetUpdate.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/paramsCasing/types/UpdatePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/paramsCasing/types/UpdatePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/paramsCasing/types/UpdatePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/paramsCasing/types/UpdatePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/usePlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/usePlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/usePlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/usePlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/hooks/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/addPetRequestSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/addPetRequestSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/addPetRequestSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/addPetRequestSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/addPetRequestStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/addPetRequestStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/addPetRequestStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/addPetRequestStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/addPetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/addPetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/addPetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/addPetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/apiResponseSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/apiResponseSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/apiResponseSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/apiResponseSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/categorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/categorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/categorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/categorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/deletePetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/deletePetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/deletePetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/deletePetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/findPetsByStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/findPetsByStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/findPetsByStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/findPetsByStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/findPetsByStatusStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/findPetsByStatusStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/findPetsByStatusStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/findPetsByStatusStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/getInventorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/getInventorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/getInventorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/getInventorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/getPetByIdSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/getPetByIdSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/getPetByIdSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/getPetByIdSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/orderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/orderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/orderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/orderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/orderStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/orderStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/orderStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/orderStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/petSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/petSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/petSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/petSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/petStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/petStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/petStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/petStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/placeOrderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/placeOrderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/placeOrderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/placeOrderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/tagSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/tagSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/tagSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/tagSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/uploadFileSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/uploadFileSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/parserZod/zod/uploadFileSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/parserZod/zod/uploadFileSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/hooks/usePlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/hooks/usePlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/hooks/usePlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/hooks/usePlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/hooks/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/petStore/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/petStore/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/petStore/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/usePlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/usePlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/usePlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/usePlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/hooks/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryDisabled/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/usePlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/usePlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/usePlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/usePlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/hooks/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/queryMethods/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/queryMethods/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/usePlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/usePlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/usePlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/usePlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/hooks/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginSwr/withClientPlugin/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/excludeByOperationId/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/includeByTag/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/includeByTag/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/noTagsDotOperationId/types/Config.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/noTagsDotOperationId/types/Config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/noTagsDotOperationId/types/Config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/noTagsDotOperationId/types/Config.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/noTagsDotOperationId/types/ConfigCreate.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/noTagsDotOperationId/types/ConfigCreate.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/noTagsDotOperationId/types/ConfigCreate.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/noTagsDotOperationId/types/ConfigCreate.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/noTagsDotOperationId/types/config/CreateConfigV20250.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/noTagsDotOperationId/types/config/CreateConfigV20250.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/noTagsDotOperationId/types/config/CreateConfigV20250.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/noTagsDotOperationId/types/config/CreateConfigV20250.ts diff --git a/tests/3.0.x/__snapshots__/pluginTs/noTagsDotOperationId/types/config/GetConfigIdV20250.ts b/tests/openapi/3.0.x/__snapshots__/pluginTs/noTagsDotOperationId/types/config/GetConfigIdV20250.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginTs/noTagsDotOperationId/types/config/GetConfigIdV20250.ts rename to tests/openapi/3.0.x/__snapshots__/pluginTs/noTagsDotOperationId/types/config/GetConfigIdV20250.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/usePlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/usePlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/usePlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/usePlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/hooks/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/excludeByOperationId/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/pet/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/store/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/store/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/store/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/store/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/store/usePlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/store/usePlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/store/usePlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/hooks/store/usePlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/groupByTag/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/hooks/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/includeByTag/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/usePlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/usePlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/usePlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/usePlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/hooks/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/infinite/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/infinite/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/hooks/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/hooks/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/hooks/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/hooks/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/mutationDisabled/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/clients/updatePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/clients/updatePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/clients/updatePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/clients/updatePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/hooks/useUpdatePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/hooks/useUpdatePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/hooks/useUpdatePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/hooks/useUpdatePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/types/PetUpdate.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/types/PetUpdate.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/types/PetUpdate.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/types/PetUpdate.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/types/UpdatePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/types/UpdatePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/types/UpdatePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/paramsCasing/types/UpdatePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/usePlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/usePlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/usePlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/usePlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/hooks/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/addPetRequestSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/addPetRequestSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/addPetRequestSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/addPetRequestSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/addPetRequestStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/addPetRequestStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/addPetRequestStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/addPetRequestStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/addPetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/addPetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/addPetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/addPetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/apiResponseSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/apiResponseSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/apiResponseSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/apiResponseSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/categorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/categorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/categorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/categorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/deletePetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/deletePetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/deletePetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/deletePetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/findPetsByStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/findPetsByStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/findPetsByStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/findPetsByStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/findPetsByStatusStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/findPetsByStatusStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/findPetsByStatusStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/findPetsByStatusStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/getInventorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/getInventorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/getInventorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/getInventorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/getPetByIdSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/getPetByIdSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/getPetByIdSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/getPetByIdSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/orderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/orderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/orderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/orderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/orderStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/orderStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/orderStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/orderStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/petSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/petSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/petSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/petSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/petStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/petStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/petStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/petStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/placeOrderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/placeOrderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/placeOrderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/placeOrderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/tagSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/tagSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/tagSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/tagSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/uploadFileSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/uploadFileSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/uploadFileSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/parserZod/zod/uploadFileSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/usePlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/usePlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/usePlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/usePlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/hooks/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/petStore/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/petStore/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/.kubb/config.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/.kubb/config.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/.kubb/config.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/.kubb/config.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useAddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useAddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useAddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useAddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useDeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useDeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useDeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useDeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useFindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useFindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useFindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useFindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useGetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useGetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useGetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useGetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useGetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useGetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useGetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useGetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/usePlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/usePlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/usePlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/usePlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useUploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useUploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useUploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/hooks/useUploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/AddPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/AddPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/AddPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/AddPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/AddPetRequest.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/AddPetRequest.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/AddPetRequest.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/AddPetRequest.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/AddPetRequestStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/AddPetRequestStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/AddPetRequestStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/AddPetRequestStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/ApiResponse.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/ApiResponse.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/ApiResponse.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/ApiResponse.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/Category.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/Category.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/Category.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/Category.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/DeletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/DeletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/DeletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/DeletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/FindPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/FindPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/FindPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/FindPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/FindPetsByStatusStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/FindPetsByStatusStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/FindPetsByStatusStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/FindPetsByStatusStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/GetInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/GetInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/GetInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/GetInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/GetPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/GetPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/GetPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/GetPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/Order.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/Order.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/Order.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/Order.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/OrderStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/OrderStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/OrderStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/OrderStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/Pet.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/Pet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/Pet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/Pet.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/PetStatusEnum.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/PetStatusEnum.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/PetStatusEnum.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/PetStatusEnum.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/PlaceOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/PlaceOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/PlaceOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/PlaceOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/Tag.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/Tag.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/Tag.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/Tag.ts diff --git a/tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/UploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/UploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/UploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginVueQuery/withClientPlugin/types/UploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/coercion/zod/addPetRequestSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/addPetRequestSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/coercion/zod/addPetRequestSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/addPetRequestSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/coercion/zod/addPetRequestStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/addPetRequestStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/coercion/zod/addPetRequestStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/addPetRequestStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/coercion/zod/addPetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/addPetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/coercion/zod/addPetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/addPetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/coercion/zod/apiResponseSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/apiResponseSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/coercion/zod/apiResponseSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/apiResponseSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/coercion/zod/categorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/categorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/coercion/zod/categorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/categorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/coercion/zod/deletePetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/deletePetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/coercion/zod/deletePetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/deletePetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/coercion/zod/findPetsByStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/findPetsByStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/coercion/zod/findPetsByStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/findPetsByStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/coercion/zod/findPetsByStatusStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/findPetsByStatusStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/coercion/zod/findPetsByStatusStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/findPetsByStatusStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/coercion/zod/getInventorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/getInventorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/coercion/zod/getInventorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/getInventorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/coercion/zod/getPetByIdSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/getPetByIdSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/coercion/zod/getPetByIdSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/getPetByIdSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/coercion/zod/orderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/orderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/coercion/zod/orderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/orderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/coercion/zod/orderStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/orderStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/coercion/zod/orderStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/orderStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/coercion/zod/petSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/petSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/coercion/zod/petSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/petSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/coercion/zod/petStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/petStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/coercion/zod/petStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/petStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/coercion/zod/placeOrderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/placeOrderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/coercion/zod/placeOrderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/placeOrderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/coercion/zod/tagSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/tagSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/coercion/zod/tagSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/tagSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/coercion/zod/uploadFileSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/uploadFileSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/coercion/zod/uploadFileSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/coercion/zod/uploadFileSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/addPetRequestSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/addPetRequestSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/addPetRequestSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/addPetRequestSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/addPetRequestStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/addPetRequestStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/addPetRequestStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/addPetRequestStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/addPetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/addPetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/addPetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/addPetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/apiResponseSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/apiResponseSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/apiResponseSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/apiResponseSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/categorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/categorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/categorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/categorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/deletePetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/deletePetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/deletePetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/deletePetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/findPetsByStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/findPetsByStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/findPetsByStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/findPetsByStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/findPetsByStatusStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/findPetsByStatusStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/findPetsByStatusStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/findPetsByStatusStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/getInventorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/getInventorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/getInventorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/getInventorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/getPetByIdSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/getPetByIdSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/getPetByIdSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/getPetByIdSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/orderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/orderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/orderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/orderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/orderStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/orderStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/orderStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/orderStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/petSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/petSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/petSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/petSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/petStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/petStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/petStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/petStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/placeOrderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/placeOrderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/placeOrderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/placeOrderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/tagSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/tagSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/tagSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/tagSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/uploadFileSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/uploadFileSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/uploadFileSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/dateTypeDate/zod/uploadFileSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/addPetRequestSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/addPetRequestSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/addPetRequestSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/addPetRequestSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/addPetRequestStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/addPetRequestStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/addPetRequestStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/addPetRequestStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/apiResponseSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/apiResponseSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/apiResponseSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/apiResponseSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/categorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/categorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/categorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/categorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/findPetsByStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/findPetsByStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/findPetsByStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/findPetsByStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/findPetsByStatusStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/findPetsByStatusStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/findPetsByStatusStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/findPetsByStatusStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/getInventorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/getInventorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/getInventorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/getInventorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/getPetByIdSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/getPetByIdSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/getPetByIdSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/getPetByIdSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/orderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/orderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/orderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/orderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/orderStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/orderStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/orderStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/orderStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/petSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/petSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/petSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/petSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/petStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/petStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/petStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/petStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/placeOrderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/placeOrderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/placeOrderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/placeOrderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/tagSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/tagSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/tagSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/tagSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/uploadFileSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/uploadFileSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/uploadFileSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/excludeByOperationId/zod/uploadFileSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/addPetRequestSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/addPetRequestSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/addPetRequestSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/addPetRequestSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/addPetRequestStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/addPetRequestStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/addPetRequestStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/addPetRequestStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/apiResponseSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/apiResponseSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/apiResponseSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/apiResponseSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/categorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/categorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/categorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/categorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/findPetsByStatusStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/findPetsByStatusStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/findPetsByStatusStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/findPetsByStatusStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/orderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/orderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/orderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/orderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/orderStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/orderStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/orderStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/orderStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/addPetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/addPetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/addPetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/addPetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/deletePetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/deletePetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/deletePetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/deletePetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/findPetsByStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/findPetsByStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/findPetsByStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/findPetsByStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/getPetByIdSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/getPetByIdSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/getPetByIdSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/getPetByIdSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/uploadFileSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/uploadFileSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/uploadFileSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/pet/uploadFileSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/petSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/petSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/petSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/petSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/petStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/petStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/petStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/petStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/store/getInventorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/store/getInventorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/store/getInventorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/store/getInventorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/store/placeOrderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/store/placeOrderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/store/placeOrderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/store/placeOrderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/tagSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/tagSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/groupByTag/zod/tagSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/groupByTag/zod/tagSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/addPetRequestSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/addPetRequestSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/addPetRequestSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/addPetRequestSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/addPetRequestStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/addPetRequestStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/addPetRequestStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/addPetRequestStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/addPetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/addPetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/addPetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/addPetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/apiResponseSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/apiResponseSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/apiResponseSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/apiResponseSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/categorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/categorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/categorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/categorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/deletePetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/deletePetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/deletePetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/deletePetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/findPetsByStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/findPetsByStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/findPetsByStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/findPetsByStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/findPetsByStatusStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/findPetsByStatusStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/findPetsByStatusStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/findPetsByStatusStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/getPetByIdSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/getPetByIdSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/getPetByIdSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/getPetByIdSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/petSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/petSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/petSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/petSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/petStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/petStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/petStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/petStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/tagSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/tagSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/tagSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/tagSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/uploadFileSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/uploadFileSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/includeByTag/zod/uploadFileSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/includeByTag/zod/uploadFileSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/inferred/zod/addPetRequestSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/addPetRequestSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/inferred/zod/addPetRequestSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/addPetRequestSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/inferred/zod/addPetRequestStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/addPetRequestStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/inferred/zod/addPetRequestStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/addPetRequestStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/inferred/zod/addPetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/addPetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/inferred/zod/addPetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/addPetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/inferred/zod/apiResponseSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/apiResponseSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/inferred/zod/apiResponseSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/apiResponseSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/inferred/zod/categorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/categorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/inferred/zod/categorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/categorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/inferred/zod/deletePetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/deletePetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/inferred/zod/deletePetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/deletePetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/inferred/zod/findPetsByStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/findPetsByStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/inferred/zod/findPetsByStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/findPetsByStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/inferred/zod/findPetsByStatusStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/findPetsByStatusStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/inferred/zod/findPetsByStatusStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/findPetsByStatusStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/inferred/zod/getInventorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/getInventorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/inferred/zod/getInventorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/getInventorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/inferred/zod/getPetByIdSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/getPetByIdSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/inferred/zod/getPetByIdSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/getPetByIdSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/inferred/zod/orderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/orderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/inferred/zod/orderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/orderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/inferred/zod/orderStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/orderStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/inferred/zod/orderStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/orderStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/inferred/zod/petSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/petSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/inferred/zod/petSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/petSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/inferred/zod/petStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/petStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/inferred/zod/petStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/petStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/inferred/zod/placeOrderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/placeOrderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/inferred/zod/placeOrderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/placeOrderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/inferred/zod/tagSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/tagSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/inferred/zod/tagSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/tagSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/inferred/zod/uploadFileSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/uploadFileSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/inferred/zod/uploadFileSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/inferred/zod/uploadFileSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/paramsCasing/zod/petSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/paramsCasing/zod/petSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/paramsCasing/zod/petSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/paramsCasing/zod/petSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/paramsCasing/zod/petUpdateSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/paramsCasing/zod/petUpdateSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/paramsCasing/zod/petUpdateSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/paramsCasing/zod/petUpdateSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/paramsCasing/zod/updatePetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/paramsCasing/zod/updatePetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/paramsCasing/zod/updatePetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/paramsCasing/zod/updatePetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/petStore/zod/addPetRequestSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/addPetRequestSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/petStore/zod/addPetRequestSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/addPetRequestSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/petStore/zod/addPetRequestStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/addPetRequestStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/petStore/zod/addPetRequestStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/addPetRequestStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/petStore/zod/addPetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/addPetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/petStore/zod/addPetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/addPetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/petStore/zod/apiResponseSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/apiResponseSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/petStore/zod/apiResponseSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/apiResponseSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/petStore/zod/categorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/categorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/petStore/zod/categorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/categorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/petStore/zod/deletePetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/deletePetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/petStore/zod/deletePetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/deletePetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/petStore/zod/findPetsByStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/findPetsByStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/petStore/zod/findPetsByStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/findPetsByStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/petStore/zod/findPetsByStatusStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/findPetsByStatusStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/petStore/zod/findPetsByStatusStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/findPetsByStatusStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/petStore/zod/getInventorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/getInventorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/petStore/zod/getInventorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/getInventorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/petStore/zod/getPetByIdSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/getPetByIdSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/petStore/zod/getPetByIdSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/getPetByIdSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/petStore/zod/orderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/orderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/petStore/zod/orderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/orderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/petStore/zod/orderStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/orderStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/petStore/zod/orderStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/orderStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/petStore/zod/petSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/petSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/petStore/zod/petSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/petSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/petStore/zod/petStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/petStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/petStore/zod/petStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/petStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/petStore/zod/placeOrderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/placeOrderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/petStore/zod/placeOrderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/placeOrderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/petStore/zod/tagSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/tagSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/petStore/zod/tagSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/tagSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/petStore/zod/uploadFileSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/uploadFileSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/petStore/zod/uploadFileSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/petStore/zod/uploadFileSchema.ts diff --git a/tests/3.0.x/cypressPlugin.test.ts b/tests/openapi/3.0.x/cypressPlugin.test.ts similarity index 95% rename from tests/3.0.x/cypressPlugin.test.ts rename to tests/openapi/3.0.x/cypressPlugin.test.ts index ca50011db..781f721df 100644 --- a/tests/3.0.x/cypressPlugin.test.ts +++ b/tests/openapi/3.0.x/cypressPlugin.test.ts @@ -23,7 +23,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'noTagsGroup', config: { root: __dirname, - input: '../../schemas/3.0.x/noTagsDotOperationId.yaml', + input: '../../../schemas/3.0.x/noTagsDotOperationId.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -40,7 +40,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'excludeByOperationId', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -60,7 +60,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'includeByTag', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], diff --git a/tests/3.0.x/main.test.ts b/tests/openapi/3.0.x/main.test.ts similarity index 92% rename from tests/3.0.x/main.test.ts rename to tests/openapi/3.0.x/main.test.ts index 30284e938..47a397c8e 100644 --- a/tests/3.0.x/main.test.ts +++ b/tests/openapi/3.0.x/main.test.ts @@ -21,7 +21,7 @@ const configs = [ name: 'simple', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', adapter: adapterOas({ validate: false, enums: 'root' }), output: { path: './gen', @@ -43,7 +43,7 @@ const configs = [ name: 'petStore', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false, @@ -65,7 +65,7 @@ const configs = [ name: 'discriminatorAllOf', config: { root: __dirname, - input: '../../schemas/3.0.x/discriminatorAllOf.yaml', + input: '../../../schemas/3.0.x/discriminatorAllOf.yaml', output: { path: './gen', barrel: false, @@ -94,7 +94,7 @@ const configs = [ name: 'discriminatorAnyOf', config: { root: __dirname, - input: '../../schemas/3.0.x/discriminatorAnyOf.yaml', + input: '../../../schemas/3.0.x/discriminatorAnyOf.yaml', output: { path: './gen', clean: true, @@ -123,7 +123,7 @@ const configs = [ name: 'discriminatorOneOf', config: { root: __dirname, - input: '../../schemas/3.0.x/discriminatorOneOf.yaml', + input: '../../../schemas/3.0.x/discriminatorOneOf.yaml', output: { path: './gen', barrel: false, @@ -157,7 +157,7 @@ const configs = [ name: 'discriminatorImplicit', config: { root: __dirname, - input: '../../schemas/3.0.x/discriminatorImplicit.yaml', + input: '../../../schemas/3.0.x/discriminatorImplicit.yaml', output: { path: './gen', barrel: false, @@ -179,7 +179,7 @@ const configs = [ name: 'discriminatorOneOfMini', config: { root: __dirname, - input: '../../schemas/3.0.x/discriminatorOneOf.yaml', + input: '../../../schemas/3.0.x/discriminatorOneOf.yaml', output: { path: './gen', barrel: false, @@ -202,7 +202,7 @@ const configs = [ name: 'discriminatorOneOfExternalRef', config: { root: __dirname, - input: '../../schemas/3.0.x/discriminatorOneOfExternalRef.yaml', + input: '../../../schemas/3.0.x/discriminatorOneOfExternalRef.yaml', output: { path: './gen', barrel: false, @@ -224,7 +224,7 @@ const configs = [ name: 'caseSensitivity', config: { root: __dirname, - input: '../../schemas/3.0.x/caseSensitivity.yaml', + input: '../../../schemas/3.0.x/caseSensitivity.yaml', output: { path: './gen', barrel: false, @@ -246,7 +246,7 @@ const configs = [ name: 'duplicateEnum', config: { root: __dirname, - input: '../../schemas/3.0.x/duplicateEnum.yaml', + input: '../../../schemas/3.0.x/duplicateEnum.yaml', output: { path: './gen', barrel: false, @@ -275,7 +275,7 @@ const configs = [ name: 'issue2619', config: { root: __dirname, - input: '../../schemas/external-refs/returns/main.yaml', + input: '../../../schemas/external-refs/returns/main.yaml', output: { path: './gen', barrel: false, @@ -306,7 +306,7 @@ const configs = [ name: 'issue2696', config: { root: __dirname, - input: '../../schemas/external-refs/phantom/main.yaml', + input: '../../../schemas/external-refs/phantom/main.yaml', output: { path: './gen', barrel: false, @@ -333,7 +333,7 @@ const configs = [ name: 'asConstEnum', config: { root: __dirname, - input: '../../schemas/3.0.x/asConstEnum.yaml', + input: '../../../schemas/3.0.x/asConstEnum.yaml', output: { path: './gen', barrel: false, @@ -360,7 +360,7 @@ const configs = [ name: 'noTagsDotOperationId', config: { root: __dirname, - input: '../../schemas/3.0.x/noTagsDotOperationId.yaml', + input: '../../../schemas/3.0.x/noTagsDotOperationId.yaml', output: { path: './gen', barrel: false, @@ -389,7 +389,7 @@ const configs = [ name: 'resolverCustomPrefix', config: { root: __dirname, - input: '../../schemas/3.0.x/simple.yaml', + input: '../../../schemas/3.0.x/simple.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -414,7 +414,7 @@ const configs = [ name: 'printerNodesZod', config: { root: __dirname, - input: '../../schemas/3.0.x/simple.yaml', + input: '../../../schemas/3.0.x/simple.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -441,7 +441,7 @@ const configs = [ name: 'transformerStripDescriptions', config: { root: __dirname, - input: '../../schemas/3.0.x/simple.yaml', + input: '../../../schemas/3.0.x/simple.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], diff --git a/tests/3.0.x/package.json b/tests/openapi/3.0.x/package.json similarity index 97% rename from tests/3.0.x/package.json rename to tests/openapi/3.0.x/package.json index 2786daae1..a80a16fb6 100644 --- a/tests/3.0.x/package.json +++ b/tests/openapi/3.0.x/package.json @@ -8,7 +8,7 @@ "repository": { "type": "git", "url": "https://github.com/kubb-labs/plugins.git", - "directory": "tests/3.0.x" + "directory": "tests/openapi/3.0.x" }, "type": "module", "sideEffects": false, diff --git a/tests/3.0.x/pluginAxios.test.ts b/tests/openapi/3.0.x/pluginAxios.test.ts similarity index 95% rename from tests/3.0.x/pluginAxios.test.ts rename to tests/openapi/3.0.x/pluginAxios.test.ts index b89c3760a..917754c52 100644 --- a/tests/3.0.x/pluginAxios.test.ts +++ b/tests/openapi/3.0.x/pluginAxios.test.ts @@ -25,7 +25,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'default', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -41,7 +41,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'sdkClass', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -57,7 +57,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'sdkClassWithName', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -73,7 +73,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'sdkSingle', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -89,7 +89,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'paramsCasing', config: { root: __dirname, - input: '../../schemas/3.0.x/paramsCasing.yaml', + input: '../../../schemas/3.0.x/paramsCasing.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -140,7 +140,7 @@ describe(`plugin-axios options ${version}`, () => { const { files, diagnostics } = await createKubb( { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: output, barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -180,7 +180,7 @@ describe(`plugin-axios options ${version}`, () => { const { files, diagnostics } = await createKubb( { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: output, barrel: { type: 'named' } }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], diff --git a/tests/3.0.x/pluginFaker.test.ts b/tests/openapi/3.0.x/pluginFaker.test.ts similarity index 94% rename from tests/3.0.x/pluginFaker.test.ts rename to tests/openapi/3.0.x/pluginFaker.test.ts index 750fbcd34..c5d15074f 100644 --- a/tests/3.0.x/pluginFaker.test.ts +++ b/tests/openapi/3.0.x/pluginFaker.test.ts @@ -24,7 +24,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'petStore', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -43,7 +43,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'locale', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -63,7 +63,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'seed', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -83,7 +83,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'macros', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -120,7 +120,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'dateParserDayjs', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -140,7 +140,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'regexGeneratorRandexp', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -160,7 +160,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'paramsCasing', config: { root: __dirname, - input: '../../schemas/3.0.x/paramsCasing.yaml', + input: '../../../schemas/3.0.x/paramsCasing.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -179,7 +179,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'excludeByOperationId', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -200,7 +200,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'includeByTag', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -220,7 +220,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'groupByTag', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], diff --git a/tests/3.0.x/pluginFetch.test.ts b/tests/openapi/3.0.x/pluginFetch.test.ts similarity index 95% rename from tests/3.0.x/pluginFetch.test.ts rename to tests/openapi/3.0.x/pluginFetch.test.ts index c9e7178b0..e2e331016 100644 --- a/tests/3.0.x/pluginFetch.test.ts +++ b/tests/openapi/3.0.x/pluginFetch.test.ts @@ -25,7 +25,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'default', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -41,7 +41,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'sdkClass', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -57,7 +57,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'sdkClassWithName', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -73,7 +73,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'sdkSingle', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -89,7 +89,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'paramsCasing', config: { root: __dirname, - input: '../../schemas/3.0.x/paramsCasing.yaml', + input: '../../../schemas/3.0.x/paramsCasing.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -140,7 +140,7 @@ describe(`plugin-fetch options ${version}`, () => { const { files, diagnostics } = await createKubb( { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: output, barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -180,7 +180,7 @@ describe(`plugin-fetch options ${version}`, () => { const { files, diagnostics } = await createKubb( { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: output, barrel: { type: 'named' } }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], diff --git a/tests/3.0.x/pluginMcp.test.ts b/tests/openapi/3.0.x/pluginMcp.test.ts similarity index 95% rename from tests/3.0.x/pluginMcp.test.ts rename to tests/openapi/3.0.x/pluginMcp.test.ts index cba46f8ec..dc031ff87 100644 --- a/tests/3.0.x/pluginMcp.test.ts +++ b/tests/openapi/3.0.x/pluginMcp.test.ts @@ -26,7 +26,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'petStore', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -47,7 +47,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'paramsCasing', config: { root: __dirname, - input: '../../schemas/3.0.x/paramsCasing.yaml', + input: '../../../schemas/3.0.x/paramsCasing.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -68,7 +68,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'excludeByOperationId', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -91,7 +91,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'includeByTag', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -113,7 +113,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'groupByTag', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -135,7 +135,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'withClientPlugin', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], diff --git a/tests/3.0.x/pluginMsw.test.ts b/tests/openapi/3.0.x/pluginMsw.test.ts similarity index 94% rename from tests/3.0.x/pluginMsw.test.ts rename to tests/openapi/3.0.x/pluginMsw.test.ts index a828d073b..2aac01565 100644 --- a/tests/3.0.x/pluginMsw.test.ts +++ b/tests/openapi/3.0.x/pluginMsw.test.ts @@ -25,7 +25,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'petStore', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -44,7 +44,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'parserFaker', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -65,7 +65,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'handlers', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -85,7 +85,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'baseURL', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -105,7 +105,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'excludeByOperationId', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -126,7 +126,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'includeByTag', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -146,7 +146,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'groupByTag', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], diff --git a/tests/3.0.x/pluginReactQuery.test.ts b/tests/openapi/3.0.x/pluginReactQuery.test.ts similarity index 94% rename from tests/3.0.x/pluginReactQuery.test.ts rename to tests/openapi/3.0.x/pluginReactQuery.test.ts index 345138b8a..2c4beeff1 100644 --- a/tests/3.0.x/pluginReactQuery.test.ts +++ b/tests/openapi/3.0.x/pluginReactQuery.test.ts @@ -26,7 +26,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'petStore', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -47,7 +47,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'suspense', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -69,7 +69,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'infinite', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -94,7 +94,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'parserZod', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -116,7 +116,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'queryMethods', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -144,7 +144,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'mutationDisabled', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -166,7 +166,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'paramsCasing', config: { root: __dirname, - input: '../../schemas/3.0.x/paramsCasing.yaml', + input: '../../../schemas/3.0.x/paramsCasing.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -187,7 +187,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'excludeByOperationId', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -210,7 +210,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'includeByTag', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -232,7 +232,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'groupByTag', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -254,7 +254,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'withClientPlugin', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], diff --git a/tests/3.0.x/pluginRedoc.test.ts b/tests/openapi/3.0.x/pluginRedoc.test.ts similarity index 97% rename from tests/3.0.x/pluginRedoc.test.ts rename to tests/openapi/3.0.x/pluginRedoc.test.ts index 65b065001..ac0b96571 100644 --- a/tests/3.0.x/pluginRedoc.test.ts +++ b/tests/openapi/3.0.x/pluginRedoc.test.ts @@ -23,7 +23,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'petStore', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], diff --git a/tests/3.0.x/pluginSwr.test.ts b/tests/openapi/3.0.x/pluginSwr.test.ts similarity index 94% rename from tests/3.0.x/pluginSwr.test.ts rename to tests/openapi/3.0.x/pluginSwr.test.ts index 19ebe5016..8bd11d915 100644 --- a/tests/3.0.x/pluginSwr.test.ts +++ b/tests/openapi/3.0.x/pluginSwr.test.ts @@ -26,7 +26,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'petStore', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -45,7 +45,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'parserZod', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -65,7 +65,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'queryMethods', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -91,7 +91,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'queryDisabled', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -111,7 +111,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'mutationDisabled', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -131,7 +131,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'paramsCasing', config: { root: __dirname, - input: '../../schemas/3.0.x/paramsCasing.yaml', + input: '../../../schemas/3.0.x/paramsCasing.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -150,7 +150,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'excludeByOperationId', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -171,7 +171,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'includeByTag', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -191,7 +191,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'groupByTag', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -211,7 +211,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'withClientPlugin', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], diff --git a/tests/3.0.x/pluginTs.test.ts b/tests/openapi/3.0.x/pluginTs.test.ts similarity index 95% rename from tests/3.0.x/pluginTs.test.ts rename to tests/openapi/3.0.x/pluginTs.test.ts index 016892e74..69ef1fc07 100644 --- a/tests/3.0.x/pluginTs.test.ts +++ b/tests/openapi/3.0.x/pluginTs.test.ts @@ -27,7 +27,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'noTagsDotOperationId', config: { root: __dirname, - input: '../../schemas/3.0.x/noTagsDotOperationId.yaml', + input: '../../../schemas/3.0.x/noTagsDotOperationId.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -46,7 +46,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'excludeByOperationId', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -66,7 +66,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'includeByTag', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], diff --git a/tests/3.0.x/pluginVueQuery.test.ts b/tests/openapi/3.0.x/pluginVueQuery.test.ts similarity index 95% rename from tests/3.0.x/pluginVueQuery.test.ts rename to tests/openapi/3.0.x/pluginVueQuery.test.ts index f9442aea7..b818f6400 100644 --- a/tests/3.0.x/pluginVueQuery.test.ts +++ b/tests/openapi/3.0.x/pluginVueQuery.test.ts @@ -26,7 +26,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'petStore', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -47,7 +47,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'infinite', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -72,7 +72,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'parserZod', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -94,7 +94,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'mutationDisabled', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -116,7 +116,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'paramsCasing', config: { root: __dirname, - input: '../../schemas/3.0.x/paramsCasing.yaml', + input: '../../../schemas/3.0.x/paramsCasing.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -137,7 +137,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'excludeByOperationId', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -160,7 +160,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'includeByTag', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -182,7 +182,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'groupByTag', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -204,7 +204,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'withClientPlugin', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], diff --git a/tests/3.0.x/pluginZod.test.ts b/tests/openapi/3.0.x/pluginZod.test.ts similarity index 93% rename from tests/3.0.x/pluginZod.test.ts rename to tests/openapi/3.0.x/pluginZod.test.ts index fc5429ec0..95a767c52 100644 --- a/tests/3.0.x/pluginZod.test.ts +++ b/tests/openapi/3.0.x/pluginZod.test.ts @@ -23,7 +23,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'petStore', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -40,7 +40,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'excludeByOperationId', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -60,7 +60,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'includeByTag', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -78,7 +78,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'groupByTag', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -96,7 +96,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'inferred', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -114,7 +114,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'coercion', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -132,7 +132,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'dateTypeDate', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, dateType: 'date', enums: 'root' }), parsers: [parserTs()], @@ -149,7 +149,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'paramsCasing', config: { root: __dirname, - input: '../../schemas/3.0.x/paramsCasing.yaml', + input: '../../../schemas/3.0.x/paramsCasing.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], diff --git a/tests/openapi/3.0.x/tsconfig.json b/tests/openapi/3.0.x/tsconfig.json new file mode 100644 index 000000000..0bee156ca --- /dev/null +++ b/tests/openapi/3.0.x/tsconfig.json @@ -0,0 +1,7 @@ +{ + "extends": "../../../tsconfig.json", + "compilerOptions": { + "types": ["bun-types", "../../../reset.d.ts"] + }, + "include": ["./**/*.ts"] +} diff --git a/tests/e2e/kubb-petstore.config.js b/tests/openapi/e2e/kubb-petstore.config.js similarity index 100% rename from tests/e2e/kubb-petstore.config.js rename to tests/openapi/e2e/kubb-petstore.config.js diff --git a/tests/e2e/kubb.config.js b/tests/openapi/e2e/kubb.config.js similarity index 89% rename from tests/e2e/kubb.config.js rename to tests/openapi/e2e/kubb.config.js index cb9cb5ec3..eac70f3ba 100644 --- a/tests/e2e/kubb.config.js +++ b/tests/openapi/e2e/kubb.config.js @@ -10,14 +10,14 @@ import { pluginZod } from '@kubb/plugin-zod' import { defineConfig } from 'kubb/config' const schemas = [ - // { name: 'test', path: '../../schemas/3.0.x/test.json' }, + // { name: 'test', path: '../../../schemas/3.0.x/test.json' }, // OpenAPI 3.1 - { name: 'train-travel', path: '../../schemas/3.0.x/train-travel.yaml' }, + { name: 'train-travel', path: '../../../schemas/3.0.x/train-travel.yaml' }, { name: 'Figma', path: 'https://raw.githubusercontent.com/figma/rest-api-spec/refs/heads/main/openapi/openapi.yaml' }, { name: 'spotify', path: 'https://raw.githubusercontent.com/sonallux/spotify-web-api/refs/heads/main/official-spotify-open-api.yml' }, // OpenAPI 3.0 - { name: 'discriminator', path: '../../schemas/3.0.x/discriminator.yaml' }, - { name: 'bunq.com', path: '../../schemas/3.0.x/bunq.com.json' }, + { name: 'discriminator', path: '../../../schemas/3.0.x/discriminator.yaml' }, + { name: 'bunq.com', path: '../../../schemas/3.0.x/bunq.com.json' }, // Note: developer.atlassian.com, petstore3.swagger.io, and openapi.vercel.sh are omitted here. // They block CI/bot traffic with 403s and flake the e2e run; the local fixtures plus the // raw.githubusercontent.com specs below give equivalent coverage. @@ -25,19 +25,19 @@ const schemas = [ // CurrencyExchange without defining them, which kubb reports as KUBB_REF_NOT_FOUND errors that // fail generation. @kubb/adapter-oas now emits `unknown` for such refs so the output compiles, // but the malformed-input diagnostics still fail the run. - { name: 'optionalParameters', path: '../../schemas/3.0.x/optionalParameters.json' }, - { name: 'allOf', path: '../../schemas/3.0.x/allOf.json' }, - { name: 'anyOf', path: '../../schemas/3.0.x/anyOf.json' }, - { name: 'petStoreContent', path: '../../schemas/3.0.x/petStoreContent.json' }, - { name: 'twitter', path: '../../schemas/3.0.x/twitter.json' }, - { name: 'jokesOne', path: '../../schemas/3.0.x/jokesOne.yaml' }, - { name: 'readme.io', path: '../../schemas/3.0.x/readme.io.yaml' }, - { name: 'worldtime', path: '../../schemas/3.0.x/worldtime.yaml' }, - { name: 'zalando', path: '../../schemas/3.0.x/zalando.yaml' }, - { name: 'requestBody', path: '../../schemas/3.0.x/requestBody.yaml' }, - { name: 'box', path: '../../schemas/3.0.x/box.json' }, - { name: 'enums', path: '../../schemas/3.0.x/enums.yaml' }, - { name: 'dataset_api', path: '../../schemas/3.0.x/dataset_api.yaml' }, + { name: 'optionalParameters', path: '../../../schemas/3.0.x/optionalParameters.json' }, + { name: 'allOf', path: '../../../schemas/3.0.x/allOf.json' }, + { name: 'anyOf', path: '../../../schemas/3.0.x/anyOf.json' }, + { name: 'petStoreContent', path: '../../../schemas/3.0.x/petStoreContent.json' }, + { name: 'twitter', path: '../../../schemas/3.0.x/twitter.json' }, + { name: 'jokesOne', path: '../../../schemas/3.0.x/jokesOne.yaml' }, + { name: 'readme.io', path: '../../../schemas/3.0.x/readme.io.yaml' }, + { name: 'worldtime', path: '../../../schemas/3.0.x/worldtime.yaml' }, + { name: 'zalando', path: '../../../schemas/3.0.x/zalando.yaml' }, + { name: 'requestBody', path: '../../../schemas/3.0.x/requestBody.yaml' }, + { name: 'box', path: '../../../schemas/3.0.x/box.json' }, + { name: 'enums', path: '../../../schemas/3.0.x/enums.yaml' }, + { name: 'dataset_api', path: '../../../schemas/3.0.x/dataset_api.yaml' }, { name: 'openai', path: 'https://raw.githubusercontent.com/openai/openai-openapi/refs/heads/manual_spec/openapi.yaml' }, { name: 'stripe', path: 'https://raw.githubusercontent.com/stripe/openapi/master/openapi/spec3.json' }, // Real-world APIs (remote, raw.githubusercontent.com so CI is not blocked by bot-unfriendly hosts). diff --git a/tests/e2e/package.json b/tests/openapi/e2e/package.json similarity index 97% rename from tests/e2e/package.json rename to tests/openapi/e2e/package.json index 773f595e7..357381b13 100644 --- a/tests/e2e/package.json +++ b/tests/openapi/e2e/package.json @@ -8,7 +8,7 @@ "repository": { "type": "git", "url": "https://github.com/kubb-labs/plugins.git", - "directory": "tests/e2e" + "directory": "tests/openapi/e2e" }, "type": "module", "sideEffects": false, diff --git a/tests/e2e/tsconfig.gen.json b/tests/openapi/e2e/tsconfig.gen.json similarity index 100% rename from tests/e2e/tsconfig.gen.json rename to tests/openapi/e2e/tsconfig.gen.json diff --git a/tests/e2e/tsconfig.json b/tests/openapi/e2e/tsconfig.json similarity index 100% rename from tests/e2e/tsconfig.json rename to tests/openapi/e2e/tsconfig.json diff --git a/tests/performance/README.md b/tests/openapi/performance/README.md similarity index 100% rename from tests/performance/README.md rename to tests/openapi/performance/README.md diff --git a/tests/performance/main.bench.ts b/tests/openapi/performance/main.bench.ts similarity index 97% rename from tests/performance/main.bench.ts rename to tests/openapi/performance/main.bench.ts index 11bd114a5..f29f50ab1 100644 --- a/tests/performance/main.bench.ts +++ b/tests/openapi/performance/main.bench.ts @@ -22,7 +22,7 @@ const __filename = fileURLToPath(import.meta.url) const __dirname = path.dirname(__filename) describe('Plugin Generation Performance', () => { - const petStorePath = path.resolve(__dirname, '../../schemas/3.0.x/petStore.yaml') + const petStorePath = path.resolve(__dirname, '../../../schemas/3.0.x/petStore.yaml') bench( 'single plugin generation (plugin-ts)', diff --git a/tests/performance/package.json b/tests/openapi/performance/package.json similarity index 95% rename from tests/performance/package.json rename to tests/openapi/performance/package.json index 037400d27..52b410331 100644 --- a/tests/performance/package.json +++ b/tests/openapi/performance/package.json @@ -8,7 +8,7 @@ "repository": { "type": "git", "url": "https://github.com/kubb-labs/plugins.git", - "directory": "tests/performance" + "directory": "tests/openapi/performance" }, "type": "module", "sideEffects": false, diff --git a/tests/openapi/performance/tsconfig.json b/tests/openapi/performance/tsconfig.json new file mode 100644 index 000000000..0bee156ca --- /dev/null +++ b/tests/openapi/performance/tsconfig.json @@ -0,0 +1,7 @@ +{ + "extends": "../../../tsconfig.json", + "compilerOptions": { + "types": ["bun-types", "../../../reset.d.ts"] + }, + "include": ["./**/*.ts"] +} diff --git a/tests/performance/tsconfig.json b/tests/performance/tsconfig.json deleted file mode 100644 index 9c35a0723..000000000 --- a/tests/performance/tsconfig.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "extends": "../../tsconfig.json", - "compilerOptions": { - "types": ["bun-types", "../../reset.d.ts"] - }, - "include": ["./**/*.ts"] -} From ec54feedc63e3dc3a68239e57050191bde007eb7 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 26 Aug 2026 16:50:18 +0000 Subject: [PATCH 2/3] fix(examples,workspace): regenerate arazzo output, drop duplicate override line The generated example files were hand-written after a container restart wiped the real `kubb generate` output, and used semicolons and double quotes instead of the repo's oxfmt style. Regenerated them for real against a local build of kubb-labs/kubb#3927. pnpm-workspace.yaml also had the unplugin-kubb override line duplicated from an earlier edit. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_013suNzME7WSnyEz9kB7JWRa --- .../typescript/src/gen/models/Credentials.ts | 12 ++++---- .../src/gen/models/LoginAndReadPet.ts | 28 +++++++++---------- .../src/gen/models/LoginAndReadPetInputs.ts | 12 ++++---- .../src/gen/models/LoginAndReadPetOutputs.ts | 24 ++++++++-------- .../typescript/src/gen/models/ReadPetOnly.ts | 26 ++++++++--------- .../src/gen/models/ReadPetOnlyOutputs.ts | 10 +++---- pnpm-workspace.yaml | 1 - 7 files changed, 56 insertions(+), 57 deletions(-) diff --git a/examples/arazzo/typescript/src/gen/models/Credentials.ts b/examples/arazzo/typescript/src/gen/models/Credentials.ts index 47893907a..c1a44e64d 100644 --- a/examples/arazzo/typescript/src/gen/models/Credentials.ts +++ b/examples/arazzo/typescript/src/gen/models/Credentials.ts @@ -1,9 +1,9 @@ /** -* Generated by Kubb (https://kubb.dev/). -* Do not edit manually. -*/ + * Generated by Kubb (https://kubb.dev/). + * Do not edit manually. + */ export type Credentials = { - username?: string; - password?: string; -}; \ No newline at end of file + username?: string + password?: string +} diff --git a/examples/arazzo/typescript/src/gen/models/LoginAndReadPet.ts b/examples/arazzo/typescript/src/gen/models/LoginAndReadPet.ts index 9f3196641..913c64a5c 100644 --- a/examples/arazzo/typescript/src/gen/models/LoginAndReadPet.ts +++ b/examples/arazzo/typescript/src/gen/models/LoginAndReadPet.ts @@ -1,27 +1,27 @@ /** -* Generated by Kubb (https://kubb.dev/). -* Do not edit manually. -*/ + * Generated by Kubb (https://kubb.dev/). + * Do not edit manually. + */ import type { LoginAndReadPetInputs } from './LoginAndReadPetInputs' import type { LoginAndReadPetOutputs } from './LoginAndReadPetOutputs' -export type LoginAndReadPetStatus200 = LoginAndReadPetOutputs; +export type LoginAndReadPetStatus200 = LoginAndReadPetOutputs -export type LoginAndReadPetBody = LoginAndReadPetInputs; +export type LoginAndReadPetBody = LoginAndReadPetInputs export type LoginAndReadPetOptions = { - body: LoginAndReadPetBody; - path?: never; - query?: never; - headers?: never; -}; + body: LoginAndReadPetBody + path?: never + query?: never + headers?: never +} export type LoginAndReadPetResponses = { - "200": LoginAndReadPetStatus200; -}; + '200': LoginAndReadPetStatus200 +} /** * @description Union of all possible responses -*/ -export type LoginAndReadPetResponse = LoginAndReadPetStatus200; \ No newline at end of file + */ +export type LoginAndReadPetResponse = LoginAndReadPetStatus200 diff --git a/examples/arazzo/typescript/src/gen/models/LoginAndReadPetInputs.ts b/examples/arazzo/typescript/src/gen/models/LoginAndReadPetInputs.ts index fc92c2871..f894027f2 100644 --- a/examples/arazzo/typescript/src/gen/models/LoginAndReadPetInputs.ts +++ b/examples/arazzo/typescript/src/gen/models/LoginAndReadPetInputs.ts @@ -1,9 +1,9 @@ /** -* Generated by Kubb (https://kubb.dev/). -* Do not edit manually. -*/ + * Generated by Kubb (https://kubb.dev/). + * Do not edit manually. + */ export type LoginAndReadPetInputs = { - username: string; - petId?: number; -}; \ No newline at end of file + username: string + petId?: number +} diff --git a/examples/arazzo/typescript/src/gen/models/LoginAndReadPetOutputs.ts b/examples/arazzo/typescript/src/gen/models/LoginAndReadPetOutputs.ts index ce69eeaad..0bb04cc5c 100644 --- a/examples/arazzo/typescript/src/gen/models/LoginAndReadPetOutputs.ts +++ b/examples/arazzo/typescript/src/gen/models/LoginAndReadPetOutputs.ts @@ -1,20 +1,20 @@ /** -* Generated by Kubb (https://kubb.dev/). -* Do not edit manually. -*/ + * Generated by Kubb (https://kubb.dev/). + * Do not edit manually. + */ import type { Pet } from './Pet' export const statusEnum = { - available: "available", - pending: "pending", - sold: "sold" -} as const; + available: 'available', + pending: 'pending', + sold: 'sold', +} as const -export type StatusEnumKey = (typeof statusEnum)[keyof typeof statusEnum]; +export type StatusEnumKey = (typeof statusEnum)[keyof typeof statusEnum] export type LoginAndReadPetOutputs = { - token: string; - pet: Pet; - status: StatusEnumKey; -}; \ No newline at end of file + token: string + pet: Pet + status: StatusEnumKey +} diff --git a/examples/arazzo/typescript/src/gen/models/ReadPetOnly.ts b/examples/arazzo/typescript/src/gen/models/ReadPetOnly.ts index e5cec9049..83718669e 100644 --- a/examples/arazzo/typescript/src/gen/models/ReadPetOnly.ts +++ b/examples/arazzo/typescript/src/gen/models/ReadPetOnly.ts @@ -1,24 +1,24 @@ /** -* Generated by Kubb (https://kubb.dev/). -* Do not edit manually. -*/ + * Generated by Kubb (https://kubb.dev/). + * Do not edit manually. + */ import type { ReadPetOnlyOutputs } from './ReadPetOnlyOutputs' -export type ReadPetOnlyStatus200 = ReadPetOnlyOutputs; +export type ReadPetOnlyStatus200 = ReadPetOnlyOutputs export type ReadPetOnlyOptions = { - body?: never; - path?: never; - query?: never; - headers?: never; -}; + body?: never + path?: never + query?: never + headers?: never +} export type ReadPetOnlyResponses = { - "200": ReadPetOnlyStatus200; -}; + '200': ReadPetOnlyStatus200 +} /** * @description Union of all possible responses -*/ -export type ReadPetOnlyResponse = ReadPetOnlyStatus200; \ No newline at end of file + */ +export type ReadPetOnlyResponse = ReadPetOnlyStatus200 diff --git a/examples/arazzo/typescript/src/gen/models/ReadPetOnlyOutputs.ts b/examples/arazzo/typescript/src/gen/models/ReadPetOnlyOutputs.ts index 805ff542e..2b40edc9b 100644 --- a/examples/arazzo/typescript/src/gen/models/ReadPetOnlyOutputs.ts +++ b/examples/arazzo/typescript/src/gen/models/ReadPetOnlyOutputs.ts @@ -1,8 +1,8 @@ /** -* Generated by Kubb (https://kubb.dev/). -* Do not edit manually. -*/ + * Generated by Kubb (https://kubb.dev/). + * Do not edit manually. + */ export type ReadPetOnlyOutputs = { - petId: number; -}; \ No newline at end of file + petId: number +} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index b183fdb6d..7eae059a4 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -46,7 +46,6 @@ catalog: # '@kubb/tui': link:../kubb/packages/tui # kubb: link:../kubb/packages/kubb # unplugin-kubb: link:../kubb/packages/unplugin-kubb -# unplugin-kubb: link:../kubb/packages/unplugin-kubb minimumReleaseAge: 2880 # 48 hours, matches CI's SAFE_CHAIN_MINIMUM_PACKAGE_AGE_HOURS minimumReleaseAgeExclude: From 5bec6d0cf255345cdbbc04868a6f9166690d99a1 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 27 Aug 2026 14:15:44 +0000 Subject: [PATCH 3/3] fix(tests): merge main, relocate stray tests/3.0.x snapshots, fix new test input paths Merged main (through PR #802) into this branch. Git's rename detection couldn't map main's new snapshot files (pluginZod/directionalPrinterNode, pluginAxios/zodTypes, pluginFetch/zodTypes, pluginFetch/zodTypesSdk) onto the tests/openapi/3.0.x/ nesting since they never existed at the old path in this branch's history, so they landed under a stray tests/3.0.x/. Moved them into tests/openapi/3.0.x/__snapshots__ and removed the stray directory. The new pluginAxios/pluginFetch/pluginZod test config blocks main added also carried input paths sized for the old flat tests/3.0.x/ layout (../../schemas/...), which resolved to nothing one level too shallow. Fixed to ../../../schemas/... to match every other entry in those files. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_013suNzME7WSnyEz9kB7JWRa --- .../3.0.x/__snapshots__/pluginAxios/zodTypes/.kubb/client.ts | 0 .../__snapshots__/pluginAxios/zodTypes/.kubb/serializers.ts | 0 .../pluginAxios/zodTypes/.kubb/standardSchema.ts | 0 .../__snapshots__/pluginAxios/zodTypes/clients/addPet.ts | 0 .../__snapshots__/pluginAxios/zodTypes/clients/deletePet.ts | 0 .../pluginAxios/zodTypes/clients/findPetsByStatus.ts | 0 .../pluginAxios/zodTypes/clients/getInventory.ts | 0 .../__snapshots__/pluginAxios/zodTypes/clients/getPetById.ts | 0 .../__snapshots__/pluginAxios/zodTypes/clients/placeOrder.ts | 0 .../__snapshots__/pluginAxios/zodTypes/clients/uploadFile.ts | 0 .../pluginAxios/zodTypes/zod/addPetRequestSchema.ts | 0 .../pluginAxios/zodTypes/zod/addPetRequestStatusEnumSchema.ts | 0 .../__snapshots__/pluginAxios/zodTypes/zod/addPetSchema.ts | 0 .../pluginAxios/zodTypes/zod/apiResponseSchema.ts | 0 .../__snapshots__/pluginAxios/zodTypes/zod/categorySchema.ts | 0 .../__snapshots__/pluginAxios/zodTypes/zod/deletePetSchema.ts | 0 .../pluginAxios/zodTypes/zod/findPetsByStatusSchema.ts | 0 .../pluginAxios/zodTypes/zod/findPetsByStatusStatusSchema.ts | 0 .../pluginAxios/zodTypes/zod/getInventorySchema.ts | 0 .../pluginAxios/zodTypes/zod/getPetByIdSchema.ts | 0 .../__snapshots__/pluginAxios/zodTypes/zod/orderSchema.ts | 0 .../pluginAxios/zodTypes/zod/orderStatusEnumSchema.ts | 0 .../3.0.x/__snapshots__/pluginAxios/zodTypes/zod/petSchema.ts | 0 .../pluginAxios/zodTypes/zod/petStatusEnumSchema.ts | 0 .../pluginAxios/zodTypes/zod/placeOrderSchema.ts | 0 .../3.0.x/__snapshots__/pluginAxios/zodTypes/zod/tagSchema.ts | 0 .../pluginAxios/zodTypes/zod/uploadFileSchema.ts | 0 .../3.0.x/__snapshots__/pluginFetch/zodTypes/.kubb/client.ts | 0 .../__snapshots__/pluginFetch/zodTypes/.kubb/serializers.ts | 0 .../pluginFetch/zodTypes/.kubb/standardSchema.ts | 0 .../__snapshots__/pluginFetch/zodTypes/clients/addPet.ts | 0 .../__snapshots__/pluginFetch/zodTypes/clients/deletePet.ts | 0 .../pluginFetch/zodTypes/clients/findPetsByStatus.ts | 0 .../pluginFetch/zodTypes/clients/getInventory.ts | 0 .../__snapshots__/pluginFetch/zodTypes/clients/getPetById.ts | 0 .../__snapshots__/pluginFetch/zodTypes/clients/placeOrder.ts | 0 .../__snapshots__/pluginFetch/zodTypes/clients/uploadFile.ts | 0 .../pluginFetch/zodTypes/zod/addPetRequestSchema.ts | 0 .../pluginFetch/zodTypes/zod/addPetRequestStatusEnumSchema.ts | 0 .../__snapshots__/pluginFetch/zodTypes/zod/addPetSchema.ts | 0 .../pluginFetch/zodTypes/zod/apiResponseSchema.ts | 0 .../__snapshots__/pluginFetch/zodTypes/zod/categorySchema.ts | 0 .../__snapshots__/pluginFetch/zodTypes/zod/deletePetSchema.ts | 0 .../pluginFetch/zodTypes/zod/findPetsByStatusSchema.ts | 0 .../pluginFetch/zodTypes/zod/findPetsByStatusStatusSchema.ts | 0 .../pluginFetch/zodTypes/zod/getInventorySchema.ts | 0 .../pluginFetch/zodTypes/zod/getPetByIdSchema.ts | 0 .../__snapshots__/pluginFetch/zodTypes/zod/orderSchema.ts | 0 .../pluginFetch/zodTypes/zod/orderStatusEnumSchema.ts | 0 .../3.0.x/__snapshots__/pluginFetch/zodTypes/zod/petSchema.ts | 0 .../pluginFetch/zodTypes/zod/petStatusEnumSchema.ts | 0 .../pluginFetch/zodTypes/zod/placeOrderSchema.ts | 0 .../3.0.x/__snapshots__/pluginFetch/zodTypes/zod/tagSchema.ts | 0 .../pluginFetch/zodTypes/zod/uploadFileSchema.ts | 0 .../__snapshots__/pluginFetch/zodTypesSdk/.kubb/client.ts | 0 .../pluginFetch/zodTypesSdk/.kubb/serializers.ts | 0 .../pluginFetch/zodTypesSdk/.kubb/standardSchema.ts | 0 .../pluginFetch/zodTypesSdk/clients/petClient.ts | 0 .../pluginFetch/zodTypesSdk/clients/storeClient.ts | 0 .../pluginFetch/zodTypesSdk/zod/addPetRequestSchema.ts | 0 .../zodTypesSdk/zod/addPetRequestStatusEnumSchema.ts | 0 .../__snapshots__/pluginFetch/zodTypesSdk/zod/addPetSchema.ts | 0 .../pluginFetch/zodTypesSdk/zod/apiResponseSchema.ts | 0 .../pluginFetch/zodTypesSdk/zod/categorySchema.ts | 0 .../pluginFetch/zodTypesSdk/zod/deletePetSchema.ts | 0 .../pluginFetch/zodTypesSdk/zod/findPetsByStatusSchema.ts | 0 .../zodTypesSdk/zod/findPetsByStatusStatusSchema.ts | 0 .../pluginFetch/zodTypesSdk/zod/getInventorySchema.ts | 0 .../pluginFetch/zodTypesSdk/zod/getPetByIdSchema.ts | 0 .../__snapshots__/pluginFetch/zodTypesSdk/zod/orderSchema.ts | 0 .../pluginFetch/zodTypesSdk/zod/orderStatusEnumSchema.ts | 0 .../__snapshots__/pluginFetch/zodTypesSdk/zod/petSchema.ts | 0 .../pluginFetch/zodTypesSdk/zod/petStatusEnumSchema.ts | 0 .../pluginFetch/zodTypesSdk/zod/placeOrderSchema.ts | 0 .../__snapshots__/pluginFetch/zodTypesSdk/zod/tagSchema.ts | 0 .../pluginFetch/zodTypesSdk/zod/uploadFileSchema.ts | 0 .../directionalPrinterNode/zod/addPetRequestSchema.ts | 0 .../zod/addPetRequestStatusEnumSchema.ts | 0 .../pluginZod/directionalPrinterNode/zod/addPetSchema.ts | 0 .../pluginZod/directionalPrinterNode/zod/apiResponseSchema.ts | 0 .../pluginZod/directionalPrinterNode/zod/categorySchema.ts | 0 .../pluginZod/directionalPrinterNode/zod/deletePetSchema.ts | 0 .../directionalPrinterNode/zod/findPetsByStatusSchema.ts | 0 .../zod/findPetsByStatusStatusSchema.ts | 0 .../directionalPrinterNode/zod/getInventorySchema.ts | 0 .../pluginZod/directionalPrinterNode/zod/getPetByIdSchema.ts | 0 .../pluginZod/directionalPrinterNode/zod/orderSchema.ts | 0 .../directionalPrinterNode/zod/orderStatusEnumSchema.ts | 0 .../pluginZod/directionalPrinterNode/zod/petSchema.ts | 0 .../directionalPrinterNode/zod/petStatusEnumSchema.ts | 0 .../pluginZod/directionalPrinterNode/zod/placeOrderSchema.ts | 0 .../pluginZod/directionalPrinterNode/zod/tagSchema.ts | 0 .../pluginZod/directionalPrinterNode/zod/uploadFileSchema.ts | 0 tests/openapi/3.0.x/pluginAxios.test.ts | 2 +- tests/openapi/3.0.x/pluginFetch.test.ts | 4 ++-- tests/openapi/3.0.x/pluginZod.test.ts | 2 +- 96 files changed, 4 insertions(+), 4 deletions(-) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/addPetRequestSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/addPetRequestStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/addPetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/apiResponseSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/categorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/deletePetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/findPetsByStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/findPetsByStatusStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/getInventorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/getPetByIdSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/orderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/orderStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/petSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/petStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/placeOrderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/tagSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/uploadFileSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/addPet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/deletePet.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/findPetsByStatus.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/getInventory.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/getPetById.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/placeOrder.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/uploadFile.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/addPetRequestSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/addPetRequestStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/addPetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/apiResponseSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/categorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/deletePetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/findPetsByStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/findPetsByStatusStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/getInventorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/getPetByIdSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/orderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/orderStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/petSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/petStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/placeOrderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/tagSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/uploadFileSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/.kubb/client.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/.kubb/serializers.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/.kubb/standardSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/clients/petClient.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/clients/storeClient.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/addPetRequestSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/addPetRequestStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/addPetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/apiResponseSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/categorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/deletePetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/findPetsByStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/findPetsByStatusStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/getInventorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/getPetByIdSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/orderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/orderStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/petSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/petStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/placeOrderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/tagSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/uploadFileSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/addPetRequestSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/addPetRequestStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/addPetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/apiResponseSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/categorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/deletePetSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/findPetsByStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/findPetsByStatusStatusSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/getInventorySchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/getPetByIdSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/orderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/orderStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/petSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/petStatusEnumSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/placeOrderSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/tagSchema.ts (100%) rename tests/{ => openapi}/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/uploadFileSchema.ts (100%) diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/addPetRequestSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/addPetRequestSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/addPetRequestSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/addPetRequestSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/addPetRequestStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/addPetRequestStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/addPetRequestStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/addPetRequestStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/addPetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/addPetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/addPetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/addPetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/apiResponseSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/apiResponseSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/apiResponseSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/apiResponseSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/categorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/categorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/categorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/categorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/deletePetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/deletePetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/deletePetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/deletePetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/findPetsByStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/findPetsByStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/findPetsByStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/findPetsByStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/findPetsByStatusStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/findPetsByStatusStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/findPetsByStatusStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/findPetsByStatusStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/getInventorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/getInventorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/getInventorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/getInventorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/getPetByIdSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/getPetByIdSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/getPetByIdSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/getPetByIdSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/orderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/orderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/orderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/orderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/orderStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/orderStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/orderStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/orderStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/petSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/petSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/petSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/petSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/petStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/petStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/petStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/petStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/placeOrderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/placeOrderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/placeOrderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/placeOrderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/tagSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/tagSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/tagSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/tagSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/uploadFileSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/uploadFileSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/uploadFileSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginAxios/zodTypes/zod/uploadFileSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/addPet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/addPet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/addPet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/addPet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/deletePet.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/deletePet.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/deletePet.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/deletePet.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/findPetsByStatus.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/findPetsByStatus.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/findPetsByStatus.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/findPetsByStatus.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/getInventory.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/getInventory.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/getInventory.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/getInventory.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/getPetById.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/getPetById.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/getPetById.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/getPetById.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/placeOrder.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/placeOrder.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/placeOrder.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/placeOrder.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/uploadFile.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/uploadFile.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/uploadFile.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/clients/uploadFile.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/addPetRequestSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/addPetRequestSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/addPetRequestSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/addPetRequestSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/addPetRequestStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/addPetRequestStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/addPetRequestStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/addPetRequestStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/addPetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/addPetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/addPetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/addPetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/apiResponseSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/apiResponseSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/apiResponseSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/apiResponseSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/categorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/categorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/categorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/categorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/deletePetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/deletePetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/deletePetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/deletePetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/findPetsByStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/findPetsByStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/findPetsByStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/findPetsByStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/findPetsByStatusStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/findPetsByStatusStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/findPetsByStatusStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/findPetsByStatusStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/getInventorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/getInventorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/getInventorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/getInventorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/getPetByIdSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/getPetByIdSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/getPetByIdSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/getPetByIdSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/orderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/orderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/orderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/orderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/orderStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/orderStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/orderStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/orderStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/petSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/petSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/petSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/petSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/petStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/petStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/petStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/petStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/placeOrderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/placeOrderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/placeOrderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/placeOrderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/tagSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/tagSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/tagSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/tagSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/uploadFileSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/uploadFileSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/uploadFileSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypes/zod/uploadFileSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/.kubb/client.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/.kubb/client.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/.kubb/client.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/.kubb/client.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/.kubb/serializers.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/.kubb/serializers.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/.kubb/serializers.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/.kubb/serializers.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/.kubb/standardSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/.kubb/standardSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/.kubb/standardSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/.kubb/standardSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/clients/petClient.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/clients/petClient.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/clients/petClient.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/clients/petClient.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/clients/storeClient.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/clients/storeClient.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/clients/storeClient.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/clients/storeClient.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/addPetRequestSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/addPetRequestSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/addPetRequestSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/addPetRequestSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/addPetRequestStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/addPetRequestStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/addPetRequestStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/addPetRequestStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/addPetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/addPetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/addPetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/addPetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/apiResponseSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/apiResponseSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/apiResponseSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/apiResponseSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/categorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/categorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/categorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/categorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/deletePetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/deletePetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/deletePetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/deletePetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/findPetsByStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/findPetsByStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/findPetsByStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/findPetsByStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/findPetsByStatusStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/findPetsByStatusStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/findPetsByStatusStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/findPetsByStatusStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/getInventorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/getInventorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/getInventorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/getInventorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/getPetByIdSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/getPetByIdSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/getPetByIdSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/getPetByIdSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/orderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/orderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/orderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/orderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/orderStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/orderStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/orderStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/orderStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/petSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/petSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/petSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/petSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/petStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/petStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/petStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/petStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/placeOrderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/placeOrderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/placeOrderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/placeOrderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/tagSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/tagSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/tagSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/tagSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/uploadFileSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/uploadFileSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/uploadFileSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginFetch/zodTypesSdk/zod/uploadFileSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/addPetRequestSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/addPetRequestSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/addPetRequestSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/addPetRequestSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/addPetRequestStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/addPetRequestStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/addPetRequestStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/addPetRequestStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/addPetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/addPetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/addPetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/addPetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/apiResponseSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/apiResponseSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/apiResponseSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/apiResponseSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/categorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/categorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/categorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/categorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/deletePetSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/deletePetSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/deletePetSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/deletePetSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/findPetsByStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/findPetsByStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/findPetsByStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/findPetsByStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/findPetsByStatusStatusSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/findPetsByStatusStatusSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/findPetsByStatusStatusSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/findPetsByStatusStatusSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/getInventorySchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/getInventorySchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/getInventorySchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/getInventorySchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/getPetByIdSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/getPetByIdSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/getPetByIdSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/getPetByIdSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/orderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/orderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/orderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/orderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/orderStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/orderStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/orderStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/orderStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/petSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/petSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/petSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/petSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/petStatusEnumSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/petStatusEnumSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/petStatusEnumSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/petStatusEnumSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/placeOrderSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/placeOrderSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/placeOrderSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/placeOrderSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/tagSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/tagSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/tagSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/tagSchema.ts diff --git a/tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/uploadFileSchema.ts b/tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/uploadFileSchema.ts similarity index 100% rename from tests/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/uploadFileSchema.ts rename to tests/openapi/3.0.x/__snapshots__/pluginZod/directionalPrinterNode/zod/uploadFileSchema.ts diff --git a/tests/openapi/3.0.x/pluginAxios.test.ts b/tests/openapi/3.0.x/pluginAxios.test.ts index 6c98ddb98..5f502e55a 100644 --- a/tests/openapi/3.0.x/pluginAxios.test.ts +++ b/tests/openapi/3.0.x/pluginAxios.test.ts @@ -90,7 +90,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'zodTypes', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], diff --git a/tests/openapi/3.0.x/pluginFetch.test.ts b/tests/openapi/3.0.x/pluginFetch.test.ts index 77f6dc6bd..a5e015e85 100644 --- a/tests/openapi/3.0.x/pluginFetch.test.ts +++ b/tests/openapi/3.0.x/pluginFetch.test.ts @@ -90,7 +90,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'zodTypes', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], @@ -106,7 +106,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'zodTypesSdk', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()], diff --git a/tests/openapi/3.0.x/pluginZod.test.ts b/tests/openapi/3.0.x/pluginZod.test.ts index 58aba51d7..e4c2f5f3e 100644 --- a/tests/openapi/3.0.x/pluginZod.test.ts +++ b/tests/openapi/3.0.x/pluginZod.test.ts @@ -152,7 +152,7 @@ const configs: Array<{ name: string; config: BuildConfig }> = [ name: 'directionalPrinterNode', config: { root: __dirname, - input: '../../schemas/3.0.x/petStore.yaml', + input: '../../../schemas/3.0.x/petStore.yaml', output: { path: './gen', barrel: false }, adapter: adapterOas({ validate: false, enums: 'root' }), parsers: [parserTs()],