\n PhoneWithMaxLength:\n allOf:\n - $ref: \"#\u002Fcomponents\u002Fschemas\u002FPhoneNumber\"\n - maxLength: 15\n PhoneWithMaxLengthExplicit:\n allOf:\n - $ref: \"#\u002Fcomponents\u002Fschemas\u002FPhoneNumber\"\n - type: string\n maxLength: 15\n securitySchemes:\n petstore_auth:\n type: oauth2\n flows:\n implicit:\n authorizationUrl: https:\u002F\u002Fpetstore3.swagger.io\u002Foauth\u002Fauthorize\n scopes:\n write:pets: modify pets in your account\n read:pets: read your pets\n api_key:\n type: apiKey\n name: api_key\n in: header\n parameters:\n page:\n description: to request with required page number or pagination\n in: query\n name: page\n required: false\n schema:\n type: string\n pageSize:\n description: to request with required page size\n in: query\n name: pageSize\n required: false\n schema:\n type: string\n responses:\n PetNotFound:\n content:\n application\u002Fjson:\n schema:\n properties:\n code:\n format: int32\n type: integer\n message:\n type: string\n description: Pet not found\n","id":"mod_DQY3MM9nLM236TdppZBJBU","is_binary":false,"title":"petStore.yaml","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"mHxA7amSTO","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":null},{"code":"export function buildFormData\u003CT = unknown\u003E(data: T): FormData {\n const formData = new FormData()\n\n function appendData(key: string, value: any) {\n if (value instanceof Blob) {\n formData.append(key, value)\n return\n }\n if (value instanceof Date) {\n formData.append(key, value.toISOString())\n return\n }\n if (typeof value === 'number' || typeof value === 'boolean') {\n formData.append(key, String(value))\n return\n }\n if (typeof value === 'string') {\n formData.append(key, value)\n return\n }\n if (typeof value === 'object') {\n formData.append(key, new Blob([JSON.stringify(value)], { type: 'application\u002Fjson' }))\n return\n }\n }\n\n if (data) {\n Object.entries(data).forEach(([key, value]) =\u003E {\n if (value === undefined || value === null) return\n\n if (Array.isArray(value)) {\n for (const valueItem of value) {\n if (valueItem === undefined || valueItem === null) continue\n appendData(key, valueItem)\n }\n } else {\n appendData(key, value)\n }\n })\n }\n\n return formData\n}\n","id":"mod_KRgZrHBhf1Z9EQMTMKdoYh","is_binary":false,"title":"config.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"Rz3E00bx1N","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"-G11Y1kYCp"},{"code":"export type {\n AddPetRequestStatusEnumTypeKey,\n AddPetRequestType,\n} from '.\u002Fts\u002FAddPetRequestType.ts'\nexport { addPetRequestStatusEnum } from '.\u002Fts\u002FAddPetRequestType.ts'\nexport type {\n AddPet200Type,\n AddPet405Type,\n AddPetMutationRequestType,\n AddPetMutationResponseType,\n AddPetTypeMutation,\n} from '.\u002Fts\u002FAddPetType.ts'\nexport type { AddressType } from '.\u002Fts\u002FAddressType.ts'\nexport type { ApiResponseType } from '.\u002Fts\u002FApiResponseType.ts'\nexport type { CategoryType } from '.\u002Fts\u002FCategoryType.ts'\nexport type {\n CreatePets201Type,\n CreatePetsErrorType,\n CreatePetsHeaderParamsType,\n CreatePetsHeaderParamsXEXAMPLEEnumTypeKey,\n CreatePetsMutationRequestType,\n CreatePetsMutationResponseType,\n CreatePetsPathParamsType,\n CreatePetsQueryParamsType,\n CreatePetsTypeMutation,\n} from '.\u002Fts\u002FCreatePetsType.ts'\nexport { createPetsHeaderParamsXEXAMPLEEnum } from '.\u002Fts\u002FCreatePetsType.ts'\nexport type {\n CreateUsersWithListInput200Type,\n CreateUsersWithListInputErrorType,\n CreateUsersWithListInputMutationRequestType,\n CreateUsersWithListInputMutationResponseType,\n CreateUsersWithListInputTypeMutation,\n} from '.\u002Fts\u002FCreateUsersWithListInputType.ts'\nexport type {\n CreateUserErrorType,\n CreateUserMutationRequestType,\n CreateUserMutationResponseType,\n CreateUserTypeMutation,\n} from '.\u002Fts\u002FCreateUserType.ts'\nexport type { CustomerType } from '.\u002Fts\u002FCustomerType.ts'\nexport type {\n DeleteOrder400Type,\n DeleteOrder404Type,\n DeleteOrderMutationResponseType,\n DeleteOrderPathParamsType,\n DeleteOrderTypeMutation,\n} from '.\u002Fts\u002FDeleteOrderType.ts'\nexport type {\n DeletePet400Type,\n DeletePetHeaderParamsType,\n DeletePetMutationResponseType,\n DeletePetPathParamsType,\n DeletePetTypeMutation,\n} from '.\u002Fts\u002FDeletePetType.ts'\nexport type {\n DeleteUser400Type,\n DeleteUser404Type,\n DeleteUserMutationResponseType,\n DeleteUserPathParamsType,\n DeleteUserTypeMutation,\n} from '.\u002Fts\u002FDeleteUserType.ts'\nexport type {\n FindPetsByStatus200Type,\n FindPetsByStatus400Type,\n FindPetsByStatusQueryParamsStatusEnumTypeKey,\n FindPetsByStatusQueryParamsType,\n FindPetsByStatusQueryResponseType,\n FindPetsByStatusTypeQuery,\n} from '.\u002Fts\u002FFindPetsByStatusType.ts'\nexport { findPetsByStatusQueryParamsStatusEnum } from '.\u002Fts\u002FFindPetsByStatusType.ts'\nexport type {\n FindPetsByTags200Type,\n FindPetsByTags400Type,\n FindPetsByTagsHeaderParamsType,\n FindPetsByTagsHeaderParamsXEXAMPLEEnumTypeKey,\n FindPetsByTagsQueryParamsType,\n FindPetsByTagsQueryResponseType,\n FindPetsByTagsTypeQuery,\n} from '.\u002Fts\u002FFindPetsByTagsType.ts'\nexport { findPetsByTagsHeaderParamsXEXAMPLEEnum } from '.\u002Fts\u002FFindPetsByTagsType.ts'\nexport type {\n GetInventory200Type,\n GetInventoryQueryResponseType,\n GetInventoryTypeQuery,\n} from '.\u002Fts\u002FGetInventoryType.ts'\nexport type {\n GetOrderById200Type,\n GetOrderById400Type,\n GetOrderById404Type,\n GetOrderByIdPathParamsType,\n GetOrderByIdQueryResponseType,\n GetOrderByIdTypeQuery,\n} from '.\u002Fts\u002FGetOrderByIdType.ts'\nexport type {\n GetPetById200Type,\n GetPetById400Type,\n GetPetById404Type,\n GetPetByIdPathParamsType,\n GetPetByIdQueryResponseType,\n GetPetByIdTypeQuery,\n} from '.\u002Fts\u002FGetPetByIdType.ts'\nexport type {\n GetThings201Type,\n GetThingsErrorType,\n GetThingsQueryParamsType,\n GetThingsQueryResponseType,\n GetThingsTypeQuery,\n} from '.\u002Fts\u002FGetThingsType.ts'\nexport type {\n GetUserByName200Type,\n GetUserByName400Type,\n GetUserByName404Type,\n GetUserByNamePathParamsType,\n GetUserByNameQueryResponseType,\n GetUserByNameTypeQuery,\n} from '.\u002Fts\u002FGetUserByNameType.ts'\nexport type {\n LoginUser200Type,\n LoginUser400Type,\n LoginUserQueryParamsType,\n LoginUserQueryResponseType,\n LoginUserTypeQuery,\n} from '.\u002Fts\u002FLoginUserType.ts'\nexport type {\n LogoutUserErrorType,\n LogoutUserQueryResponseType,\n LogoutUserTypeQuery,\n} from '.\u002Fts\u002FLogoutUserType.ts'\nexport type {\n OrderHttpStatusEnumTypeKey,\n OrderStatusEnumTypeKey,\n OrderType,\n OrderValueEnumTypeKey,\n} from '.\u002Fts\u002FOrderType.ts'\nexport { orderHttpStatusEnum, orderStatusEnum, orderValueEnum } from '.\u002Fts\u002FOrderType.ts'\nexport type { PetNotFoundType } from '.\u002Fts\u002FPetNotFoundType.ts'\nexport type { PetStatusEnumTypeKey, PetType } from '.\u002Fts\u002FPetType.ts'\nexport { petStatusEnum } from '.\u002Fts\u002FPetType.ts'\nexport type { PhoneNumberType } from '.\u002Fts\u002FPhoneNumberType.ts'\nexport type { PhoneWithMaxLengthExplicitType } from '.\u002Fts\u002FPhoneWithMaxLengthExplicitType.ts'\nexport type { PhoneWithMaxLengthType } from '.\u002Fts\u002FPhoneWithMaxLengthType.ts'\nexport type {\n PlaceOrderPatch200Type,\n PlaceOrderPatch405Type,\n PlaceOrderPatchMutationRequestType,\n PlaceOrderPatchMutationResponseType,\n PlaceOrderPatchTypeMutation,\n} from '.\u002Fts\u002FPlaceOrderPatchType.ts'\nexport type {\n PlaceOrder200Type,\n PlaceOrder405Type,\n PlaceOrderMutationRequestType,\n PlaceOrderMutationResponseType,\n PlaceOrderTypeMutation,\n} from '.\u002Fts\u002FPlaceOrderType.ts'\nexport type { TagType } from '.\u002Fts\u002FTagType.ts'\nexport type {\n UpdatePet200Type,\n UpdatePet400Type,\n UpdatePet404Type,\n UpdatePet405Type,\n UpdatePetMutationRequestType,\n UpdatePetMutationResponseType,\n UpdatePetTypeMutation,\n} from '.\u002Fts\u002FUpdatePetType.ts'\nexport type {\n UpdatePetWithForm405Type,\n UpdatePetWithFormMutationResponseType,\n UpdatePetWithFormPathParamsType,\n UpdatePetWithFormQueryParamsType,\n UpdatePetWithFormTypeMutation,\n} from '.\u002Fts\u002FUpdatePetWithFormType.ts'\nexport type {\n UpdateUserErrorType,\n UpdateUserMutationRequestType,\n UpdateUserMutationResponseType,\n UpdateUserPathParamsType,\n UpdateUserTypeMutation,\n} from '.\u002Fts\u002FUpdateUserType.ts'\nexport type {\n UploadFile200Type,\n UploadFileMutationRequestType,\n UploadFileMutationResponseType,\n UploadFilePathParamsType,\n UploadFileQueryParamsType,\n UploadFileTypeMutation,\n} from '.\u002Fts\u002FUploadFileType.ts'\nexport type { UserArrayType } from '.\u002Fts\u002FUserArrayType.ts'\nexport type { UserType } from '.\u002Fts\u002FUserType.ts'\nexport type { AddPetRequestSchema } from '.\u002Fzod\u002FaddPetRequestSchema.gen.ts'\nexport { addPetRequestSchema } from '.\u002Fzod\u002FaddPetRequestSchema.gen.ts'\nexport type {\n AddPet200Schema,\n AddPet405Schema,\n AddPetMutationRequestSchema,\n AddPetMutationResponseSchema,\n} from '.\u002Fzod\u002FaddPetSchema.gen.ts'\nexport { addPet200Schema, addPet405Schema, addPetMutationRequestSchema, addPetMutationResponseSchema } from '.\u002Fzod\u002FaddPetSchema.gen.ts'\nexport type { AddressSchema } from '.\u002Fzod\u002FaddressSchema.gen.ts'\nexport { addressSchema } from '.\u002Fzod\u002FaddressSchema.gen.ts'\nexport type { ApiResponseSchema } from '.\u002Fzod\u002FapiResponseSchema.gen.ts'\nexport { apiResponseSchema } from '.\u002Fzod\u002FapiResponseSchema.gen.ts'\nexport type { CategorySchema } from '.\u002Fzod\u002FcategorySchema.gen.ts'\nexport { categorySchema } from '.\u002Fzod\u002FcategorySchema.gen.ts'\nexport type {\n CreatePets201Schema,\n CreatePetsErrorSchema,\n CreatePetsHeaderParamsSchema,\n CreatePetsMutationRequestSchema,\n CreatePetsMutationResponseSchema,\n CreatePetsPathParamsSchema,\n CreatePetsQueryParamsSchema,\n} from '.\u002Fzod\u002FcreatePetsSchema.gen.ts'\nexport {\n createPets201Schema,\n createPetsErrorSchema,\n createPetsHeaderParamsSchema,\n createPetsMutationRequestSchema,\n createPetsMutationResponseSchema,\n createPetsPathParamsSchema,\n createPetsQueryParamsSchema,\n} from '.\u002Fzod\u002FcreatePetsSchema.gen.ts'\nexport type {\n CreateUserErrorSchema,\n CreateUserMutationRequestSchema,\n CreateUserMutationResponseSchema,\n} from '.\u002Fzod\u002FcreateUserSchema.gen.ts'\nexport { createUserErrorSchema, createUserMutationRequestSchema, createUserMutationResponseSchema } from '.\u002Fzod\u002FcreateUserSchema.gen.ts'\nexport type {\n CreateUsersWithListInput200Schema,\n CreateUsersWithListInputErrorSchema,\n CreateUsersWithListInputMutationRequestSchema,\n CreateUsersWithListInputMutationResponseSchema,\n} from '.\u002Fzod\u002FcreateUsersWithListInputSchema.gen.ts'\nexport {\n createUsersWithListInput200Schema,\n createUsersWithListInputErrorSchema,\n createUsersWithListInputMutationRequestSchema,\n createUsersWithListInputMutationResponseSchema,\n} from '.\u002Fzod\u002FcreateUsersWithListInputSchema.gen.ts'\nexport type { CustomerSchema } from '.\u002Fzod\u002FcustomerSchema.gen.ts'\nexport { customerSchema } from '.\u002Fzod\u002FcustomerSchema.gen.ts'\nexport type {\n DeleteOrder400Schema,\n DeleteOrder404Schema,\n DeleteOrderMutationResponseSchema,\n DeleteOrderPathParamsSchema,\n} from '.\u002Fzod\u002FdeleteOrderSchema.gen.ts'\nexport { deleteOrder400Schema, deleteOrder404Schema, deleteOrderMutationResponseSchema, deleteOrderPathParamsSchema } from '.\u002Fzod\u002FdeleteOrderSchema.gen.ts'\nexport type {\n DeletePet400Schema,\n DeletePetHeaderParamsSchema,\n DeletePetMutationResponseSchema,\n DeletePetPathParamsSchema,\n} from '.\u002Fzod\u002FdeletePetSchema.gen.ts'\nexport { deletePet400Schema, deletePetHeaderParamsSchema, deletePetMutationResponseSchema, deletePetPathParamsSchema } from '.\u002Fzod\u002FdeletePetSchema.gen.ts'\nexport type {\n DeleteUser400Schema,\n DeleteUser404Schema,\n DeleteUserMutationResponseSchema,\n DeleteUserPathParamsSchema,\n} from '.\u002Fzod\u002FdeleteUserSchema.gen.ts'\nexport { deleteUser400Schema, deleteUser404Schema, deleteUserMutationResponseSchema, deleteUserPathParamsSchema } from '.\u002Fzod\u002FdeleteUserSchema.gen.ts'\nexport type {\n FindPetsByStatus200Schema,\n FindPetsByStatus400Schema,\n FindPetsByStatusQueryParamsSchema,\n FindPetsByStatusQueryResponseSchema,\n} from '.\u002Fzod\u002FfindPetsByStatusSchema.gen.ts'\nexport {\n findPetsByStatus200Schema,\n findPetsByStatus400Schema,\n findPetsByStatusQueryParamsSchema,\n findPetsByStatusQueryResponseSchema,\n} from '.\u002Fzod\u002FfindPetsByStatusSchema.gen.ts'\nexport type {\n FindPetsByTags200Schema,\n FindPetsByTags400Schema,\n FindPetsByTagsHeaderParamsSchema,\n FindPetsByTagsQueryParamsSchema,\n FindPetsByTagsQueryResponseSchema,\n} from '.\u002Fzod\u002FfindPetsByTagsSchema.gen.ts'\nexport {\n findPetsByTags200Schema,\n findPetsByTags400Schema,\n findPetsByTagsHeaderParamsSchema,\n findPetsByTagsQueryParamsSchema,\n findPetsByTagsQueryResponseSchema,\n} from '.\u002Fzod\u002FfindPetsByTagsSchema.gen.ts'\nexport type {\n GetInventory200Schema,\n GetInventoryQueryResponseSchema,\n} from '.\u002Fzod\u002FgetInventorySchema.gen.ts'\nexport { getInventory200Schema, getInventoryQueryResponseSchema } from '.\u002Fzod\u002FgetInventorySchema.gen.ts'\nexport type {\n GetOrderById200Schema,\n GetOrderById400Schema,\n GetOrderById404Schema,\n GetOrderByIdPathParamsSchema,\n GetOrderByIdQueryResponseSchema,\n} from '.\u002Fzod\u002FgetOrderByIdSchema.gen.ts'\nexport {\n getOrderById200Schema,\n getOrderById400Schema,\n getOrderById404Schema,\n getOrderByIdPathParamsSchema,\n getOrderByIdQueryResponseSchema,\n} from '.\u002Fzod\u002FgetOrderByIdSchema.gen.ts'\nexport type {\n GetPetById200Schema,\n GetPetById400Schema,\n GetPetById404Schema,\n GetPetByIdPathParamsSchema,\n GetPetByIdQueryResponseSchema,\n} from '.\u002Fzod\u002FgetPetByIdSchema.gen.ts'\nexport {\n getPetById200Schema,\n getPetById400Schema,\n getPetById404Schema,\n getPetByIdPathParamsSchema,\n getPetByIdQueryResponseSchema,\n} from '.\u002Fzod\u002FgetPetByIdSchema.gen.ts'\nexport type {\n GetThings201Schema,\n GetThingsErrorSchema,\n GetThingsQueryParamsSchema,\n GetThingsQueryResponseSchema,\n} from '.\u002Fzod\u002FgetThingsSchema.gen.ts'\nexport { getThings201Schema, getThingsErrorSchema, getThingsQueryParamsSchema, getThingsQueryResponseSchema } from '.\u002Fzod\u002FgetThingsSchema.gen.ts'\nexport type {\n GetUserByName200Schema,\n GetUserByName400Schema,\n GetUserByName404Schema,\n GetUserByNamePathParamsSchema,\n GetUserByNameQueryResponseSchema,\n} from '.\u002Fzod\u002FgetUserByNameSchema.gen.ts'\nexport {\n getUserByName200Schema,\n getUserByName400Schema,\n getUserByName404Schema,\n getUserByNamePathParamsSchema,\n getUserByNameQueryResponseSchema,\n} from '.\u002Fzod\u002FgetUserByNameSchema.gen.ts'\nexport type {\n LoginUser200Schema,\n LoginUser400Schema,\n LoginUserQueryParamsSchema,\n LoginUserQueryResponseSchema,\n} from '.\u002Fzod\u002FloginUserSchema.gen.ts'\nexport { loginUser200Schema, loginUser400Schema, loginUserQueryParamsSchema, loginUserQueryResponseSchema } from '.\u002Fzod\u002FloginUserSchema.gen.ts'\nexport type {\n LogoutUserErrorSchema,\n LogoutUserQueryResponseSchema,\n} from '.\u002Fzod\u002FlogoutUserSchema.gen.ts'\nexport { logoutUserErrorSchema, logoutUserQueryResponseSchema } from '.\u002Fzod\u002FlogoutUserSchema.gen.ts'\nexport {\n OperationSchema,\n OperationsMap,\n operations,\n paths,\n} from '.\u002Fzod\u002Foperations.ts'\nexport type { OrderSchema } from '.\u002Fzod\u002ForderSchema.gen.ts'\nexport { orderSchema } from '.\u002Fzod\u002ForderSchema.gen.ts'\nexport type { PetNotFoundSchema } from '.\u002Fzod\u002FpetNotFoundSchema.gen.ts'\nexport { petNotFoundSchema } from '.\u002Fzod\u002FpetNotFoundSchema.gen.ts'\nexport type { PetSchema } from '.\u002Fzod\u002FpetSchema.gen.ts'\nexport { petSchema } from '.\u002Fzod\u002FpetSchema.gen.ts'\nexport type { PhoneNumberSchema } from '.\u002Fzod\u002FphoneNumberSchema.gen.ts'\nexport { phoneNumberSchema } from '.\u002Fzod\u002FphoneNumberSchema.gen.ts'\nexport type { PhoneWithMaxLengthExplicitSchema } from '.\u002Fzod\u002FphoneWithMaxLengthExplicitSchema.gen.ts'\nexport { phoneWithMaxLengthExplicitSchema } from '.\u002Fzod\u002FphoneWithMaxLengthExplicitSchema.gen.ts'\nexport type { PhoneWithMaxLengthSchema } from '.\u002Fzod\u002FphoneWithMaxLengthSchema.gen.ts'\nexport { phoneWithMaxLengthSchema } from '.\u002Fzod\u002FphoneWithMaxLengthSchema.gen.ts'\nexport type {\n PlaceOrderPatch200Schema,\n PlaceOrderPatch405Schema,\n PlaceOrderPatchMutationRequestSchema,\n PlaceOrderPatchMutationResponseSchema,\n} from '.\u002Fzod\u002FplaceOrderPatchSchema.gen.ts'\nexport {\n placeOrderPatch200Schema,\n placeOrderPatch405Schema,\n placeOrderPatchMutationRequestSchema,\n placeOrderPatchMutationResponseSchema,\n} from '.\u002Fzod\u002FplaceOrderPatchSchema.gen.ts'\nexport type {\n PlaceOrder200Schema,\n PlaceOrder405Schema,\n PlaceOrderMutationRequestSchema,\n PlaceOrderMutationResponseSchema,\n} from '.\u002Fzod\u002FplaceOrderSchema.gen.ts'\nexport { placeOrder200Schema, placeOrder405Schema, placeOrderMutationRequestSchema, placeOrderMutationResponseSchema } from '.\u002Fzod\u002FplaceOrderSchema.gen.ts'\nexport type { TagSchema } from '.\u002Fzod\u002FtagSchema.gen.ts'\nexport { tagSchema } from '.\u002Fzod\u002FtagSchema.gen.ts'\nexport type {\n UpdatePet200Schema,\n UpdatePet400Schema,\n UpdatePet404Schema,\n UpdatePet405Schema,\n UpdatePetMutationRequestSchema,\n UpdatePetMutationResponseSchema,\n} from '.\u002Fzod\u002FupdatePetSchema.gen.ts'\nexport {\n updatePet200Schema,\n updatePet400Schema,\n updatePet404Schema,\n updatePet405Schema,\n updatePetMutationRequestSchema,\n updatePetMutationResponseSchema,\n} from '.\u002Fzod\u002FupdatePetSchema.gen.ts'\nexport type {\n UpdatePetWithForm405Schema,\n UpdatePetWithFormMutationResponseSchema,\n UpdatePetWithFormPathParamsSchema,\n UpdatePetWithFormQueryParamsSchema,\n} from '.\u002Fzod\u002FupdatePetWithFormSchema.gen.ts'\nexport {\n updatePetWithForm405Schema,\n updatePetWithFormMutationResponseSchema,\n updatePetWithFormPathParamsSchema,\n updatePetWithFormQueryParamsSchema,\n} from '.\u002Fzod\u002FupdatePetWithFormSchema.gen.ts'\nexport type {\n UpdateUserErrorSchema,\n UpdateUserMutationRequestSchema,\n UpdateUserMutationResponseSchema,\n UpdateUserPathParamsSchema,\n} from '.\u002Fzod\u002FupdateUserSchema.gen.ts'\nexport {\n updateUserErrorSchema,\n updateUserMutationRequestSchema,\n updateUserMutationResponseSchema,\n updateUserPathParamsSchema,\n} from '.\u002Fzod\u002FupdateUserSchema.gen.ts'\nexport type {\n UploadFile200Schema,\n UploadFileMutationRequestSchema,\n UploadFileMutationResponseSchema,\n UploadFilePathParamsSchema,\n UploadFileQueryParamsSchema,\n} from '.\u002Fzod\u002FuploadFileSchema.gen.ts'\nexport {\n uploadFile200Schema,\n uploadFileMutationRequestSchema,\n uploadFileMutationResponseSchema,\n uploadFilePathParamsSchema,\n uploadFileQueryParamsSchema,\n} from '.\u002Fzod\u002FuploadFileSchema.gen.ts'\nexport type { UserArraySchema } from '.\u002Fzod\u002FuserArraySchema.gen.ts'\nexport { userArraySchema } from '.\u002Fzod\u002FuserArraySchema.gen.ts'\nexport type { UserSchema } from '.\u002Fzod\u002FuserSchema.gen.ts'\nexport { userSchema } from '.\u002Fzod\u002FuserSchema.gen.ts'\n","id":"mod_GdFcLaVhjrTmu5nDXeFSmW","is_binary":false,"title":"index.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"awsUbBaEGi","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"zL9sdaosgJ"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport type { CategoryType } from '.\u002FCategoryType.ts'\nimport type { TagType } from '.\u002FTagType.ts'\n\nexport const addPetRequestStatusEnum = {\n available: 'available',\n pending: 'pending',\n sold: 'sold',\n} as const\n\nexport type AddPetRequestStatusEnumTypeKey = (typeof addPetRequestStatusEnum)[keyof typeof addPetRequestStatusEnum]\n\nexport type AddPetRequestType = {\n \u002F**\n * @type integer | undefined, int64\n *\u002F\n id?: bigint\n \u002F**\n * @type string\n *\u002F\n name: string\n \u002F**\n * @type object | undefined\n *\u002F\n category?: CategoryType\n \u002F**\n * @type array\n *\u002F\n photoUrls: string[]\n \u002F**\n * @type array | undefined\n *\u002F\n tags?: TagType[]\n \u002F**\n * @description pet status in the store\n * @type string | undefined\n *\u002F\n status?: AddPetRequestStatusEnumTypeKey\n}\n","id":"mod_AKo5UxDkh8M2fTg28diNDX","is_binary":false,"title":"AddPetRequestType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"2Zmkg3tUmh","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport type { AddPetRequestType } from '.\u002FAddPetRequestType.ts'\nimport type { PetType } from '.\u002FPetType.ts'\n\n\u002F**\n * @description Successful operation\n *\u002F\nexport type AddPet200Type = PetType\n\n\u002F**\n * @description Pet not found\n *\u002F\nexport type AddPet405Type = {\n \u002F**\n * @type integer | undefined, int32\n *\u002F\n code?: number\n \u002F**\n * @type string | undefined\n *\u002F\n message?: string\n}\n\n\u002F**\n * @description Create a new pet in the store\n *\u002F\nexport type AddPetMutationRequestType = AddPetRequestType\n\nexport type AddPetMutationResponseType = AddPet200Type\n\nexport type AddPetTypeMutation = {\n Response: AddPet200Type\n Request: AddPetMutationRequestType\n Errors: AddPet405Type\n}\n","id":"mod_GJR9S3HrXuhKvwkASaPPq8","is_binary":false,"title":"AddPetType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"QPGhlKoPjKH","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nexport type AddressType = {\n \u002F**\n * @type string | undefined\n *\u002F\n street?: string\n \u002F**\n * @type string | undefined\n *\u002F\n city?: string\n \u002F**\n * @type string | undefined\n *\u002F\n state?: string\n \u002F**\n * @type string | undefined\n *\u002F\n zip?: string\n}\n","id":"mod_EM4iTUhh54fwrgp5w3CUig","is_binary":false,"title":"AddressType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"quc2Qy3d21F","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nexport type ApiResponseType = {\n \u002F**\n * @type integer | undefined, int32\n *\u002F\n code?: number\n \u002F**\n * @type string | undefined\n *\u002F\n type?: string\n \u002F**\n * @type string | undefined\n *\u002F\n message?: string\n}\n","id":"mod_PA9HGgkWkuKpQCEo7fD1pL","is_binary":false,"title":"ApiResponseType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"69bn7LrqYjv","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nexport type CategoryType = {\n \u002F**\n * @type integer | undefined, int64\n *\u002F\n id?: bigint\n \u002F**\n * @type string | undefined\n *\u002F\n name?: string\n \u002F**\n * @type object | undefined\n *\u002F\n parent?: CategoryType\n}\n","id":"mod_Qzt8kPxr2d99JxsL5DjRS1","is_binary":false,"title":"CategoryType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"e8oNJ5o3XGS","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport type { PetNotFoundType } from '.\u002FPetNotFoundType.ts'\n\nexport type CreatePetsPathParamsType = {\n \u002F**\n * @description UUID\n * @type string\n *\u002F\n uuid: string\n}\n\nexport type CreatePetsQueryParamsType = {\n \u002F**\n * @description Offset\n * @type integer | undefined\n *\u002F\n offset?: number\n}\n\nexport const createPetsHeaderParamsXEXAMPLEEnum = {\n ONE: 'ONE',\n TWO: 'TWO',\n THREE: 'THREE',\n} as const\n\nexport type CreatePetsHeaderParamsXEXAMPLEEnumTypeKey = (typeof createPetsHeaderParamsXEXAMPLEEnum)[keyof typeof createPetsHeaderParamsXEXAMPLEEnum]\n\nexport type CreatePetsHeaderParamsType = {\n \u002F**\n * @description Header parameters\n * @type string\n *\u002F\n 'X-EXAMPLE': CreatePetsHeaderParamsXEXAMPLEEnumTypeKey\n}\n\n\u002F**\n * @description Null response\n *\u002F\nexport type CreatePets201Type = any\n\n\u002F**\n * @description unexpected error\n *\u002F\nexport type CreatePetsErrorType = PetNotFoundType\n\nexport type CreatePetsMutationRequestType = {\n \u002F**\n * @type string\n *\u002F\n name: string\n \u002F**\n * @type string\n *\u002F\n tag: string\n}\n\nexport type CreatePetsMutationResponseType = CreatePets201Type\n\nexport type CreatePetsTypeMutation = {\n Response: CreatePets201Type\n Request: CreatePetsMutationRequestType\n PathParams: CreatePetsPathParamsType\n QueryParams: CreatePetsQueryParamsType\n HeaderParams: CreatePetsHeaderParamsType\n Errors: any\n}\n","id":"mod_QUrfUmqgTViMh2vA8eXEvK","is_binary":false,"title":"CreatePetsType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"FJ3IP7WW7sx","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport type { UserType } from '.\u002FUserType.ts'\n\n\u002F**\n * @description successful operation\n *\u002F\nexport type CreateUserErrorType = UserType\n\n\u002F**\n * @description Created user object\n *\u002F\nexport type CreateUserMutationRequestType = UserType\n\nexport type CreateUserMutationResponseType = any\n\nexport type CreateUserTypeMutation = {\n Response: any\n Request: CreateUserMutationRequestType\n Errors: any\n}\n","id":"mod_PHg2HUTVigRGQqZzGAMB83","is_binary":false,"title":"CreateUserType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"OJZsLBodUWi","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport type { UserType } from '.\u002FUserType.ts'\n\n\u002F**\n * @description Successful operation\n *\u002F\nexport type CreateUsersWithListInput200Type = UserType\n\n\u002F**\n * @description successful operation\n *\u002F\nexport type CreateUsersWithListInputErrorType = any\n\nexport type CreateUsersWithListInputMutationRequestType = UserType[]\n\nexport type CreateUsersWithListInputMutationResponseType = CreateUsersWithListInput200Type\n\nexport type CreateUsersWithListInputTypeMutation = {\n Response: CreateUsersWithListInput200Type\n Request: CreateUsersWithListInputMutationRequestType\n Errors: any\n}\n","id":"mod_9f6Lt2yuMyVSYNnwKhRL2n","is_binary":false,"title":"CreateUsersWithListInputType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"xEfUhDtkfxg","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport type { AddressType } from '.\u002FAddressType.ts'\n\nexport type CustomerType = {\n \u002F**\n * @type integer | undefined, int64\n *\u002F\n id?: bigint\n \u002F**\n * @type string | undefined\n *\u002F\n username?: string\n \u002F**\n * @type array | undefined\n *\u002F\n address?: AddressType[]\n}\n","id":"mod_9yHoVt2Ayn5vGkBCTdAztr","is_binary":false,"title":"CustomerType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"DnKnWUJBroK","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nexport type DeleteOrderPathParamsType = {\n \u002F**\n * @description ID of the order that needs to be deleted\n * @type integer, int64\n *\u002F\n orderId: bigint\n}\n\n\u002F**\n * @description Invalid ID supplied\n *\u002F\nexport type DeleteOrder400Type = any\n\n\u002F**\n * @description Order not found\n *\u002F\nexport type DeleteOrder404Type = any\n\nexport type DeleteOrderMutationResponseType = any\n\nexport type DeleteOrderTypeMutation = {\n Response: any\n PathParams: DeleteOrderPathParamsType\n Errors: DeleteOrder400Type | DeleteOrder404Type\n}\n","id":"mod_6892Zw4sPQDNo2xaP2Tzks","is_binary":false,"title":"DeleteOrderType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"XzuCq6Yr72s","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nexport type DeletePetPathParamsType = {\n \u002F**\n * @description Pet id to delete\n * @type integer, int64\n *\u002F\n petId: bigint\n}\n\nexport type DeletePetHeaderParamsType = {\n \u002F**\n * @type string | undefined\n *\u002F\n api_key?: string\n}\n\n\u002F**\n * @description Invalid pet value\n *\u002F\nexport type DeletePet400Type = any\n\nexport type DeletePetMutationResponseType = any\n\nexport type DeletePetTypeMutation = {\n Response: any\n PathParams: DeletePetPathParamsType\n HeaderParams: DeletePetHeaderParamsType\n Errors: DeletePet400Type\n}\n","id":"mod_ELeCnhvqXVsRaLpe2R5gEb","is_binary":false,"title":"DeletePetType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"Dk7uR_HQe9X","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nexport type DeleteUserPathParamsType = {\n \u002F**\n * @description The name that needs to be deleted\n * @type string\n *\u002F\n username: string\n}\n\n\u002F**\n * @description Invalid username supplied\n *\u002F\nexport type DeleteUser400Type = any\n\n\u002F**\n * @description User not found\n *\u002F\nexport type DeleteUser404Type = any\n\nexport type DeleteUserMutationResponseType = any\n\nexport type DeleteUserTypeMutation = {\n Response: any\n PathParams: DeleteUserPathParamsType\n Errors: DeleteUser400Type | DeleteUser404Type\n}\n","id":"mod_6x6uhc98h6mR5dUWT6b9AU","is_binary":false,"title":"DeleteUserType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"ic0K5irdHyc","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport type { PetType } from '.\u002FPetType.ts'\n\nexport const findPetsByStatusQueryParamsStatusEnum = {\n available: 'available',\n pending: 'pending',\n sold: 'sold',\n} as const\n\nexport type FindPetsByStatusQueryParamsStatusEnumTypeKey = (typeof findPetsByStatusQueryParamsStatusEnum)[keyof typeof findPetsByStatusQueryParamsStatusEnum]\n\nexport type FindPetsByStatusQueryParamsType = {\n \u002F**\n * @description Status values that need to be considered for filter\n * @default \"available\"\n * @type string | undefined\n *\u002F\n status?: FindPetsByStatusQueryParamsStatusEnumTypeKey\n}\n\n\u002F**\n * @description successful operation\n *\u002F\nexport type FindPetsByStatus200Type = PetType[]\n\n\u002F**\n * @description Invalid status value\n *\u002F\nexport type FindPetsByStatus400Type = any\n\nexport type FindPetsByStatusQueryResponseType = FindPetsByStatus200Type\n\nexport type FindPetsByStatusTypeQuery = {\n Response: FindPetsByStatus200Type\n QueryParams: FindPetsByStatusQueryParamsType\n Errors: FindPetsByStatus400Type\n}\n","id":"mod_HJwcPT3fHmgnirg1yUHnto","is_binary":false,"title":"FindPetsByStatusType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"YMTaIYVBIi6","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport type { PetType } from '.\u002FPetType.ts'\n\nexport type FindPetsByTagsQueryParamsType = {\n \u002F**\n * @description Tags to filter by\n * @type array | undefined\n *\u002F\n tags?: string[]\n \u002F**\n * @description to request with required page number or pagination\n * @type string | undefined\n *\u002F\n page?: string\n \u002F**\n * @description to request with required page size\n * @type string | undefined\n *\u002F\n pageSize?: string\n}\n\nexport const findPetsByTagsHeaderParamsXEXAMPLEEnum = {\n ONE: 'ONE',\n TWO: 'TWO',\n THREE: 'THREE',\n} as const\n\nexport type FindPetsByTagsHeaderParamsXEXAMPLEEnumTypeKey = (typeof findPetsByTagsHeaderParamsXEXAMPLEEnum)[keyof typeof findPetsByTagsHeaderParamsXEXAMPLEEnum]\n\nexport type FindPetsByTagsHeaderParamsType = {\n \u002F**\n * @description Header parameters\n * @type string\n *\u002F\n 'X-EXAMPLE': FindPetsByTagsHeaderParamsXEXAMPLEEnumTypeKey\n}\n\n\u002F**\n * @description successful operation\n *\u002F\nexport type FindPetsByTags200Type = PetType[]\n\n\u002F**\n * @description Invalid tag value\n *\u002F\nexport type FindPetsByTags400Type = any\n\nexport type FindPetsByTagsQueryResponseType = FindPetsByTags200Type\n\nexport type FindPetsByTagsTypeQuery = {\n Response: FindPetsByTags200Type\n QueryParams: FindPetsByTagsQueryParamsType\n HeaderParams: FindPetsByTagsHeaderParamsType\n Errors: FindPetsByTags400Type\n}\n","id":"mod_NLBmBmznUukNmKQUMDnuVq","is_binary":false,"title":"FindPetsByTagsType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"m46JoLyWG1p","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\n\u002F**\n * @description successful operation\n *\u002F\nexport type GetInventory200Type = {\n [key: string]: number\n}\n\nexport type GetInventoryQueryResponseType = GetInventory200Type\n\nexport type GetInventoryTypeQuery = {\n Response: GetInventory200Type\n Errors: any\n}\n","id":"mod_SfmtmNxxxc3aRmqYyrm135","is_binary":false,"title":"GetInventoryType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"Np0l1LLk0G4","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport type { OrderType } from '.\u002FOrderType.ts'\n\nexport type GetOrderByIdPathParamsType = {\n \u002F**\n * @description ID of order that needs to be fetched\n * @type integer, int64\n *\u002F\n orderId: bigint\n}\n\n\u002F**\n * @description successful operation\n *\u002F\nexport type GetOrderById200Type = OrderType\n\n\u002F**\n * @description Invalid ID supplied\n *\u002F\nexport type GetOrderById400Type = any\n\n\u002F**\n * @description Order not found\n *\u002F\nexport type GetOrderById404Type = any\n\nexport type GetOrderByIdQueryResponseType = GetOrderById200Type\n\nexport type GetOrderByIdTypeQuery = {\n Response: GetOrderById200Type\n PathParams: GetOrderByIdPathParamsType\n Errors: GetOrderById400Type | GetOrderById404Type\n}\n","id":"mod_JsTuDuVHJs72UbTkpwKmMf","is_binary":false,"title":"GetOrderByIdType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"5Sv-kx1Yqub","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport type { PetType } from '.\u002FPetType.ts'\n\nexport type GetPetByIdPathParamsType = {\n \u002F**\n * @description ID of pet to return\n * @type integer, int64\n *\u002F\n petId: bigint\n}\n\n\u002F**\n * @description successful operation\n *\u002F\nexport type GetPetById200Type = PetType\n\n\u002F**\n * @description Invalid ID supplied\n *\u002F\nexport type GetPetById400Type = any\n\n\u002F**\n * @description Pet not found\n *\u002F\nexport type GetPetById404Type = any\n\nexport type GetPetByIdQueryResponseType = GetPetById200Type\n\nexport type GetPetByIdTypeQuery = {\n Response: GetPetById200Type\n PathParams: GetPetByIdPathParamsType\n Errors: GetPetById400Type | GetPetById404Type\n}\n","id":"mod_NuPckRV3tP6X9aUeYUuUY8","is_binary":false,"title":"GetPetByIdType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"WWoFPqn3TMW","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport type { PetNotFoundType } from '.\u002FPetNotFoundType.ts'\n\nexport type GetThingsQueryParamsType = {\n \u002F**\n * @description Maximum number of things to return\n * @minLength 1\n * @maxLength 100\n * @default 100\n * @type integer | undefined\n *\u002F\n limit?: number\n \u002F**\n * @description Number of things to skip\n * @minLength 0\n * @default 0\n * @type integer | undefined\n *\u002F\n skip?: number\n}\n\n\u002F**\n * @description Null response\n *\u002F\nexport type GetThings201Type = any\n\n\u002F**\n * @description unexpected error\n *\u002F\nexport type GetThingsErrorType = PetNotFoundType\n\nexport type GetThingsQueryResponseType = GetThings201Type\n\nexport type GetThingsTypeQuery = {\n Response: GetThings201Type\n QueryParams: GetThingsQueryParamsType\n Errors: any\n}\n","id":"mod_MA3cC3ukNHdMZL5vDDL8D6","is_binary":false,"title":"GetThingsType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"96hBL1nR92M","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport type { UserType } from '.\u002FUserType.ts'\n\nexport type GetUserByNamePathParamsType = {\n \u002F**\n * @description The name that needs to be fetched. Use user1 for testing.\n * @type string\n *\u002F\n username: string\n}\n\n\u002F**\n * @description successful operation\n *\u002F\nexport type GetUserByName200Type = UserType\n\n\u002F**\n * @description Invalid username supplied\n *\u002F\nexport type GetUserByName400Type = any\n\n\u002F**\n * @description User not found\n *\u002F\nexport type GetUserByName404Type = any\n\nexport type GetUserByNameQueryResponseType = GetUserByName200Type\n\nexport type GetUserByNameTypeQuery = {\n Response: GetUserByName200Type\n PathParams: GetUserByNamePathParamsType\n Errors: GetUserByName400Type | GetUserByName404Type\n}\n","id":"mod_HRkUFWaBNjmmscJmTdqA4H","is_binary":false,"title":"GetUserByNameType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"gi3wRZQ889I","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nexport type LoginUserQueryParamsType = {\n \u002F**\n * @description The user name for login\n * @type string | undefined\n *\u002F\n username?: string\n \u002F**\n * @description The password for login in clear text\n * @type string | undefined\n *\u002F\n password?: string\n}\n\n\u002F**\n * @description successful operation\n *\u002F\nexport type LoginUser200Type = string\n\n\u002F**\n * @description Invalid username\u002Fpassword supplied\n *\u002F\nexport type LoginUser400Type = any\n\nexport type LoginUserQueryResponseType = LoginUser200Type\n\nexport type LoginUserTypeQuery = {\n Response: LoginUser200Type\n QueryParams: LoginUserQueryParamsType\n Errors: LoginUser400Type\n}\n","id":"mod_PnNRekifgB2VUaZKQ8txCz","is_binary":false,"title":"LoginUserType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"94EiW63Pq3V","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\n\u002F**\n * @description successful operation\n *\u002F\nexport type LogoutUserErrorType = any\n\nexport type LogoutUserQueryResponseType = any\n\nexport type LogoutUserTypeQuery = {\n Response: any\n Errors: any\n}\n","id":"mod_BEVTE6s1rEpfJ7oJmU5csT","is_binary":false,"title":"LogoutUserType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"ibzInais7XI","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nexport const orderStatusEnum = {\n placed: 'placed',\n approved: 'approved',\n delivered: 'delivered',\n} as const\n\nexport type OrderStatusEnumTypeKey = (typeof orderStatusEnum)[keyof typeof orderStatusEnum]\n\nexport const orderHttpStatusEnum = {\n ok: 200,\n not_found: 400,\n} as const\n\nexport type OrderHttpStatusEnumTypeKey = (typeof orderHttpStatusEnum)[keyof typeof orderHttpStatusEnum]\n\nexport const orderValueEnum = {\n FIRST_VALUE: 0,\n FOLLOWING_VALUE: 1,\n ANOTHER_ONE: 2,\n ONE_MORE: 3,\n ALMOST_FINISHED: 3.5,\n DONE: 4,\n} as const\n\nexport type OrderValueEnumTypeKey = (typeof orderValueEnum)[keyof typeof orderValueEnum]\n\nexport type OrderType = {\n \u002F**\n * @type integer | undefined, int64\n *\u002F\n id?: bigint\n \u002F**\n * @type integer | undefined, int64\n *\u002F\n petId?: bigint\n \u002F**\n * @type integer | undefined, int32\n *\u002F\n quantity?: number\n \u002F**\n * @type string | undefined, date-time\n *\u002F\n shipDate?: string\n \u002F**\n * @description Order Status\n * @type string | undefined\n *\u002F\n status?: OrderStatusEnumTypeKey\n \u002F**\n * @description HTTP Status\n * @type number | undefined\n *\u002F\n http_status?: OrderHttpStatusEnumTypeKey\n \u002F**\n * @description Price\n * @type number | undefined\n *\u002F\n value?: OrderValueEnumTypeKey\n \u002F**\n * @type boolean | undefined\n *\u002F\n complete?: boolean\n}\n","id":"mod_LjGWQS69TSQL2XyL4V2S26","is_binary":false,"title":"OrderType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"Q-EvXMhszEf","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nexport type PetNotFoundType = {\n \u002F**\n * @type integer | undefined, int32\n *\u002F\n code?: number\n \u002F**\n * @type string | undefined\n *\u002F\n message?: string\n}\n","id":"mod_RGR6SpAGTVWWRxBWuX5Zmr","is_binary":false,"title":"PetNotFoundType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"G__IlNwQC1E","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport type { CategoryType } from '.\u002FCategoryType.ts'\nimport type { TagType } from '.\u002FTagType.ts'\n\nexport const petStatusEnum = {\n available: 'available',\n pending: 'pending',\n sold: 'sold',\n} as const\n\nexport type PetStatusEnumTypeKey = (typeof petStatusEnum)[keyof typeof petStatusEnum]\n\nexport type PetType = {\n \u002F**\n * @type integer | undefined, int64\n *\u002F\n id?: bigint\n \u002F**\n * @type array | undefined\n *\u002F\n parent?: PetType[]\n \u002F**\n * @pattern ^[0-9]{1,19}$\n * @type string | undefined\n *\u002F\n internalId?: string\n \u002F**\n * @type string\n *\u002F\n name: string\n \u002F**\n * @type object | undefined\n *\u002F\n category?: CategoryType\n \u002F**\n * @type array\n *\u002F\n photoUrls: string[]\n \u002F**\n * @type array | undefined\n *\u002F\n tags?: TagType[]\n \u002F**\n * @description pet status in the store\n * @type string | undefined\n *\u002F\n status?: PetStatusEnumTypeKey\n}\n","id":"mod_VC5aR5q1VyYoWaKJpmKkZs","is_binary":false,"title":"PetType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"XhbFTMMx0BH","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\n\u002F**\n * @pattern ^(\\+\\d{1,3}[-\\s]?)?\\(?(?:\\d{1,4})\\)?[-\\s]?\\d{1,4}[-\\s]?\\d{1,9}$\n *\u002F\nexport type PhoneNumberType = string\n","id":"mod_YTWfqJyj2cazcoPVimwCen","is_binary":false,"title":"PhoneNumberType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"l3pfDXffHxd","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport type { PhoneNumberType } from '.\u002FPhoneNumberType.ts'\n\nexport type PhoneWithMaxLengthExplicitType = PhoneNumberType & string & string\n","id":"mod_XN99pD3gZ2Xi5sD5WwFpsY","is_binary":false,"title":"PhoneWithMaxLengthExplicitType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"5BRafrugsEg","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport type { PhoneNumberType } from '.\u002FPhoneNumberType.ts'\n\nexport type PhoneWithMaxLengthType = PhoneNumberType & string & string\n","id":"mod_NHB7BwhRJZM7oa9wpPSyEo","is_binary":false,"title":"PhoneWithMaxLengthType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"VtqLZX_cQmj","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport type { OrderType } from '.\u002FOrderType.ts'\n\n\u002F**\n * @description successful operation\n *\u002F\nexport type PlaceOrderPatch200Type = OrderType\n\n\u002F**\n * @description Invalid input\n *\u002F\nexport type PlaceOrderPatch405Type = any\n\nexport type PlaceOrderPatchMutationRequestType = OrderType\n\nexport type PlaceOrderPatchMutationResponseType = PlaceOrderPatch200Type\n\nexport type PlaceOrderPatchTypeMutation = {\n Response: PlaceOrderPatch200Type\n Request: PlaceOrderPatchMutationRequestType\n Errors: PlaceOrderPatch405Type\n}\n","id":"mod_Y58V5YySmKs4tC61uSQWLd","is_binary":false,"title":"PlaceOrderPatchType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"qzio5x1w4Bw","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport type { OrderType } from '.\u002FOrderType.ts'\n\n\u002F**\n * @description successful operation\n *\u002F\nexport type PlaceOrder200Type = OrderType\n\n\u002F**\n * @description Invalid input\n *\u002F\nexport type PlaceOrder405Type = any\n\nexport type PlaceOrderMutationRequestType = OrderType\n\nexport type PlaceOrderMutationResponseType = PlaceOrder200Type\n\nexport type PlaceOrderTypeMutation = {\n Response: PlaceOrder200Type\n Request: PlaceOrderMutationRequestType\n Errors: PlaceOrder405Type\n}\n","id":"mod_BXxvyHjYU89t7gyRcgnPxE","is_binary":false,"title":"PlaceOrderType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"G2Xxkh1n3UH","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nexport type TagType = {\n \u002F**\n * @type integer | undefined, int64\n *\u002F\n id?: bigint\n \u002F**\n * @type string | undefined\n *\u002F\n name?: string\n}\n","id":"mod_415tpsiDGpqMTGBtc4AYhE","is_binary":false,"title":"TagType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"tYVQG0T3UPl","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport type { PetType } from '.\u002FPetType.ts'\n\n\u002F**\n * @description Successful operation\n *\u002F\nexport type UpdatePet200Type = PetType\n\n\u002F**\n * @description Invalid ID supplied\n *\u002F\nexport type UpdatePet400Type = any\n\n\u002F**\n * @description Pet not found\n *\u002F\nexport type UpdatePet404Type = any\n\n\u002F**\n * @description Validation exception\n *\u002F\nexport type UpdatePet405Type = any\n\n\u002F**\n * @description Update an existent pet in the store\n *\u002F\nexport type UpdatePetMutationRequestType = PetType\n\nexport type UpdatePetMutationResponseType = UpdatePet200Type\n\nexport type UpdatePetTypeMutation = {\n Response: UpdatePet200Type\n Request: UpdatePetMutationRequestType\n Errors: UpdatePet400Type | UpdatePet404Type | UpdatePet405Type\n}\n","id":"mod_4M5ziT8UvMfnMgNTUDf2qm","is_binary":false,"title":"UpdatePetType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"1ZeQhLGuD8q","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nexport type UpdatePetWithFormPathParamsType = {\n \u002F**\n * @description ID of pet that needs to be updated\n * @type integer, int64\n *\u002F\n petId: bigint\n}\n\nexport type UpdatePetWithFormQueryParamsType = {\n \u002F**\n * @description Name of pet that needs to be updated\n * @type string | undefined\n *\u002F\n name?: string\n \u002F**\n * @description Status of pet that needs to be updated\n * @type string | undefined\n *\u002F\n status?: string\n}\n\n\u002F**\n * @description Invalid input\n *\u002F\nexport type UpdatePetWithForm405Type = any\n\nexport type UpdatePetWithFormMutationResponseType = any\n\nexport type UpdatePetWithFormTypeMutation = {\n Response: any\n PathParams: UpdatePetWithFormPathParamsType\n QueryParams: UpdatePetWithFormQueryParamsType\n Errors: UpdatePetWithForm405Type\n}\n","id":"mod_44btS5u9PyXTjocSUgGQXN","is_binary":false,"title":"UpdatePetWithFormType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"rlujbzlDLS8","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport type { UserType } from '.\u002FUserType.ts'\n\nexport type UpdateUserPathParamsType = {\n \u002F**\n * @description name that need to be deleted\n * @type string\n *\u002F\n username: string\n}\n\n\u002F**\n * @description successful operation\n *\u002F\nexport type UpdateUserErrorType = any\n\n\u002F**\n * @description Update an existent user in the store\n *\u002F\nexport type UpdateUserMutationRequestType = UserType\n\nexport type UpdateUserMutationResponseType = any\n\nexport type UpdateUserTypeMutation = {\n Response: any\n Request: UpdateUserMutationRequestType\n PathParams: UpdateUserPathParamsType\n Errors: any\n}\n","id":"mod_JzhjtkPw2R8Uv4Eyc3e1qP","is_binary":false,"title":"UpdateUserType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"mHa3VEGQOpw","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport type { ApiResponseType } from '.\u002FApiResponseType.ts'\n\nexport type UploadFilePathParamsType = {\n \u002F**\n * @description ID of pet to update\n * @type integer, int64\n *\u002F\n petId: bigint\n}\n\nexport type UploadFileQueryParamsType = {\n \u002F**\n * @description Additional Metadata\n * @type string | undefined\n *\u002F\n additionalMetadata?: string\n}\n\n\u002F**\n * @description successful operation\n *\u002F\nexport type UploadFile200Type = ApiResponseType\n\nexport type UploadFileMutationRequestType = Blob\n\nexport type UploadFileMutationResponseType = UploadFile200Type\n\nexport type UploadFileTypeMutation = {\n Response: UploadFile200Type\n Request: UploadFileMutationRequestType\n PathParams: UploadFilePathParamsType\n QueryParams: UploadFileQueryParamsType\n Errors: any\n}\n","id":"mod_Hs9jr4MNVHshV2HXeLDVbB","is_binary":false,"title":"UploadFileType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"RTCM1054MjN","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\n\u002F**\n * @description List of user object\n *\u002F\nexport type UserArrayType = any\n","id":"mod_3tiXusHxphMLXEBvV5uCRK","is_binary":false,"title":"UserArrayType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"42IYnMkPa_u","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nexport type UserType = {\n \u002F**\n * @type integer | undefined, int64\n *\u002F\n id?: bigint\n \u002F**\n * @type string | undefined\n *\u002F\n username?: string\n \u002F**\n * @type string | undefined\n *\u002F\n firstName?: string\n \u002F**\n * @type string | undefined\n *\u002F\n lastName?: string\n \u002F**\n * @type string | undefined\n *\u002F\n email?: string\n \u002F**\n * @type string | undefined\n *\u002F\n password?: string\n \u002F**\n * @type string | undefined\n *\u002F\n phone?: string\n \u002F**\n * @description User Status\n * @type integer | undefined, int32\n *\u002F\n userStatus?: number\n}\n","id":"mod_GpFm2fDKy1mpbBk4t3WNDJ","is_binary":false,"title":"UserType.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"xU5deJeKchv","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"export type {\n AddPetRequestStatusEnumTypeKey,\n AddPetRequestType,\n} from '.\u002FAddPetRequestType.ts'\nexport { addPetRequestStatusEnum } from '.\u002FAddPetRequestType.ts'\nexport type {\n AddPet200Type,\n AddPet405Type,\n AddPetMutationRequestType,\n AddPetMutationResponseType,\n AddPetTypeMutation,\n} from '.\u002FAddPetType.ts'\nexport type { AddressType } from '.\u002FAddressType.ts'\nexport type { ApiResponseType } from '.\u002FApiResponseType.ts'\nexport type { CategoryType } from '.\u002FCategoryType.ts'\nexport type {\n CreatePets201Type,\n CreatePetsErrorType,\n CreatePetsHeaderParamsType,\n CreatePetsHeaderParamsXEXAMPLEEnumTypeKey,\n CreatePetsMutationRequestType,\n CreatePetsMutationResponseType,\n CreatePetsPathParamsType,\n CreatePetsQueryParamsType,\n CreatePetsTypeMutation,\n} from '.\u002FCreatePetsType.ts'\nexport { createPetsHeaderParamsXEXAMPLEEnum } from '.\u002FCreatePetsType.ts'\nexport type {\n CreateUsersWithListInput200Type,\n CreateUsersWithListInputErrorType,\n CreateUsersWithListInputMutationRequestType,\n CreateUsersWithListInputMutationResponseType,\n CreateUsersWithListInputTypeMutation,\n} from '.\u002FCreateUsersWithListInputType.ts'\nexport type {\n CreateUserErrorType,\n CreateUserMutationRequestType,\n CreateUserMutationResponseType,\n CreateUserTypeMutation,\n} from '.\u002FCreateUserType.ts'\nexport type { CustomerType } from '.\u002FCustomerType.ts'\nexport type {\n DeleteOrder400Type,\n DeleteOrder404Type,\n DeleteOrderMutationResponseType,\n DeleteOrderPathParamsType,\n DeleteOrderTypeMutation,\n} from '.\u002FDeleteOrderType.ts'\nexport type {\n DeletePet400Type,\n DeletePetHeaderParamsType,\n DeletePetMutationResponseType,\n DeletePetPathParamsType,\n DeletePetTypeMutation,\n} from '.\u002FDeletePetType.ts'\nexport type {\n DeleteUser400Type,\n DeleteUser404Type,\n DeleteUserMutationResponseType,\n DeleteUserPathParamsType,\n DeleteUserTypeMutation,\n} from '.\u002FDeleteUserType.ts'\nexport type {\n FindPetsByStatus200Type,\n FindPetsByStatus400Type,\n FindPetsByStatusQueryParamsStatusEnumTypeKey,\n FindPetsByStatusQueryParamsType,\n FindPetsByStatusQueryResponseType,\n FindPetsByStatusTypeQuery,\n} from '.\u002FFindPetsByStatusType.ts'\nexport { findPetsByStatusQueryParamsStatusEnum } from '.\u002FFindPetsByStatusType.ts'\nexport type {\n FindPetsByTags200Type,\n FindPetsByTags400Type,\n FindPetsByTagsHeaderParamsType,\n FindPetsByTagsHeaderParamsXEXAMPLEEnumTypeKey,\n FindPetsByTagsQueryParamsType,\n FindPetsByTagsQueryResponseType,\n FindPetsByTagsTypeQuery,\n} from '.\u002FFindPetsByTagsType.ts'\nexport { findPetsByTagsHeaderParamsXEXAMPLEEnum } from '.\u002FFindPetsByTagsType.ts'\nexport type {\n GetInventory200Type,\n GetInventoryQueryResponseType,\n GetInventoryTypeQuery,\n} from '.\u002FGetInventoryType.ts'\nexport type {\n GetOrderById200Type,\n GetOrderById400Type,\n GetOrderById404Type,\n GetOrderByIdPathParamsType,\n GetOrderByIdQueryResponseType,\n GetOrderByIdTypeQuery,\n} from '.\u002FGetOrderByIdType.ts'\nexport type {\n GetPetById200Type,\n GetPetById400Type,\n GetPetById404Type,\n GetPetByIdPathParamsType,\n GetPetByIdQueryResponseType,\n GetPetByIdTypeQuery,\n} from '.\u002FGetPetByIdType.ts'\nexport type {\n GetThings201Type,\n GetThingsErrorType,\n GetThingsQueryParamsType,\n GetThingsQueryResponseType,\n GetThingsTypeQuery,\n} from '.\u002FGetThingsType.ts'\nexport type {\n GetUserByName200Type,\n GetUserByName400Type,\n GetUserByName404Type,\n GetUserByNamePathParamsType,\n GetUserByNameQueryResponseType,\n GetUserByNameTypeQuery,\n} from '.\u002FGetUserByNameType.ts'\nexport type {\n LoginUser200Type,\n LoginUser400Type,\n LoginUserQueryParamsType,\n LoginUserQueryResponseType,\n LoginUserTypeQuery,\n} from '.\u002FLoginUserType.ts'\nexport type {\n LogoutUserErrorType,\n LogoutUserQueryResponseType,\n LogoutUserTypeQuery,\n} from '.\u002FLogoutUserType.ts'\nexport type {\n OrderHttpStatusEnumTypeKey,\n OrderStatusEnumTypeKey,\n OrderType,\n OrderValueEnumTypeKey,\n} from '.\u002FOrderType.ts'\nexport { orderHttpStatusEnum, orderStatusEnum, orderValueEnum } from '.\u002FOrderType.ts'\nexport type { PetNotFoundType } from '.\u002FPetNotFoundType.ts'\nexport type { PetStatusEnumTypeKey, PetType } from '.\u002FPetType.ts'\nexport { petStatusEnum } from '.\u002FPetType.ts'\nexport type { PhoneNumberType } from '.\u002FPhoneNumberType.ts'\nexport type { PhoneWithMaxLengthExplicitType } from '.\u002FPhoneWithMaxLengthExplicitType.ts'\nexport type { PhoneWithMaxLengthType } from '.\u002FPhoneWithMaxLengthType.ts'\nexport type {\n PlaceOrderPatch200Type,\n PlaceOrderPatch405Type,\n PlaceOrderPatchMutationRequestType,\n PlaceOrderPatchMutationResponseType,\n PlaceOrderPatchTypeMutation,\n} from '.\u002FPlaceOrderPatchType.ts'\nexport type {\n PlaceOrder200Type,\n PlaceOrder405Type,\n PlaceOrderMutationRequestType,\n PlaceOrderMutationResponseType,\n PlaceOrderTypeMutation,\n} from '.\u002FPlaceOrderType.ts'\nexport type { TagType } from '.\u002FTagType.ts'\nexport type {\n UpdatePet200Type,\n UpdatePet400Type,\n UpdatePet404Type,\n UpdatePet405Type,\n UpdatePetMutationRequestType,\n UpdatePetMutationResponseType,\n UpdatePetTypeMutation,\n} from '.\u002FUpdatePetType.ts'\nexport type {\n UpdatePetWithForm405Type,\n UpdatePetWithFormMutationResponseType,\n UpdatePetWithFormPathParamsType,\n UpdatePetWithFormQueryParamsType,\n UpdatePetWithFormTypeMutation,\n} from '.\u002FUpdatePetWithFormType.ts'\nexport type {\n UpdateUserErrorType,\n UpdateUserMutationRequestType,\n UpdateUserMutationResponseType,\n UpdateUserPathParamsType,\n UpdateUserTypeMutation,\n} from '.\u002FUpdateUserType.ts'\nexport type {\n UploadFile200Type,\n UploadFileMutationRequestType,\n UploadFileMutationResponseType,\n UploadFilePathParamsType,\n UploadFileQueryParamsType,\n UploadFileTypeMutation,\n} from '.\u002FUploadFileType.ts'\nexport type { UserArrayType } from '.\u002FUserArrayType.ts'\nexport type { UserType } from '.\u002FUserType.ts'\n","id":"mod_NBNerHjV1bz2hc8Nn8GabE","is_binary":false,"title":"index.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"J7hLSeeMAUl","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"YFBXE71Euv"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\nimport { categorySchema } from '.\u002FcategorySchema.gen.ts'\nimport { tagSchema } from '.\u002FtagSchema.gen.ts'\n\nexport const addPetRequestSchema = z.object({\n id: z.optional(z.bigint()),\n name: z.string(),\n get category() {\n return categorySchema.optional()\n },\n photoUrls: z.array(z.string()),\n get tags() {\n return z.array(tagSchema).optional()\n },\n status: z.optional(z.enum(['available', 'pending', 'sold']).describe('pet status in the store')),\n})\n\nexport type AddPetRequestSchema = z.infer\u003Ctypeof addPetRequestSchema\u003E\n","id":"mod_CtJ99Ao6VqpWkQJ6QJffdj","is_binary":false,"title":"addPetRequestSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"ePXVwI0gFbO","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\nimport { addPetRequestSchema } from '.\u002FaddPetRequestSchema.gen.ts'\nimport { petSchema } from '.\u002FpetSchema.gen.ts'\n\n\u002F**\n * @description Successful operation\n *\u002F\nexport const addPet200Schema = z.lazy(() =\u003E petSchema)\n\nexport type AddPet200Schema = z.infer\u003Ctypeof addPet200Schema\u003E\n\n\u002F**\n * @description Pet not found\n *\u002F\nexport const addPet405Schema = z.object({\n code: z.optional(z.int()),\n message: z.optional(z.string()),\n})\n\nexport type AddPet405Schema = z.infer\u003Ctypeof addPet405Schema\u003E\n\n\u002F**\n * @description Create a new pet in the store\n *\u002F\nexport const addPetMutationRequestSchema = z.lazy(() =\u003E addPetRequestSchema)\n\nexport type AddPetMutationRequestSchema = z.infer\u003Ctypeof addPetMutationRequestSchema\u003E\n\nexport const addPetMutationResponseSchema = z.lazy(() =\u003E addPet200Schema)\n\nexport type AddPetMutationResponseSchema = z.infer\u003Ctypeof addPetMutationResponseSchema\u003E\n","id":"mod_8cKyw5Vbec5q6yzgyWB5kt","is_binary":false,"title":"addPetSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"qkffsV3HPQs","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\n\nexport const addressSchema = z.object({\n street: z.optional(z.string()),\n city: z.optional(z.string()),\n state: z.optional(z.string()),\n zip: z.optional(z.string()),\n})\n\nexport type AddressSchema = z.infer\u003Ctypeof addressSchema\u003E\n","id":"mod_Ne38k3CvxFSyHwsaDJFgXo","is_binary":false,"title":"addressSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"eEk9R_iXfm2","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\n\nexport const apiResponseSchema = z.object({\n code: z.optional(z.int()),\n type: z.optional(z.string()),\n message: z.optional(z.string()),\n})\n\nexport type ApiResponseSchema = z.infer\u003Ctypeof apiResponseSchema\u003E\n","id":"mod_DG74oEKh7TaVmMYvVGquzm","is_binary":false,"title":"apiResponseSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"e7fv9V89PBg","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\n\nexport const categorySchema = z.object({\n id: z.optional(z.bigint()),\n name: z.optional(z.string()),\n get parent() {\n return categorySchema.optional()\n },\n})\n\nexport type CategorySchema = z.infer\u003Ctypeof categorySchema\u003E\n","id":"mod_6WpsE6dUvkRJssLe1NxAeX","is_binary":false,"title":"categorySchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"E7iobrACz9k","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\nimport { petNotFoundSchema } from '.\u002FpetNotFoundSchema.gen.ts'\n\nexport const createPetsPathParamsSchema = z.object({\n uuid: z.string().describe('UUID'),\n})\n\nexport type CreatePetsPathParamsSchema = z.infer\u003Ctypeof createPetsPathParamsSchema\u003E\n\nexport const createPetsQueryParamsSchema = z\n .object({\n offset: z.optional(z.coerce.number().int().describe('Offset')),\n })\n .optional()\n\nexport type CreatePetsQueryParamsSchema = z.infer\u003Ctypeof createPetsQueryParamsSchema\u003E\n\nexport const createPetsHeaderParamsSchema = z.object({\n 'X-EXAMPLE': z.enum(['ONE', 'TWO', 'THREE']).describe('Header parameters'),\n})\n\nexport type CreatePetsHeaderParamsSchema = z.infer\u003Ctypeof createPetsHeaderParamsSchema\u003E\n\n\u002F**\n * @description Null response\n *\u002F\nexport const createPets201Schema = z.any()\n\nexport type CreatePets201Schema = z.infer\u003Ctypeof createPets201Schema\u003E\n\n\u002F**\n * @description unexpected error\n *\u002F\nexport const createPetsErrorSchema = z.lazy(() =\u003E petNotFoundSchema).describe('Pet not found')\n\nexport type CreatePetsErrorSchema = z.infer\u003Ctypeof createPetsErrorSchema\u003E\n\nexport const createPetsMutationRequestSchema = z.object({\n name: z.string(),\n tag: z.string(),\n})\n\nexport type CreatePetsMutationRequestSchema = z.infer\u003Ctypeof createPetsMutationRequestSchema\u003E\n\nexport const createPetsMutationResponseSchema = z.lazy(() =\u003E createPets201Schema)\n\nexport type CreatePetsMutationResponseSchema = z.infer\u003Ctypeof createPetsMutationResponseSchema\u003E\n","id":"mod_JYa6est4VN45rMLGRiYcHG","is_binary":false,"title":"createPetsSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"Ckot7wZQNOw","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\nimport { userSchema } from '.\u002FuserSchema.gen.ts'\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const createUserErrorSchema = z.lazy(() =\u003E userSchema)\n\nexport type CreateUserErrorSchema = z.infer\u003Ctypeof createUserErrorSchema\u003E\n\n\u002F**\n * @description Created user object\n *\u002F\nexport const createUserMutationRequestSchema = z.lazy(() =\u003E userSchema)\n\nexport type CreateUserMutationRequestSchema = z.infer\u003Ctypeof createUserMutationRequestSchema\u003E\n\nexport const createUserMutationResponseSchema = z.any()\n\nexport type CreateUserMutationResponseSchema = z.infer\u003Ctypeof createUserMutationResponseSchema\u003E\n","id":"mod_VRNM3UzHHx4UrfJ3X1dy82","is_binary":false,"title":"createUserSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"frJz9UpK9qT","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\nimport { userSchema } from '.\u002FuserSchema.gen.ts'\n\n\u002F**\n * @description Successful operation\n *\u002F\nexport const createUsersWithListInput200Schema = z.lazy(() =\u003E userSchema)\n\nexport type CreateUsersWithListInput200Schema = z.infer\u003Ctypeof createUsersWithListInput200Schema\u003E\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const createUsersWithListInputErrorSchema = z.any()\n\nexport type CreateUsersWithListInputErrorSchema = z.infer\u003Ctypeof createUsersWithListInputErrorSchema\u003E\n\nexport const createUsersWithListInputMutationRequestSchema = z.array(z.lazy(() =\u003E userSchema))\n\nexport type CreateUsersWithListInputMutationRequestSchema = z.infer\u003Ctypeof createUsersWithListInputMutationRequestSchema\u003E\n\nexport const createUsersWithListInputMutationResponseSchema = z.lazy(() =\u003E createUsersWithListInput200Schema)\n\nexport type CreateUsersWithListInputMutationResponseSchema = z.infer\u003Ctypeof createUsersWithListInputMutationResponseSchema\u003E\n","id":"mod_6PfLM3jvfKJ2LwHJJwrvhr","is_binary":false,"title":"createUsersWithListInputSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"ZyUTxIDe0H5","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\nimport { addressSchema } from '.\u002FaddressSchema.gen.ts'\n\nexport const customerSchema = z.object({\n id: z.optional(z.bigint()),\n username: z.optional(z.string()),\n get address() {\n return z.array(addressSchema).optional()\n },\n})\n\nexport type CustomerSchema = z.infer\u003Ctypeof customerSchema\u003E\n","id":"mod_U3iqVgQkzodeHbxRYiH73q","is_binary":false,"title":"customerSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"q1ncgMTGO6v","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\n\nexport const deleteOrderPathParamsSchema = z.object({\n orderId: z.coerce.bigint().describe('ID of the order that needs to be deleted'),\n})\n\nexport type DeleteOrderPathParamsSchema = z.infer\u003Ctypeof deleteOrderPathParamsSchema\u003E\n\n\u002F**\n * @description Invalid ID supplied\n *\u002F\nexport const deleteOrder400Schema = z.any()\n\nexport type DeleteOrder400Schema = z.infer\u003Ctypeof deleteOrder400Schema\u003E\n\n\u002F**\n * @description Order not found\n *\u002F\nexport const deleteOrder404Schema = z.any()\n\nexport type DeleteOrder404Schema = z.infer\u003Ctypeof deleteOrder404Schema\u003E\n\nexport const deleteOrderMutationResponseSchema = z.any()\n\nexport type DeleteOrderMutationResponseSchema = z.infer\u003Ctypeof deleteOrderMutationResponseSchema\u003E\n","id":"mod_CZ8YZehw9rVH1xYenGM9eZ","is_binary":false,"title":"deleteOrderSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"0MiHV9-X4Vq","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\n\nexport const deletePetPathParamsSchema = z.object({\n petId: z.coerce.bigint().describe('Pet id to delete'),\n})\n\nexport type DeletePetPathParamsSchema = z.infer\u003Ctypeof deletePetPathParamsSchema\u003E\n\nexport const deletePetHeaderParamsSchema = z\n .object({\n api_key: z.optional(z.string()),\n })\n .optional()\n\nexport type DeletePetHeaderParamsSchema = z.infer\u003Ctypeof deletePetHeaderParamsSchema\u003E\n\n\u002F**\n * @description Invalid pet value\n *\u002F\nexport const deletePet400Schema = z.any()\n\nexport type DeletePet400Schema = z.infer\u003Ctypeof deletePet400Schema\u003E\n\nexport const deletePetMutationResponseSchema = z.any()\n\nexport type DeletePetMutationResponseSchema = z.infer\u003Ctypeof deletePetMutationResponseSchema\u003E\n","id":"mod_RfmdBKkvovyydpp9G6Y9LF","is_binary":false,"title":"deletePetSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"tgFdAP-F_I6","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\n\nexport const deleteUserPathParamsSchema = z.object({\n username: z.string().describe('The name that needs to be deleted'),\n})\n\nexport type DeleteUserPathParamsSchema = z.infer\u003Ctypeof deleteUserPathParamsSchema\u003E\n\n\u002F**\n * @description Invalid username supplied\n *\u002F\nexport const deleteUser400Schema = z.any()\n\nexport type DeleteUser400Schema = z.infer\u003Ctypeof deleteUser400Schema\u003E\n\n\u002F**\n * @description User not found\n *\u002F\nexport const deleteUser404Schema = z.any()\n\nexport type DeleteUser404Schema = z.infer\u003Ctypeof deleteUser404Schema\u003E\n\nexport const deleteUserMutationResponseSchema = z.any()\n\nexport type DeleteUserMutationResponseSchema = z.infer\u003Ctypeof deleteUserMutationResponseSchema\u003E\n","id":"mod_PkwdoGKaunY1fbLwhiQx5Y","is_binary":false,"title":"deleteUserSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"De7424yh101","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\nimport { petSchema } from '.\u002FpetSchema.gen.ts'\n\nexport const findPetsByStatusQueryParamsSchema = z.object({\n status: z.enum(['available', 'pending', 'sold']).default('available').describe('Status values that need to be considered for filter'),\n})\n\nexport type FindPetsByStatusQueryParamsSchema = z.infer\u003Ctypeof findPetsByStatusQueryParamsSchema\u003E\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const findPetsByStatus200Schema = z.array(z.lazy(() =\u003E petSchema))\n\nexport type FindPetsByStatus200Schema = z.infer\u003Ctypeof findPetsByStatus200Schema\u003E\n\n\u002F**\n * @description Invalid status value\n *\u002F\nexport const findPetsByStatus400Schema = z.any()\n\nexport type FindPetsByStatus400Schema = z.infer\u003Ctypeof findPetsByStatus400Schema\u003E\n\nexport const findPetsByStatusQueryResponseSchema = z.lazy(() =\u003E findPetsByStatus200Schema)\n\nexport type FindPetsByStatusQueryResponseSchema = z.infer\u003Ctypeof findPetsByStatusQueryResponseSchema\u003E\n","id":"mod_FQicn5q52skiakc5p8tkns","is_binary":false,"title":"findPetsByStatusSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"1fuGfNvcWZJ","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\nimport { petSchema } from '.\u002FpetSchema.gen.ts'\n\nexport const findPetsByTagsQueryParamsSchema = z\n .object({\n tags: z.optional(z.array(z.string()).describe('Tags to filter by')),\n page: z.optional(z.string().describe('to request with required page number or pagination')),\n pageSize: z.optional(z.string().describe('to request with required page size')),\n })\n .optional()\n\nexport type FindPetsByTagsQueryParamsSchema = z.infer\u003Ctypeof findPetsByTagsQueryParamsSchema\u003E\n\nexport const findPetsByTagsHeaderParamsSchema = z.object({\n 'X-EXAMPLE': z.enum(['ONE', 'TWO', 'THREE']).describe('Header parameters'),\n})\n\nexport type FindPetsByTagsHeaderParamsSchema = z.infer\u003Ctypeof findPetsByTagsHeaderParamsSchema\u003E\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const findPetsByTags200Schema = z.array(z.lazy(() =\u003E petSchema))\n\nexport type FindPetsByTags200Schema = z.infer\u003Ctypeof findPetsByTags200Schema\u003E\n\n\u002F**\n * @description Invalid tag value\n *\u002F\nexport const findPetsByTags400Schema = z.any()\n\nexport type FindPetsByTags400Schema = z.infer\u003Ctypeof findPetsByTags400Schema\u003E\n\nexport const findPetsByTagsQueryResponseSchema = z.lazy(() =\u003E findPetsByTags200Schema)\n\nexport type FindPetsByTagsQueryResponseSchema = z.infer\u003Ctypeof findPetsByTagsQueryResponseSchema\u003E\n","id":"mod_9QnWCuwzfaD2b3gPrZGAZT","is_binary":false,"title":"findPetsByTagsSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"Z43iqKPdSn2","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const getInventory200Schema = z.object({}).catchall(z.int())\n\nexport type GetInventory200Schema = z.infer\u003Ctypeof getInventory200Schema\u003E\n\nexport const getInventoryQueryResponseSchema = z.lazy(() =\u003E getInventory200Schema)\n\nexport type GetInventoryQueryResponseSchema = z.infer\u003Ctypeof getInventoryQueryResponseSchema\u003E\n","id":"mod_P4z25AYym8gLsWZcgrsQAP","is_binary":false,"title":"getInventorySchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"Vc4Og9thNPl","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\nimport { orderSchema } from '.\u002ForderSchema.gen.ts'\n\nexport const getOrderByIdPathParamsSchema = z.object({\n orderId: z.coerce.bigint().describe('ID of order that needs to be fetched'),\n})\n\nexport type GetOrderByIdPathParamsSchema = z.infer\u003Ctypeof getOrderByIdPathParamsSchema\u003E\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const getOrderById200Schema = z.lazy(() =\u003E orderSchema)\n\nexport type GetOrderById200Schema = z.infer\u003Ctypeof getOrderById200Schema\u003E\n\n\u002F**\n * @description Invalid ID supplied\n *\u002F\nexport const getOrderById400Schema = z.any()\n\nexport type GetOrderById400Schema = z.infer\u003Ctypeof getOrderById400Schema\u003E\n\n\u002F**\n * @description Order not found\n *\u002F\nexport const getOrderById404Schema = z.any()\n\nexport type GetOrderById404Schema = z.infer\u003Ctypeof getOrderById404Schema\u003E\n\nexport const getOrderByIdQueryResponseSchema = z.lazy(() =\u003E getOrderById200Schema)\n\nexport type GetOrderByIdQueryResponseSchema = z.infer\u003Ctypeof getOrderByIdQueryResponseSchema\u003E\n","id":"mod_EbK3u9vDDyjYLmRLCyd5cb","is_binary":false,"title":"getOrderByIdSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"W9KPN-tIZ26","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\nimport { petSchema } from '.\u002FpetSchema.gen.ts'\n\nexport const getPetByIdPathParamsSchema = z.object({\n petId: z.coerce.bigint().describe('ID of pet to return'),\n})\n\nexport type GetPetByIdPathParamsSchema = z.infer\u003Ctypeof getPetByIdPathParamsSchema\u003E\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const getPetById200Schema = z.lazy(() =\u003E petSchema)\n\nexport type GetPetById200Schema = z.infer\u003Ctypeof getPetById200Schema\u003E\n\n\u002F**\n * @description Invalid ID supplied\n *\u002F\nexport const getPetById400Schema = z.any()\n\nexport type GetPetById400Schema = z.infer\u003Ctypeof getPetById400Schema\u003E\n\n\u002F**\n * @description Pet not found\n *\u002F\nexport const getPetById404Schema = z.any()\n\nexport type GetPetById404Schema = z.infer\u003Ctypeof getPetById404Schema\u003E\n\nexport const getPetByIdQueryResponseSchema = z.lazy(() =\u003E getPetById200Schema)\n\nexport type GetPetByIdQueryResponseSchema = z.infer\u003Ctypeof getPetByIdQueryResponseSchema\u003E\n","id":"mod_3FVB6tmFGbvdDbJeRBCf86","is_binary":false,"title":"getPetByIdSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"sUKHz3y8QxS","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\nimport { petNotFoundSchema } from '.\u002FpetNotFoundSchema.gen.ts'\n\nexport const getThingsQueryParamsSchema = z.object({\n limit: z.coerce.number().int().min(1).max(100).default(100).describe('Maximum number of things to return'),\n skip: z.coerce.number().int().min(0).default(0).describe('Number of things to skip'),\n})\n\nexport type GetThingsQueryParamsSchema = z.infer\u003Ctypeof getThingsQueryParamsSchema\u003E\n\n\u002F**\n * @description Null response\n *\u002F\nexport const getThings201Schema = z.any()\n\nexport type GetThings201Schema = z.infer\u003Ctypeof getThings201Schema\u003E\n\n\u002F**\n * @description unexpected error\n *\u002F\nexport const getThingsErrorSchema = z.lazy(() =\u003E petNotFoundSchema).describe('Pet not found')\n\nexport type GetThingsErrorSchema = z.infer\u003Ctypeof getThingsErrorSchema\u003E\n\nexport const getThingsQueryResponseSchema = z.lazy(() =\u003E getThings201Schema)\n\nexport type GetThingsQueryResponseSchema = z.infer\u003Ctypeof getThingsQueryResponseSchema\u003E\n","id":"mod_WJ4E1wLEmVyTGspvm1gowY","is_binary":false,"title":"getThingsSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"xEsG5zx1cEL","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\nimport { userSchema } from '.\u002FuserSchema.gen.ts'\n\nexport const getUserByNamePathParamsSchema = z.object({\n username: z.string().describe('The name that needs to be fetched. Use user1 for testing. '),\n})\n\nexport type GetUserByNamePathParamsSchema = z.infer\u003Ctypeof getUserByNamePathParamsSchema\u003E\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const getUserByName200Schema = z.lazy(() =\u003E userSchema)\n\nexport type GetUserByName200Schema = z.infer\u003Ctypeof getUserByName200Schema\u003E\n\n\u002F**\n * @description Invalid username supplied\n *\u002F\nexport const getUserByName400Schema = z.any()\n\nexport type GetUserByName400Schema = z.infer\u003Ctypeof getUserByName400Schema\u003E\n\n\u002F**\n * @description User not found\n *\u002F\nexport const getUserByName404Schema = z.any()\n\nexport type GetUserByName404Schema = z.infer\u003Ctypeof getUserByName404Schema\u003E\n\nexport const getUserByNameQueryResponseSchema = z.lazy(() =\u003E getUserByName200Schema)\n\nexport type GetUserByNameQueryResponseSchema = z.infer\u003Ctypeof getUserByNameQueryResponseSchema\u003E\n","id":"mod_Y93xUzZ32kEm1aP6XWjFWL","is_binary":false,"title":"getUserByNameSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"yuBWkqAZ3F_","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"export type { AddPetRequestSchema } from '.\u002FaddPetRequestSchema.gen.ts'\nexport { addPetRequestSchema } from '.\u002FaddPetRequestSchema.gen.ts'\nexport type {\n AddPet200Schema,\n AddPet405Schema,\n AddPetMutationRequestSchema,\n AddPetMutationResponseSchema,\n} from '.\u002FaddPetSchema.gen.ts'\nexport { addPet200Schema, addPet405Schema, addPetMutationRequestSchema, addPetMutationResponseSchema } from '.\u002FaddPetSchema.gen.ts'\nexport type { AddressSchema } from '.\u002FaddressSchema.gen.ts'\nexport { addressSchema } from '.\u002FaddressSchema.gen.ts'\nexport type { ApiResponseSchema } from '.\u002FapiResponseSchema.gen.ts'\nexport { apiResponseSchema } from '.\u002FapiResponseSchema.gen.ts'\nexport type { CategorySchema } from '.\u002FcategorySchema.gen.ts'\nexport { categorySchema } from '.\u002FcategorySchema.gen.ts'\nexport type {\n CreatePets201Schema,\n CreatePetsErrorSchema,\n CreatePetsHeaderParamsSchema,\n CreatePetsMutationRequestSchema,\n CreatePetsMutationResponseSchema,\n CreatePetsPathParamsSchema,\n CreatePetsQueryParamsSchema,\n} from '.\u002FcreatePetsSchema.gen.ts'\nexport {\n createPets201Schema,\n createPetsErrorSchema,\n createPetsHeaderParamsSchema,\n createPetsMutationRequestSchema,\n createPetsMutationResponseSchema,\n createPetsPathParamsSchema,\n createPetsQueryParamsSchema,\n} from '.\u002FcreatePetsSchema.gen.ts'\nexport type {\n CreateUserErrorSchema,\n CreateUserMutationRequestSchema,\n CreateUserMutationResponseSchema,\n} from '.\u002FcreateUserSchema.gen.ts'\nexport { createUserErrorSchema, createUserMutationRequestSchema, createUserMutationResponseSchema } from '.\u002FcreateUserSchema.gen.ts'\nexport type {\n CreateUsersWithListInput200Schema,\n CreateUsersWithListInputErrorSchema,\n CreateUsersWithListInputMutationRequestSchema,\n CreateUsersWithListInputMutationResponseSchema,\n} from '.\u002FcreateUsersWithListInputSchema.gen.ts'\nexport {\n createUsersWithListInput200Schema,\n createUsersWithListInputErrorSchema,\n createUsersWithListInputMutationRequestSchema,\n createUsersWithListInputMutationResponseSchema,\n} from '.\u002FcreateUsersWithListInputSchema.gen.ts'\nexport type { CustomerSchema } from '.\u002FcustomerSchema.gen.ts'\nexport { customerSchema } from '.\u002FcustomerSchema.gen.ts'\nexport type {\n DeleteOrder400Schema,\n DeleteOrder404Schema,\n DeleteOrderMutationResponseSchema,\n DeleteOrderPathParamsSchema,\n} from '.\u002FdeleteOrderSchema.gen.ts'\nexport { deleteOrder400Schema, deleteOrder404Schema, deleteOrderMutationResponseSchema, deleteOrderPathParamsSchema } from '.\u002FdeleteOrderSchema.gen.ts'\nexport type {\n DeletePet400Schema,\n DeletePetHeaderParamsSchema,\n DeletePetMutationResponseSchema,\n DeletePetPathParamsSchema,\n} from '.\u002FdeletePetSchema.gen.ts'\nexport { deletePet400Schema, deletePetHeaderParamsSchema, deletePetMutationResponseSchema, deletePetPathParamsSchema } from '.\u002FdeletePetSchema.gen.ts'\nexport type {\n DeleteUser400Schema,\n DeleteUser404Schema,\n DeleteUserMutationResponseSchema,\n DeleteUserPathParamsSchema,\n} from '.\u002FdeleteUserSchema.gen.ts'\nexport { deleteUser400Schema, deleteUser404Schema, deleteUserMutationResponseSchema, deleteUserPathParamsSchema } from '.\u002FdeleteUserSchema.gen.ts'\nexport type {\n FindPetsByStatus200Schema,\n FindPetsByStatus400Schema,\n FindPetsByStatusQueryParamsSchema,\n FindPetsByStatusQueryResponseSchema,\n} from '.\u002FfindPetsByStatusSchema.gen.ts'\nexport {\n findPetsByStatus200Schema,\n findPetsByStatus400Schema,\n findPetsByStatusQueryParamsSchema,\n findPetsByStatusQueryResponseSchema,\n} from '.\u002FfindPetsByStatusSchema.gen.ts'\nexport type {\n FindPetsByTags200Schema,\n FindPetsByTags400Schema,\n FindPetsByTagsHeaderParamsSchema,\n FindPetsByTagsQueryParamsSchema,\n FindPetsByTagsQueryResponseSchema,\n} from '.\u002FfindPetsByTagsSchema.gen.ts'\nexport {\n findPetsByTags200Schema,\n findPetsByTags400Schema,\n findPetsByTagsHeaderParamsSchema,\n findPetsByTagsQueryParamsSchema,\n findPetsByTagsQueryResponseSchema,\n} from '.\u002FfindPetsByTagsSchema.gen.ts'\nexport type {\n GetInventory200Schema,\n GetInventoryQueryResponseSchema,\n} from '.\u002FgetInventorySchema.gen.ts'\nexport { getInventory200Schema, getInventoryQueryResponseSchema } from '.\u002FgetInventorySchema.gen.ts'\nexport type {\n GetOrderById200Schema,\n GetOrderById400Schema,\n GetOrderById404Schema,\n GetOrderByIdPathParamsSchema,\n GetOrderByIdQueryResponseSchema,\n} from '.\u002FgetOrderByIdSchema.gen.ts'\nexport {\n getOrderById200Schema,\n getOrderById400Schema,\n getOrderById404Schema,\n getOrderByIdPathParamsSchema,\n getOrderByIdQueryResponseSchema,\n} from '.\u002FgetOrderByIdSchema.gen.ts'\nexport type {\n GetPetById200Schema,\n GetPetById400Schema,\n GetPetById404Schema,\n GetPetByIdPathParamsSchema,\n GetPetByIdQueryResponseSchema,\n} from '.\u002FgetPetByIdSchema.gen.ts'\nexport {\n getPetById200Schema,\n getPetById400Schema,\n getPetById404Schema,\n getPetByIdPathParamsSchema,\n getPetByIdQueryResponseSchema,\n} from '.\u002FgetPetByIdSchema.gen.ts'\nexport type {\n GetThings201Schema,\n GetThingsErrorSchema,\n GetThingsQueryParamsSchema,\n GetThingsQueryResponseSchema,\n} from '.\u002FgetThingsSchema.gen.ts'\nexport { getThings201Schema, getThingsErrorSchema, getThingsQueryParamsSchema, getThingsQueryResponseSchema } from '.\u002FgetThingsSchema.gen.ts'\nexport type {\n GetUserByName200Schema,\n GetUserByName400Schema,\n GetUserByName404Schema,\n GetUserByNamePathParamsSchema,\n GetUserByNameQueryResponseSchema,\n} from '.\u002FgetUserByNameSchema.gen.ts'\nexport {\n getUserByName200Schema,\n getUserByName400Schema,\n getUserByName404Schema,\n getUserByNamePathParamsSchema,\n getUserByNameQueryResponseSchema,\n} from '.\u002FgetUserByNameSchema.gen.ts'\nexport type {\n LoginUser200Schema,\n LoginUser400Schema,\n LoginUserQueryParamsSchema,\n LoginUserQueryResponseSchema,\n} from '.\u002FloginUserSchema.gen.ts'\nexport { loginUser200Schema, loginUser400Schema, loginUserQueryParamsSchema, loginUserQueryResponseSchema } from '.\u002FloginUserSchema.gen.ts'\nexport type {\n LogoutUserErrorSchema,\n LogoutUserQueryResponseSchema,\n} from '.\u002FlogoutUserSchema.gen.ts'\nexport { logoutUserErrorSchema, logoutUserQueryResponseSchema } from '.\u002FlogoutUserSchema.gen.ts'\nexport {\n OperationSchema,\n OperationsMap,\n operations,\n paths,\n} from '.\u002Foperations.ts'\nexport type { OrderSchema } from '.\u002ForderSchema.gen.ts'\nexport { orderSchema } from '.\u002ForderSchema.gen.ts'\nexport type { PetNotFoundSchema } from '.\u002FpetNotFoundSchema.gen.ts'\nexport { petNotFoundSchema } from '.\u002FpetNotFoundSchema.gen.ts'\nexport type { PetSchema } from '.\u002FpetSchema.gen.ts'\nexport { petSchema } from '.\u002FpetSchema.gen.ts'\nexport type { PhoneNumberSchema } from '.\u002FphoneNumberSchema.gen.ts'\nexport { phoneNumberSchema } from '.\u002FphoneNumberSchema.gen.ts'\nexport type { PhoneWithMaxLengthExplicitSchema } from '.\u002FphoneWithMaxLengthExplicitSchema.gen.ts'\nexport { phoneWithMaxLengthExplicitSchema } from '.\u002FphoneWithMaxLengthExplicitSchema.gen.ts'\nexport type { PhoneWithMaxLengthSchema } from '.\u002FphoneWithMaxLengthSchema.gen.ts'\nexport { phoneWithMaxLengthSchema } from '.\u002FphoneWithMaxLengthSchema.gen.ts'\nexport type {\n PlaceOrderPatch200Schema,\n PlaceOrderPatch405Schema,\n PlaceOrderPatchMutationRequestSchema,\n PlaceOrderPatchMutationResponseSchema,\n} from '.\u002FplaceOrderPatchSchema.gen.ts'\nexport {\n placeOrderPatch200Schema,\n placeOrderPatch405Schema,\n placeOrderPatchMutationRequestSchema,\n placeOrderPatchMutationResponseSchema,\n} from '.\u002FplaceOrderPatchSchema.gen.ts'\nexport type {\n PlaceOrder200Schema,\n PlaceOrder405Schema,\n PlaceOrderMutationRequestSchema,\n PlaceOrderMutationResponseSchema,\n} from '.\u002FplaceOrderSchema.gen.ts'\nexport { placeOrder200Schema, placeOrder405Schema, placeOrderMutationRequestSchema, placeOrderMutationResponseSchema } from '.\u002FplaceOrderSchema.gen.ts'\nexport type { TagSchema } from '.\u002FtagSchema.gen.ts'\nexport { tagSchema } from '.\u002FtagSchema.gen.ts'\nexport type {\n UpdatePet200Schema,\n UpdatePet400Schema,\n UpdatePet404Schema,\n UpdatePet405Schema,\n UpdatePetMutationRequestSchema,\n UpdatePetMutationResponseSchema,\n} from '.\u002FupdatePetSchema.gen.ts'\nexport {\n updatePet200Schema,\n updatePet400Schema,\n updatePet404Schema,\n updatePet405Schema,\n updatePetMutationRequestSchema,\n updatePetMutationResponseSchema,\n} from '.\u002FupdatePetSchema.gen.ts'\nexport type {\n UpdatePetWithForm405Schema,\n UpdatePetWithFormMutationResponseSchema,\n UpdatePetWithFormPathParamsSchema,\n UpdatePetWithFormQueryParamsSchema,\n} from '.\u002FupdatePetWithFormSchema.gen.ts'\nexport {\n updatePetWithForm405Schema,\n updatePetWithFormMutationResponseSchema,\n updatePetWithFormPathParamsSchema,\n updatePetWithFormQueryParamsSchema,\n} from '.\u002FupdatePetWithFormSchema.gen.ts'\nexport type {\n UpdateUserErrorSchema,\n UpdateUserMutationRequestSchema,\n UpdateUserMutationResponseSchema,\n UpdateUserPathParamsSchema,\n} from '.\u002FupdateUserSchema.gen.ts'\nexport { updateUserErrorSchema, updateUserMutationRequestSchema, updateUserMutationResponseSchema, updateUserPathParamsSchema } from '.\u002FupdateUserSchema.gen.ts'\nexport type {\n UploadFile200Schema,\n UploadFileMutationRequestSchema,\n UploadFileMutationResponseSchema,\n UploadFilePathParamsSchema,\n UploadFileQueryParamsSchema,\n} from '.\u002FuploadFileSchema.gen.ts'\nexport {\n uploadFile200Schema,\n uploadFileMutationRequestSchema,\n uploadFileMutationResponseSchema,\n uploadFilePathParamsSchema,\n uploadFileQueryParamsSchema,\n} from '.\u002FuploadFileSchema.gen.ts'\nexport type { UserArraySchema } from '.\u002FuserArraySchema.gen.ts'\nexport { userArraySchema } from '.\u002FuserArraySchema.gen.ts'\nexport type { UserSchema } from '.\u002FuserSchema.gen.ts'\nexport { userSchema } from '.\u002FuserSchema.gen.ts'\n","id":"mod_U99RujvV1vdoN79jSyDb4u","is_binary":false,"title":"index.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"H9uq5yJ8r-Y","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\n\nexport const loginUserQueryParamsSchema = z\n .object({\n username: z.optional(z.string().describe('The user name for login')),\n password: z.optional(z.string().describe('The password for login in clear text')),\n })\n .optional()\n\nexport type LoginUserQueryParamsSchema = z.infer\u003Ctypeof loginUserQueryParamsSchema\u003E\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const loginUser200Schema = z.string()\n\nexport type LoginUser200Schema = z.infer\u003Ctypeof loginUser200Schema\u003E\n\n\u002F**\n * @description Invalid username\u002Fpassword supplied\n *\u002F\nexport const loginUser400Schema = z.any()\n\nexport type LoginUser400Schema = z.infer\u003Ctypeof loginUser400Schema\u003E\n\nexport const loginUserQueryResponseSchema = z.lazy(() =\u003E loginUser200Schema)\n\nexport type LoginUserQueryResponseSchema = z.infer\u003Ctypeof loginUserQueryResponseSchema\u003E\n","id":"mod_7qKeTMLHqHE8ZGUMTaw4iU","is_binary":false,"title":"loginUserSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"0sUbQiJWRaH","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const logoutUserErrorSchema = z.any()\n\nexport type LogoutUserErrorSchema = z.infer\u003Ctypeof logoutUserErrorSchema\u003E\n\nexport const logoutUserQueryResponseSchema = z.any()\n\nexport type LogoutUserQueryResponseSchema = z.infer\u003Ctypeof logoutUserQueryResponseSchema\u003E\n","id":"mod_MLwku74pYNRz3aXtoyPie7","is_binary":false,"title":"logoutUserSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"bQMVbp_VTJP","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport type { z } from '..\u002F..\u002Fzod.ts'\nimport { addPet200Schema, addPet405Schema, addPetMutationRequestSchema, addPetMutationResponseSchema } from '.\u002FaddPetSchema.gen.ts'\nimport {\n createPets201Schema,\n createPetsHeaderParamsSchema,\n createPetsMutationRequestSchema,\n createPetsMutationResponseSchema,\n createPetsPathParamsSchema,\n createPetsQueryParamsSchema,\n} from '.\u002FcreatePetsSchema.gen.ts'\nimport { createUserMutationRequestSchema, createUserMutationResponseSchema } from '.\u002FcreateUserSchema.gen.ts'\nimport {\n createUsersWithListInput200Schema,\n createUsersWithListInputMutationRequestSchema,\n createUsersWithListInputMutationResponseSchema,\n} from '.\u002FcreateUsersWithListInputSchema.gen.ts'\nimport { deleteOrder400Schema, deleteOrder404Schema, deleteOrderMutationResponseSchema, deleteOrderPathParamsSchema } from '.\u002FdeleteOrderSchema.gen.ts'\nimport { deletePet400Schema, deletePetHeaderParamsSchema, deletePetMutationResponseSchema, deletePetPathParamsSchema } from '.\u002FdeletePetSchema.gen.ts'\nimport { deleteUser400Schema, deleteUser404Schema, deleteUserMutationResponseSchema, deleteUserPathParamsSchema } from '.\u002FdeleteUserSchema.gen.ts'\nimport {\n findPetsByStatus200Schema,\n findPetsByStatus400Schema,\n findPetsByStatusQueryParamsSchema,\n findPetsByStatusQueryResponseSchema,\n} from '.\u002FfindPetsByStatusSchema.gen.ts'\nimport {\n findPetsByTags200Schema,\n findPetsByTags400Schema,\n findPetsByTagsHeaderParamsSchema,\n findPetsByTagsQueryParamsSchema,\n findPetsByTagsQueryResponseSchema,\n} from '.\u002FfindPetsByTagsSchema.gen.ts'\nimport { getInventory200Schema, getInventoryQueryResponseSchema } from '.\u002FgetInventorySchema.gen.ts'\nimport {\n getOrderById200Schema,\n getOrderById400Schema,\n getOrderById404Schema,\n getOrderByIdPathParamsSchema,\n getOrderByIdQueryResponseSchema,\n} from '.\u002FgetOrderByIdSchema.gen.ts'\nimport {\n getPetById200Schema,\n getPetById400Schema,\n getPetById404Schema,\n getPetByIdPathParamsSchema,\n getPetByIdQueryResponseSchema,\n} from '.\u002FgetPetByIdSchema.gen.ts'\nimport { getThings201Schema, getThingsQueryParamsSchema, getThingsQueryResponseSchema } from '.\u002FgetThingsSchema.gen.ts'\nimport {\n getUserByName200Schema,\n getUserByName400Schema,\n getUserByName404Schema,\n getUserByNamePathParamsSchema,\n getUserByNameQueryResponseSchema,\n} from '.\u002FgetUserByNameSchema.gen.ts'\nimport { loginUser200Schema, loginUser400Schema, loginUserQueryParamsSchema, loginUserQueryResponseSchema } from '.\u002FloginUserSchema.gen.ts'\nimport { logoutUserQueryResponseSchema } from '.\u002FlogoutUserSchema.gen.ts'\nimport {\n placeOrderPatch200Schema,\n placeOrderPatch405Schema,\n placeOrderPatchMutationRequestSchema,\n placeOrderPatchMutationResponseSchema,\n} from '.\u002FplaceOrderPatchSchema.gen.ts'\nimport { placeOrder200Schema, placeOrder405Schema, placeOrderMutationRequestSchema, placeOrderMutationResponseSchema } from '.\u002FplaceOrderSchema.gen.ts'\nimport {\n updatePet200Schema,\n updatePet400Schema,\n updatePet404Schema,\n updatePet405Schema,\n updatePetMutationRequestSchema,\n updatePetMutationResponseSchema,\n} from '.\u002FupdatePetSchema.gen.ts'\nimport {\n updatePetWithForm405Schema,\n updatePetWithFormMutationResponseSchema,\n updatePetWithFormPathParamsSchema,\n updatePetWithFormQueryParamsSchema,\n} from '.\u002FupdatePetWithFormSchema.gen.ts'\nimport { updateUserMutationRequestSchema, updateUserMutationResponseSchema, updateUserPathParamsSchema } from '.\u002FupdateUserSchema.gen.ts'\nimport {\n uploadFile200Schema,\n uploadFileMutationRequestSchema,\n uploadFileMutationResponseSchema,\n uploadFilePathParamsSchema,\n uploadFileQueryParamsSchema,\n} from '.\u002FuploadFileSchema.gen.ts'\n\nexport type OperationSchema = {\n readonly request: z.ZodTypeAny | undefined\n readonly parameters: {\n readonly path: z.ZodTypeAny | undefined\n readonly query: z.ZodTypeAny | undefined\n readonly header: z.ZodTypeAny | undefined\n }\n readonly responses: {\n readonly [status: number]: z.ZodTypeAny\n readonly default: z.ZodTypeAny\n }\n readonly errors: {\n readonly [status: number]: z.ZodTypeAny\n }\n}\n\nexport type OperationsMap = Record\u003Cstring, OperationSchema\u003E\n\nexport const operations = {\n getThings: {\n request: undefined,\n parameters: {\n path: undefined,\n query: getThingsQueryParamsSchema,\n header: undefined,\n },\n responses: {\n 201: getThings201Schema,\n default: getThingsQueryResponseSchema,\n },\n errors: {},\n },\n createPets: {\n request: createPetsMutationRequestSchema,\n parameters: {\n path: createPetsPathParamsSchema,\n query: createPetsQueryParamsSchema,\n header: createPetsHeaderParamsSchema,\n },\n responses: {\n 201: createPets201Schema,\n default: createPetsMutationResponseSchema,\n },\n errors: {},\n },\n updatePet: {\n request: updatePetMutationRequestSchema,\n parameters: {\n path: undefined,\n query: undefined,\n header: undefined,\n },\n responses: {\n 200: updatePet200Schema,\n 400: updatePet400Schema,\n 404: updatePet404Schema,\n 405: updatePet405Schema,\n default: updatePetMutationResponseSchema,\n },\n errors: {\n 400: updatePet400Schema,\n 404: updatePet404Schema,\n 405: updatePet405Schema,\n },\n },\n addPet: {\n request: addPetMutationRequestSchema,\n parameters: {\n path: undefined,\n query: undefined,\n header: undefined,\n },\n responses: {\n 200: addPet200Schema,\n 405: addPet405Schema,\n default: addPetMutationResponseSchema,\n },\n errors: {\n 405: addPet405Schema,\n },\n },\n findPetsByStatus: {\n request: undefined,\n parameters: {\n path: undefined,\n query: findPetsByStatusQueryParamsSchema,\n header: undefined,\n },\n responses: {\n 200: findPetsByStatus200Schema,\n 400: findPetsByStatus400Schema,\n default: findPetsByStatusQueryResponseSchema,\n },\n errors: {\n 400: findPetsByStatus400Schema,\n },\n },\n findPetsByTags: {\n request: undefined,\n parameters: {\n path: undefined,\n query: findPetsByTagsQueryParamsSchema,\n header: findPetsByTagsHeaderParamsSchema,\n },\n responses: {\n 200: findPetsByTags200Schema,\n 400: findPetsByTags400Schema,\n default: findPetsByTagsQueryResponseSchema,\n },\n errors: {\n 400: findPetsByTags400Schema,\n },\n },\n getPetById: {\n request: undefined,\n parameters: {\n path: getPetByIdPathParamsSchema,\n query: undefined,\n header: undefined,\n },\n responses: {\n 200: getPetById200Schema,\n 400: getPetById400Schema,\n 404: getPetById404Schema,\n default: getPetByIdQueryResponseSchema,\n },\n errors: {\n 400: getPetById400Schema,\n 404: getPetById404Schema,\n },\n },\n updatePetWithForm: {\n request: undefined,\n parameters: {\n path: updatePetWithFormPathParamsSchema,\n query: updatePetWithFormQueryParamsSchema,\n header: undefined,\n },\n responses: {\n 405: updatePetWithForm405Schema,\n default: updatePetWithFormMutationResponseSchema,\n },\n errors: {\n 405: updatePetWithForm405Schema,\n },\n },\n deletePet: {\n request: undefined,\n parameters: {\n path: deletePetPathParamsSchema,\n query: undefined,\n header: deletePetHeaderParamsSchema,\n },\n responses: {\n 400: deletePet400Schema,\n default: deletePetMutationResponseSchema,\n },\n errors: {\n 400: deletePet400Schema,\n },\n },\n uploadFile: {\n request: uploadFileMutationRequestSchema,\n parameters: {\n path: uploadFilePathParamsSchema,\n query: uploadFileQueryParamsSchema,\n header: undefined,\n },\n responses: {\n 200: uploadFile200Schema,\n default: uploadFileMutationResponseSchema,\n },\n errors: {},\n },\n getInventory: {\n request: undefined,\n parameters: {\n path: undefined,\n query: undefined,\n header: undefined,\n },\n responses: {\n 200: getInventory200Schema,\n default: getInventoryQueryResponseSchema,\n },\n errors: {},\n },\n placeOrder: {\n request: placeOrderMutationRequestSchema,\n parameters: {\n path: undefined,\n query: undefined,\n header: undefined,\n },\n responses: {\n 200: placeOrder200Schema,\n 405: placeOrder405Schema,\n default: placeOrderMutationResponseSchema,\n },\n errors: {\n 405: placeOrder405Schema,\n },\n },\n placeOrderPatch: {\n request: placeOrderPatchMutationRequestSchema,\n parameters: {\n path: undefined,\n query: undefined,\n header: undefined,\n },\n responses: {\n 200: placeOrderPatch200Schema,\n 405: placeOrderPatch405Schema,\n default: placeOrderPatchMutationResponseSchema,\n },\n errors: {\n 405: placeOrderPatch405Schema,\n },\n },\n getOrderById: {\n request: undefined,\n parameters: {\n path: getOrderByIdPathParamsSchema,\n query: undefined,\n header: undefined,\n },\n responses: {\n 200: getOrderById200Schema,\n 400: getOrderById400Schema,\n 404: getOrderById404Schema,\n default: getOrderByIdQueryResponseSchema,\n },\n errors: {\n 400: getOrderById400Schema,\n 404: getOrderById404Schema,\n },\n },\n deleteOrder: {\n request: undefined,\n parameters: {\n path: deleteOrderPathParamsSchema,\n query: undefined,\n header: undefined,\n },\n responses: {\n 400: deleteOrder400Schema,\n 404: deleteOrder404Schema,\n default: deleteOrderMutationResponseSchema,\n },\n errors: {\n 400: deleteOrder400Schema,\n 404: deleteOrder404Schema,\n },\n },\n createUser: {\n request: createUserMutationRequestSchema,\n parameters: {\n path: undefined,\n query: undefined,\n header: undefined,\n },\n responses: {\n default: createUserMutationResponseSchema,\n },\n errors: {},\n },\n createUsersWithListInput: {\n request: createUsersWithListInputMutationRequestSchema,\n parameters: {\n path: undefined,\n query: undefined,\n header: undefined,\n },\n responses: {\n 200: createUsersWithListInput200Schema,\n default: createUsersWithListInputMutationResponseSchema,\n },\n errors: {},\n },\n loginUser: {\n request: undefined,\n parameters: {\n path: undefined,\n query: loginUserQueryParamsSchema,\n header: undefined,\n },\n responses: {\n 200: loginUser200Schema,\n 400: loginUser400Schema,\n default: loginUserQueryResponseSchema,\n },\n errors: {\n 400: loginUser400Schema,\n },\n },\n logoutUser: {\n request: undefined,\n parameters: {\n path: undefined,\n query: undefined,\n header: undefined,\n },\n responses: {\n default: logoutUserQueryResponseSchema,\n },\n errors: {},\n },\n getUserByName: {\n request: undefined,\n parameters: {\n path: getUserByNamePathParamsSchema,\n query: undefined,\n header: undefined,\n },\n responses: {\n 200: getUserByName200Schema,\n 400: getUserByName400Schema,\n 404: getUserByName404Schema,\n default: getUserByNameQueryResponseSchema,\n },\n errors: {\n 400: getUserByName400Schema,\n 404: getUserByName404Schema,\n },\n },\n updateUser: {\n request: updateUserMutationRequestSchema,\n parameters: {\n path: updateUserPathParamsSchema,\n query: undefined,\n header: undefined,\n },\n responses: {\n default: updateUserMutationResponseSchema,\n },\n errors: {},\n },\n deleteUser: {\n request: undefined,\n parameters: {\n path: deleteUserPathParamsSchema,\n query: undefined,\n header: undefined,\n },\n responses: {\n 400: deleteUser400Schema,\n 404: deleteUser404Schema,\n default: deleteUserMutationResponseSchema,\n },\n errors: {\n 400: deleteUser400Schema,\n 404: deleteUser404Schema,\n },\n },\n} as const\n\nexport const paths = {\n '\u002Fpets\u002F{uuid}': {\n get: operations['getThings'],\n post: operations['createPets'],\n },\n '\u002Fpet': {\n put: operations['updatePet'],\n post: operations['addPet'],\n },\n '\u002Fpet\u002FfindByStatus': {\n get: operations['findPetsByStatus'],\n },\n '\u002Fpet\u002FfindByTags': {\n get: operations['findPetsByTags'],\n },\n '\u002Fpet\u002F{petId}': {\n get: operations['getPetById'],\n post: operations['updatePetWithForm'],\n delete: operations['deletePet'],\n },\n '\u002Fpet\u002F{petId}\u002FuploadImage': {\n post: operations['uploadFile'],\n },\n '\u002Fstore\u002Finventory': {\n get: operations['getInventory'],\n },\n '\u002Fstore\u002Forder': {\n post: operations['placeOrder'],\n patch: operations['placeOrderPatch'],\n },\n '\u002Fstore\u002Forder\u002F{orderId}': {\n get: operations['getOrderById'],\n delete: operations['deleteOrder'],\n },\n '\u002Fuser': {\n post: operations['createUser'],\n },\n '\u002Fuser\u002FcreateWithList': {\n post: operations['createUsersWithListInput'],\n },\n '\u002Fuser\u002Flogin': {\n get: operations['loginUser'],\n },\n '\u002Fuser\u002Flogout': {\n get: operations['logoutUser'],\n },\n '\u002Fuser\u002F{username}': {\n get: operations['getUserByName'],\n put: operations['updateUser'],\n delete: operations['deleteUser'],\n },\n} as const\n","id":"mod_C961HH9JJNxz64qLYretf8","is_binary":false,"title":"operations.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"mRAkq0fv2k-","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\n\nexport const orderSchema = z.object({\n id: z.optional(z.bigint()),\n petId: z.optional(z.bigint()),\n quantity: z.optional(z.int()),\n shipDate: z.optional(z.iso.datetime()),\n status: z.optional(z.enum(['placed', 'approved', 'delivered']).describe('Order Status')),\n http_status: z.optional(z.union([z.literal(200), z.literal(400)]).describe('HTTP Status')),\n value: z.optional(z.union([z.literal(0), z.literal(1), z.literal(2), z.literal(3), z.literal(3.5), z.literal(4)]).describe('Price')),\n complete: z.optional(z.boolean()),\n})\n\nexport type OrderSchema = z.infer\u003Ctypeof orderSchema\u003E\n","id":"mod_5wHgyR3y2wxuf9aa6gFq2h","is_binary":false,"title":"orderSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"svQX_fvTA0s","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\n\nexport const petNotFoundSchema = z.object({\n code: z.optional(z.int()),\n message: z.optional(z.string()),\n})\n\nexport type PetNotFoundSchema = z.infer\u003Ctypeof petNotFoundSchema\u003E\n","id":"mod_T1E4N448p7upcFfaJs5iRa","is_binary":false,"title":"petNotFoundSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"gdmxCdTKLkp","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\nimport { categorySchema } from '.\u002FcategorySchema.gen.ts'\nimport { tagSchema } from '.\u002FtagSchema.gen.ts'\n\nexport const petSchema = z.object({\n id: z.optional(z.bigint()),\n get parent() {\n return z.array(petSchema).optional()\n },\n internalId: z.optional(z.string().regex(\u002F^[0-9]{1,19}$\u002F)),\n name: z.string().uuid(),\n get category() {\n return categorySchema.optional()\n },\n photoUrls: z.array(z.string()),\n get tags() {\n return z.array(tagSchema).optional()\n },\n status: z.optional(z.enum(['available', 'pending', 'sold']).describe('pet status in the store')),\n})\n\nexport type PetSchema = z.infer\u003Ctypeof petSchema\u003E\n","id":"mod_HGVyf2TXygpw2uTR2drtrE","is_binary":false,"title":"petSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"soqbjoN1kDg","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\n\nexport const phoneNumberSchema = z.string().regex(\u002F^(\\+\\d{1,3}[-\\s]?)?\\(?(?:\\d{1,4})\\)?[-\\s]?\\d{1,4}[-\\s]?\\d{1,9}$\u002F)\n\nexport type PhoneNumberSchema = z.infer\u003Ctypeof phoneNumberSchema\u003E\n","id":"mod_ENYBvt9MFtE5VaVBs87aHp","is_binary":false,"title":"phoneNumberSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"lGypRGnWqXi","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\nimport { phoneNumberSchema } from '.\u002FphoneNumberSchema.gen.ts'\n\nexport const phoneWithMaxLengthExplicitSchema = z.lazy(() =\u003E phoneNumberSchema).and(z.string().max(15))\n\nexport type PhoneWithMaxLengthExplicitSchema = z.infer\u003Ctypeof phoneWithMaxLengthExplicitSchema\u003E\n","id":"mod_84yUKsBqEmVGegANPCtvp6","is_binary":false,"title":"phoneWithMaxLengthExplicitSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"BBiCwh3N-aY","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\nimport { phoneNumberSchema } from '.\u002FphoneNumberSchema.gen.ts'\n\nexport const phoneWithMaxLengthSchema = z.lazy(() =\u003E phoneNumberSchema).and(z.string().max(15))\n\nexport type PhoneWithMaxLengthSchema = z.infer\u003Ctypeof phoneWithMaxLengthSchema\u003E\n","id":"mod_894YSMymdMFQxp5oiuQM7T","is_binary":false,"title":"phoneWithMaxLengthSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"Q2oUbj9rI-x","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\nimport { orderSchema } from '.\u002ForderSchema.gen.ts'\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const placeOrderPatch200Schema = z.lazy(() =\u003E orderSchema)\n\nexport type PlaceOrderPatch200Schema = z.infer\u003Ctypeof placeOrderPatch200Schema\u003E\n\n\u002F**\n * @description Invalid input\n *\u002F\nexport const placeOrderPatch405Schema = z.any()\n\nexport type PlaceOrderPatch405Schema = z.infer\u003Ctypeof placeOrderPatch405Schema\u003E\n\nexport const placeOrderPatchMutationRequestSchema = z.lazy(() =\u003E orderSchema)\n\nexport type PlaceOrderPatchMutationRequestSchema = z.infer\u003Ctypeof placeOrderPatchMutationRequestSchema\u003E\n\nexport const placeOrderPatchMutationResponseSchema = z.lazy(() =\u003E placeOrderPatch200Schema)\n\nexport type PlaceOrderPatchMutationResponseSchema = z.infer\u003Ctypeof placeOrderPatchMutationResponseSchema\u003E\n","id":"mod_BFSaJVj7KLLk89HeD5oN65","is_binary":false,"title":"placeOrderPatchSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"P8f0UvMXN6o","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\nimport { orderSchema } from '.\u002ForderSchema.gen.ts'\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const placeOrder200Schema = z.lazy(() =\u003E orderSchema)\n\nexport type PlaceOrder200Schema = z.infer\u003Ctypeof placeOrder200Schema\u003E\n\n\u002F**\n * @description Invalid input\n *\u002F\nexport const placeOrder405Schema = z.any()\n\nexport type PlaceOrder405Schema = z.infer\u003Ctypeof placeOrder405Schema\u003E\n\nexport const placeOrderMutationRequestSchema = z.lazy(() =\u003E orderSchema)\n\nexport type PlaceOrderMutationRequestSchema = z.infer\u003Ctypeof placeOrderMutationRequestSchema\u003E\n\nexport const placeOrderMutationResponseSchema = z.lazy(() =\u003E placeOrder200Schema)\n\nexport type PlaceOrderMutationResponseSchema = z.infer\u003Ctypeof placeOrderMutationResponseSchema\u003E\n","id":"mod_9kfJrSjCL9egSDpCacoFS2","is_binary":false,"title":"placeOrderSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"rA1g7nzb0do","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\n\nexport const tagSchema = z.object({\n id: z.optional(z.bigint()),\n name: z.optional(z.string()),\n})\n\nexport type TagSchema = z.infer\u003Ctypeof tagSchema\u003E\n","id":"mod_S69riMwat4dF4yDvRVkH53","is_binary":false,"title":"tagSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"AGrTY8Tkod6","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\nimport { petSchema } from '.\u002FpetSchema.gen.ts'\n\n\u002F**\n * @description Successful operation\n *\u002F\nexport const updatePet200Schema = z.lazy(() =\u003E petSchema)\n\nexport type UpdatePet200Schema = z.infer\u003Ctypeof updatePet200Schema\u003E\n\n\u002F**\n * @description Invalid ID supplied\n *\u002F\nexport const updatePet400Schema = z.any()\n\nexport type UpdatePet400Schema = z.infer\u003Ctypeof updatePet400Schema\u003E\n\n\u002F**\n * @description Pet not found\n *\u002F\nexport const updatePet404Schema = z.any()\n\nexport type UpdatePet404Schema = z.infer\u003Ctypeof updatePet404Schema\u003E\n\n\u002F**\n * @description Validation exception\n *\u002F\nexport const updatePet405Schema = z.any()\n\nexport type UpdatePet405Schema = z.infer\u003Ctypeof updatePet405Schema\u003E\n\n\u002F**\n * @description Update an existent pet in the store\n *\u002F\nexport const updatePetMutationRequestSchema = z.lazy(() =\u003E petSchema)\n\nexport type UpdatePetMutationRequestSchema = z.infer\u003Ctypeof updatePetMutationRequestSchema\u003E\n\nexport const updatePetMutationResponseSchema = z.lazy(() =\u003E updatePet200Schema)\n\nexport type UpdatePetMutationResponseSchema = z.infer\u003Ctypeof updatePetMutationResponseSchema\u003E\n","id":"mod_TnVX29C6rVbt8hnKwo1EsG","is_binary":false,"title":"updatePetSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"ClJFsmIVaAt","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\n\nexport const updatePetWithFormPathParamsSchema = z.object({\n petId: z.coerce.bigint().describe('ID of pet that needs to be updated'),\n})\n\nexport type UpdatePetWithFormPathParamsSchema = z.infer\u003Ctypeof updatePetWithFormPathParamsSchema\u003E\n\nexport const updatePetWithFormQueryParamsSchema = z\n .object({\n name: z.optional(z.string().describe('Name of pet that needs to be updated')),\n status: z.optional(z.string().describe('Status of pet that needs to be updated')),\n })\n .optional()\n\nexport type UpdatePetWithFormQueryParamsSchema = z.infer\u003Ctypeof updatePetWithFormQueryParamsSchema\u003E\n\n\u002F**\n * @description Invalid input\n *\u002F\nexport const updatePetWithForm405Schema = z.any()\n\nexport type UpdatePetWithForm405Schema = z.infer\u003Ctypeof updatePetWithForm405Schema\u003E\n\nexport const updatePetWithFormMutationResponseSchema = z.any()\n\nexport type UpdatePetWithFormMutationResponseSchema = z.infer\u003Ctypeof updatePetWithFormMutationResponseSchema\u003E\n","id":"mod_VVCUu3TX7xeCHHtYHoCiL5","is_binary":false,"title":"updatePetWithFormSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"Gg2ZOT9wWCY","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\nimport { userSchema } from '.\u002FuserSchema.gen.ts'\n\nexport const updateUserPathParamsSchema = z.object({\n username: z.string().describe('name that need to be deleted'),\n})\n\nexport type UpdateUserPathParamsSchema = z.infer\u003Ctypeof updateUserPathParamsSchema\u003E\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const updateUserErrorSchema = z.any()\n\nexport type UpdateUserErrorSchema = z.infer\u003Ctypeof updateUserErrorSchema\u003E\n\n\u002F**\n * @description Update an existent user in the store\n *\u002F\nexport const updateUserMutationRequestSchema = z.lazy(() =\u003E userSchema)\n\nexport type UpdateUserMutationRequestSchema = z.infer\u003Ctypeof updateUserMutationRequestSchema\u003E\n\nexport const updateUserMutationResponseSchema = z.any()\n\nexport type UpdateUserMutationResponseSchema = z.infer\u003Ctypeof updateUserMutationResponseSchema\u003E\n","id":"mod_Si2yCDBQnyRXvgQzeLRDnW","is_binary":false,"title":"updateUserSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"R2FiEHgc3Kp","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\nimport { apiResponseSchema } from '.\u002FapiResponseSchema.gen.ts'\n\nexport const uploadFilePathParamsSchema = z.object({\n petId: z.coerce.bigint().describe('ID of pet to update'),\n})\n\nexport type UploadFilePathParamsSchema = z.infer\u003Ctypeof uploadFilePathParamsSchema\u003E\n\nexport const uploadFileQueryParamsSchema = z\n .object({\n additionalMetadata: z.optional(z.string().describe('Additional Metadata')),\n })\n .optional()\n\nexport type UploadFileQueryParamsSchema = z.infer\u003Ctypeof uploadFileQueryParamsSchema\u003E\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const uploadFile200Schema = z.lazy(() =\u003E apiResponseSchema)\n\nexport type UploadFile200Schema = z.infer\u003Ctypeof uploadFile200Schema\u003E\n\nexport const uploadFileMutationRequestSchema = z.instanceof(File)\n\nexport type UploadFileMutationRequestSchema = z.infer\u003Ctypeof uploadFileMutationRequestSchema\u003E\n\nexport const uploadFileMutationResponseSchema = z.lazy(() =\u003E uploadFile200Schema)\n\nexport type UploadFileMutationResponseSchema = z.infer\u003Ctypeof uploadFileMutationResponseSchema\u003E\n","id":"mod_AyPUZBuqLtMWmaGg9twaLv","is_binary":false,"title":"uploadFileSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"FF9ojzKMV3e","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\n\n\u002F**\n * @description List of user object\n *\u002F\nexport const userArraySchema = z.any().describe('List of user object')\n\nexport type UserArraySchema = z.infer\u003Ctypeof userArraySchema\u003E\n","id":"mod_6bMBwN6UZ3uHZjXqJC2Kip","is_binary":false,"title":"userArraySchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"5b62mH4vSXS","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from '..\u002F..\u002Fzod.ts'\n\nexport const userSchema = z.object({\n id: z.optional(z.bigint()),\n username: z.optional(z.string()),\n firstName: z.optional(z.string()),\n lastName: z.optional(z.string()),\n email: z.optional(z.string()),\n password: z.optional(z.string()),\n phone: z.optional(z.string()),\n userStatus: z.optional(z.int().describe('User Status')),\n})\n\nexport type UserSchema = z.infer\u003Ctypeof userSchema\u003E\n","id":"mod_TpbsB3uGfDuQoe5YvMRd7S","is_binary":false,"title":"userSchema.gen.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"Dz_OesQNwDK","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"xHJ2_inNs5"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport type { Client, RequestConfig, ResponseErrorConfig } from '@kubb\u002Fplugin-client\u002Fclients\u002Faxios'\nimport fetch from '@kubb\u002Fplugin-client\u002Fclients\u002Faxios'\nimport type { DeleteOrder400Type, DeleteOrder404Type, DeleteOrderMutationResponseType, DeleteOrderPathParamsType } from '.\u002Fts\u002FDeleteOrderType.ts'\nimport type { GetInventoryQueryResponseType } from '.\u002Fts\u002FGetInventoryType.ts'\nimport type { GetOrderById400Type, GetOrderById404Type, GetOrderByIdPathParamsType, GetOrderByIdQueryResponseType } from '.\u002Fts\u002FGetOrderByIdType.ts'\nimport type { PlaceOrderPatch405Type, PlaceOrderPatchMutationRequestType, PlaceOrderPatchMutationResponseType } from '.\u002Fts\u002FPlaceOrderPatchType.ts'\nimport type { PlaceOrder405Type, PlaceOrderMutationRequestType, PlaceOrderMutationResponseType } from '.\u002Fts\u002FPlaceOrderType.ts'\nimport { deleteOrderMutationResponseSchema } from '.\u002Fzod\u002FdeleteOrderSchema.gen.ts'\nimport { getInventoryQueryResponseSchema } from '.\u002Fzod\u002FgetInventorySchema.gen.ts'\nimport { getOrderByIdQueryResponseSchema } from '.\u002Fzod\u002FgetOrderByIdSchema.gen.ts'\nimport { placeOrderPatchMutationRequestSchema, placeOrderPatchMutationResponseSchema } from '.\u002Fzod\u002FplaceOrderPatchSchema.gen.ts'\nimport { placeOrderMutationRequestSchema, placeOrderMutationResponseSchema } from '.\u002Fzod\u002FplaceOrderSchema.gen.ts'\n\nfunction getGetInventoryUrl() {\n const res = { method: 'GET', url: '\u002Fstore\u002Finventory' as const }\n return res\n}\n\n\u002F**\n * @description Returns a map of status codes to quantities\n * @summary Returns pet inventories by status\n * {@link \u002Fstore\u002Finventory}\n *\u002F\nexport async function getInventory(config: Partial\u003CRequestConfig\u003E & { client?: Client } = {}) {\n const { client: request = fetch, ...requestConfig } = config\n\n const res = await request\u003CGetInventoryQueryResponseType, ResponseErrorConfig\u003CError\u003E, unknown\u003E({\n method: 'GET',\n url: getGetInventoryUrl().url.toString(),\n ...requestConfig,\n })\n return getInventoryQueryResponseSchema.parse(res.data)\n}\n\nfunction getPlaceOrderUrl() {\n const res = { method: 'POST', url: '\u002Fstore\u002Forder' as const }\n return res\n}\n\n\u002F**\n * @description Place a new order in the store\n * @summary Place an order for a pet\n * {@link \u002Fstore\u002Forder}\n *\u002F\nexport async function placeOrder(\n data?: PlaceOrderMutationRequestType,\n config: Partial\u003CRequestConfig\u003CPlaceOrderMutationRequestType\u003E\u003E & {\n client?: Client\n } = {},\n) {\n const { client: request = fetch, ...requestConfig } = config\n\n const requestData = placeOrderMutationRequestSchema.parse(data)\n\n const res = await request\u003CPlaceOrderMutationResponseType, ResponseErrorConfig\u003CPlaceOrder405Type\u003E, PlaceOrderMutationRequestType\u003E({\n method: 'POST',\n url: getPlaceOrderUrl().url.toString(),\n data: requestData,\n ...requestConfig,\n })\n return placeOrderMutationResponseSchema.parse(res.data)\n}\n\nfunction getPlaceOrderPatchUrl() {\n const res = { method: 'PATCH', url: '\u002Fstore\u002Forder' as const }\n return res\n}\n\n\u002F**\n * @description Place a new order in the store with patch\n * @summary Place an order for a pet with patch\n * {@link \u002Fstore\u002Forder}\n *\u002F\nexport async function placeOrderPatch(\n data?: PlaceOrderPatchMutationRequestType,\n config: Partial\u003CRequestConfig\u003CPlaceOrderPatchMutationRequestType\u003E\u003E & {\n client?: Client\n } = {},\n) {\n const { client: request = fetch, ...requestConfig } = config\n\n const requestData = placeOrderPatchMutationRequestSchema.parse(data)\n\n const res = await request\u003CPlaceOrderPatchMutationResponseType, ResponseErrorConfig\u003CPlaceOrderPatch405Type\u003E, PlaceOrderPatchMutationRequestType\u003E({\n method: 'PATCH',\n url: getPlaceOrderPatchUrl().url.toString(),\n data: requestData,\n ...requestConfig,\n })\n return placeOrderPatchMutationResponseSchema.parse(res.data)\n}\n\nfunction getGetOrderByIdUrl({ orderId }: { orderId: GetOrderByIdPathParamsType['orderId'] }) {\n const res = { method: 'GET', url: `\u002Fstore\u002Forder\u002F${orderId}` as const }\n return res\n}\n\n\u002F**\n * @description For valid response try integer IDs with value \u003C= 5 or \u003E 10. Other values will generate exceptions.\n * @summary Find purchase order by ID\n * {@link \u002Fstore\u002Forder\u002F:orderId}\n *\u002F\nexport async function getOrderById({ orderId }: { orderId: GetOrderByIdPathParamsType['orderId'] }, config: Partial\u003CRequestConfig\u003E & { client?: Client } = {}) {\n const { client: request = fetch, ...requestConfig } = config\n\n const res = await request\u003CGetOrderByIdQueryResponseType, ResponseErrorConfig\u003CGetOrderById400Type | GetOrderById404Type\u003E, unknown\u003E({\n method: 'GET',\n url: getGetOrderByIdUrl({ orderId }).url.toString(),\n ...requestConfig,\n })\n return getOrderByIdQueryResponseSchema.parse(res.data)\n}\n\nfunction getDeleteOrderUrl({ orderId }: { orderId: DeleteOrderPathParamsType['orderId'] }) {\n const res = { method: 'DELETE', url: `\u002Fstore\u002Forder\u002F${orderId}` as const }\n return res\n}\n\n\u002F**\n * @description For valid response try integer IDs with value \u003C 1000. Anything above 1000 or nonintegers will generate API errors\n * @summary Delete purchase order by ID\n * {@link \u002Fstore\u002Forder\u002F:orderId}\n *\u002F\nexport async function deleteOrder({ orderId }: { orderId: DeleteOrderPathParamsType['orderId'] }, config: Partial\u003CRequestConfig\u003E & { client?: Client } = {}) {\n const { client: request = fetch, ...requestConfig } = config\n\n const res = await request\u003CDeleteOrderMutationResponseType, ResponseErrorConfig\u003CDeleteOrder400Type | DeleteOrder404Type\u003E, unknown\u003E({\n method: 'DELETE',\n url: getDeleteOrderUrl({ orderId }).url.toString(),\n ...requestConfig,\n })\n return deleteOrderMutationResponseSchema.parse(res.data)\n}\n","id":"mod_M3stiJkVwUtfn3VKbxU1ts","is_binary":false,"title":"zodClients.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"X9ocKORKZh1","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"zL9sdaosgJ"},{"code":"export { addPetRequestSchema } from '.\u002Fzod\u002FaddPetRequestSchema.ts'\nexport {\n addPet200Schema,\n addPet405Schema,\n addPetMutationRequestSchema,\n addPetMutationResponseSchema,\n} from '.\u002Fzod\u002FaddPetSchema.ts'\nexport { addressSchema } from '.\u002Fzod\u002FaddressSchema.ts'\nexport { apiResponseSchema } from '.\u002Fzod\u002FapiResponseSchema.ts'\nexport { categorySchema } from '.\u002Fzod\u002FcategorySchema.ts'\nexport {\n createPets201Schema,\n createPetsErrorSchema,\n createPetsHeaderParamsSchema,\n createPetsMutationRequestSchema,\n createPetsMutationResponseSchema,\n createPetsPathParamsSchema,\n createPetsQueryParamsSchema,\n} from '.\u002Fzod\u002FcreatePetsSchema.ts'\nexport {\n createUserErrorSchema,\n createUserMutationRequestSchema,\n createUserMutationResponseSchema,\n} from '.\u002Fzod\u002FcreateUserSchema.ts'\nexport {\n createUsersWithListInput200Schema,\n createUsersWithListInputErrorSchema,\n createUsersWithListInputMutationRequestSchema,\n createUsersWithListInputMutationResponseSchema,\n} from '.\u002Fzod\u002FcreateUsersWithListInputSchema.ts'\nexport { customerSchema } from '.\u002Fzod\u002FcustomerSchema.ts'\nexport {\n deleteOrder400Schema,\n deleteOrder404Schema,\n deleteOrderMutationResponseSchema,\n deleteOrderPathParamsSchema,\n} from '.\u002Fzod\u002FdeleteOrderSchema.ts'\nexport {\n deletePet400Schema,\n deletePetHeaderParamsSchema,\n deletePetMutationResponseSchema,\n deletePetPathParamsSchema,\n} from '.\u002Fzod\u002FdeletePetSchema.ts'\nexport {\n deleteUser400Schema,\n deleteUser404Schema,\n deleteUserMutationResponseSchema,\n deleteUserPathParamsSchema,\n} from '.\u002Fzod\u002FdeleteUserSchema.ts'\nexport {\n findPetsByStatus200Schema,\n findPetsByStatus400Schema,\n findPetsByStatusQueryParamsSchema,\n findPetsByStatusQueryResponseSchema,\n} from '.\u002Fzod\u002FfindPetsByStatusSchema.ts'\nexport {\n findPetsByTags200Schema,\n findPetsByTags400Schema,\n findPetsByTagsHeaderParamsSchema,\n findPetsByTagsQueryParamsSchema,\n findPetsByTagsQueryResponseSchema,\n} from '.\u002Fzod\u002FfindPetsByTagsSchema.ts'\nexport {\n getInventory200Schema,\n getInventoryQueryResponseSchema,\n} from '.\u002Fzod\u002FgetInventorySchema.ts'\nexport {\n getOrderById200Schema,\n getOrderById400Schema,\n getOrderById404Schema,\n getOrderByIdPathParamsSchema,\n getOrderByIdQueryResponseSchema,\n} from '.\u002Fzod\u002FgetOrderByIdSchema.ts'\nexport {\n getPetById200Schema,\n getPetById400Schema,\n getPetById404Schema,\n getPetByIdPathParamsSchema,\n getPetByIdQueryResponseSchema,\n} from '.\u002Fzod\u002FgetPetByIdSchema.ts'\nexport {\n getThings201Schema,\n getThingsErrorSchema,\n getThingsQueryParamsSchema,\n getThingsQueryResponseSchema,\n} from '.\u002Fzod\u002FgetThingsSchema.ts'\nexport {\n getUserByName200Schema,\n getUserByName400Schema,\n getUserByName404Schema,\n getUserByNamePathParamsSchema,\n getUserByNameQueryResponseSchema,\n} from '.\u002Fzod\u002FgetUserByNameSchema.ts'\nexport {\n loginUser200Schema,\n loginUser400Schema,\n loginUserQueryParamsSchema,\n loginUserQueryResponseSchema,\n} from '.\u002Fzod\u002FloginUserSchema.ts'\nexport {\n logoutUserErrorSchema,\n logoutUserQueryResponseSchema,\n} from '.\u002Fzod\u002FlogoutUserSchema.ts'\nexport { orderSchema } from '.\u002Fzod\u002ForderSchema.ts'\nexport { petNotFoundSchema } from '.\u002Fzod\u002FpetNotFoundSchema.ts'\nexport { petSchema } from '.\u002Fzod\u002FpetSchema.ts'\nexport { phoneNumberSchema } from '.\u002Fzod\u002FphoneNumberSchema.ts'\nexport { phoneWithMaxLengthExplicitSchema } from '.\u002Fzod\u002FphoneWithMaxLengthExplicitSchema.ts'\nexport { phoneWithMaxLengthSchema } from '.\u002Fzod\u002FphoneWithMaxLengthSchema.ts'\nexport {\n placeOrderPatch200Schema,\n placeOrderPatch405Schema,\n placeOrderPatchMutationRequestSchema,\n placeOrderPatchMutationResponseSchema,\n} from '.\u002Fzod\u002FplaceOrderPatchSchema.ts'\nexport {\n placeOrder200Schema,\n placeOrder405Schema,\n placeOrderMutationRequestSchema,\n placeOrderMutationResponseSchema,\n} from '.\u002Fzod\u002FplaceOrderSchema.ts'\nexport { tagSchema } from '.\u002Fzod\u002FtagSchema.ts'\nexport {\n updatePet200Schema,\n updatePet400Schema,\n updatePet404Schema,\n updatePet405Schema,\n updatePetMutationRequestSchema,\n updatePetMutationResponseSchema,\n} from '.\u002Fzod\u002FupdatePetSchema.ts'\nexport {\n updatePetWithForm405Schema,\n updatePetWithFormMutationResponseSchema,\n updatePetWithFormPathParamsSchema,\n updatePetWithFormQueryParamsSchema,\n} from '.\u002Fzod\u002FupdatePetWithFormSchema.ts'\nexport {\n updateUserErrorSchema,\n updateUserMutationRequestSchema,\n updateUserMutationResponseSchema,\n updateUserPathParamsSchema,\n} from '.\u002Fzod\u002FupdateUserSchema.ts'\nexport {\n uploadFile200Schema,\n uploadFileMutationRequestSchema,\n uploadFileMutationResponseSchema,\n uploadFilePathParamsSchema,\n uploadFileQueryParamsSchema,\n} from '.\u002Fzod\u002FuploadFileSchema.ts'\nexport { userArraySchema } from '.\u002Fzod\u002FuserArraySchema.ts'\nexport { userSchema } from '.\u002Fzod\u002FuserSchema.ts'\n","id":"mod_UEotG5xD7H5d1U6HnkawZH","is_binary":false,"title":"index.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"_v9NE7abnES","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"A1POncN_XL"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\nimport { categorySchema } from '.\u002FcategorySchema.ts'\nimport { tagSchema } from '.\u002FtagSchema.ts'\n\nexport const addPetRequestSchema = z.object({\n id: z.optional(z.bigint()),\n name: z.string(),\n get category() {\n return z.optional(categorySchema)\n },\n photoUrls: z.array(z.string()),\n get tags() {\n return z.optional(z.array(tagSchema))\n },\n status: z.optional(z.enum(['available', 'pending', 'sold'])),\n})\n","id":"mod_WRguWgEjjpbDFpJB1HcCgh","is_binary":false,"title":"addPetRequestSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"YnqXzmJ4-T4","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\nimport { addPetRequestSchema } from '.\u002FaddPetRequestSchema.ts'\nimport { petSchema } from '.\u002FpetSchema.ts'\n\n\u002F**\n * @description Successful operation\n *\u002F\nexport const addPet200Schema = z.lazy(() =\u003E petSchema)\n\n\u002F**\n * @description Pet not found\n *\u002F\nexport const addPet405Schema = z.object({\n code: z.optional(z.int()),\n message: z.optional(z.string()),\n})\n\n\u002F**\n * @description Create a new pet in the store\n *\u002F\nexport const addPetMutationRequestSchema = z.lazy(() =\u003E addPetRequestSchema)\n\nexport const addPetMutationResponseSchema = z.lazy(() =\u003E addPet200Schema)\n","id":"mod_SoCUFTviw3wGi6mcJRcLir","is_binary":false,"title":"addPetSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"D64ZD2mlVeT","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\n\nexport const addressSchema = z.object({\n street: z.optional(z.string()),\n city: z.optional(z.string()),\n state: z.optional(z.string()),\n zip: z.optional(z.string()),\n})\n","id":"mod_DFqSadzEK2x65rihfVtBw9","is_binary":false,"title":"addressSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"HVWIdw0SC6f","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\n\nexport const apiResponseSchema = z.object({\n code: z.optional(z.int()),\n type: z.optional(z.string()),\n message: z.optional(z.string()),\n})\n","id":"mod_RLbp3nfUJYbxDFjDjSgCD3","is_binary":false,"title":"apiResponseSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"ThkDn-yoZqJ","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\n\nexport const categorySchema = z.object({\n id: z.optional(z.bigint()),\n name: z.optional(z.string()),\n get parent() {\n return z.optional(categorySchema)\n },\n})\n","id":"mod_UvF96UMU7rnFC6crxyKKWk","is_binary":false,"title":"categorySchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"ZNiin_J-fVB","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\nimport { petNotFoundSchema } from '.\u002FpetNotFoundSchema.ts'\n\nexport const createPetsPathParamsSchema = z.object({\n uuid: z.string(),\n})\n\nexport const createPetsQueryParamsSchema = z.optional(\n z.object({\n offset: z.optional(z.int()),\n }),\n)\n\nexport const createPetsHeaderParamsSchema = z.object({\n 'X-EXAMPLE': z.enum(['ONE', 'TWO', 'THREE']),\n})\n\n\u002F**\n * @description Null response\n *\u002F\nexport const createPets201Schema = z.any()\n\n\u002F**\n * @description unexpected error\n *\u002F\nexport const createPetsErrorSchema = z.lazy(() =\u003E petNotFoundSchema)\n\nexport const createPetsMutationRequestSchema = z.object({\n name: z.string(),\n tag: z.string(),\n})\n\nexport const createPetsMutationResponseSchema = z.lazy(() =\u003E createPets201Schema)\n","id":"mod_2yr2bNxBmPGLBeswJtq6DN","is_binary":false,"title":"createPetsSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"Os-FXbO8aSq","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\nimport { userSchema } from '.\u002FuserSchema.ts'\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const createUserErrorSchema = z.lazy(() =\u003E userSchema)\n\n\u002F**\n * @description Created user object\n *\u002F\nexport const createUserMutationRequestSchema = z.lazy(() =\u003E userSchema)\n\nexport const createUserMutationResponseSchema = z.any()\n","id":"mod_YRT27Yt1ettACccGmzTn9z","is_binary":false,"title":"createUserSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"_TBvEpLTFHw","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\nimport { userSchema } from '.\u002FuserSchema.ts'\n\n\u002F**\n * @description Successful operation\n *\u002F\nexport const createUsersWithListInput200Schema = z.lazy(() =\u003E userSchema)\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const createUsersWithListInputErrorSchema = z.any()\n\nexport const createUsersWithListInputMutationRequestSchema = z.array(z.lazy(() =\u003E userSchema))\n\nexport const createUsersWithListInputMutationResponseSchema = z.lazy(() =\u003E createUsersWithListInput200Schema)\n","id":"mod_G3bZ2GbfFkc77z87E3K5c7","is_binary":false,"title":"createUsersWithListInputSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"vvP2AReTOzy","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\nimport { addressSchema } from '.\u002FaddressSchema.ts'\n\nexport const customerSchema = z.object({\n id: z.optional(z.bigint()),\n username: z.optional(z.string()),\n get address() {\n return z.optional(z.array(addressSchema))\n },\n})\n","id":"mod_VDy5QXxgp88iLhB5krDCVm","is_binary":false,"title":"customerSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"oKFufxokNfr","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\n\nexport const deleteOrderPathParamsSchema = z.object({\n orderId: z.coerce.bigint(),\n})\n\n\u002F**\n * @description Invalid ID supplied\n *\u002F\nexport const deleteOrder400Schema = z.any()\n\n\u002F**\n * @description Order not found\n *\u002F\nexport const deleteOrder404Schema = z.any()\n\nexport const deleteOrderMutationResponseSchema = z.any()\n","id":"mod_U4HiT2g7QiwN6kd9ZudkBp","is_binary":false,"title":"deleteOrderSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"utKYSwF1nia","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\n\nexport const deletePetPathParamsSchema = z.object({\n petId: z.coerce.bigint(),\n})\n\nexport const deletePetHeaderParamsSchema = z.optional(\n z.object({\n api_key: z.optional(z.string()),\n }),\n)\n\n\u002F**\n * @description Invalid pet value\n *\u002F\nexport const deletePet400Schema = z.any()\n\nexport const deletePetMutationResponseSchema = z.any()\n","id":"mod_VD2GnZEuf4f7u8q9GTTm3N","is_binary":false,"title":"deletePetSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"BifC6bezL3a","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\n\nexport const deleteUserPathParamsSchema = z.object({\n username: z.string(),\n})\n\n\u002F**\n * @description Invalid username supplied\n *\u002F\nexport const deleteUser400Schema = z.any()\n\n\u002F**\n * @description User not found\n *\u002F\nexport const deleteUser404Schema = z.any()\n\nexport const deleteUserMutationResponseSchema = z.any()\n","id":"mod_87P26auWhv3NxTvvzzB6zR","is_binary":false,"title":"deleteUserSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"mcYkxaHdVEk","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\nimport { petSchema } from '.\u002FpetSchema.ts'\n\nexport const findPetsByStatusQueryParamsSchema = z.object({\n status: z.enum(['available', 'pending', 'sold']),\n})\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const findPetsByStatus200Schema = z.array(z.lazy(() =\u003E petSchema))\n\n\u002F**\n * @description Invalid status value\n *\u002F\nexport const findPetsByStatus400Schema = z.any()\n\nexport const findPetsByStatusQueryResponseSchema = z.lazy(() =\u003E findPetsByStatus200Schema)\n","id":"mod_SpCgr9DvPS1qahBx1r8t29","is_binary":false,"title":"findPetsByStatusSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"9FTy8RePPEj","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\nimport { petSchema } from '.\u002FpetSchema.ts'\n\nexport const findPetsByTagsQueryParamsSchema = z.optional(\n z.object({\n tags: z.optional(z.array(z.string())),\n page: z.optional(z.string()),\n pageSize: z.optional(z.string()),\n }),\n)\n\nexport const findPetsByTagsHeaderParamsSchema = z.object({\n 'X-EXAMPLE': z.enum(['ONE', 'TWO', 'THREE']),\n})\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const findPetsByTags200Schema = z.array(z.lazy(() =\u003E petSchema))\n\n\u002F**\n * @description Invalid tag value\n *\u002F\nexport const findPetsByTags400Schema = z.any()\n\nexport const findPetsByTagsQueryResponseSchema = z.lazy(() =\u003E findPetsByTags200Schema)\n","id":"mod_AcoChe776qbySXPMSvYGEW","is_binary":false,"title":"findPetsByTagsSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"IviQoC0m8e9","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const getInventory200Schema = z.object({})\n\nexport const getInventoryQueryResponseSchema = z.lazy(() =\u003E getInventory200Schema)\n","id":"mod_Ni4LSiiF8c8ffFuifugPY7","is_binary":false,"title":"getInventorySchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"mYShO5sB8Pi","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\nimport { orderSchema } from '.\u002ForderSchema.ts'\n\nexport const getOrderByIdPathParamsSchema = z.object({\n orderId: z.coerce.bigint(),\n})\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const getOrderById200Schema = z.lazy(() =\u003E orderSchema)\n\n\u002F**\n * @description Invalid ID supplied\n *\u002F\nexport const getOrderById400Schema = z.any()\n\n\u002F**\n * @description Order not found\n *\u002F\nexport const getOrderById404Schema = z.any()\n\nexport const getOrderByIdQueryResponseSchema = z.lazy(() =\u003E getOrderById200Schema)\n","id":"mod_LCyTHVZcaa1uQRDngFyirc","is_binary":false,"title":"getOrderByIdSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"XA-s6h-nw0A","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\nimport { petSchema } from '.\u002FpetSchema.ts'\n\nexport const getPetByIdPathParamsSchema = z.object({\n petId: z.coerce.bigint(),\n})\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const getPetById200Schema = z.lazy(() =\u003E petSchema)\n\n\u002F**\n * @description Invalid ID supplied\n *\u002F\nexport const getPetById400Schema = z.any()\n\n\u002F**\n * @description Pet not found\n *\u002F\nexport const getPetById404Schema = z.any()\n\nexport const getPetByIdQueryResponseSchema = z.lazy(() =\u003E getPetById200Schema)\n","id":"mod_LvsLiDe3nmTEG3hLkx9Ss","is_binary":false,"title":"getPetByIdSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"HulmXmQo6Sr","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\nimport { petNotFoundSchema } from '.\u002FpetNotFoundSchema.ts'\n\nexport const getThingsQueryParamsSchema = z.object({\n limit: z.int().check(z.minimum(1), z.maximum(100)),\n skip: z.int().check(z.minimum(0)),\n})\n\n\u002F**\n * @description Null response\n *\u002F\nexport const getThings201Schema = z.any()\n\n\u002F**\n * @description unexpected error\n *\u002F\nexport const getThingsErrorSchema = z.lazy(() =\u003E petNotFoundSchema)\n\nexport const getThingsQueryResponseSchema = z.lazy(() =\u003E getThings201Schema)\n","id":"mod_AkcbeuHMqwP7r4tYi3xHrV","is_binary":false,"title":"getThingsSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"A7wm-R7RJlh","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\nimport { userSchema } from '.\u002FuserSchema.ts'\n\nexport const getUserByNamePathParamsSchema = z.object({\n username: z.string(),\n})\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const getUserByName200Schema = z.lazy(() =\u003E userSchema)\n\n\u002F**\n * @description Invalid username supplied\n *\u002F\nexport const getUserByName400Schema = z.any()\n\n\u002F**\n * @description User not found\n *\u002F\nexport const getUserByName404Schema = z.any()\n\nexport const getUserByNameQueryResponseSchema = z.lazy(() =\u003E getUserByName200Schema)\n","id":"mod_4BMmTL7Cgh98dvyu4YuGLN","is_binary":false,"title":"getUserByNameSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"u3aO83JVroM","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"export { addPetRequestSchema } from '.\u002FaddPetRequestSchema.ts'\nexport {\n addPet200Schema,\n addPet405Schema,\n addPetMutationRequestSchema,\n addPetMutationResponseSchema,\n} from '.\u002FaddPetSchema.ts'\nexport { addressSchema } from '.\u002FaddressSchema.ts'\nexport { apiResponseSchema } from '.\u002FapiResponseSchema.ts'\nexport { categorySchema } from '.\u002FcategorySchema.ts'\nexport {\n createPets201Schema,\n createPetsErrorSchema,\n createPetsHeaderParamsSchema,\n createPetsMutationRequestSchema,\n createPetsMutationResponseSchema,\n createPetsPathParamsSchema,\n createPetsQueryParamsSchema,\n} from '.\u002FcreatePetsSchema.ts'\nexport {\n createUserErrorSchema,\n createUserMutationRequestSchema,\n createUserMutationResponseSchema,\n} from '.\u002FcreateUserSchema.ts'\nexport {\n createUsersWithListInput200Schema,\n createUsersWithListInputErrorSchema,\n createUsersWithListInputMutationRequestSchema,\n createUsersWithListInputMutationResponseSchema,\n} from '.\u002FcreateUsersWithListInputSchema.ts'\nexport { customerSchema } from '.\u002FcustomerSchema.ts'\nexport {\n deleteOrder400Schema,\n deleteOrder404Schema,\n deleteOrderMutationResponseSchema,\n deleteOrderPathParamsSchema,\n} from '.\u002FdeleteOrderSchema.ts'\nexport {\n deletePet400Schema,\n deletePetHeaderParamsSchema,\n deletePetMutationResponseSchema,\n deletePetPathParamsSchema,\n} from '.\u002FdeletePetSchema.ts'\nexport {\n deleteUser400Schema,\n deleteUser404Schema,\n deleteUserMutationResponseSchema,\n deleteUserPathParamsSchema,\n} from '.\u002FdeleteUserSchema.ts'\nexport {\n findPetsByStatus200Schema,\n findPetsByStatus400Schema,\n findPetsByStatusQueryParamsSchema,\n findPetsByStatusQueryResponseSchema,\n} from '.\u002FfindPetsByStatusSchema.ts'\nexport {\n findPetsByTags200Schema,\n findPetsByTags400Schema,\n findPetsByTagsHeaderParamsSchema,\n findPetsByTagsQueryParamsSchema,\n findPetsByTagsQueryResponseSchema,\n} from '.\u002FfindPetsByTagsSchema.ts'\nexport {\n getInventory200Schema,\n getInventoryQueryResponseSchema,\n} from '.\u002FgetInventorySchema.ts'\nexport {\n getOrderById200Schema,\n getOrderById400Schema,\n getOrderById404Schema,\n getOrderByIdPathParamsSchema,\n getOrderByIdQueryResponseSchema,\n} from '.\u002FgetOrderByIdSchema.ts'\nexport {\n getPetById200Schema,\n getPetById400Schema,\n getPetById404Schema,\n getPetByIdPathParamsSchema,\n getPetByIdQueryResponseSchema,\n} from '.\u002FgetPetByIdSchema.ts'\nexport {\n getThings201Schema,\n getThingsErrorSchema,\n getThingsQueryParamsSchema,\n getThingsQueryResponseSchema,\n} from '.\u002FgetThingsSchema.ts'\nexport {\n getUserByName200Schema,\n getUserByName400Schema,\n getUserByName404Schema,\n getUserByNamePathParamsSchema,\n getUserByNameQueryResponseSchema,\n} from '.\u002FgetUserByNameSchema.ts'\nexport {\n loginUser200Schema,\n loginUser400Schema,\n loginUserQueryParamsSchema,\n loginUserQueryResponseSchema,\n} from '.\u002FloginUserSchema.ts'\nexport {\n logoutUserErrorSchema,\n logoutUserQueryResponseSchema,\n} from '.\u002FlogoutUserSchema.ts'\nexport { orderSchema } from '.\u002ForderSchema.ts'\nexport { petNotFoundSchema } from '.\u002FpetNotFoundSchema.ts'\nexport { petSchema } from '.\u002FpetSchema.ts'\nexport { phoneNumberSchema } from '.\u002FphoneNumberSchema.ts'\nexport { phoneWithMaxLengthExplicitSchema } from '.\u002FphoneWithMaxLengthExplicitSchema.ts'\nexport { phoneWithMaxLengthSchema } from '.\u002FphoneWithMaxLengthSchema.ts'\nexport {\n placeOrderPatch200Schema,\n placeOrderPatch405Schema,\n placeOrderPatchMutationRequestSchema,\n placeOrderPatchMutationResponseSchema,\n} from '.\u002FplaceOrderPatchSchema.ts'\nexport {\n placeOrder200Schema,\n placeOrder405Schema,\n placeOrderMutationRequestSchema,\n placeOrderMutationResponseSchema,\n} from '.\u002FplaceOrderSchema.ts'\nexport { tagSchema } from '.\u002FtagSchema.ts'\nexport {\n updatePet200Schema,\n updatePet400Schema,\n updatePet404Schema,\n updatePet405Schema,\n updatePetMutationRequestSchema,\n updatePetMutationResponseSchema,\n} from '.\u002FupdatePetSchema.ts'\nexport {\n updatePetWithForm405Schema,\n updatePetWithFormMutationResponseSchema,\n updatePetWithFormPathParamsSchema,\n updatePetWithFormQueryParamsSchema,\n} from '.\u002FupdatePetWithFormSchema.ts'\nexport {\n updateUserErrorSchema,\n updateUserMutationRequestSchema,\n updateUserMutationResponseSchema,\n updateUserPathParamsSchema,\n} from '.\u002FupdateUserSchema.ts'\nexport {\n uploadFile200Schema,\n uploadFileMutationRequestSchema,\n uploadFileMutationResponseSchema,\n uploadFilePathParamsSchema,\n uploadFileQueryParamsSchema,\n} from '.\u002FuploadFileSchema.ts'\nexport { userArraySchema } from '.\u002FuserArraySchema.ts'\nexport { userSchema } from '.\u002FuserSchema.ts'\n","id":"mod_Ho8Hp2GC37v9xzHsKunhTx","is_binary":false,"title":"index.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"VLzOsbhn-1V","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\n\nexport const loginUserQueryParamsSchema = z.optional(\n z.object({\n username: z.optional(z.string()),\n password: z.optional(z.string()),\n }),\n)\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const loginUser200Schema = z.string()\n\n\u002F**\n * @description Invalid username\u002Fpassword supplied\n *\u002F\nexport const loginUser400Schema = z.any()\n\nexport const loginUserQueryResponseSchema = z.lazy(() =\u003E loginUser200Schema)\n","id":"mod_Y1Dk1n8EqmHYRpUfsiVnj8","is_binary":false,"title":"loginUserSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"-vv0OTZMPcN","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const logoutUserErrorSchema = z.any()\n\nexport const logoutUserQueryResponseSchema = z.any()\n","id":"mod_5bxUV1ESBKJgRc1iq4SbjJ","is_binary":false,"title":"logoutUserSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"_zshaQG_-46","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\n\nexport const orderSchema = z.object({\n id: z.optional(z.bigint()),\n petId: z.optional(z.bigint()),\n quantity: z.optional(z.int()),\n shipDate: z.optional(z.string()),\n status: z.optional(z.enum(['placed', 'approved', 'delivered'])),\n http_status: z.optional(z.union([z.literal(200), z.literal(400)])),\n value: z.optional(z.union([z.literal(0), z.literal(1), z.literal(2), z.literal(3), z.literal(3.5), z.literal(4)])),\n complete: z.optional(z.boolean()),\n})\n","id":"mod_7q7xArg8CG498xaAetqwME","is_binary":false,"title":"orderSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"TgD4Rkjd4jO","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\n\nexport const petNotFoundSchema = z.object({\n code: z.optional(z.int()),\n message: z.optional(z.string()),\n})\n","id":"mod_WGUKAM33nUis7SB7SVkxXy","is_binary":false,"title":"petNotFoundSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"OiNAbqBVLha","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\nimport { categorySchema } from '.\u002FcategorySchema.ts'\nimport { tagSchema } from '.\u002FtagSchema.ts'\n\nexport const petSchema = z.object({\n id: z.optional(z.bigint()),\n get parent() {\n return z.optional(z.array(petSchema))\n },\n internalId: z.optional(z.string().check(z.regex(\u002F^[0-9]{1,19}$\u002F))),\n name: z.string(),\n get category() {\n return z.optional(categorySchema)\n },\n photoUrls: z.array(z.string()),\n get tags() {\n return z.optional(z.array(tagSchema))\n },\n status: z.optional(z.enum(['available', 'pending', 'sold'])),\n})\n","id":"mod_PDU99sc2UCJLeq4hK4GS6H","is_binary":false,"title":"petSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"ATPE_jBjGYa","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\n\nexport const phoneNumberSchema = z.string().check(z.regex(\u002F^(\\+\\d{1,3}[-\\s]?)?\\(?(?:\\d{1,4})\\)?[-\\s]?\\d{1,4}[-\\s]?\\d{1,9}$\u002F))\n","id":"mod_76t3rGdfheEu1Cspbo7HVV","is_binary":false,"title":"phoneNumberSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"h2e-IaTguee","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\nimport { phoneNumberSchema } from '.\u002FphoneNumberSchema.ts'\n\nexport const phoneWithMaxLengthExplicitSchema = z.lazy(() =\u003E phoneNumberSchema).check(z.maxLength(15))\n","id":"mod_6Fj3TaEfJAyHYhH2MCH5m3","is_binary":false,"title":"phoneWithMaxLengthExplicitSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"W7NZbt4_9JY","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\nimport { phoneNumberSchema } from '.\u002FphoneNumberSchema.ts'\n\nexport const phoneWithMaxLengthSchema = z.lazy(() =\u003E phoneNumberSchema).check(z.maxLength(15))\n","id":"mod_FQK22sTQGvUZ91DjMBLnm2","is_binary":false,"title":"phoneWithMaxLengthSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"j3-9zBmwLVe","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\nimport { orderSchema } from '.\u002ForderSchema.ts'\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const placeOrderPatch200Schema = z.lazy(() =\u003E orderSchema)\n\n\u002F**\n * @description Invalid input\n *\u002F\nexport const placeOrderPatch405Schema = z.any()\n\nexport const placeOrderPatchMutationRequestSchema = z.lazy(() =\u003E orderSchema)\n\nexport const placeOrderPatchMutationResponseSchema = z.lazy(() =\u003E placeOrderPatch200Schema)\n","id":"mod_M1GsznpPmEFb47Rmcp4WAk","is_binary":false,"title":"placeOrderPatchSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"6PRhz95vvGV","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\nimport { orderSchema } from '.\u002ForderSchema.ts'\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const placeOrder200Schema = z.lazy(() =\u003E orderSchema)\n\n\u002F**\n * @description Invalid input\n *\u002F\nexport const placeOrder405Schema = z.any()\n\nexport const placeOrderMutationRequestSchema = z.lazy(() =\u003E orderSchema)\n\nexport const placeOrderMutationResponseSchema = z.lazy(() =\u003E placeOrder200Schema)\n","id":"mod_H7BRLcG3Daz5a4rMh2qj8j","is_binary":false,"title":"placeOrderSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"xvzNoyxNBF1","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\n\nexport const tagSchema = z.object({\n id: z.optional(z.bigint()),\n name: z.optional(z.string()),\n})\n","id":"mod_3fQP4pPdvRcdkFnLVQSBfT","is_binary":false,"title":"tagSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"aHbAunjwqpi","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\nimport { petSchema } from '.\u002FpetSchema.ts'\n\n\u002F**\n * @description Successful operation\n *\u002F\nexport const updatePet200Schema = z.lazy(() =\u003E petSchema)\n\n\u002F**\n * @description Invalid ID supplied\n *\u002F\nexport const updatePet400Schema = z.any()\n\n\u002F**\n * @description Pet not found\n *\u002F\nexport const updatePet404Schema = z.any()\n\n\u002F**\n * @description Validation exception\n *\u002F\nexport const updatePet405Schema = z.any()\n\n\u002F**\n * @description Update an existent pet in the store\n *\u002F\nexport const updatePetMutationRequestSchema = z.lazy(() =\u003E petSchema)\n\nexport const updatePetMutationResponseSchema = z.lazy(() =\u003E updatePet200Schema)\n","id":"mod_NHrWRT4qeaGZfz16hcgGcH","is_binary":false,"title":"updatePetSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"n155FOaw82-","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\n\nexport const updatePetWithFormPathParamsSchema = z.object({\n petId: z.coerce.bigint(),\n})\n\nexport const updatePetWithFormQueryParamsSchema = z.optional(\n z.object({\n name: z.optional(z.string()),\n status: z.optional(z.string()),\n }),\n)\n\n\u002F**\n * @description Invalid input\n *\u002F\nexport const updatePetWithForm405Schema = z.any()\n\nexport const updatePetWithFormMutationResponseSchema = z.any()\n","id":"mod_HUKc1ZL8ZWBX26jSp4pwyv","is_binary":false,"title":"updatePetWithFormSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"zFsql3CVrnM","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\nimport { userSchema } from '.\u002FuserSchema.ts'\n\nexport const updateUserPathParamsSchema = z.object({\n username: z.string(),\n})\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const updateUserErrorSchema = z.any()\n\n\u002F**\n * @description Update an existent user in the store\n *\u002F\nexport const updateUserMutationRequestSchema = z.lazy(() =\u003E userSchema)\n\nexport const updateUserMutationResponseSchema = z.any()\n","id":"mod_B3j8RUjDJ6WneBR26yaJQv","is_binary":false,"title":"updateUserSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"3CTHOQUkqzV","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\nimport { apiResponseSchema } from '.\u002FapiResponseSchema.ts'\n\nexport const uploadFilePathParamsSchema = z.object({\n petId: z.coerce.bigint(),\n})\n\nexport const uploadFileQueryParamsSchema = z.optional(\n z.object({\n additionalMetadata: z.optional(z.string()),\n }),\n)\n\n\u002F**\n * @description successful operation\n *\u002F\nexport const uploadFile200Schema = z.lazy(() =\u003E apiResponseSchema)\n\nexport const uploadFileMutationRequestSchema = z.instanceof(File)\n\nexport const uploadFileMutationResponseSchema = z.lazy(() =\u003E uploadFile200Schema)\n","id":"mod_Qt6jG1SL3XR2AHpsHnVPVd","is_binary":false,"title":"uploadFileSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"wOM4DwywRqY","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\n\n\u002F**\n * @description List of user object\n *\u002F\nexport const userArraySchema = z.any()\n","id":"mod_4ALraw4Zkd1dF719yuDdHn","is_binary":false,"title":"userArraySchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:54","updated_at":"2026-02-20T23:26:54","upload_id":null,"shortid":"TfmEUc7fpdg","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport * as z from 'zod\u002Fmini'\n\nexport const userSchema = z.object({\n id: z.optional(z.bigint()),\n username: z.optional(z.string()),\n firstName: z.optional(z.string()),\n lastName: z.optional(z.string()),\n email: z.optional(z.string()),\n password: z.optional(z.string()),\n phone: z.optional(z.string()),\n userStatus: z.optional(z.int()),\n})\n","id":"mod_MGGVuTPS5qjuXg7y2y6LnH","is_binary":false,"title":"userSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:55","updated_at":"2026-02-20T23:26:55","upload_id":null,"shortid":"LPIapKQQ5PG","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"bi9cZtcrAi"},{"code":"export {\n createItem200Schema,\n createItemMutationRequestSchema,\n createItemMutationResponseSchema,\n} from '.\u002Fzod\u002FcreateItemSchema.ts'\nexport { itemSchema } from '.\u002Fzod\u002FitemSchema.ts'\nexport { itemTypeASchema } from '.\u002Fzod\u002FitemTypeASchema.ts'\nexport { itemTypeBSchema } from '.\u002Fzod\u002FitemTypeBSchema.ts'\nexport {\n updateItem200Schema,\n updateItemMutationRequestSchema,\n updateItemMutationResponseSchema,\n} from '.\u002Fzod\u002FupdateItemSchema.ts'\n","id":"mod_6He3DYMxafzxMZ5c2zUC6X","is_binary":false,"title":"index.ts","sha":null,"inserted_at":"2026-02-20T23:26:55","updated_at":"2026-02-20T23:26:55","upload_id":null,"shortid":"A8r33mWD-EC","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"s0sLhNbPHk"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from 'zod\u002Fv4'\nimport { itemSchema } from '.\u002FitemSchema.ts'\nimport { itemTypeASchema } from '.\u002FitemTypeASchema.ts'\nimport { itemTypeBSchema } from '.\u002FitemTypeBSchema.ts'\n\n\u002F**\n * @description Success\n *\u002F\nexport const createItem200Schema = z.lazy(() =\u003E itemSchema)\n\n\u002F**\n * @description Item to create\n *\u002F\nexport const createItemMutationRequestSchema = z.union([\n z\n .lazy(() =\u003E itemTypeASchema)\n .and(\n z.object({\n name: z.string(),\n type: z.literal('typeA'),\n }),\n ),\n z\n .lazy(() =\u003E itemTypeBSchema)\n .and(\n z.object({\n name: z.string(),\n type: z.literal('typeB'),\n }),\n ),\n])\n\nexport const createItemMutationResponseSchema = z.lazy(() =\u003E createItem200Schema)\n","id":"mod_TECZH9qxWZHAsXkqeLJVQm","is_binary":false,"title":"createItemSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:55","updated_at":"2026-02-20T23:26:55","upload_id":null,"shortid":"sHHdXZ7pmIA","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"qshpZsjnPM"},{"code":"export {\n createItem200Schema,\n createItemMutationRequestSchema,\n createItemMutationResponseSchema,\n} from '.\u002FcreateItemSchema.ts'\nexport { itemSchema } from '.\u002FitemSchema.ts'\nexport { itemTypeASchema } from '.\u002FitemTypeASchema.ts'\nexport { itemTypeBSchema } from '.\u002FitemTypeBSchema.ts'\nexport {\n updateItem200Schema,\n updateItemMutationRequestSchema,\n updateItemMutationResponseSchema,\n} from '.\u002FupdateItemSchema.ts'\n","id":"mod_Qu9oxtxcDKfA3w1NQg3jxp","is_binary":false,"title":"index.ts","sha":null,"inserted_at":"2026-02-20T23:26:55","updated_at":"2026-02-20T23:26:55","upload_id":null,"shortid":"cktWf_9HUQK","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"qshpZsjnPM"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from 'zod\u002Fv4'\nimport { itemTypeASchema } from '.\u002FitemTypeASchema.ts'\nimport { itemTypeBSchema } from '.\u002FitemTypeBSchema.ts'\n\nexport const itemSchema = z.union([\n z\n .lazy(() =\u003E itemTypeASchema)\n .and(\n z.object({\n id: z.optional(z.int()),\n type: z.literal('typeA'),\n name: z.string(),\n createdAt: z.optional(z.iso.datetime()),\n }),\n ),\n z\n .lazy(() =\u003E itemTypeBSchema)\n .and(\n z.object({\n id: z.optional(z.int()),\n type: z.literal('typeB'),\n name: z.string(),\n createdAt: z.optional(z.iso.datetime()),\n }),\n ),\n])\n","id":"mod_MJkNFfwyk7WbYuzbMeSnZq","is_binary":false,"title":"itemSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:55","updated_at":"2026-02-20T23:26:55","upload_id":null,"shortid":"a70c5woY9re","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"qshpZsjnPM"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from 'zod\u002Fv4'\n\nexport const itemTypeASchema = z.object({\n type: z.optional(z.string()),\n fieldA: z.optional(z.string()),\n})\n","id":"mod_GGQccWKVXBF4qG3AGgpwLa","is_binary":false,"title":"itemTypeASchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:55","updated_at":"2026-02-20T23:26:55","upload_id":null,"shortid":"gLccifcPdxz","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"qshpZsjnPM"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from 'zod\u002Fv4'\n\nexport const itemTypeBSchema = z.object({\n type: z.optional(z.string()),\n fieldB: z.optional(z.number()),\n})\n","id":"mod_G76SGb13iQhn3MM4nc1rGm","is_binary":false,"title":"itemTypeBSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:55","updated_at":"2026-02-20T23:26:55","upload_id":null,"shortid":"stmjtkG0h7I","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"qshpZsjnPM"},{"code":"\u002F**\n * Generated by Kubb (https:\u002F\u002Fkubb.dev\u002F).\n * Do not edit manually.\n *\u002F\n\nimport { z } from 'zod\u002Fv4'\nimport { itemSchema } from '.\u002FitemSchema.ts'\nimport { itemTypeASchema } from '.\u002FitemTypeASchema.ts'\nimport { itemTypeBSchema } from '.\u002FitemTypeBSchema.ts'\n\n\u002F**\n * @description Success\n *\u002F\nexport const updateItem200Schema = z.lazy(() =\u003E itemSchema)\n\n\u002F**\n * @description Item to update\n *\u002F\nexport const updateItemMutationRequestSchema = z.union([\n z\n .lazy(() =\u003E itemTypeASchema)\n .and(\n z.object({\n name: z.string(),\n type: z.literal('typeA'),\n }),\n ),\n z\n .lazy(() =\u003E itemTypeBSchema)\n .and(\n z.object({\n name: z.string(),\n type: z.literal('typeB'),\n }),\n ),\n])\n\nexport const updateItemMutationResponseSchema = z.lazy(() =\u003E updateItem200Schema)\n","id":"mod_ByktMzvwheEgRC1GBJW9Lv","is_binary":false,"title":"updateItemSchema.ts","sha":null,"inserted_at":"2026-02-20T23:26:55","updated_at":"2026-02-20T23:26:55","upload_id":null,"shortid":"UkFz6qc_ECT","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"qshpZsjnPM"},{"code":"import * as z from 'zod'\n\nexport * from 'zod'\n\nexport default z\n","id":"mod_93jhuXSHzxzn7hAsHUSxu3","is_binary":false,"title":"zod.ts","sha":null,"inserted_at":"2026-02-20T23:26:55","updated_at":"2026-02-20T23:26:55","upload_id":null,"shortid":"Wrbihf1W0K-","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":"1VuNoWYVo"},{"code":"{\n \"compilerOptions\": {\n \"target\": \"ES2020\",\n \u002F* If NOT transpiling with TypeScript: *\u002F\n \"module\": \"ES2020\",\n \"moduleResolution\": \"node\",\n \"sourceMap\": true,\n \"strictNullChecks\": true,\n \"jsx\": \"react-jsx\",\n \"outDir\": \"es\",\n \"experimentalDecorators\": true,\n \"skipLibCheck\": true,\n \"baseUrl\": \".\",\n \"resolveJsonModule\": true,\n \"esModuleInterop\": true,\n \"allowJs\": true,\n \"allowImportingTsExtensions\": true,\n \"noEmit\": true\n },\n \"include\": [\".\u002Fsrc\u002F**\u002F*\", \"kubb.config.js\"],\n \"exclude\": [\"**\u002Fnode_modules\", \"**\u002Ftypes\u002F**\", \"**\u002Fmocks\u002F**\"]\n}\n","id":"mod_CVgb5qNmXaodeGSEwPqQiZ","is_binary":false,"title":"tsconfig.json","sha":null,"inserted_at":"2026-02-20T23:26:55","updated_at":"2026-02-20T23:26:55","upload_id":null,"shortid":"voyhIg3TiBa","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":null},{"code":"---\nopenapi: 3.0.1\ninfo:\n title: Union with ReadOnly Properties\n version: 1.0.0\nservers:\n - url: http:\u002F\u002Flocalhost\u002F\npaths:\n \"\u002Fitems\":\n post:\n operationId: createItem\n summary: Create an item\n requestBody:\n description: Item to create\n required: true\n content:\n application\u002Fjson:\n schema:\n $ref: \"#\u002Fcomponents\u002Fschemas\u002FItem\"\n responses:\n \"200\":\n description: Success\n content:\n application\u002Fjson:\n schema:\n $ref: \"#\u002Fcomponents\u002Fschemas\u002FItem\"\n put:\n operationId: updateItem\n summary: Update an item\n requestBody:\n description: Item to update\n required: true\n content:\n application\u002Fjson:\n schema:\n $ref: \"#\u002Fcomponents\u002Fschemas\u002FItem\"\n responses:\n \"200\":\n description: Success\n content:\n application\u002Fjson:\n schema:\n $ref: \"#\u002Fcomponents\u002Fschemas\u002FItem\"\ncomponents:\n schemas:\n Item:\n type: object\n required:\n - name\n - type\n oneOf:\n - $ref: \"#\u002Fcomponents\u002Fschemas\u002FItemTypeA\"\n - $ref: \"#\u002Fcomponents\u002Fschemas\u002FItemTypeB\"\n discriminator:\n propertyName: type\n mapping:\n typeA: \"#\u002Fcomponents\u002Fschemas\u002FItemTypeA\"\n typeB: \"#\u002Fcomponents\u002Fschemas\u002FItemTypeB\"\n properties:\n id:\n type: integer\n readOnly: true\n type:\n type: string\n enum:\n - typeA\n - typeB\n readOnly: true\n name:\n type: string\n createdAt:\n type: string\n format: date-time\n readOnly: true\n ItemTypeA:\n type: object\n properties:\n type:\n type: string\n readOnly: true\n fieldA:\n type: string\n ItemTypeB:\n type: object\n properties:\n type:\n type: string\n readOnly: true\n fieldB:\n type: number\n","id":"mod_Rb4KaNNkw1xUFAmmUwJqv9","is_binary":false,"title":"unionWithReadOnly.yaml","sha":null,"inserted_at":"2026-02-20T23:26:55","updated_at":"2026-02-20T23:26:55","upload_id":null,"shortid":"MPc9YIW6z-0","source_id":"src_QpWMBRgBTUhtid23vkx1ok","directory_shortid":null}]};