gitextract_6gefdnhg/ ├── .changeset/ │ ├── README.md │ ├── changelog.js │ └── config.json ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ └── feature_request.yml │ ├── copilot-instructions.md │ └── workflows/ │ ├── ci.yml │ ├── contributors.yml │ ├── coverage.yml │ ├── pullfrog.yml │ └── release.yml ├── .gitignore ├── .husky/ │ └── pre-commit ├── .npmrc ├── .nvmrc ├── .oxfmtrc.json ├── .prettierignore ├── .vscode/ │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── __tests__/ │ └── changelog.test.ts ├── dev/ │ ├── graph-hotspots.js │ ├── hey-api.ts │ ├── inputs.ts │ ├── json-to-dot.js │ ├── openapi-python.config.ts │ ├── openapi-ts.config.ts │ ├── package.json │ ├── playground.py │ ├── playground.ts │ ├── python/ │ │ └── presets.ts │ ├── tsconfig.json │ ├── turbo.json │ └── typescript/ │ └── presets.ts ├── docs/ │ ├── .contributorsignore │ ├── .contributorssince │ ├── .gitignore │ ├── .vitepress/ │ │ ├── config/ │ │ │ ├── en.ts │ │ │ ├── index.ts │ │ │ ├── scripts/ │ │ │ │ └── optimize-images.ts │ │ │ └── shared.ts │ │ └── theme/ │ │ ├── components/ │ │ │ ├── AuthorsList.vue │ │ │ ├── Examples.vue │ │ │ ├── FeatureStatus.vue │ │ │ ├── Heading.vue │ │ │ ├── Layout.vue │ │ │ ├── VersionLabel.vue │ │ │ └── VersionSwitcher.vue │ │ ├── custom.css │ │ ├── index.ts │ │ └── versions/ │ │ ├── AngularVersionSwitcher.vue │ │ └── ZodVersionSwitcher.vue │ ├── CHANGELOG.md │ ├── data/ │ │ ├── coreTeam.js │ │ ├── hallOfFame.js │ │ └── people.ts │ ├── email-form.md │ ├── embed.ts │ ├── index.md │ ├── openapi-ts/ │ │ ├── clients/ │ │ │ ├── angular/ │ │ │ │ └── v19.md │ │ │ ├── angular.md │ │ │ ├── axios.md │ │ │ ├── custom.md │ │ │ ├── effect.md │ │ │ ├── fetch.md │ │ │ ├── got.md │ │ │ ├── ky.md │ │ │ ├── next-js.md │ │ │ ├── nuxt.md │ │ │ └── ofetch.md │ │ ├── clients.md │ │ ├── community/ │ │ │ ├── contributing/ │ │ │ │ ├── building.md │ │ │ │ ├── developing.md │ │ │ │ └── testing.md │ │ │ ├── contributing.md │ │ │ └── spotlight.md │ │ ├── configuration/ │ │ │ ├── input.md │ │ │ ├── output.md │ │ │ └── parser.md │ │ ├── configuration.md │ │ ├── core.md │ │ ├── get-started.md │ │ ├── integrations.md │ │ ├── license.md │ │ ├── migrating.md │ │ ├── mocks.md │ │ ├── output.md │ │ ├── plugins/ │ │ │ ├── adonis.md │ │ │ ├── ajv.md │ │ │ ├── angular/ │ │ │ │ └── v19.md │ │ │ ├── angular.md │ │ │ ├── arktype.md │ │ │ ├── chance.md │ │ │ ├── concepts/ │ │ │ │ └── resolvers.md │ │ │ ├── custom.md │ │ │ ├── elysia.md │ │ │ ├── express.md │ │ │ ├── faker.md │ │ │ ├── falso.md │ │ │ ├── fastify.md │ │ │ ├── hono.md │ │ │ ├── joi.md │ │ │ ├── koa.md │ │ │ ├── msw.md │ │ │ ├── nest.md │ │ │ ├── nock.md │ │ │ ├── pinia-colada.md │ │ │ ├── schemas.md │ │ │ ├── sdk.md │ │ │ ├── superstruct.md │ │ │ ├── supertest.md │ │ │ ├── swr.md │ │ │ ├── tanstack-query.md │ │ │ ├── transformers.md │ │ │ ├── typebox.md │ │ │ ├── typescript.md │ │ │ ├── valibot.md │ │ │ ├── yup.md │ │ │ ├── zod/ │ │ │ │ ├── mini.md │ │ │ │ └── v3.md │ │ │ ├── zod.md │ │ │ └── zustand.md │ │ ├── state-management.md │ │ ├── validators.md │ │ └── web-frameworks.md │ ├── package.json │ ├── partials/ │ │ ├── contributors-list.md │ │ ├── examples.md │ │ ├── sponsors-list.md │ │ └── sponsors.md │ ├── public/ │ │ └── robots.txt │ └── tsconfig.json ├── eslint.config.js ├── examples/ │ ├── README.md │ ├── openapi-ts-angular/ │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .vscode/ │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── angular.json │ │ ├── openapi-ts.config.ts │ │ ├── package.json │ │ ├── src/ │ │ │ ├── app/ │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.spec.ts │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.config.server.ts │ │ │ │ ├── app.config.ts │ │ │ │ ├── app.routes.server.ts │ │ │ │ ├── app.routes.ts │ │ │ │ └── demo/ │ │ │ │ ├── demo.css │ │ │ │ ├── demo.html │ │ │ │ └── demo.ts │ │ │ ├── client/ │ │ │ │ ├── client/ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── client.gen.ts │ │ │ │ ├── core/ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── index.ts │ │ │ │ ├── schemas.gen.ts │ │ │ │ ├── sdk.gen.ts │ │ │ │ └── types.gen.ts │ │ │ ├── index.html │ │ │ ├── main.server.ts │ │ │ ├── main.ts │ │ │ ├── server.ts │ │ │ └── styles.css │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── tsconfig.spec.json │ ├── openapi-ts-angular-common/ │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .vscode/ │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── angular.json │ │ ├── openapi-ts.config.ts │ │ ├── package.json │ │ ├── src/ │ │ │ ├── app/ │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.spec.ts │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.config.server.ts │ │ │ │ ├── app.config.ts │ │ │ │ ├── app.routes.server.ts │ │ │ │ ├── app.routes.ts │ │ │ │ └── demo/ │ │ │ │ ├── demo.css │ │ │ │ ├── demo.html │ │ │ │ └── demo.ts │ │ │ ├── client/ │ │ │ │ ├── @angular/ │ │ │ │ │ └── common.gen.ts │ │ │ │ ├── client/ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── client.gen.ts │ │ │ │ ├── core/ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── index.ts │ │ │ │ ├── schemas.gen.ts │ │ │ │ ├── sdk.gen.ts │ │ │ │ └── types.gen.ts │ │ │ ├── index.html │ │ │ ├── main.server.ts │ │ │ ├── main.ts │ │ │ ├── server.ts │ │ │ └── styles.css │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── tsconfig.spec.json │ ├── openapi-ts-axios/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── index.html │ │ ├── openapi-ts.config.ts │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── src/ │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── client/ │ │ │ │ ├── client/ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── client.gen.ts │ │ │ │ ├── core/ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── index.ts │ │ │ │ ├── schemas.gen.ts │ │ │ │ ├── sdk.gen.ts │ │ │ │ └── types.gen.ts │ │ │ ├── main.tsx │ │ │ └── vite-env.d.ts │ │ ├── tailwind.config.js │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── openapi-ts-fastify/ │ │ ├── CHANGELOG.md │ │ ├── openapi-ts.config.ts │ │ ├── openapi.json │ │ ├── package.json │ │ ├── src/ │ │ │ ├── client/ │ │ │ │ ├── client/ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── client.gen.ts │ │ │ │ ├── core/ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── fastify.gen.ts │ │ │ │ ├── index.ts │ │ │ │ ├── sdk.gen.ts │ │ │ │ └── types.gen.ts │ │ │ ├── handlers.ts │ │ │ ├── index.ts │ │ │ └── server.ts │ │ ├── test/ │ │ │ └── pets.test.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── openapi-ts-fetch/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── index.html │ │ ├── openapi-ts.config.ts │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── src/ │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── client/ │ │ │ │ ├── client/ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── client.gen.ts │ │ │ │ ├── core/ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── index.ts │ │ │ │ ├── schemas.gen.ts │ │ │ │ ├── sdk.gen.ts │ │ │ │ └── types.gen.ts │ │ │ ├── main.tsx │ │ │ └── vite-env.d.ts │ │ ├── tailwind.config.js │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── openapi-ts-ky/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── index.html │ │ ├── openapi-ts.config.ts │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── src/ │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── client/ │ │ │ │ ├── client/ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── client.gen.ts │ │ │ │ ├── core/ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── index.ts │ │ │ │ ├── schemas.gen.ts │ │ │ │ ├── sdk.gen.ts │ │ │ │ └── types.gen.ts │ │ │ ├── main.tsx │ │ │ └── vite-env.d.ts │ │ ├── tailwind.config.js │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── openapi-ts-nestjs/ │ │ ├── openapi-ts.config.ts │ │ ├── openapi.json │ │ ├── package.json │ │ ├── src/ │ │ │ ├── app.module.ts │ │ │ ├── client/ │ │ │ │ ├── client/ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── client.gen.ts │ │ │ │ ├── core/ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── index.ts │ │ │ │ ├── nestjs.gen.ts │ │ │ │ ├── sdk.gen.ts │ │ │ │ └── types.gen.ts │ │ │ ├── main.ts │ │ │ ├── pets/ │ │ │ │ ├── pets.controller.ts │ │ │ │ └── pets.module.ts │ │ │ └── store/ │ │ │ ├── store.controller.ts │ │ │ └── store.module.ts │ │ ├── test/ │ │ │ └── pets.test.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── openapi-ts-next/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── app/ │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ ├── page.tsx │ │ │ └── pet/ │ │ │ └── [id]/ │ │ │ └── page.tsx │ │ ├── next.config.ts │ │ ├── openapi-ts.config.ts │ │ ├── package.json │ │ ├── postcss.config.mjs │ │ ├── src/ │ │ │ ├── client/ │ │ │ │ ├── client/ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── client.gen.ts │ │ │ │ ├── core/ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── index.ts │ │ │ │ ├── sdk.gen.ts │ │ │ │ └── types.gen.ts │ │ │ └── hey-api.ts │ │ ├── tailwind.config.ts │ │ └── tsconfig.json │ ├── openapi-ts-nuxt/ │ │ ├── .gitignore │ │ ├── .npmrc │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── app.vue │ │ ├── components/ │ │ │ └── home.vue │ │ ├── nuxt.config.ts │ │ ├── package.json │ │ ├── public/ │ │ │ └── robots.txt │ │ ├── server/ │ │ │ └── tsconfig.json │ │ └── tsconfig.json │ ├── openapi-ts-ofetch/ │ │ ├── env.d.ts │ │ ├── index.html │ │ ├── openapi-ts.config.ts │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── src/ │ │ │ ├── App.vue │ │ │ ├── assets/ │ │ │ │ └── main.css │ │ │ ├── client/ │ │ │ │ ├── client/ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── client.gen.ts │ │ │ │ ├── core/ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── index.ts │ │ │ │ ├── schemas.gen.ts │ │ │ │ ├── sdk.gen.ts │ │ │ │ └── types.gen.ts │ │ │ └── main.ts │ │ ├── tailwind.config.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── openapi-ts-openai/ │ │ ├── .gitignore │ │ ├── index.html │ │ ├── openapi-ts.config.ts │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── src/ │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── client/ │ │ │ │ ├── client/ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── client.gen.ts │ │ │ │ ├── core/ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── index.ts │ │ │ │ ├── sdk.gen.ts │ │ │ │ └── types.gen.ts │ │ │ ├── main.tsx │ │ │ └── vite-env.d.ts │ │ ├── tailwind.config.js │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── openapi-ts-pinia-colada/ │ │ ├── .eslintrc.cjs │ │ ├── .gitignore │ │ ├── .vscode/ │ │ │ └── extensions.json │ │ ├── README.md │ │ ├── env.d.ts │ │ ├── index.html │ │ ├── openapi-ts.config.ts │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── src/ │ │ │ ├── App.vue │ │ │ ├── assets/ │ │ │ │ └── main.css │ │ │ ├── client/ │ │ │ │ ├── @pinia/ │ │ │ │ │ └── colada.gen.ts │ │ │ │ ├── client/ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── client.gen.ts │ │ │ │ ├── core/ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── index.ts │ │ │ │ ├── schemas.gen.ts │ │ │ │ ├── sdk.gen.ts │ │ │ │ └── types.gen.ts │ │ │ ├── main.ts │ │ │ ├── router/ │ │ │ │ └── index.ts │ │ │ └── views/ │ │ │ └── PiniaColadaExample.vue │ │ ├── tailwind.config.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ ├── tsconfig.vitest.json │ │ ├── vite.config.ts │ │ └── vitest.config.ts │ ├── openapi-ts-tanstack-angular-query-experimental/ │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .gitignore │ │ ├── .vscode/ │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── angular.json │ │ ├── openapi-ts.config.ts │ │ ├── package.json │ │ ├── src/ │ │ │ ├── app/ │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.config.ts │ │ │ │ ├── app.routes.ts │ │ │ │ └── pet-store/ │ │ │ │ ├── pet-store.component.css │ │ │ │ ├── pet-store.component.html │ │ │ │ └── pet-store.component.ts │ │ │ ├── client/ │ │ │ │ ├── @tanstack/ │ │ │ │ │ └── angular-query-experimental.gen.ts │ │ │ │ ├── client/ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── client.gen.ts │ │ │ │ ├── core/ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── index.ts │ │ │ │ ├── schemas.gen.ts │ │ │ │ ├── sdk.gen.ts │ │ │ │ └── types.gen.ts │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ └── styles.css │ │ ├── tsconfig.app.json │ │ └── tsconfig.json │ ├── openapi-ts-tanstack-react-query/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── index.html │ │ ├── openapi-ts.config.ts │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── src/ │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── client/ │ │ │ │ ├── @tanstack/ │ │ │ │ │ └── react-query.gen.ts │ │ │ │ ├── client/ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── client.gen.ts │ │ │ │ ├── core/ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── index.ts │ │ │ │ ├── schemas.gen.ts │ │ │ │ ├── sdk.gen.ts │ │ │ │ └── types.gen.ts │ │ │ ├── main.tsx │ │ │ └── vite-env.d.ts │ │ ├── tailwind.config.js │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── openapi-ts-tanstack-svelte-query/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── openapi-ts.config.ts │ │ ├── package.json │ │ ├── src/ │ │ │ ├── app.css │ │ │ ├── app.d.ts │ │ │ ├── app.html │ │ │ ├── client/ │ │ │ │ ├── @tanstack/ │ │ │ │ │ └── svelte-query.gen.ts │ │ │ │ ├── client/ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── client.gen.ts │ │ │ │ ├── core/ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── index.ts │ │ │ │ ├── schemas.gen.ts │ │ │ │ ├── sdk.gen.ts │ │ │ │ └── types.gen.ts │ │ │ └── routes/ │ │ │ ├── +layout.svelte │ │ │ ├── +page.svelte │ │ │ ├── +page.ts │ │ │ ├── Counter.svelte │ │ │ ├── Header.svelte │ │ │ ├── about/ │ │ │ │ ├── +page.svelte │ │ │ │ └── +page.ts │ │ │ └── sverdle/ │ │ │ ├── +page.server.ts │ │ │ ├── +page.svelte │ │ │ ├── game.test.ts │ │ │ ├── game.ts │ │ │ ├── how-to-play/ │ │ │ │ ├── +page.svelte │ │ │ │ └── +page.ts │ │ │ ├── reduced-motion.ts │ │ │ └── words.server.ts │ │ ├── static/ │ │ │ └── robots.txt │ │ ├── svelte.config.js │ │ ├── tsconfig.json │ │ └── vite.config.ts │ └── openapi-ts-tanstack-vue-query/ │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── .vscode/ │ │ └── extensions.json │ ├── CHANGELOG.md │ ├── README.md │ ├── env.d.ts │ ├── index.html │ ├── openapi-ts.config.ts │ ├── package.json │ ├── postcss.config.js │ ├── src/ │ │ ├── App.vue │ │ ├── assets/ │ │ │ └── main.css │ │ ├── client/ │ │ │ ├── @tanstack/ │ │ │ │ └── vue-query.gen.ts │ │ │ ├── client/ │ │ │ │ ├── client.gen.ts │ │ │ │ ├── index.ts │ │ │ │ ├── types.gen.ts │ │ │ │ └── utils.gen.ts │ │ │ ├── client.gen.ts │ │ │ ├── core/ │ │ │ │ ├── auth.gen.ts │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ ├── params.gen.ts │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ ├── types.gen.ts │ │ │ │ └── utils.gen.ts │ │ │ ├── index.ts │ │ │ ├── schemas.gen.ts │ │ │ ├── sdk.gen.ts │ │ │ └── types.gen.ts │ │ ├── main.ts │ │ ├── router/ │ │ │ └── index.ts │ │ └── views/ │ │ └── TanstackExample.vue │ ├── tailwind.config.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── tsconfig.vitest.json │ ├── vite.config.ts │ └── vitest.config.ts ├── lint-staged.config.js ├── package.json ├── packages/ │ ├── codegen-core/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── __tests__/ │ │ │ │ ├── data/ │ │ │ │ │ └── file.ts │ │ │ │ ├── exports.test.ts │ │ │ │ ├── files.test.ts │ │ │ │ ├── logger.test.ts │ │ │ │ ├── planner.test.ts │ │ │ │ ├── project.test.ts │ │ │ │ ├── refs.test.ts │ │ │ │ └── symbols.test.ts │ │ │ ├── bindings.ts │ │ │ ├── brands.ts │ │ │ ├── config/ │ │ │ │ ├── interactive.ts │ │ │ │ ├── load.ts │ │ │ │ └── merge.ts │ │ │ ├── extensions.ts │ │ │ ├── files/ │ │ │ │ ├── file.ts │ │ │ │ ├── registry.ts │ │ │ │ ├── rules.ts │ │ │ │ └── types.ts │ │ │ ├── guards.ts │ │ │ ├── index.ts │ │ │ ├── languages/ │ │ │ │ ├── extensions.ts │ │ │ │ ├── modules.ts │ │ │ │ ├── resolvers.ts │ │ │ │ └── types.ts │ │ │ ├── log.ts │ │ │ ├── logger.ts │ │ │ ├── nodes/ │ │ │ │ ├── node.ts │ │ │ │ ├── registry.ts │ │ │ │ └── types.ts │ │ │ ├── output.ts │ │ │ ├── planner/ │ │ │ │ ├── analyzer.ts │ │ │ │ ├── planner.ts │ │ │ │ ├── resolvers.ts │ │ │ │ ├── scope.ts │ │ │ │ └── types.ts │ │ │ ├── project/ │ │ │ │ ├── namespace.ts │ │ │ │ ├── project.ts │ │ │ │ └── types.ts │ │ │ ├── refs/ │ │ │ │ ├── refs.ts │ │ │ │ └── types.ts │ │ │ ├── renderer.ts │ │ │ ├── structure/ │ │ │ │ ├── model.ts │ │ │ │ ├── node.ts │ │ │ │ └── types.ts │ │ │ └── symbols/ │ │ │ ├── registry.ts │ │ │ ├── symbol.ts │ │ │ └── types.ts │ │ ├── tsconfig.json │ │ ├── tsdown.config.ts │ │ └── turbo.json │ ├── custom-client/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── package.json │ │ ├── rollup.config.mjs │ │ ├── src/ │ │ │ ├── __tests__/ │ │ │ │ ├── client.test.ts │ │ │ │ └── utils.test.ts │ │ │ ├── client.ts │ │ │ ├── core/ │ │ │ │ ├── auth.ts │ │ │ │ ├── bodySerializer.ts │ │ │ │ ├── params.ts │ │ │ │ ├── pathSerializer.ts │ │ │ │ └── types.ts │ │ │ ├── index.ts │ │ │ ├── plugin.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── tsconfig.base.json │ │ ├── tsconfig.json │ │ └── tsdown.config.ts │ ├── json-schema-ref-parser/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── __tests__/ │ │ │ │ ├── __snapshots__/ │ │ │ │ │ ├── circular-ref-with-description.json │ │ │ │ │ ├── main-with-external-siblings.json │ │ │ │ │ ├── multiple-refs.json │ │ │ │ │ └── redfish-like.json │ │ │ │ ├── bundle.test.ts │ │ │ │ ├── index.test.ts │ │ │ │ ├── pointer.test.ts │ │ │ │ └── utils.ts │ │ │ ├── bundle.ts │ │ │ ├── dereference.ts │ │ │ ├── index.ts │ │ │ ├── options.ts │ │ │ ├── parse.ts │ │ │ ├── parsers/ │ │ │ │ ├── binary.ts │ │ │ │ ├── json.ts │ │ │ │ ├── text.ts │ │ │ │ └── yaml.ts │ │ │ ├── pointer.ts │ │ │ ├── ref.ts │ │ │ ├── refs.ts │ │ │ ├── resolve-external.ts │ │ │ ├── resolvers/ │ │ │ │ ├── file.ts │ │ │ │ └── url.ts │ │ │ ├── types/ │ │ │ │ └── index.ts │ │ │ └── util/ │ │ │ ├── convert-path-to-posix.ts │ │ │ ├── errors.ts │ │ │ ├── is-windows.ts │ │ │ ├── plugins.ts │ │ │ └── url.ts │ │ ├── tsconfig.json │ │ └── tsdown.config.ts │ ├── nuxt/ │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── package.json │ │ ├── src/ │ │ │ └── module.ts │ │ ├── tsconfig.base.json │ │ ├── tsconfig.json │ │ └── vitest.config.ts │ ├── openapi-python/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bin/ │ │ │ ├── run.cmd │ │ │ └── run.js │ │ ├── package.json │ │ ├── src/ │ │ │ ├── __tests__/ │ │ │ │ └── index.test.ts │ │ │ ├── cli/ │ │ │ │ ├── adapter.ts │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── config/ │ │ │ │ ├── expand.ts │ │ │ │ ├── init.ts │ │ │ │ ├── output/ │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── postprocess.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── plugins.ts │ │ │ │ ├── resolve.ts │ │ │ │ ├── types.ts │ │ │ │ ├── utils.ts │ │ │ │ └── validate.ts │ │ │ ├── createClient.ts │ │ │ ├── generate/ │ │ │ │ ├── client.ts │ │ │ │ └── output.ts │ │ │ ├── generate.ts │ │ │ ├── index.ts │ │ │ ├── plugins/ │ │ │ │ ├── @hey-api/ │ │ │ │ │ ├── client-core/ │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ │ ├── client-httpx/ │ │ │ │ │ │ ├── bundle/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── client.py │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ └── sdk/ │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── examples/ │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── operations/ │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── resolve.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── plugin.ts │ │ │ │ │ ├── shared/ │ │ │ │ │ │ ├── class.ts │ │ │ │ │ │ ├── operation.ts │ │ │ │ │ │ └── signature.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── v1/ │ │ │ │ │ ├── node.ts │ │ │ │ │ └── plugin.ts │ │ │ │ ├── config.ts │ │ │ │ ├── pydantic/ │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── plugin.ts │ │ │ │ │ ├── resolvers.ts │ │ │ │ │ ├── shared/ │ │ │ │ │ │ ├── export.ts │ │ │ │ │ │ ├── field.ts │ │ │ │ │ │ ├── meta.ts │ │ │ │ │ │ ├── processor.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── v2/ │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── plugin.ts │ │ │ │ │ ├── processor.ts │ │ │ │ │ ├── toAst/ │ │ │ │ │ │ ├── array.ts │ │ │ │ │ │ ├── boolean.ts │ │ │ │ │ │ ├── enum.ts │ │ │ │ │ │ ├── intersection.ts │ │ │ │ │ │ ├── never.ts │ │ │ │ │ │ ├── null.ts │ │ │ │ │ │ ├── number.ts │ │ │ │ │ │ ├── object.ts │ │ │ │ │ │ ├── string.ts │ │ │ │ │ │ ├── tuple.ts │ │ │ │ │ │ ├── undefined.ts │ │ │ │ │ │ ├── union.ts │ │ │ │ │ │ ├── unknown.ts │ │ │ │ │ │ └── void.ts │ │ │ │ │ └── walker.ts │ │ │ │ ├── shared/ │ │ │ │ │ └── utils/ │ │ │ │ │ └── operation.ts │ │ │ │ └── types.ts │ │ │ ├── py-compiler/ │ │ │ │ ├── __snapshots__/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── nodes/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── declarations/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── class/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── default.py │ │ │ │ │ │ │ ├── with-decorators.py │ │ │ │ │ │ │ ├── with-docstring.py │ │ │ │ │ │ │ ├── with-extends.py │ │ │ │ │ │ │ ├── with-method-docstring.py │ │ │ │ │ │ │ └── with-method.py │ │ │ │ │ │ └── function/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── default.py │ │ │ │ │ │ ├── with-annotations-defaults-return.py │ │ │ │ │ │ ├── with-body.py │ │ │ │ │ │ ├── with-decorators.py │ │ │ │ │ │ └── with-docstring.py │ │ │ │ │ ├── expressions/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── await/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── inside-function.py │ │ │ │ │ │ ├── binary/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── add.py │ │ │ │ │ │ │ └── subtract.py │ │ │ │ │ │ ├── call/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── call.py │ │ │ │ │ │ ├── comprehensions/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── dict/ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ └── dict.py │ │ │ │ │ │ │ ├── list/ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ └── list.py │ │ │ │ │ │ │ ├── nested/ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ └── dict-list.py │ │ │ │ │ │ │ └── set/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── dict.py │ │ │ │ │ │ ├── dict/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── dict.py │ │ │ │ │ │ ├── fString/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── multiple-expressions.py │ │ │ │ │ │ │ └── simple-interpolation.py │ │ │ │ │ │ ├── generator/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── async.py │ │ │ │ │ │ │ ├── simple.py │ │ │ │ │ │ │ └── with-filter.py │ │ │ │ │ │ ├── identifier/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── identifier.py │ │ │ │ │ │ ├── kwarg/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── multiple.py │ │ │ │ │ │ │ ├── number.py │ │ │ │ │ │ │ └── string.py │ │ │ │ │ │ ├── lambda/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── simple.py │ │ │ │ │ │ │ └── with-params-and-default.py │ │ │ │ │ │ ├── list/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── list.py │ │ │ │ │ │ ├── literal/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── primitive.py │ │ │ │ │ │ ├── set/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── set.py │ │ │ │ │ │ ├── subscript/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── index-access.py │ │ │ │ │ │ │ ├── multiple.py │ │ │ │ │ │ │ ├── nested.py │ │ │ │ │ │ │ └── single.py │ │ │ │ │ │ ├── tuple/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── tuple.py │ │ │ │ │ │ └── yield/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── default.py │ │ │ │ │ │ ├── from-iterable.py │ │ │ │ │ │ └── with-value.py │ │ │ │ │ ├── statements/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── assignment/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── annotation-only.py │ │ │ │ │ │ │ ├── annotation-with-value.py │ │ │ │ │ │ │ ├── complex-annotation.py │ │ │ │ │ │ │ ├── optional-annotation.py │ │ │ │ │ │ │ └── primitive.py │ │ │ │ │ │ ├── augmentedAssignment/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── arithmetic.py │ │ │ │ │ │ │ └── bitwise.py │ │ │ │ │ │ ├── block/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── function.py │ │ │ │ │ │ ├── break/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── while.py │ │ │ │ │ │ ├── continue/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── while.py │ │ │ │ │ │ ├── expression/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── simple.py │ │ │ │ │ │ ├── for/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── for-else.py │ │ │ │ │ │ │ └── for.py │ │ │ │ │ │ ├── if/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── if-else.py │ │ │ │ │ │ │ └── if.py │ │ │ │ │ │ ├── import/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── from-with-alias.py │ │ │ │ │ │ │ ├── from-with-asterisk.py │ │ │ │ │ │ │ ├── from-with-name-alias.py │ │ │ │ │ │ │ ├── from-with-name.py │ │ │ │ │ │ │ ├── module-with-alias.py │ │ │ │ │ │ │ └── module.py │ │ │ │ │ │ ├── raise/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── reraise.py │ │ │ │ │ │ │ └── with-exception.py │ │ │ │ │ │ ├── return/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── function.py │ │ │ │ │ │ ├── try/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── with-except-else-finally.py │ │ │ │ │ │ │ ├── with-except-else.py │ │ │ │ │ │ │ ├── with-except-finally.py │ │ │ │ │ │ │ ├── with-except.py │ │ │ │ │ │ │ └── with-finally.py │ │ │ │ │ │ ├── while/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── while-else.py │ │ │ │ │ │ │ └── while.py │ │ │ │ │ │ └── with/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── with-alias.py │ │ │ │ │ │ ├── with-async.py │ │ │ │ │ │ ├── with-many-items.py │ │ │ │ │ │ ├── with-tuple-alias.py │ │ │ │ │ │ └── with.py │ │ │ │ │ └── structure/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── comment/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── simple.py │ │ │ │ │ └── sourceFile/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── simple.py │ │ │ │ │ └── with-docstring.py │ │ │ │ ├── __tests__/ │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── globalTeardown.ts │ │ │ │ │ └── nodes/ │ │ │ │ │ ├── declarations/ │ │ │ │ │ │ ├── class.test.ts │ │ │ │ │ │ └── function.test.ts │ │ │ │ │ ├── expressions/ │ │ │ │ │ │ ├── await.test.ts │ │ │ │ │ │ ├── binary.test.ts │ │ │ │ │ │ ├── call.test.ts │ │ │ │ │ │ ├── comprehensions/ │ │ │ │ │ │ │ ├── dict.test.ts │ │ │ │ │ │ │ ├── list.test.ts │ │ │ │ │ │ │ ├── nested.test.ts │ │ │ │ │ │ │ └── set.test.ts │ │ │ │ │ │ ├── dict.test.ts │ │ │ │ │ │ ├── fString.test.ts │ │ │ │ │ │ ├── generator.test.ts │ │ │ │ │ │ ├── identifier.test.ts │ │ │ │ │ │ ├── kwarg.test.ts │ │ │ │ │ │ ├── lambda.test.ts │ │ │ │ │ │ ├── list.test.ts │ │ │ │ │ │ ├── literal.test.ts │ │ │ │ │ │ ├── set.test.ts │ │ │ │ │ │ ├── subscript.test.ts │ │ │ │ │ │ ├── tuple.test.ts │ │ │ │ │ │ └── yield.test.ts │ │ │ │ │ ├── statements/ │ │ │ │ │ │ ├── assignment.test.ts │ │ │ │ │ │ ├── augmentedAssignment.test.ts │ │ │ │ │ │ ├── block.test.ts │ │ │ │ │ │ ├── break.test.ts │ │ │ │ │ │ ├── continue.test.ts │ │ │ │ │ │ ├── expression.test.ts │ │ │ │ │ │ ├── for.test.ts │ │ │ │ │ │ ├── if.test.ts │ │ │ │ │ │ ├── import.test.ts │ │ │ │ │ │ ├── raise.test.ts │ │ │ │ │ │ ├── return.test.ts │ │ │ │ │ │ ├── try.test.ts │ │ │ │ │ │ ├── while.test.ts │ │ │ │ │ │ └── with.test.ts │ │ │ │ │ ├── structure/ │ │ │ │ │ │ ├── comment.test.ts │ │ │ │ │ │ └── sourceFile.test.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── index.ts │ │ │ │ ├── nodes/ │ │ │ │ │ ├── base.ts │ │ │ │ │ ├── comprehension.ts │ │ │ │ │ ├── declarations/ │ │ │ │ │ │ ├── class.ts │ │ │ │ │ │ ├── function.ts │ │ │ │ │ │ └── functionParameter.ts │ │ │ │ │ ├── expression.ts │ │ │ │ │ ├── expressions/ │ │ │ │ │ │ ├── async.ts │ │ │ │ │ │ ├── await.ts │ │ │ │ │ │ ├── binary.ts │ │ │ │ │ │ ├── call.ts │ │ │ │ │ │ ├── comprehensions/ │ │ │ │ │ │ │ ├── dict.ts │ │ │ │ │ │ │ ├── list.ts │ │ │ │ │ │ │ └── set.ts │ │ │ │ │ │ ├── dict.ts │ │ │ │ │ │ ├── fString.ts │ │ │ │ │ │ ├── generator.ts │ │ │ │ │ │ ├── identifier.ts │ │ │ │ │ │ ├── keywordArg.ts │ │ │ │ │ │ ├── lambda.ts │ │ │ │ │ │ ├── list.ts │ │ │ │ │ │ ├── literal.ts │ │ │ │ │ │ ├── member.ts │ │ │ │ │ │ ├── set.ts │ │ │ │ │ │ ├── subscript-slice.ts │ │ │ │ │ │ ├── subscript.ts │ │ │ │ │ │ ├── tuple.ts │ │ │ │ │ │ ├── yield.ts │ │ │ │ │ │ └── yieldFrom.ts │ │ │ │ │ ├── factory.ts │ │ │ │ │ ├── kinds.ts │ │ │ │ │ ├── statement.ts │ │ │ │ │ ├── statements/ │ │ │ │ │ │ ├── assignment.ts │ │ │ │ │ │ ├── augmentedAssignment.ts │ │ │ │ │ │ ├── block.ts │ │ │ │ │ │ ├── break.ts │ │ │ │ │ │ ├── continue.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ ├── except.ts │ │ │ │ │ │ ├── expression.ts │ │ │ │ │ │ ├── for.ts │ │ │ │ │ │ ├── if.ts │ │ │ │ │ │ ├── import.ts │ │ │ │ │ │ ├── raise.ts │ │ │ │ │ │ ├── return.ts │ │ │ │ │ │ ├── try.ts │ │ │ │ │ │ ├── while.ts │ │ │ │ │ │ ├── with.ts │ │ │ │ │ │ └── withItem.ts │ │ │ │ │ └── structure/ │ │ │ │ │ ├── comment.ts │ │ │ │ │ └── sourceFile.ts │ │ │ │ └── printer.ts │ │ │ ├── py-dsl/ │ │ │ │ ├── base.ts │ │ │ │ ├── decl/ │ │ │ │ │ ├── class.ts │ │ │ │ │ ├── func.ts │ │ │ │ │ └── param.ts │ │ │ │ ├── expr/ │ │ │ │ │ ├── attr.ts │ │ │ │ │ ├── binary.ts │ │ │ │ │ ├── call.ts │ │ │ │ │ ├── dict.ts │ │ │ │ │ ├── expr.ts │ │ │ │ │ ├── identifier.ts │ │ │ │ │ ├── kwarg.ts │ │ │ │ │ ├── list.ts │ │ │ │ │ ├── literal.ts │ │ │ │ │ ├── set.ts │ │ │ │ │ ├── subscript.ts │ │ │ │ │ └── tuple.ts │ │ │ │ ├── index.ts │ │ │ │ ├── layout/ │ │ │ │ │ ├── doc.ts │ │ │ │ │ ├── hint.ts │ │ │ │ │ └── newline.ts │ │ │ │ ├── mixins/ │ │ │ │ │ ├── args.ts │ │ │ │ │ ├── decorator.ts │ │ │ │ │ ├── do.ts │ │ │ │ │ ├── doc.ts │ │ │ │ │ ├── expr.ts │ │ │ │ │ ├── hint.ts │ │ │ │ │ ├── layout.ts │ │ │ │ │ ├── modifiers.ts │ │ │ │ │ ├── operator.ts │ │ │ │ │ ├── param.ts │ │ │ │ │ ├── returns.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── value.ts │ │ │ │ ├── stmt/ │ │ │ │ │ ├── block.ts │ │ │ │ │ ├── break.ts │ │ │ │ │ ├── continue.ts │ │ │ │ │ ├── for.ts │ │ │ │ │ ├── if.ts │ │ │ │ │ ├── import.ts │ │ │ │ │ ├── raise.ts │ │ │ │ │ ├── return.ts │ │ │ │ │ ├── stmt.ts │ │ │ │ │ ├── try.ts │ │ │ │ │ ├── var.ts │ │ │ │ │ ├── while.ts │ │ │ │ │ └── with.ts │ │ │ │ └── utils/ │ │ │ │ ├── __tests__/ │ │ │ │ │ ├── name.test.ts │ │ │ │ │ └── render-utils.test.ts │ │ │ │ ├── context.ts │ │ │ │ ├── factories.ts │ │ │ │ ├── keywords.ts │ │ │ │ ├── lazy.ts │ │ │ │ ├── name.ts │ │ │ │ ├── regexp.ts │ │ │ │ ├── render-utils.ts │ │ │ │ ├── render.ts │ │ │ │ └── reserved.ts │ │ │ └── run.ts │ │ ├── tsconfig.json │ │ ├── tsdown.config.ts │ │ ├── turbo.json │ │ └── vitest.setup.ts │ ├── openapi-python-tests/ │ │ ├── pydantic/ │ │ │ └── v2/ │ │ │ ├── .gitignore │ │ │ ├── __snapshots__/ │ │ │ │ └── 3.1.x/ │ │ │ │ └── opencode/ │ │ │ │ └── pydantic_gen.py │ │ │ ├── package.json │ │ │ ├── test/ │ │ │ │ ├── opencode.test.ts │ │ │ │ └── utils.ts │ │ │ ├── tsconfig.json │ │ │ ├── turbo.json │ │ │ └── vitest.setup.ts │ │ ├── sdks/ │ │ │ ├── .gitignore │ │ │ ├── __snapshots__/ │ │ │ │ └── opencode/ │ │ │ │ └── default/ │ │ │ │ ├── __init__.py │ │ │ │ ├── client/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── client_gen.py │ │ │ │ ├── pydantic_gen.py │ │ │ │ └── sdk_gen.py │ │ │ ├── package.json │ │ │ ├── test/ │ │ │ │ ├── opencode.test.ts │ │ │ │ └── utils.ts │ │ │ ├── tsconfig.json │ │ │ ├── turbo.json │ │ │ └── vitest.setup.ts │ │ ├── tsconfig.base.json │ │ └── utils.ts │ ├── openapi-ts/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bin/ │ │ │ ├── run.cmd │ │ │ └── run.js │ │ ├── package.json │ │ ├── src/ │ │ │ ├── __tests__/ │ │ │ │ ├── cli.test.ts │ │ │ │ ├── index.test.ts │ │ │ │ ├── interactive.test.ts │ │ │ │ └── internal.test.ts │ │ │ ├── cli/ │ │ │ │ ├── adapter.ts │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── config/ │ │ │ │ ├── expand.ts │ │ │ │ ├── init.ts │ │ │ │ ├── output/ │ │ │ │ │ ├── __tests__/ │ │ │ │ │ │ └── config.test.ts │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── postprocess.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── packages.ts │ │ │ │ ├── plugins.ts │ │ │ │ ├── resolve.ts │ │ │ │ ├── types.ts │ │ │ │ ├── utils.ts │ │ │ │ └── validate.ts │ │ │ ├── createClient.ts │ │ │ ├── generate/ │ │ │ │ ├── client.ts │ │ │ │ └── output.ts │ │ │ ├── generate.ts │ │ │ ├── index.ts │ │ │ ├── internal.ts │ │ │ ├── plugins/ │ │ │ │ ├── @angular/ │ │ │ │ │ └── common/ │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── httpRequests/ │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── resolve.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── httpResources/ │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── resolve.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── plugin.ts │ │ │ │ │ ├── shared/ │ │ │ │ │ │ └── node.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── @faker-js/ │ │ │ │ │ └── faker/ │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── resolvers/ │ │ │ │ │ │ └── types.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── @hey-api/ │ │ │ │ │ ├── client-angular/ │ │ │ │ │ │ ├── __tests__/ │ │ │ │ │ │ │ ├── client.test.ts │ │ │ │ │ │ │ └── utils.test.ts │ │ │ │ │ │ ├── bundle/ │ │ │ │ │ │ │ ├── client.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── client-axios/ │ │ │ │ │ │ ├── __tests__/ │ │ │ │ │ │ │ ├── client.test.ts │ │ │ │ │ │ │ ├── utils-buildUrl.test.ts │ │ │ │ │ │ │ └── utils.test.ts │ │ │ │ │ │ ├── bundle/ │ │ │ │ │ │ │ ├── client.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── client-core/ │ │ │ │ │ │ ├── __tests__/ │ │ │ │ │ │ │ ├── auth.test.ts │ │ │ │ │ │ │ ├── bodySerializer.test.ts │ │ │ │ │ │ │ ├── params.test.ts │ │ │ │ │ │ │ ├── queryKeySerializer.test.ts │ │ │ │ │ │ │ ├── serverSentEvents.test.ts │ │ │ │ │ │ │ └── utils.test.ts │ │ │ │ │ │ ├── bundle/ │ │ │ │ │ │ │ ├── auth.ts │ │ │ │ │ │ │ ├── bodySerializer.ts │ │ │ │ │ │ │ ├── params.ts │ │ │ │ │ │ │ ├── pathSerializer.ts │ │ │ │ │ │ │ ├── queryKeySerializer.ts │ │ │ │ │ │ │ ├── serverSentEvents.ts │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ ├── client.ts │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── createClientConfig.ts │ │ │ │ │ │ ├── plugin.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ │ ├── client-fetch/ │ │ │ │ │ │ ├── __tests__/ │ │ │ │ │ │ │ ├── client.test.ts │ │ │ │ │ │ │ └── utils.test.ts │ │ │ │ │ │ ├── bundle/ │ │ │ │ │ │ │ ├── client.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── client-ky/ │ │ │ │ │ │ ├── __tests__/ │ │ │ │ │ │ │ ├── client.test.ts │ │ │ │ │ │ │ └── utils.test.ts │ │ │ │ │ │ ├── bundle/ │ │ │ │ │ │ │ ├── client.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── client-next/ │ │ │ │ │ │ ├── __tests__/ │ │ │ │ │ │ │ ├── client.test.ts │ │ │ │ │ │ │ └── utils.test.ts │ │ │ │ │ │ ├── bundle/ │ │ │ │ │ │ │ ├── client.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── client-nuxt/ │ │ │ │ │ │ ├── __tests__/ │ │ │ │ │ │ │ ├── client.test.ts │ │ │ │ │ │ │ └── utils.test.ts │ │ │ │ │ │ ├── bundle/ │ │ │ │ │ │ │ ├── client.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── client-ofetch/ │ │ │ │ │ │ ├── __tests__/ │ │ │ │ │ │ │ ├── client.test.ts │ │ │ │ │ │ │ └── utils.test.ts │ │ │ │ │ │ ├── bundle/ │ │ │ │ │ │ │ ├── client.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── schemas/ │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── plugin.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── sdk/ │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── examples/ │ │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── operations/ │ │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── resolve.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── plugin.ts │ │ │ │ │ │ ├── shared/ │ │ │ │ │ │ │ ├── auth.ts │ │ │ │ │ │ │ ├── class.ts │ │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ │ ├── operation.ts │ │ │ │ │ │ │ ├── signature.ts │ │ │ │ │ │ │ ├── typeOptions.ts │ │ │ │ │ │ │ └── validator.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── v1/ │ │ │ │ │ │ ├── node.ts │ │ │ │ │ │ └── plugin.ts │ │ │ │ │ ├── transformers/ │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── expressions.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── plugin.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ └── typescript/ │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── plugin.ts │ │ │ │ │ ├── resolvers.ts │ │ │ │ │ ├── shared/ │ │ │ │ │ │ ├── clientOptions.ts │ │ │ │ │ │ ├── export.ts │ │ │ │ │ │ ├── meta.ts │ │ │ │ │ │ ├── operation.ts │ │ │ │ │ │ ├── processor.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── webhook.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── v1/ │ │ │ │ │ ├── plugin.ts │ │ │ │ │ ├── processor.ts │ │ │ │ │ ├── toAst/ │ │ │ │ │ │ ├── array.ts │ │ │ │ │ │ ├── boolean.ts │ │ │ │ │ │ ├── enum.ts │ │ │ │ │ │ ├── intersection.ts │ │ │ │ │ │ ├── never.ts │ │ │ │ │ │ ├── null.ts │ │ │ │ │ │ ├── number.ts │ │ │ │ │ │ ├── object.ts │ │ │ │ │ │ ├── string.ts │ │ │ │ │ │ ├── tuple.ts │ │ │ │ │ │ ├── undefined.ts │ │ │ │ │ │ ├── union.ts │ │ │ │ │ │ ├── unknown.ts │ │ │ │ │ │ └── void.ts │ │ │ │ │ └── walker.ts │ │ │ │ ├── @pinia/ │ │ │ │ │ └── colada/ │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── meta.ts │ │ │ │ │ ├── mutationOptions.ts │ │ │ │ │ ├── plugin.ts │ │ │ │ │ ├── queryKey.ts │ │ │ │ │ ├── queryOptions.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ ├── useType.ts │ │ │ │ │ ├── utils.ts │ │ │ │ │ └── v0/ │ │ │ │ │ └── plugin.ts │ │ │ │ ├── @tanstack/ │ │ │ │ │ ├── angular-query-experimental/ │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── preact-query/ │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── query-core/ │ │ │ │ │ │ ├── plugin.ts │ │ │ │ │ │ ├── queryKey.ts │ │ │ │ │ │ ├── shared/ │ │ │ │ │ │ │ ├── meta.ts │ │ │ │ │ │ │ └── useType.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── v5/ │ │ │ │ │ │ ├── infiniteQueryOptions.ts │ │ │ │ │ │ ├── mutationOptions.ts │ │ │ │ │ │ ├── plugin.ts │ │ │ │ │ │ ├── queryOptions.ts │ │ │ │ │ │ ├── useMutation.ts │ │ │ │ │ │ └── useQuery.ts │ │ │ │ │ ├── react-query/ │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── solid-query/ │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── svelte-query/ │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ └── vue-query/ │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── arktype/ │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── plugin.ts │ │ │ │ │ ├── shared/ │ │ │ │ │ │ ├── export.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── v2/ │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── plugin.ts │ │ │ │ │ └── toAst/ │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── null.ts │ │ │ │ │ ├── object.ts │ │ │ │ │ └── string.ts │ │ │ │ ├── config.ts │ │ │ │ ├── fastify/ │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── plugin.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── nestjs/ │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── plugin.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── orpc/ │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── contracts/ │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── node.ts │ │ │ │ │ │ ├── resolve.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── plugin.ts │ │ │ │ │ ├── shared/ │ │ │ │ │ │ └── operation.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── v1/ │ │ │ │ │ └── plugin.ts │ │ │ │ ├── shared/ │ │ │ │ │ └── utils/ │ │ │ │ │ ├── coerce.ts │ │ │ │ │ ├── formats.ts │ │ │ │ │ ├── operation.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── swr/ │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── plugin.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── v2/ │ │ │ │ │ ├── plugin.ts │ │ │ │ │ └── useSwr.ts │ │ │ │ ├── types.ts │ │ │ │ ├── valibot/ │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── plugin.ts │ │ │ │ │ ├── resolvers.ts │ │ │ │ │ ├── shared/ │ │ │ │ │ │ ├── export.ts │ │ │ │ │ │ ├── meta.ts │ │ │ │ │ │ ├── operation-schema.ts │ │ │ │ │ │ ├── operation.ts │ │ │ │ │ │ ├── pipes.ts │ │ │ │ │ │ ├── processor.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── webhook.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── v1/ │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── plugin.ts │ │ │ │ │ ├── processor.ts │ │ │ │ │ ├── toAst/ │ │ │ │ │ │ ├── array.ts │ │ │ │ │ │ ├── boolean.ts │ │ │ │ │ │ ├── enum.ts │ │ │ │ │ │ ├── intersection.ts │ │ │ │ │ │ ├── never.ts │ │ │ │ │ │ ├── null.ts │ │ │ │ │ │ ├── number.ts │ │ │ │ │ │ ├── object.ts │ │ │ │ │ │ ├── string.ts │ │ │ │ │ │ ├── tuple.ts │ │ │ │ │ │ ├── undefined.ts │ │ │ │ │ │ ├── union.ts │ │ │ │ │ │ ├── unknown.ts │ │ │ │ │ │ └── void.ts │ │ │ │ │ └── walker.ts │ │ │ │ └── zod/ │ │ │ │ ├── api.ts │ │ │ │ ├── config.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── mini/ │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── plugin.ts │ │ │ │ │ ├── processor.ts │ │ │ │ │ ├── toAst/ │ │ │ │ │ │ ├── array.ts │ │ │ │ │ │ ├── boolean.ts │ │ │ │ │ │ ├── enum.ts │ │ │ │ │ │ ├── never.ts │ │ │ │ │ │ ├── null.ts │ │ │ │ │ │ ├── number.ts │ │ │ │ │ │ ├── object.ts │ │ │ │ │ │ ├── string.ts │ │ │ │ │ │ ├── tuple.ts │ │ │ │ │ │ ├── undefined.ts │ │ │ │ │ │ ├── unknown.ts │ │ │ │ │ │ └── void.ts │ │ │ │ │ └── walker.ts │ │ │ │ ├── plugin.ts │ │ │ │ ├── resolvers.ts │ │ │ │ ├── shared/ │ │ │ │ │ ├── chain.ts │ │ │ │ │ ├── export.ts │ │ │ │ │ ├── meta.ts │ │ │ │ │ ├── module.ts │ │ │ │ │ ├── operation-schema.ts │ │ │ │ │ ├── operation.ts │ │ │ │ │ ├── processor.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── webhook.ts │ │ │ │ ├── types.ts │ │ │ │ ├── v3/ │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── plugin.ts │ │ │ │ │ ├── processor.ts │ │ │ │ │ ├── toAst/ │ │ │ │ │ │ ├── array.ts │ │ │ │ │ │ ├── boolean.ts │ │ │ │ │ │ ├── enum.ts │ │ │ │ │ │ ├── never.ts │ │ │ │ │ │ ├── null.ts │ │ │ │ │ │ ├── number.ts │ │ │ │ │ │ ├── object.ts │ │ │ │ │ │ ├── string.ts │ │ │ │ │ │ ├── tuple.ts │ │ │ │ │ │ ├── undefined.ts │ │ │ │ │ │ ├── unknown.ts │ │ │ │ │ │ └── void.ts │ │ │ │ │ └── walker.ts │ │ │ │ └── v4/ │ │ │ │ ├── api.ts │ │ │ │ ├── plugin.ts │ │ │ │ ├── processor.ts │ │ │ │ ├── toAst/ │ │ │ │ │ ├── array.ts │ │ │ │ │ ├── boolean.ts │ │ │ │ │ ├── enum.ts │ │ │ │ │ ├── intersection.ts │ │ │ │ │ ├── never.ts │ │ │ │ │ ├── null.ts │ │ │ │ │ ├── number.ts │ │ │ │ │ ├── object.ts │ │ │ │ │ ├── string.ts │ │ │ │ │ ├── tuple.ts │ │ │ │ │ ├── undefined.ts │ │ │ │ │ ├── union.ts │ │ │ │ │ ├── unknown.ts │ │ │ │ │ └── void.ts │ │ │ │ └── walker.ts │ │ │ ├── run.ts │ │ │ ├── ts-compiler/ │ │ │ │ ├── __snapshots__/ │ │ │ │ │ └── nodes/ │ │ │ │ │ ├── expressions/ │ │ │ │ │ │ ├── identifier/ │ │ │ │ │ │ │ └── identifier.ts │ │ │ │ │ │ └── literal/ │ │ │ │ │ │ └── primitive.ts │ │ │ │ │ └── statements/ │ │ │ │ │ └── var/ │ │ │ │ │ ├── const.ts │ │ │ │ │ ├── let.ts │ │ │ │ │ └── var.ts │ │ │ │ ├── __tests__/ │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── globalTeardown.ts │ │ │ │ │ └── nodes/ │ │ │ │ │ ├── expressions/ │ │ │ │ │ │ ├── identifier.test.ts │ │ │ │ │ │ └── literal.test.ts │ │ │ │ │ ├── statements/ │ │ │ │ │ │ └── var.test.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── index.ts │ │ │ │ ├── nodes/ │ │ │ │ │ ├── base.ts │ │ │ │ │ ├── expression.ts │ │ │ │ │ ├── expressions/ │ │ │ │ │ │ ├── identifier.ts │ │ │ │ │ │ └── literal.ts │ │ │ │ │ ├── factory.ts │ │ │ │ │ ├── kinds.ts │ │ │ │ │ ├── statement.ts │ │ │ │ │ ├── statements/ │ │ │ │ │ │ ├── assignment.ts │ │ │ │ │ │ └── var.ts │ │ │ │ │ ├── structure/ │ │ │ │ │ │ └── sourceFile.ts │ │ │ │ │ └── type.ts │ │ │ │ └── printer.ts │ │ │ └── ts-dsl/ │ │ │ ├── base.ts │ │ │ ├── decl/ │ │ │ │ ├── class.ts │ │ │ │ ├── decorator.ts │ │ │ │ ├── enum.ts │ │ │ │ ├── field.ts │ │ │ │ ├── func.ts │ │ │ │ ├── getter.ts │ │ │ │ ├── init.ts │ │ │ │ ├── member.ts │ │ │ │ ├── method.ts │ │ │ │ ├── param.ts │ │ │ │ ├── pattern.ts │ │ │ │ └── setter.ts │ │ │ ├── expr/ │ │ │ │ ├── array.ts │ │ │ │ ├── as.ts │ │ │ │ ├── attr.ts │ │ │ │ ├── await.ts │ │ │ │ ├── binary.ts │ │ │ │ ├── call.ts │ │ │ │ ├── expr.ts │ │ │ │ ├── fromValue.ts │ │ │ │ ├── id.ts │ │ │ │ ├── literal.ts │ │ │ │ ├── new.ts │ │ │ │ ├── object.ts │ │ │ │ ├── prefix.ts │ │ │ │ ├── prop.ts │ │ │ │ ├── regexp.ts │ │ │ │ ├── template.ts │ │ │ │ ├── ternary.ts │ │ │ │ └── typeof.ts │ │ │ ├── index.ts │ │ │ ├── layout/ │ │ │ │ ├── doc.ts │ │ │ │ ├── hint.ts │ │ │ │ ├── newline.ts │ │ │ │ └── note.ts │ │ │ ├── mixins/ │ │ │ │ ├── args.ts │ │ │ │ ├── as.ts │ │ │ │ ├── decorator.ts │ │ │ │ ├── do.ts │ │ │ │ ├── doc.ts │ │ │ │ ├── expr.ts │ │ │ │ ├── hint.ts │ │ │ │ ├── layout.ts │ │ │ │ ├── modifiers.ts │ │ │ │ ├── note.ts │ │ │ │ ├── operator.ts │ │ │ │ ├── optional.ts │ │ │ │ ├── param.ts │ │ │ │ ├── pattern.ts │ │ │ │ ├── type-args.ts │ │ │ │ ├── type-expr.ts │ │ │ │ ├── type-params.ts │ │ │ │ ├── type-returns.ts │ │ │ │ ├── types.ts │ │ │ │ └── value.ts │ │ │ ├── stmt/ │ │ │ │ ├── block.ts │ │ │ │ ├── if.ts │ │ │ │ ├── return.ts │ │ │ │ ├── stmt.ts │ │ │ │ ├── throw.ts │ │ │ │ ├── try.ts │ │ │ │ └── var.ts │ │ │ ├── token.ts │ │ │ ├── type/ │ │ │ │ ├── alias.ts │ │ │ │ ├── and.ts │ │ │ │ ├── attr.ts │ │ │ │ ├── expr.ts │ │ │ │ ├── fromValue.ts │ │ │ │ ├── func.ts │ │ │ │ ├── idx-sig.ts │ │ │ │ ├── idx.ts │ │ │ │ ├── literal.ts │ │ │ │ ├── mapped.ts │ │ │ │ ├── object.ts │ │ │ │ ├── operator.ts │ │ │ │ ├── or.ts │ │ │ │ ├── param.ts │ │ │ │ ├── prop.ts │ │ │ │ ├── query.ts │ │ │ │ ├── template.ts │ │ │ │ └── tuple.ts │ │ │ └── utils/ │ │ │ ├── __tests__/ │ │ │ │ ├── name.test.ts │ │ │ │ └── render.test.ts │ │ │ ├── context.ts │ │ │ ├── factories.ts │ │ │ ├── keywords.ts │ │ │ ├── lazy.ts │ │ │ ├── name.ts │ │ │ ├── regexp.ts │ │ │ ├── render-utils.ts │ │ │ ├── render.ts │ │ │ └── reserved.ts │ │ ├── tsconfig.json │ │ ├── tsdown.config.ts │ │ ├── turbo.json │ │ └── vitest.setup.ts │ ├── openapi-ts-tests/ │ │ ├── __snapshots__/ │ │ │ └── plugins/ │ │ │ └── @tanstack/ │ │ │ └── meta/ │ │ │ ├── @tanstack/ │ │ │ │ ├── angular-query-experimental.gen.ts │ │ │ │ ├── preact-query.gen.ts │ │ │ │ ├── react-query.gen.ts │ │ │ │ ├── solid-query.gen.ts │ │ │ │ ├── svelte-query.gen.ts │ │ │ │ └── vue-query.gen.ts │ │ │ ├── client/ │ │ │ │ ├── client.gen.ts │ │ │ │ ├── index.ts │ │ │ │ ├── types.gen.ts │ │ │ │ └── utils.gen.ts │ │ │ ├── client.gen.ts │ │ │ ├── core/ │ │ │ │ ├── auth.gen.ts │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ ├── params.gen.ts │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ ├── types.gen.ts │ │ │ │ └── utils.gen.ts │ │ │ ├── index.ts │ │ │ ├── sdk.gen.ts │ │ │ └── types.gen.ts │ │ ├── main/ │ │ │ ├── .gitignore │ │ │ ├── package.json │ │ │ ├── test/ │ │ │ │ ├── 2.0.x.test.ts │ │ │ │ ├── 3.0.x.test.ts │ │ │ │ ├── 3.1.x.test.ts │ │ │ │ ├── __snapshots__/ │ │ │ │ │ ├── 2.0.x/ │ │ │ │ │ │ ├── additional-properties-false/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── additional-properties-true/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── body-response-text-plain/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values-javascript-PascalCase/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values-javascript-SCREAMING_SNAKE_CASE/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values-javascript-camelCase/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values-javascript-preserve/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values-javascript-snake_case/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values-typescript-PascalCase/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values-typescript-SCREAMING_SNAKE_CASE/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values-typescript-camelCase/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values-typescript-const/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values-typescript-preserve/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values-typescript-snake_case/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── exclude-deprecated/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── external/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── form-data/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ │ ├── @angular/ │ │ │ │ │ │ │ │ └── common/ │ │ │ │ │ │ │ │ ├── default/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── default-class/ │ │ │ │ │ │ │ │ ├── @angular/ │ │ │ │ │ │ │ │ │ └── common.gen.ts │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── @hey-api/ │ │ │ │ │ │ │ │ ├── client-fetch/ │ │ │ │ │ │ │ │ │ ├── sdk-nested-classes/ │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ └── sdk-nested-classes-instance/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── schemas/ │ │ │ │ │ │ │ │ │ └── default/ │ │ │ │ │ │ │ │ │ └── schemas.gen.ts │ │ │ │ │ │ │ │ ├── sdk/ │ │ │ │ │ │ │ │ │ ├── default/ │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── instance/ │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ └── throwOnError/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── typescript/ │ │ │ │ │ │ │ │ ├── transforms-read-write-custom-name/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── transforms-read-write-ignore/ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── @pinia/ │ │ │ │ │ │ │ │ └── colada/ │ │ │ │ │ │ │ │ ├── asClass/ │ │ │ │ │ │ │ │ │ ├── @pinia/ │ │ │ │ │ │ │ │ │ │ └── colada.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── fetch/ │ │ │ │ │ │ │ │ ├── @pinia/ │ │ │ │ │ │ │ │ │ └── colada.gen.ts │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ ├── angular-query-experimental/ │ │ │ │ │ │ │ │ │ ├── asClass/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── angular-query-experimental.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── axios/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── angular-query-experimental.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── fetch/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── angular-query-experimental.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ └── name-builder/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── angular-query-experimental.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── preact-query/ │ │ │ │ │ │ │ │ │ ├── asClass/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── preact-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── axios/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── preact-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── fetch/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── preact-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ └── name-builder/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── preact-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── react-query/ │ │ │ │ │ │ │ │ │ ├── asClass/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── react-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── axios/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── react-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── fetch/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── react-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── name-builder/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── react-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ └── useMutation/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── react-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── solid-query/ │ │ │ │ │ │ │ │ │ ├── asClass/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── solid-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── axios/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── solid-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── fetch/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── solid-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ └── name-builder/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── solid-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── svelte-query/ │ │ │ │ │ │ │ │ │ ├── asClass/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── svelte-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── axios/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── svelte-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── fetch/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── svelte-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ └── name-builder/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── svelte-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── vue-query/ │ │ │ │ │ │ │ │ ├── asClass/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── vue-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── axios/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── vue-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── fetch/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── vue-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── name-builder/ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ └── vue-query.gen.ts │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ └── fastify/ │ │ │ │ │ │ │ └── default/ │ │ │ │ │ │ │ ├── fastify.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── ref-deep/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── schema-unknown/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── security-api-key/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── security-basic/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── security-false/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── security-oauth2/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── servers/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── servers-base-path/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── servers-host/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── transforms-read-write/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ └── transforms-schemas-name/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── 3.0.x/ │ │ │ │ │ │ ├── additional-properties-false/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── additional-properties-true/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── additional-properties-undefined/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── array-items-one-of-length-1/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── array-nested-one-of/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── body-binary-format/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── body-response-text-plain/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── case-PascalCase/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── case-camelCase/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── case-preserve/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── case-snake_case/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── components-request-bodies/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── content-binary/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── content-types/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── discriminator-all-of/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── discriminator-allof-inline/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── discriminator-allof-nested/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── discriminator-any-of/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── discriminator-mapped-many/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── discriminator-non-string/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── discriminator-object-self-mapped/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── discriminator-one-of/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-escape/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-inline/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-inline-javascript/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-inline-name-resolver/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-inline-name-resolver-null/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-inline-typescript/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values-javascript-PascalCase/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values-javascript-SCREAMING_SNAKE_CASE/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values-javascript-camelCase/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values-javascript-ignore-null/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values-javascript-preserve/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values-javascript-snake_case/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values-typescript-PascalCase/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values-typescript-SCREAMING_SNAKE_CASE/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values-typescript-camelCase/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values-typescript-const/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values-typescript-preserve/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-names-values-typescript-snake_case/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── enum-null/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── exclude-deprecated/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── external/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── internal-name-conflict/ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ └── react-query.gen.ts │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── operation-204/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── parameter-explode-false/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── parameter-explode-false-axios/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ │ ├── @angular/ │ │ │ │ │ │ │ │ └── common/ │ │ │ │ │ │ │ │ ├── default/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── default-class/ │ │ │ │ │ │ │ │ ├── @angular/ │ │ │ │ │ │ │ │ │ └── common.gen.ts │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── @hey-api/ │ │ │ │ │ │ │ │ ├── client-fetch/ │ │ │ │ │ │ │ │ │ ├── sdk-nested-classes/ │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ └── sdk-nested-classes-instance/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── schemas/ │ │ │ │ │ │ │ │ │ └── default/ │ │ │ │ │ │ │ │ │ └── schemas.gen.ts │ │ │ │ │ │ │ │ ├── sdk/ │ │ │ │ │ │ │ │ │ ├── default/ │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── instance/ │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ └── throwOnError/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── typescript/ │ │ │ │ │ │ │ │ ├── transforms-read-write-custom-name/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── transforms-read-write-ignore/ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── @pinia/ │ │ │ │ │ │ │ │ └── colada/ │ │ │ │ │ │ │ │ ├── asClass/ │ │ │ │ │ │ │ │ │ ├── @pinia/ │ │ │ │ │ │ │ │ │ │ └── colada.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── fetch/ │ │ │ │ │ │ │ │ ├── @pinia/ │ │ │ │ │ │ │ │ │ └── colada.gen.ts │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ ├── angular-query-experimental/ │ │ │ │ │ │ │ │ │ ├── asClass/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── angular-query-experimental.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── axios/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── angular-query-experimental.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── fetch/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── angular-query-experimental.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ └── name-builder/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── angular-query-experimental.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── preact-query/ │ │ │ │ │ │ │ │ │ ├── asClass/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── preact-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── axios/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── preact-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── fetch/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── preact-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ └── name-builder/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── preact-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── react-query/ │ │ │ │ │ │ │ │ │ ├── asClass/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── react-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── axios/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── react-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── fetch/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── react-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── name-builder/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── react-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ └── useMutation/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── react-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── solid-query/ │ │ │ │ │ │ │ │ │ ├── asClass/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── solid-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── axios/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── solid-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── fetch/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── solid-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ └── name-builder/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── solid-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── svelte-query/ │ │ │ │ │ │ │ │ │ ├── asClass/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── svelte-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── axios/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── svelte-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ ├── fetch/ │ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ │ └── svelte-query.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ │ └── name-builder/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── svelte-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── vue-query/ │ │ │ │ │ │ │ │ ├── asClass/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── vue-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── axios/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── vue-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── fetch/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── vue-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── name-builder/ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ └── vue-query.gen.ts │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ └── fastify/ │ │ │ │ │ │ │ └── default/ │ │ │ │ │ │ │ ├── fastify.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── ref-deep/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── security-api-key/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── security-false/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── security-http-bearer/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── security-oauth2/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── security-open-id-connect/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── servers/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── transformers-all-of/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── transformers.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── transformers-allof-response-wrapper/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── transformers.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── transformers-any-of-null/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── transformers.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── transformers-array/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── transformers.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── transformers-recursive/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── transformers.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── transforms-properties-required-by-default/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── transforms-read-write/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── transforms-schemas-name/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── transforms-schemas-name-collision/ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ └── type-invalid/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ └── 3.1.x/ │ │ │ │ │ ├── additional-properties-false/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── additional-properties-true/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── additional-properties-true-any/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── additional-properties-undefined/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── array-items-one-of-length-1/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── array-nested-one-of/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── body-response-text-plain/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── case-PascalCase/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── case-camelCase/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── case-preserve/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── case-snake_case/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── clients/ │ │ │ │ │ │ ├── @hey-api/ │ │ │ │ │ │ │ ├── client-angular/ │ │ │ │ │ │ │ │ ├── base-url-false/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── base-url-number/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── base-url-strict/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── base-url-string/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── clean-false/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── default/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── import-file-extension-ts/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── sdk-client-optional/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── sdk-client-required/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── tsconfig-node16-sdk/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── tsconfig-nodenext-sdk/ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── client-axios/ │ │ │ │ │ │ │ │ ├── base-url-false/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── base-url-number/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── base-url-strict/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── base-url-string/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── clean-false/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── default/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── import-file-extension-ts/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── sdk-client-optional/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── sdk-client-required/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── tsconfig-node16-sdk/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── tsconfig-nodenext-sdk/ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── client-fetch/ │ │ │ │ │ │ │ │ ├── base-url-false/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── base-url-number/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── base-url-strict/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── base-url-string/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── clean-false/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── default/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── import-file-extension-ts/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── sdk-client-optional/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── sdk-client-required/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── tsconfig-node16-sdk/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── tsconfig-nodenext-sdk/ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── client-ky/ │ │ │ │ │ │ │ │ ├── base-url-false/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── base-url-number/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── base-url-strict/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── base-url-string/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── clean-false/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── default/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── import-file-extension-ts/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── sdk-client-optional/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── sdk-client-required/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── tsconfig-node16-sdk/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── tsconfig-nodenext-sdk/ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── client-next/ │ │ │ │ │ │ │ │ ├── base-url-false/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── base-url-number/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── base-url-strict/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── base-url-string/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── clean-false/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── default/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── import-file-extension-ts/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── sdk-client-optional/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── sdk-client-required/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── tsconfig-node16-sdk/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── tsconfig-nodenext-sdk/ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── client-nuxt/ │ │ │ │ │ │ │ │ ├── base-url-false/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── base-url-number/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── base-url-strict/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── base-url-string/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── clean-false/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── default/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── import-file-extension-ts/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── sdk-client-optional/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── sdk-client-required/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── tsconfig-node16-sdk/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── tsconfig-nodenext-sdk/ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ └── client-ofetch/ │ │ │ │ │ │ │ ├── base-url-false/ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── base-url-number/ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── base-url-strict/ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── base-url-string/ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── clean-false/ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── default/ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── import-file-extension-ts/ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── sdk-client-optional/ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── sdk-client-required/ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── tsconfig-node16-sdk/ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ └── tsconfig-nodenext-sdk/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── client-custom/ │ │ │ │ │ │ │ ├── base-url-false/ │ │ │ │ │ │ │ │ ├── custom-client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── base-url-number/ │ │ │ │ │ │ │ │ ├── custom-client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── base-url-strict/ │ │ │ │ │ │ │ │ ├── custom-client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── base-url-string/ │ │ │ │ │ │ │ │ ├── custom-client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── default/ │ │ │ │ │ │ │ │ ├── custom-client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── sdk-client-optional/ │ │ │ │ │ │ │ │ ├── custom-client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ └── sdk-client-required/ │ │ │ │ │ │ │ ├── custom-client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ └── my-client/ │ │ │ │ │ │ ├── base-url-false/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.ts │ │ │ │ │ │ │ │ │ ├── params.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.ts │ │ │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── plugin.ts │ │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ │ ├── custom.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── base-url-number/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.ts │ │ │ │ │ │ │ │ │ ├── params.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.ts │ │ │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── plugin.ts │ │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ │ ├── custom.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── base-url-strict/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.ts │ │ │ │ │ │ │ │ │ ├── params.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.ts │ │ │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── plugin.ts │ │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ │ ├── custom.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── base-url-string/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.ts │ │ │ │ │ │ │ │ │ ├── params.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.ts │ │ │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── plugin.ts │ │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ │ ├── custom.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── bundle/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.ts │ │ │ │ │ │ │ │ │ ├── params.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.ts │ │ │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── plugin.ts │ │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ │ ├── custom.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── default/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.ts │ │ │ │ │ │ │ │ │ ├── params.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.ts │ │ │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── plugin.ts │ │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ │ ├── custom.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── sdk-client-optional/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.ts │ │ │ │ │ │ │ │ │ ├── params.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.ts │ │ │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── plugin.ts │ │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ │ ├── custom.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ └── sdk-client-required/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.ts │ │ │ │ │ │ │ │ ├── bodySerializer.ts │ │ │ │ │ │ │ │ ├── params.ts │ │ │ │ │ │ │ │ ├── pathSerializer.ts │ │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── plugin.ts │ │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ ├── custom.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── components-request-bodies/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── const/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── content-binary/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── content-media-type/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── content-types/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── discriminator-all-of/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── discriminator-allof-inline/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── discriminator-allof-nested/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── discriminator-any-of/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── discriminator-mapped-many/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── discriminator-non-string/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── discriminator-object-self-mapped/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── discriminator-one-of/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── discriminator-one-of-read-write/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── duplicate-null/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── enum-escape/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── enum-inline/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── enum-inline-javascript/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── enum-inline-name-resolver/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── enum-inline-name-resolver-null/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── enum-inline-typescript/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── enum-names-values/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── enum-names-values-javascript-PascalCase/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── enum-names-values-javascript-SCREAMING_SNAKE_CASE/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── enum-names-values-javascript-camelCase/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── enum-names-values-javascript-ignore-null/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── enum-names-values-javascript-preserve/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── enum-names-values-javascript-snake_case/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── enum-names-values-typescript-PascalCase/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── enum-names-values-typescript-SCREAMING_SNAKE_CASE/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── enum-names-values-typescript-camelCase/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── enum-names-values-typescript-const/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── enum-names-values-typescript-preserve/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── enum-names-values-typescript-snake_case/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── enum-null/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── exclude-deprecated/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── external/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── headers/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── internal-name-conflict/ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ └── react-query.gen.ts │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── negative-property-names/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── object-properties-all-of/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── object-properties-any-of/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── object-properties-one-of/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── object-property-names/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── operation-204/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── pagination-ref/ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ └── react-query.gen.ts │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── parameter-explode-false/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── parameter-explode-false-axios/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── parameter-tuple/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── pattern-properties/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── plugins/ │ │ │ │ │ │ ├── @angular/ │ │ │ │ │ │ │ └── common/ │ │ │ │ │ │ │ ├── default/ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ └── default-class/ │ │ │ │ │ │ │ ├── @angular/ │ │ │ │ │ │ │ │ └── common.gen.ts │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── @hey-api/ │ │ │ │ │ │ │ ├── client-fetch/ │ │ │ │ │ │ │ │ ├── sdk-nested-classes/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── sdk-nested-classes-instance/ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── schemas/ │ │ │ │ │ │ │ │ └── default/ │ │ │ │ │ │ │ │ └── schemas.gen.ts │ │ │ │ │ │ │ ├── sdk/ │ │ │ │ │ │ │ │ ├── default/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── instance/ │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── throwOnError/ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ └── typescript/ │ │ │ │ │ │ │ ├── transforms-read-write-custom-name/ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ └── transforms-read-write-ignore/ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── @pinia/ │ │ │ │ │ │ │ └── colada/ │ │ │ │ │ │ │ ├── asClass/ │ │ │ │ │ │ │ │ ├── @pinia/ │ │ │ │ │ │ │ │ │ └── colada.gen.ts │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ └── fetch/ │ │ │ │ │ │ │ ├── @pinia/ │ │ │ │ │ │ │ │ └── colada.gen.ts │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ ├── angular-query-experimental/ │ │ │ │ │ │ │ │ ├── asClass/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── angular-query-experimental.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── axios/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── angular-query-experimental.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── fetch/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── angular-query-experimental.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── name-builder/ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ └── angular-query-experimental.gen.ts │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── preact-query/ │ │ │ │ │ │ │ │ ├── asClass/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── preact-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── axios/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── preact-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── fetch/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── preact-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── name-builder/ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ └── preact-query.gen.ts │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── react-query/ │ │ │ │ │ │ │ │ ├── asClass/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── react-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── axios/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── react-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── fetch/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── react-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── name-builder/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── react-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── useMutation/ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ └── react-query.gen.ts │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── solid-query/ │ │ │ │ │ │ │ │ ├── asClass/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── solid-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── axios/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── solid-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── fetch/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── solid-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── name-builder/ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ └── solid-query.gen.ts │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── svelte-query/ │ │ │ │ │ │ │ │ ├── asClass/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── svelte-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── axios/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── svelte-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ ├── fetch/ │ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ │ └── svelte-query.gen.ts │ │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ │ └── name-builder/ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ └── svelte-query.gen.ts │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ └── vue-query/ │ │ │ │ │ │ │ ├── asClass/ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ └── vue-query.gen.ts │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── axios/ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ └── vue-query.gen.ts │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ ├── fetch/ │ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ │ └── vue-query.gen.ts │ │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ │ └── name-builder/ │ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ │ └── vue-query.gen.ts │ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ │ └── fastify/ │ │ │ │ │ │ └── default/ │ │ │ │ │ │ ├── fastify.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── ref-deep/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── ref-type/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── required-all-of-ref/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── required-any-of-ref/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── required-one-of-ref/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── schema-const/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── security-api-key/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── security-false/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── security-http-bearer/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── security-oauth2/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── security-open-id-connect/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── servers/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── sse-angular/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── sse-axios/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── sse-fetch/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── sse-next/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── sse-nuxt/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── sse-ofetch/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── sse-tanstack-react-query/ │ │ │ │ │ │ ├── @tanstack/ │ │ │ │ │ │ │ └── react-query.gen.ts │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── string-with-format/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── transformers-all-of/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── transformers.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── transformers-allof-response-wrapper/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── transformers.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── transformers-any-of-null/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── transformers.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── transformers-array/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── transformers.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── transformers-one-of-discriminated/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── transformers.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── transformers-recursive/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── transformers.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── transforms-read-write/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── transforms-read-write-nested/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── transforms-read-write-response/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── transforms-read-write-unevaluated/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── transforms-schemas-name/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── type-invalid/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── union-types/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ └── webhooks/ │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.gen.ts │ │ │ │ ├── cli.test.ts │ │ │ │ ├── clients.test.ts │ │ │ │ ├── custom/ │ │ │ │ │ ├── client/ │ │ │ │ │ │ ├── client.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.ts │ │ │ │ │ │ │ ├── bodySerializer.ts │ │ │ │ │ │ │ ├── params.ts │ │ │ │ │ │ │ ├── pathSerializer.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── plugin.ts │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ │ └── request.ts │ │ │ │ ├── meta-function.test.ts │ │ │ │ ├── plugins.test.ts │ │ │ │ └── tsconfig/ │ │ │ │ ├── tsconfig.node16.json │ │ │ │ └── tsconfig.nodenext.json │ │ │ ├── tsconfig.json │ │ │ ├── turbo.json │ │ │ └── vitest.setup.ts │ │ ├── nestjs/ │ │ │ └── v11/ │ │ │ ├── __snapshots__/ │ │ │ │ ├── 2.0.x/ │ │ │ │ │ └── default/ │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── nestjs.gen.ts │ │ │ │ │ └── types.gen.ts │ │ │ │ ├── 3.0.x/ │ │ │ │ │ └── default/ │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── nestjs.gen.ts │ │ │ │ │ └── types.gen.ts │ │ │ │ └── 3.1.x/ │ │ │ │ └── default/ │ │ │ │ ├── index.ts │ │ │ │ ├── nestjs.gen.ts │ │ │ │ └── types.gen.ts │ │ │ ├── package.json │ │ │ ├── test/ │ │ │ │ └── plugins.test.ts │ │ │ ├── tsconfig.json │ │ │ ├── turbo.json │ │ │ └── vitest.setup.ts │ │ ├── orpc/ │ │ │ └── v1/ │ │ │ ├── .gitignore │ │ │ ├── __snapshots__/ │ │ │ │ ├── 3.0.x/ │ │ │ │ │ ├── custom-names/ │ │ │ │ │ │ ├── orpc.gen.ts │ │ │ │ │ │ └── valibot.gen.ts │ │ │ │ │ └── default/ │ │ │ │ │ ├── orpc.gen.ts │ │ │ │ │ └── zod.gen.ts │ │ │ │ └── 3.1.x/ │ │ │ │ ├── contracts-custom-naming/ │ │ │ │ │ ├── orpc.gen.ts │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── contracts-nesting-id/ │ │ │ │ │ ├── orpc.gen.ts │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── contracts-strategy-by-tags/ │ │ │ │ │ ├── orpc.gen.ts │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── contracts-strategy-single/ │ │ │ │ │ ├── orpc.gen.ts │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── custom-names/ │ │ │ │ │ ├── orpc.gen.ts │ │ │ │ │ └── valibot.gen.ts │ │ │ │ └── default/ │ │ │ │ ├── orpc.gen.ts │ │ │ │ └── zod.gen.ts │ │ │ ├── package.json │ │ │ ├── test/ │ │ │ │ ├── 3.0.x.test.ts │ │ │ │ ├── 3.1.x.test.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── globalTeardown.ts │ │ │ │ └── utils.ts │ │ │ ├── tsconfig.json │ │ │ ├── turbo.json │ │ │ └── vitest.setup.ts │ │ ├── sdks/ │ │ │ ├── .gitignore │ │ │ ├── __snapshots__/ │ │ │ │ ├── method-class-conflict/ │ │ │ │ │ ├── class/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ ├── flat/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ └── types.gen.ts │ │ │ │ │ └── instance/ │ │ │ │ │ ├── client/ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── core/ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ └── types.gen.ts │ │ │ │ └── opencode/ │ │ │ │ ├── export-all/ │ │ │ │ │ ├── client/ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── core/ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ └── types.gen.ts │ │ │ │ ├── flat/ │ │ │ │ │ ├── client/ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── core/ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ └── types.gen.ts │ │ │ │ └── grouped/ │ │ │ │ ├── client/ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── client.gen.ts │ │ │ │ ├── core/ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── index.ts │ │ │ │ ├── sdk.gen.ts │ │ │ │ └── types.gen.ts │ │ │ ├── package.json │ │ │ ├── test/ │ │ │ │ ├── method-class-conflict.test.ts │ │ │ │ ├── opencode.test.ts │ │ │ │ └── utils.ts │ │ │ ├── tsconfig.json │ │ │ ├── turbo.json │ │ │ └── vitest.setup.ts │ │ ├── tsconfig.base.json │ │ ├── utils.ts │ │ ├── valibot/ │ │ │ └── v1/ │ │ │ ├── .gitignore │ │ │ ├── __snapshots__/ │ │ │ │ ├── 3.0.x/ │ │ │ │ │ ├── array-items-one-of-length-1/ │ │ │ │ │ │ └── valibot.gen.ts │ │ │ │ │ ├── enum-null/ │ │ │ │ │ │ └── valibot.gen.ts │ │ │ │ │ └── validators/ │ │ │ │ │ └── valibot.gen.ts │ │ │ │ └── 3.1.x/ │ │ │ │ ├── array-items-one-of-length-1/ │ │ │ │ │ └── valibot.gen.ts │ │ │ │ ├── enum-null/ │ │ │ │ │ └── valibot.gen.ts │ │ │ │ ├── integer-formats/ │ │ │ │ │ └── valibot.gen.ts │ │ │ │ ├── schema-const/ │ │ │ │ │ └── valibot.gen.ts │ │ │ │ ├── string-with-format/ │ │ │ │ │ └── valibot.gen.ts │ │ │ │ ├── time-format/ │ │ │ │ │ └── valibot.gen.ts │ │ │ │ ├── type-format/ │ │ │ │ │ ├── client/ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── core/ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ ├── transformers.gen.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── valibot.gen.ts │ │ │ │ ├── validators/ │ │ │ │ │ └── valibot.gen.ts │ │ │ │ ├── validators-bigint-min-max/ │ │ │ │ │ └── valibot.gen.ts │ │ │ │ ├── validators-circular-ref/ │ │ │ │ │ └── valibot.gen.ts │ │ │ │ ├── validators-circular-ref-2/ │ │ │ │ │ └── valibot.gen.ts │ │ │ │ ├── validators-metadata/ │ │ │ │ │ └── valibot.gen.ts │ │ │ │ ├── validators-metadata-fn/ │ │ │ │ │ └── valibot.gen.ts │ │ │ │ ├── validators-types/ │ │ │ │ │ └── valibot.gen.ts │ │ │ │ ├── validators-union-merge/ │ │ │ │ │ └── valibot.gen.ts │ │ │ │ └── webhooks/ │ │ │ │ └── valibot.gen.ts │ │ │ ├── package.json │ │ │ ├── test/ │ │ │ │ ├── 3.0.x.test.ts │ │ │ │ ├── 3.1.x.test.ts │ │ │ │ ├── additional-properties.test.ts │ │ │ │ ├── const-values.test.ts │ │ │ │ ├── formats.test.ts │ │ │ │ ├── min-max-constraints.test.ts │ │ │ │ └── utils.ts │ │ │ ├── tsconfig.json │ │ │ ├── turbo.json │ │ │ └── vitest.setup.ts │ │ └── zod/ │ │ ├── v3/ │ │ │ ├── .gitignore │ │ │ ├── __snapshots__/ │ │ │ │ ├── 2.0.x/ │ │ │ │ │ ├── mini/ │ │ │ │ │ │ ├── array-items-all-of/ │ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ │ ├── default/ │ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ │ └── type-format/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── v3/ │ │ │ │ │ │ ├── array-items-all-of/ │ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ │ ├── default/ │ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ │ └── type-format/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ └── v4/ │ │ │ │ │ ├── array-items-all-of/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── default/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ └── type-format/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── 3.0.x/ │ │ │ │ │ ├── mini/ │ │ │ │ │ │ ├── array-items-all-of/ │ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ │ ├── array-items-one-of-length-1/ │ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ │ ├── circular/ │ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ │ ├── default/ │ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ │ ├── enum-null/ │ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ │ ├── type-format/ │ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ │ └── validators/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── v3/ │ │ │ │ │ │ ├── array-items-all-of/ │ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ │ ├── array-items-one-of-length-1/ │ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ │ ├── circular/ │ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ │ ├── default/ │ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ │ ├── enum-null/ │ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ │ ├── type-format/ │ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ │ └── validators/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ └── v4/ │ │ │ │ │ ├── array-items-all-of/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── array-items-one-of-length-1/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── circular/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── default/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── enum-null/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── type-format/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ └── validators/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ └── 3.1.x/ │ │ │ │ ├── mini/ │ │ │ │ │ ├── array-items-all-of/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── array-items-one-of-length-1/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── default/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── enum-null/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── enum-resolver-permissive/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── schema-const/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── type-format/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── validators/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── validators-bigint-min-max/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── validators-circular-ref/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── validators-circular-ref-2/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── validators-dates/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── validators-metadata/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── validators-string-constraints-union/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── validators-types/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ └── validators-union-merge/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── v3/ │ │ │ │ │ ├── array-items-all-of/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── array-items-one-of-length-1/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── default/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── enum-null/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── enum-resolver-permissive/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── schema-const/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── type-format/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── validators/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── validators-bigint-min-max/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── validators-circular-ref/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── validators-circular-ref-2/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── validators-dates/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── validators-metadata/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── validators-string-constraints-union/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── validators-types/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ └── validators-union-merge/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ └── v4/ │ │ │ │ ├── array-items-all-of/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── array-items-one-of-length-1/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── default/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── enum-null/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── enum-resolver-permissive/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── schema-const/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── type-format/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-bigint-min-max/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-circular-ref/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-circular-ref-2/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-dates/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-metadata/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-string-constraints-union/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-types/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ └── validators-union-merge/ │ │ │ │ └── zod.gen.ts │ │ │ ├── package.json │ │ │ ├── test/ │ │ │ │ ├── 3.0.x.test.ts │ │ │ │ ├── 3.1.x.test.ts │ │ │ │ ├── openapi.test.ts │ │ │ │ └── utils.ts │ │ │ ├── tsconfig.json │ │ │ ├── turbo.json │ │ │ └── vitest.setup.ts │ │ └── v4/ │ │ ├── .gitignore │ │ ├── __snapshots__/ │ │ │ ├── 2.0.x/ │ │ │ │ ├── mini/ │ │ │ │ │ ├── array-items-all-of/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── default/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ └── type-format/ │ │ │ │ │ ├── client/ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── core/ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ ├── transformers.gen.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── v3/ │ │ │ │ │ ├── array-items-all-of/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── default/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ └── type-format/ │ │ │ │ │ ├── client/ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── core/ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ ├── transformers.gen.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── zod.gen.ts │ │ │ │ └── v4/ │ │ │ │ ├── array-items-all-of/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── default/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ └── type-format/ │ │ │ │ ├── client/ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── client.gen.ts │ │ │ │ ├── core/ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── index.ts │ │ │ │ ├── sdk.gen.ts │ │ │ │ ├── transformers.gen.ts │ │ │ │ ├── types.gen.ts │ │ │ │ └── zod.gen.ts │ │ │ ├── 3.0.x/ │ │ │ │ ├── mini/ │ │ │ │ │ ├── array-items-all-of/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── array-items-one-of-length-1/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── circular/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── default/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── enum-null/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── type-format/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ ├── transformers.gen.ts │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ └── validators/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── v3/ │ │ │ │ │ ├── array-items-all-of/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── array-items-one-of-length-1/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── circular/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── default/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── enum-null/ │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ ├── type-format/ │ │ │ │ │ │ ├── client/ │ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── core/ │ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ │ ├── transformers.gen.ts │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ └── zod.gen.ts │ │ │ │ │ └── validators/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ └── v4/ │ │ │ │ ├── array-items-all-of/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── array-items-one-of-length-1/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── circular/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── default/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── enum-null/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── type-format/ │ │ │ │ │ ├── client/ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── core/ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ ├── transformers.gen.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── zod.gen.ts │ │ │ │ └── validators/ │ │ │ │ └── zod.gen.ts │ │ │ └── 3.1.x/ │ │ │ ├── mini/ │ │ │ │ ├── array-items-all-of/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── array-items-one-of-length-1/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── default/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── defaults-with-ref-and-anyof/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── enum-null/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── enum-resolver-permissive/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── schema-const/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── string-with-format/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── string-with-guid-format/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── type-format/ │ │ │ │ │ ├── client/ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── core/ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ ├── transformers.gen.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-bigint-min-max/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-circular-ref/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-circular-ref-2/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-dates/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-metadata/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-metadata-fn/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-string-constraints-union/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-types/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-union-merge/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ └── webhooks/ │ │ │ │ └── zod.gen.ts │ │ │ ├── v3/ │ │ │ │ ├── array-items-all-of/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── array-items-one-of-length-1/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── default/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── defaults-with-ref-and-anyof/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── enum-null/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── enum-resolver-permissive/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── schema-const/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── string-with-format/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── string-with-guid-format/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── type-format/ │ │ │ │ │ ├── client/ │ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── core/ │ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ │ └── utils.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── sdk.gen.ts │ │ │ │ │ ├── transformers.gen.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-bigint-min-max/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-circular-ref/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-circular-ref-2/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-dates/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-metadata/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-metadata-fn/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-string-constraints-union/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-types/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ ├── validators-union-merge/ │ │ │ │ │ └── zod.gen.ts │ │ │ │ └── webhooks/ │ │ │ │ └── zod.gen.ts │ │ │ └── v4/ │ │ │ ├── array-items-all-of/ │ │ │ │ └── zod.gen.ts │ │ │ ├── array-items-one-of-length-1/ │ │ │ │ └── zod.gen.ts │ │ │ ├── default/ │ │ │ │ └── zod.gen.ts │ │ │ ├── defaults-with-ref-and-anyof/ │ │ │ │ └── zod.gen.ts │ │ │ ├── enum-null/ │ │ │ │ └── zod.gen.ts │ │ │ ├── enum-resolver-permissive/ │ │ │ │ └── zod.gen.ts │ │ │ ├── schema-const/ │ │ │ │ └── zod.gen.ts │ │ │ ├── string-with-format/ │ │ │ │ └── zod.gen.ts │ │ │ ├── string-with-guid-format/ │ │ │ │ └── zod.gen.ts │ │ │ ├── type-format/ │ │ │ │ ├── client/ │ │ │ │ │ ├── client.gen.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── client.gen.ts │ │ │ │ ├── core/ │ │ │ │ │ ├── auth.gen.ts │ │ │ │ │ ├── bodySerializer.gen.ts │ │ │ │ │ ├── params.gen.ts │ │ │ │ │ ├── pathSerializer.gen.ts │ │ │ │ │ ├── queryKeySerializer.gen.ts │ │ │ │ │ ├── serverSentEvents.gen.ts │ │ │ │ │ ├── types.gen.ts │ │ │ │ │ └── utils.gen.ts │ │ │ │ ├── index.ts │ │ │ │ ├── sdk.gen.ts │ │ │ │ ├── transformers.gen.ts │ │ │ │ ├── types.gen.ts │ │ │ │ └── zod.gen.ts │ │ │ ├── validators/ │ │ │ │ └── zod.gen.ts │ │ │ ├── validators-bigint-min-max/ │ │ │ │ └── zod.gen.ts │ │ │ ├── validators-circular-ref/ │ │ │ │ └── zod.gen.ts │ │ │ ├── validators-circular-ref-2/ │ │ │ │ └── zod.gen.ts │ │ │ ├── validators-dates/ │ │ │ │ └── zod.gen.ts │ │ │ ├── validators-metadata/ │ │ │ │ └── zod.gen.ts │ │ │ ├── validators-metadata-fn/ │ │ │ │ └── zod.gen.ts │ │ │ ├── validators-string-constraints-union/ │ │ │ │ └── zod.gen.ts │ │ │ ├── validators-types/ │ │ │ │ └── zod.gen.ts │ │ │ ├── validators-union-merge/ │ │ │ │ └── zod.gen.ts │ │ │ └── webhooks/ │ │ │ └── zod.gen.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── 3.0.x.test.ts │ │ │ ├── 3.1.x.test.ts │ │ │ ├── formats.test.ts │ │ │ ├── openapi.test.ts │ │ │ └── utils.ts │ │ ├── tsconfig.json │ │ ├── turbo.json │ │ └── vitest.setup.ts │ ├── shared/ │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── package.json │ │ ├── src/ │ │ │ ├── __tests__/ │ │ │ │ ├── cli.test.ts │ │ │ │ ├── error.test.ts │ │ │ │ └── getSpec.test.ts │ │ │ ├── cli.ts │ │ │ ├── config/ │ │ │ │ ├── engine.ts │ │ │ │ ├── input/ │ │ │ │ │ ├── __tests__/ │ │ │ │ │ │ ├── input.test.ts │ │ │ │ │ │ └── path.test.ts │ │ │ │ │ ├── input.ts │ │ │ │ │ ├── path.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── logs.ts │ │ │ │ ├── output/ │ │ │ │ │ ├── postprocess.ts │ │ │ │ │ ├── source/ │ │ │ │ │ │ ├── config.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── parser/ │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── filters.ts │ │ │ │ │ ├── patch.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── shared.ts │ │ │ │ └── utils/ │ │ │ │ ├── config.ts │ │ │ │ └── dependencies.ts │ │ │ ├── debug/ │ │ │ │ ├── graph.ts │ │ │ │ ├── index.ts │ │ │ │ └── ir.ts │ │ │ ├── error.ts │ │ │ ├── fs.ts │ │ │ ├── getSpec.ts │ │ │ ├── graph/ │ │ │ │ ├── __tests__/ │ │ │ │ │ └── walk.test.ts │ │ │ │ ├── index.ts │ │ │ │ ├── types/ │ │ │ │ │ ├── graph.ts │ │ │ │ │ └── walk.ts │ │ │ │ └── walk.ts │ │ │ ├── index.ts │ │ │ ├── ir/ │ │ │ │ ├── __tests__/ │ │ │ │ │ ├── graph.test.ts │ │ │ │ │ ├── mediaType.test.ts │ │ │ │ │ ├── pagination.test.ts │ │ │ │ │ └── schema.test.ts │ │ │ │ ├── context.ts │ │ │ │ ├── graph.ts │ │ │ │ ├── intents.ts │ │ │ │ ├── mediaType.ts │ │ │ │ ├── operation.ts │ │ │ │ ├── pagination.ts │ │ │ │ ├── parameter.ts │ │ │ │ ├── schema-processor.ts │ │ │ │ ├── schema-walker.ts │ │ │ │ ├── schema.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ ├── openApi/ │ │ │ │ ├── 2.0.x/ │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── parser/ │ │ │ │ │ │ ├── __tests__/ │ │ │ │ │ │ │ ├── operation.test.ts │ │ │ │ │ │ │ ├── server.test.ts │ │ │ │ │ │ │ └── validate.test.ts │ │ │ │ │ │ ├── filter.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── mediaType.ts │ │ │ │ │ │ ├── operation.ts │ │ │ │ │ │ ├── pagination.ts │ │ │ │ │ │ ├── parameter.ts │ │ │ │ │ │ ├── schema.ts │ │ │ │ │ │ ├── server.ts │ │ │ │ │ │ └── validate.ts │ │ │ │ │ └── types/ │ │ │ │ │ ├── json-schema-draft-4.ts │ │ │ │ │ ├── openapi-spec-extensions.ts │ │ │ │ │ └── spec.ts │ │ │ │ ├── 3.0.x/ │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── parser/ │ │ │ │ │ │ ├── __tests__/ │ │ │ │ │ │ │ ├── operation.test.ts │ │ │ │ │ │ │ └── validate.test.ts │ │ │ │ │ │ ├── filter.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── mediaType.ts │ │ │ │ │ │ ├── operation.ts │ │ │ │ │ │ ├── pagination.ts │ │ │ │ │ │ ├── parameter.ts │ │ │ │ │ │ ├── requestBody.ts │ │ │ │ │ │ ├── schema.ts │ │ │ │ │ │ ├── server.ts │ │ │ │ │ │ └── validate.ts │ │ │ │ │ └── types/ │ │ │ │ │ └── spec.ts │ │ │ │ ├── 3.1.x/ │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── parser/ │ │ │ │ │ │ ├── __tests__/ │ │ │ │ │ │ │ ├── operation.test.ts │ │ │ │ │ │ │ └── validate.test.ts │ │ │ │ │ │ ├── filter.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── mediaType.ts │ │ │ │ │ │ ├── operation.ts │ │ │ │ │ │ ├── pagination.ts │ │ │ │ │ │ ├── parameter.ts │ │ │ │ │ │ ├── requestBody.ts │ │ │ │ │ │ ├── schema.ts │ │ │ │ │ │ ├── server.ts │ │ │ │ │ │ ├── validate.ts │ │ │ │ │ │ └── webhook.ts │ │ │ │ │ └── types/ │ │ │ │ │ ├── json-schema-draft-2020-12.ts │ │ │ │ │ ├── spec-extensions.ts │ │ │ │ │ └── spec.ts │ │ │ │ ├── __tests__/ │ │ │ │ │ ├── index.test.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── index.ts │ │ │ │ ├── shared/ │ │ │ │ │ ├── graph/ │ │ │ │ │ │ └── meta.ts │ │ │ │ │ ├── locations/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── operation.ts │ │ │ │ │ ├── transforms/ │ │ │ │ │ │ ├── enums.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── propertiesRequiredByDefault.ts │ │ │ │ │ │ ├── readWrite.ts │ │ │ │ │ │ ├── schemas.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ │ ├── types/ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── openapi-spec-extensions.ts │ │ │ │ │ │ ├── schema.ts │ │ │ │ │ │ └── state.ts │ │ │ │ │ └── utils/ │ │ │ │ │ ├── __tests__/ │ │ │ │ │ │ ├── deepEqual.test.ts │ │ │ │ │ │ ├── graph.test.ts │ │ │ │ │ │ ├── operation.test.ts │ │ │ │ │ │ ├── patch.test.ts │ │ │ │ │ │ └── sanitize.test.ts │ │ │ │ │ ├── deepEqual.ts │ │ │ │ │ ├── discriminator.ts │ │ │ │ │ ├── filter.ts │ │ │ │ │ ├── graph.ts │ │ │ │ │ ├── operation.ts │ │ │ │ │ ├── parameter.ts │ │ │ │ │ ├── patch.ts │ │ │ │ │ ├── schema.ts │ │ │ │ │ ├── schemaChildRelationships.ts │ │ │ │ │ ├── transforms.ts │ │ │ │ │ └── validator.ts │ │ │ │ └── types.ts │ │ │ ├── parser/ │ │ │ │ └── hooks.ts │ │ │ ├── plugins/ │ │ │ │ ├── shared/ │ │ │ │ │ ├── types/ │ │ │ │ │ │ ├── instance.ts │ │ │ │ │ │ └── schema.ts │ │ │ │ │ └── utils/ │ │ │ │ │ ├── config.ts │ │ │ │ │ └── instance.ts │ │ │ │ ├── symbol.ts │ │ │ │ └── types.ts │ │ │ ├── tsConfig.ts │ │ │ ├── types/ │ │ │ │ ├── logs.ts │ │ │ │ └── watch.ts │ │ │ └── utils/ │ │ │ ├── __tests__/ │ │ │ │ ├── minHeap.test.ts │ │ │ │ ├── path.test.ts │ │ │ │ ├── ref.test.ts │ │ │ │ └── url.test.ts │ │ │ ├── escape.ts │ │ │ ├── exports.ts │ │ │ ├── header.ts │ │ │ ├── input/ │ │ │ │ ├── __tests__/ │ │ │ │ │ ├── readme.test.ts │ │ │ │ │ └── scalar.test.ts │ │ │ │ ├── heyApi.ts │ │ │ │ ├── index.ts │ │ │ │ ├── readme.ts │ │ │ │ └── scalar.ts │ │ │ ├── minHeap.ts │ │ │ ├── naming/ │ │ │ │ ├── __tests__/ │ │ │ │ │ └── naming.test.ts │ │ │ │ ├── naming.ts │ │ │ │ └── types.ts │ │ │ ├── path.ts │ │ │ ├── ref.ts │ │ │ └── url.ts │ │ ├── tsconfig.json │ │ ├── tsdown.config.ts │ │ └── turbo.json │ ├── types/ │ │ ├── CHANGELOG.md │ │ ├── package.json │ │ ├── src/ │ │ │ └── index.ts │ │ └── tsconfig.json │ └── vite-plugin/ │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── package.json │ ├── src/ │ │ └── index.ts │ ├── tsconfig.base.json │ ├── tsconfig.json │ └── tsdown.config.ts ├── patches/ │ └── vitepress.patch ├── pnpm-workspace.yaml ├── pyproject.toml ├── renovate.json ├── scripts/ │ ├── examples-check.sh │ ├── examples-generate.sh │ ├── publish-preview-packages.sh │ └── update-contributors.sh ├── specs/ │ ├── 2.0.x/ │ │ ├── additional-properties-false.json │ │ ├── additional-properties-true.json │ │ ├── array-items-all-of.yaml │ │ ├── body-response-text-plain.yaml │ │ ├── enum-names-values.json │ │ ├── exclude-deprecated.yaml │ │ ├── external-shared.json │ │ ├── external.yaml │ │ ├── form-data.json │ │ ├── full.yaml │ │ ├── invalid/ │ │ │ └── operationId-unique.yaml │ │ ├── ref-deep.yaml │ │ ├── schema-unknown.yaml │ │ ├── sdk-instance.yaml │ │ ├── sdk-nested-classes.yaml │ │ ├── security-api-key.yaml │ │ ├── security-basic.json │ │ ├── security-oauth2.yaml │ │ ├── servers-base-path.yaml │ │ ├── servers-host.yaml │ │ ├── servers.yaml │ │ ├── transforms-read-write.yaml │ │ ├── transforms-schemas-name.yaml │ │ └── type-format.yaml │ ├── 3.0.x/ │ │ ├── additional-properties-false.json │ │ ├── additional-properties-true.json │ │ ├── additional-properties-undefined.json │ │ ├── array-items-all-of.yaml │ │ ├── array-items-one-of-length-1.yaml │ │ ├── array-nested-one-of.yaml │ │ ├── body-binary-format.yaml │ │ ├── body-response-text-plain.yaml │ │ ├── case.yaml │ │ ├── circular.yaml │ │ ├── components-request-bodies.json │ │ ├── content-binary.json │ │ ├── content-types.yaml │ │ ├── discriminator-all-of.yaml │ │ ├── discriminator-allof-inline.json │ │ ├── discriminator-allof-nested.json │ │ ├── discriminator-any-of.yaml │ │ ├── discriminator-mapped-many.yaml │ │ ├── discriminator-non-string.yaml │ │ ├── discriminator-object-self-mapped.json │ │ ├── discriminator-one-of.yaml │ │ ├── dutchie.json │ │ ├── enum-escape.json │ │ ├── enum-inline.json │ │ ├── enum-names-values.json │ │ ├── enum-null.json │ │ ├── exclude-deprecated.yaml │ │ ├── external-shared.json │ │ ├── external.yaml │ │ ├── full.yaml │ │ ├── internal-name-conflict.json │ │ ├── invalid/ │ │ │ ├── operationId-unique.yaml │ │ │ ├── servers-array.yaml │ │ │ ├── servers-entry.yaml │ │ │ └── servers-required.yaml │ │ ├── operation-204.json │ │ ├── orpc.yaml │ │ ├── parameter-explode-false.json │ │ ├── ref-deep.yaml │ │ ├── ref-duplicate-url.yaml │ │ ├── sdk-instance.yaml │ │ ├── sdk-method-class-conflict.yaml │ │ ├── sdk-nested-classes.yaml │ │ ├── security-api-key.yaml │ │ ├── security-http-bearer.json │ │ ├── security-oauth2.yaml │ │ ├── security-open-id-connect.yaml │ │ ├── servers.yaml │ │ ├── transformers-all-of.yaml │ │ ├── transformers-allof-response-wrapper.json │ │ ├── transformers-any-of-null.json │ │ ├── transformers-array.json │ │ ├── transformers-recursive.json │ │ ├── transforms-read-write.yaml │ │ ├── transforms-schemas-name-collision.yaml │ │ ├── transforms-schemas-name.yaml │ │ ├── type-format.yaml │ │ ├── type-invalid.json │ │ └── validators.json │ ├── 3.1.x/ │ │ ├── additional-properties-false.json │ │ ├── additional-properties-true.json │ │ ├── additional-properties-undefined.json │ │ ├── additional-properties.yaml │ │ ├── array-items-all-of.yaml │ │ ├── array-items-one-of-length-1.yaml │ │ ├── array-nested-one-of.yaml │ │ ├── body-nested-array.yaml │ │ ├── body-response-text-plain.yaml │ │ ├── case.yaml │ │ ├── components-request-bodies.json │ │ ├── const-values.yaml │ │ ├── const.json │ │ ├── content-binary.json │ │ ├── content-media-type.yaml │ │ ├── content-types.yaml │ │ ├── defaults-with-ref-and-anyof.json │ │ ├── discriminator-all-of.yaml │ │ ├── discriminator-allof-inline.json │ │ ├── discriminator-allof-nested.json │ │ ├── discriminator-any-of.yaml │ │ ├── discriminator-mapped-many.yaml │ │ ├── discriminator-non-string.yaml │ │ ├── discriminator-object-self-mapped.json │ │ ├── discriminator-one-of-read-write.yaml │ │ ├── discriminator-one-of.yaml │ │ ├── duplicate-null.json │ │ ├── enum-escape.json │ │ ├── enum-inline.yaml │ │ ├── enum-names-values.yaml │ │ ├── enum-null.json │ │ ├── exclude-deprecated.yaml │ │ ├── external-shared.json │ │ ├── external.yaml │ │ ├── formats.yaml │ │ ├── full.yaml │ │ ├── headers.yaml │ │ ├── integer-formats.yaml │ │ ├── internal-name-conflict.json │ │ ├── invalid/ │ │ │ ├── operationId-unique.yaml │ │ │ ├── servers-array.yaml │ │ │ ├── servers-entry.yaml │ │ │ └── servers-required.yaml │ │ ├── min-max-constraints.yaml │ │ ├── negative-property-names.json │ │ ├── object-properties-all-of.json │ │ ├── object-properties-any-of.json │ │ ├── object-properties-one-of.json │ │ ├── object-property-names.yaml │ │ ├── openai.yaml │ │ ├── opencode.yaml │ │ ├── operation-204.json │ │ ├── orpc.yaml │ │ ├── pagination-ref.yaml │ │ ├── parameter-explode-false.json │ │ ├── parameter-tuple.json │ │ ├── parser-filters.yaml │ │ ├── pattern-properties.json │ │ ├── ref-deep.yaml │ │ ├── ref-type.json │ │ ├── required-all-of-ref.json │ │ ├── required-any-of-ref.json │ │ ├── required-one-of-ref.json │ │ ├── schema-const.yaml │ │ ├── sdk-instance.yaml │ │ ├── sdk-nested-classes.yaml │ │ ├── sdk-nested-conflict.yaml │ │ ├── sdk-signatures.yaml │ │ ├── security-api-key.yaml │ │ ├── security-http-bearer.json │ │ ├── security-oauth2.yaml │ │ ├── security-open-id-connect.yaml │ │ ├── servers.yaml │ │ ├── sse-post.yaml │ │ ├── string-with-format.yaml │ │ ├── string-with-guid-format.yaml │ │ ├── time-format.yaml │ │ ├── transformers-all-of.yaml │ │ ├── transformers-allof-response-wrapper.json │ │ ├── transformers-any-of-null.json │ │ ├── transformers-array.json │ │ ├── transformers-one-of-discriminated.yaml │ │ ├── transformers-recursive.json │ │ ├── transformers.json │ │ ├── transforms-read-write-nested.yaml │ │ ├── transforms-read-write-response.yaml │ │ ├── transforms-read-write-unevaluated.yaml │ │ ├── transforms-read-write.yaml │ │ ├── transforms-schemas-name.yaml │ │ ├── type-format.yaml │ │ ├── type-invalid.json │ │ ├── union-types.json │ │ ├── validators-bigint-min-max.json │ │ ├── validators-circular-ref-2.yaml │ │ ├── validators-circular-ref.json │ │ ├── validators-string-constraints-union.json │ │ ├── validators-union-merge.json │ │ ├── validators.yaml │ │ └── zoom-video-sdk.json │ └── json-schema-ref-parser/ │ ├── ResolutionStep.v1_0_1.yaml │ ├── circular-ref-with-description.json │ ├── external-with-siblings.json │ ├── main-with-external-siblings.json │ ├── multiple-refs.json │ ├── openapi-paths-ref.json │ ├── path-parameter.json │ ├── redfish-like.yaml │ ├── sibling-schema-collision-other.json │ ├── sibling-schema-collision-root.json │ ├── sibling-schema-collision-versioned.json │ ├── sibling-schema-collision-wrapper.json │ ├── sibling-schema-direct-root.json │ ├── sibling-schema-extended-root.json │ ├── sibling-schema-extended-wrapper.json │ ├── sibling-schema-multi-root.json │ ├── sibling-schema-multi-versioned.json │ ├── sibling-schema-multi-wrapper.json │ ├── sibling-schema-root.json │ ├── sibling-schema-versioned.json │ ├── sibling-schema-wrapper.json │ └── test-siblings.yaml ├── tsconfig.base.json ├── tsconfig.json ├── turbo.json ├── vercel.json └── vitest.config.ts