├── .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
│ └── release.yml
├── .gitignore
├── .husky
└── pre-commit
├── .npmrc
├── .nvmrc
├── .prettierignore
├── .vscode
├── extensions.json
├── launch.json
└── settings.json
├── CODE_OF_CONDUCT.md
├── LICENSE.md
├── README.md
├── __tests__
└── changelog.test.ts
├── dev
├── graph-hotspots.js
├── hey-api.ts
├── json-to-dot.js
├── openapi-ts.config.ts
├── package.json
├── playground.ts
├── tsconfig.json
└── turbo.json
├── docs
├── .contributorsignore
├── .contributorssince
├── .gitignore
├── .vitepress
│ ├── config
│ │ ├── en.ts
│ │ ├── index.ts
│ │ └── shared.ts
│ └── theme
│ │ ├── components
│ │ ├── AuthorsList.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.md
│ ├── clients
│ │ ├── angular.md
│ │ ├── angular
│ │ │ └── v19.md
│ │ ├── axios.md
│ │ ├── custom.md
│ │ ├── effect.md
│ │ ├── fetch.md
│ │ ├── got.md
│ │ ├── ky.md
│ │ ├── next-js.md
│ │ ├── nuxt.md
│ │ └── ofetch.md
│ ├── community
│ │ ├── contributing.md
│ │ ├── contributing
│ │ │ ├── building.md
│ │ │ ├── developing.md
│ │ │ └── testing.md
│ │ └── spotlight.md
│ ├── configuration.md
│ ├── configuration
│ │ ├── input.md
│ │ ├── output.md
│ │ └── parser.md
│ ├── core.md
│ ├── get-started.md
│ ├── integrations.md
│ ├── license.md
│ ├── migrating.md
│ ├── mocks.md
│ ├── output.md
│ ├── plugins
│ │ ├── adonis.md
│ │ ├── ajv.md
│ │ ├── angular.md
│ │ ├── angular
│ │ │ └── v19.md
│ │ ├── arktype.md
│ │ ├── chance.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.md
│ │ ├── zod
│ │ │ ├── mini.md
│ │ │ └── v3.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
│ ├── blueprint.png
│ ├── bricks.png
│ ├── cella-logo-wordmark.png
│ ├── cella-logo-wordmark.svg
│ ├── fastapi-logo-wordmark.svg
│ ├── github-mark-white.svg
│ ├── github-mark.svg
│ ├── hero.png
│ ├── images
│ │ ├── blueprint-300w.png
│ │ ├── blueprint-640w.png
│ │ ├── bricks-300w.png
│ │ ├── bricks-640w.png
│ │ ├── cella-logo-wordmark-1200w.png
│ │ ├── cella-logo-wordmark-1200w.webp
│ │ ├── cella-logo-wordmark-480w.jpeg
│ │ ├── cella-logo-wordmark-480w.webp
│ │ ├── cella-logo-wordmark-768w.webp
│ │ ├── hero-300w.png
│ │ ├── hero-640w.png
│ │ ├── hero-920w.png
│ │ ├── kinde-logo-wordmark-1200w.png
│ │ ├── kinde-logo-wordmark-1200w.webp
│ │ ├── kinde-logo-wordmark-480w.jpeg
│ │ ├── kinde-logo-wordmark-480w.webp
│ │ ├── kinde-logo-wordmark-768w.webp
│ │ ├── kinde-logo-wordmark-dark-1200w.png
│ │ ├── kinde-logo-wordmark-dark-1200w.webp
│ │ ├── kinde-logo-wordmark-dark-480w.jpeg
│ │ ├── kinde-logo-wordmark-dark-480w.webp
│ │ ├── kinde-logo-wordmark-dark-768w.webp
│ │ ├── logo-16w.png
│ │ ├── logo-300w.png
│ │ ├── logo-32w.png
│ │ ├── logo-48w.png
│ │ ├── logo-640w.png
│ │ ├── logo-astronaut-300w.png
│ │ ├── openapi-ts-hero-1280w.png
│ │ ├── openapi-ts-hero-300w.png
│ │ ├── openapi-ts-hero-640w.png
│ │ ├── openstatus-logo-1200w.png
│ │ ├── openstatus-logo-1200w.webp
│ │ ├── openstatus-logo-480w.jpeg
│ │ ├── openstatus-logo-480w.webp
│ │ ├── openstatus-logo-768w.webp
│ │ ├── scalar-logo-wordmark-1200w.png
│ │ ├── scalar-logo-wordmark-1200w.webp
│ │ ├── scalar-logo-wordmark-480w.jpeg
│ │ ├── scalar-logo-wordmark-480w.webp
│ │ ├── scalar-logo-wordmark-768w.webp
│ │ ├── stainless-logo-wordmark-1200w.png
│ │ ├── stainless-logo-wordmark-1200w.webp
│ │ ├── stainless-logo-wordmark-480w.jpeg
│ │ ├── stainless-logo-wordmark-480w.webp
│ │ ├── stainless-logo-wordmark-768w.webp
│ │ ├── vercel-logo-1200w.png
│ │ ├── vercel-logo-1200w.webp
│ │ ├── vercel-logo-480w.jpeg
│ │ ├── vercel-logo-480w.webp
│ │ └── vercel-logo-768w.webp
│ ├── json-schema-white.svg
│ ├── kinde-logo-wordmark-dark.png
│ ├── kinde-logo-wordmark.png
│ ├── logo-astronaut.png
│ ├── logo-dark.svg
│ ├── logo-light.svg
│ ├── logo.png
│ ├── logo.svg
│ ├── openapi-ts-hero.png
│ ├── openapi.svg
│ ├── opencode-logo-wordmark.svg
│ ├── openstatus-logo.svg
│ ├── robots.txt
│ ├── scalar-logo-wordmark.png
│ ├── scalar-logo-wordmark.svg
│ ├── stainless-logo-wordmark.png
│ ├── stainless-logo.png
│ ├── tanstack-light.svg
│ ├── ts-logo-128.svg
│ └── vercel-logo.svg
├── scripts
│ └── optimize-images.js
└── tsconfig.json
├── eslint-rules
└── local-paths.js
├── eslint.config.js
├── examples
├── README.md
├── openapi-ts-angular-common
│ ├── .editorconfig
│ ├── .gitignore
│ ├── .vscode
│ │ ├── extensions.json
│ │ ├── launch.json
│ │ └── tasks.json
│ ├── README.md
│ ├── angular.json
│ ├── openapi-ts.config.ts
│ ├── package-lock.json
│ ├── package.json
│ ├── public
│ │ └── favicon.ico
│ ├── 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.gen.ts
│ │ │ ├── client
│ │ │ │ ├── client.gen.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── types.gen.ts
│ │ │ │ └── utils.gen.ts
│ │ │ ├── core
│ │ │ │ ├── auth.gen.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
│ ├── .editorconfig
│ ├── .gitignore
│ ├── .vscode
│ │ ├── extensions.json
│ │ ├── launch.json
│ │ └── tasks.json
│ ├── README.md
│ ├── angular.json
│ ├── openapi-ts.config.ts
│ ├── package-lock.json
│ ├── package.json
│ ├── public
│ │ └── favicon.ico
│ ├── 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.gen.ts
│ │ │ ├── client
│ │ │ │ ├── client.gen.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── types.gen.ts
│ │ │ │ └── utils.gen.ts
│ │ │ ├── core
│ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ ├── client
│ │ │ │ ├── client.gen.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── types.gen.ts
│ │ │ │ └── utils.gen.ts
│ │ │ ├── core
│ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ ├── client
│ │ │ │ ├── client.gen.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── types.gen.ts
│ │ │ │ └── utils.gen.ts
│ │ │ ├── core
│ │ │ │ ├── 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.gen.ts
│ │ │ ├── client
│ │ │ │ ├── client.gen.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── types.gen.ts
│ │ │ │ └── utils.gen.ts
│ │ │ ├── core
│ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ ├── client
│ │ │ │ ├── client.gen.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── types.gen.ts
│ │ │ │ └── utils.gen.ts
│ │ │ ├── core
│ │ │ │ ├── auth.gen.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-next
│ ├── .gitignore
│ ├── CHANGELOG.md
│ ├── README.md
│ ├── app
│ │ ├── favicon.ico
│ │ ├── globals.css
│ │ ├── layout.tsx
│ │ ├── page.tsx
│ │ └── pet
│ │ │ └── [id]
│ │ │ └── page.tsx
│ ├── next.config.ts
│ ├── openapi-ts.config.ts
│ ├── package.json
│ ├── postcss.config.mjs
│ ├── public
│ │ ├── file.svg
│ │ ├── globe.svg
│ │ ├── next.svg
│ │ ├── vercel.svg
│ │ └── window.svg
│ ├── src
│ │ ├── client
│ │ │ ├── client.gen.ts
│ │ │ ├── client
│ │ │ │ ├── client.gen.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── types.gen.ts
│ │ │ │ └── utils.gen.ts
│ │ │ ├── core
│ │ │ │ ├── auth.gen.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
│ │ ├── favicon.ico
│ │ └── 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.gen.ts
│ │ │ ├── client
│ │ │ │ ├── client.gen.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── types.gen.ts
│ │ │ │ └── utils.gen.ts
│ │ │ ├── core
│ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ ├── client
│ │ │ │ ├── client.gen.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── types.gen.ts
│ │ │ │ └── utils.gen.ts
│ │ │ ├── core
│ │ │ │ ├── auth.gen.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
│ ├── .prettierrc.json
│ ├── .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.gen.ts
│ │ │ ├── client
│ │ │ │ ├── client.gen.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── types.gen.ts
│ │ │ │ └── utils.gen.ts
│ │ │ ├── core
│ │ │ │ ├── auth.gen.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-lock.json
│ ├── package.json
│ ├── public
│ │ └── favicon.ico
│ ├── 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.gen.ts
│ │ │ ├── client
│ │ │ │ ├── client.gen.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── types.gen.ts
│ │ │ │ └── utils.gen.ts
│ │ │ ├── core
│ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ ├── client
│ │ │ │ ├── client.gen.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── types.gen.ts
│ │ │ │ └── utils.gen.ts
│ │ │ ├── core
│ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ ├── client
│ │ │ │ ├── client.gen.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── types.gen.ts
│ │ │ │ └── utils.gen.ts
│ │ │ ├── core
│ │ │ │ ├── auth.gen.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
│ │ ├── lib
│ │ │ └── images
│ │ │ │ ├── github.svg
│ │ │ │ ├── svelte-logo.svg
│ │ │ │ ├── svelte-welcome.png
│ │ │ │ └── svelte-welcome.webp
│ │ └── 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
│ │ ├── favicon.png
│ │ └── robots.txt
│ ├── svelte.config.js
│ ├── tsconfig.json
│ └── vite.config.ts
└── openapi-ts-tanstack-vue-query
│ ├── .eslintrc.cjs
│ ├── .gitignore
│ ├── .prettierrc.json
│ ├── .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.gen.ts
│ │ ├── client
│ │ │ ├── client.gen.ts
│ │ │ ├── index.ts
│ │ │ ├── types.gen.ts
│ │ │ └── utils.gen.ts
│ │ ├── core
│ │ │ ├── auth.gen.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
│ │ │ ├── project.test.ts
│ │ │ ├── refs.test.ts
│ │ │ └── symbols.test.ts
│ │ ├── bindings.d.ts
│ │ ├── brands.ts
│ │ ├── debug.ts
│ │ ├── extensions.d.ts
│ │ ├── files
│ │ │ ├── file.ts
│ │ │ ├── registry.ts
│ │ │ ├── rules.d.ts
│ │ │ └── types.d.ts
│ │ ├── guards.ts
│ │ ├── index.ts
│ │ ├── languages
│ │ │ ├── extensions.ts
│ │ │ ├── resolvers.ts
│ │ │ └── types.d.ts
│ │ ├── nodes
│ │ │ ├── node.d.ts
│ │ │ ├── registry.ts
│ │ │ └── types.d.ts
│ │ ├── output.d.ts
│ │ ├── planner
│ │ │ ├── analyzer.ts
│ │ │ ├── planner.ts
│ │ │ ├── resolvers.ts
│ │ │ └── types.d.ts
│ │ ├── project
│ │ │ ├── namespace.ts
│ │ │ ├── project.ts
│ │ │ └── types.d.ts
│ │ ├── refs
│ │ │ ├── refs.ts
│ │ │ └── types.d.ts
│ │ ├── renderer.d.ts
│ │ └── symbols
│ │ │ ├── registry.ts
│ │ │ ├── symbol.ts
│ │ │ └── types.d.ts
│ ├── tsconfig.base.json
│ ├── tsconfig.json
│ ├── tsdown.config.ts
│ ├── turbo.json
│ └── vitest.config.ts
├── config-vite-base
│ ├── README.md
│ ├── package.json
│ ├── src
│ │ ├── index.ts
│ │ ├── vite.base.config.ts
│ │ └── vitest.base.config.ts
│ ├── tsconfig.json
│ └── tsdown.config.ts
├── 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
│ └── vitest.config.ts
├── nuxt
│ ├── CHANGELOG.md
│ ├── LICENSE.md
│ ├── README.md
│ ├── package.json
│ ├── src
│ │ └── module.ts
│ ├── tsconfig.base.json
│ ├── tsconfig.json
│ └── vitest.config.ts
├── openapi-ts-tests
│ ├── 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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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-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
│ │ │ │ │ ├── enum-names-values
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── exclude-deprecated
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── external
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── form-data
│ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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-class
│ │ │ │ │ │ │ │ ├── @angular
│ │ │ │ │ │ │ │ │ └── common.gen.ts
│ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ │ │ │ ├── @angular
│ │ │ │ │ │ │ │ └── common.gen.ts
│ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ ├── auth.gen.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-instance
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ │ │ ├── transformers
│ │ │ │ │ │ │ │ ├── type-format-valibot
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ │ │ │ └── type-format-zod
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ │ │ └── typescript
│ │ │ │ │ │ │ │ ├── transforms-read-write-custom-name
│ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ │ └── valibot
│ │ │ │ │ │ │ └── default
│ │ │ │ │ │ │ └── valibot.gen.ts
│ │ │ │ │ ├── schema-unknown
│ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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-base-path
│ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ ├── 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
│ │ │ │ │ │ └── valibot.gen.ts
│ │ │ │ │ ├── array-nested-one-of
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── body-response-text-plain
│ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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-any-of
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── discriminator-mapped-many
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── discriminator-one-of
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── enum-escape
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── enum-inline-javascript
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── enum-inline-typescript
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── enum-inline
│ │ │ │ │ │ ├── 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-names-values
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── enum-null
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ └── valibot.gen.ts
│ │ │ │ │ ├── exclude-deprecated
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── external
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── internal-name-conflict
│ │ │ │ │ │ ├── @tanstack
│ │ │ │ │ │ │ └── react-query.gen.ts
│ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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-axios
│ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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-class
│ │ │ │ │ │ │ │ ├── @angular
│ │ │ │ │ │ │ │ │ └── common.gen.ts
│ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ │ │ │ ├── @angular
│ │ │ │ │ │ │ │ └── common.gen.ts
│ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ ├── auth.gen.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-instance
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ │ │ ├── transformers
│ │ │ │ │ │ │ │ ├── type-format-valibot
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ │ │ │ └── type-format-zod
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ │ │ └── typescript
│ │ │ │ │ │ │ │ ├── transforms-read-write-custom-name
│ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ │ └── valibot
│ │ │ │ │ │ │ └── default
│ │ │ │ │ │ │ └── valibot.gen.ts
│ │ │ │ │ ├── security-api-key
│ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ ├── type-invalid
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ └── validators
│ │ │ │ │ │ └── valibot.gen.ts
│ │ │ │ ├── 3.1.x
│ │ │ │ │ ├── additional-properties-false
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── additional-properties-true-any
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ └── valibot.gen.ts
│ │ │ │ │ ├── array-nested-one-of
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── body-response-text-plain
│ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ │ │ ├── bundle
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── index.cjs
│ │ │ │ │ │ │ │ │ ├── index.d.cts
│ │ │ │ │ │ │ │ │ ├── index.d.mts
│ │ │ │ │ │ │ │ │ └── index.d.ts
│ │ │ │ │ │ │ │ ├── custom-client.gen.ts
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ ├── sdk.gen.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-types
│ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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-any-of
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── discriminator-mapped-many
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── discriminator-one-of
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── duplicate-null
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── enum-escape
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── enum-inline-javascript
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── enum-inline-typescript
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── enum-inline
│ │ │ │ │ │ ├── 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-names-values
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── enum-null
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ └── valibot.gen.ts
│ │ │ │ │ ├── exclude-deprecated
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── external
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── headers
│ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ ├── integer-formats
│ │ │ │ │ │ └── valibot.gen.ts
│ │ │ │ │ ├── internal-name-conflict
│ │ │ │ │ │ ├── @tanstack
│ │ │ │ │ │ │ └── react-query.gen.ts
│ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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-class
│ │ │ │ │ │ │ │ ├── @angular
│ │ │ │ │ │ │ │ │ └── common.gen.ts
│ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ │ │ │ ├── @angular
│ │ │ │ │ │ │ │ └── common.gen.ts
│ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ ├── auth.gen.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-instance
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ │ │ ├── transformers
│ │ │ │ │ │ │ │ ├── type-format-valibot
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ │ │ │ └── type-format-zod
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ │ │ └── typescript
│ │ │ │ │ │ │ │ ├── transforms-read-write-custom-name
│ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ │ └── valibot
│ │ │ │ │ │ │ └── default
│ │ │ │ │ │ │ └── valibot.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
│ │ │ │ │ │ └── valibot.gen.ts
│ │ │ │ │ ├── security-api-key
│ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ │ ├── valibot.gen.ts
│ │ │ │ │ │ └── zod.gen.ts
│ │ │ │ │ ├── time-format
│ │ │ │ │ │ └── valibot.gen.ts
│ │ │ │ │ ├── transformers-all-of
│ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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-nested
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── transforms-read-write-response
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── transforms-read-write
│ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ ├── client
│ │ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ ├── auth.gen.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
│ │ │ │ │ ├── type-invalid
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── union-types
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── types.gen.ts
│ │ │ │ │ ├── validators-bigint-min-max
│ │ │ │ │ │ └── valibot.gen.ts
│ │ │ │ │ ├── validators-circular-ref-2
│ │ │ │ │ │ └── valibot.gen.ts
│ │ │ │ │ ├── validators-circular-ref
│ │ │ │ │ │ └── valibot.gen.ts
│ │ │ │ │ ├── validators-metadata
│ │ │ │ │ │ └── valibot.gen.ts
│ │ │ │ │ ├── validators-types
│ │ │ │ │ │ └── valibot.gen.ts
│ │ │ │ │ ├── validators-union-merge
│ │ │ │ │ │ └── valibot.gen.ts
│ │ │ │ │ ├── validators
│ │ │ │ │ │ └── valibot.gen.ts
│ │ │ │ │ └── webhooks
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ ├── valibot.gen.ts
│ │ │ │ │ │ └── zod.gen.ts
│ │ │ │ └── plugins
│ │ │ │ │ └── @tanstack
│ │ │ │ │ └── meta
│ │ │ │ │ ├── @tanstack
│ │ │ │ │ ├── angular-query-experimental.gen.ts
│ │ │ │ │ ├── react-query.gen.ts
│ │ │ │ │ ├── solid-query.gen.ts
│ │ │ │ │ ├── svelte-query.gen.ts
│ │ │ │ │ └── vue-query.gen.ts
│ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ ├── client
│ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ ├── core
│ │ │ │ │ ├── auth.gen.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
│ │ │ ├── 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
│ │ │ ├── plugins.test.ts
│ │ │ ├── plugins
│ │ │ │ ├── @tanstack
│ │ │ │ │ └── meta-function.test.ts
│ │ │ │ └── valibot
│ │ │ │ │ ├── spec
│ │ │ │ │ ├── numberTypeToValibotSchema
│ │ │ │ │ │ ├── const-values.yaml
│ │ │ │ │ │ ├── formats.yaml
│ │ │ │ │ │ └── min-max-constraints.yaml
│ │ │ │ │ └── objectAdditionalProperties
│ │ │ │ │ │ └── additional-properties.yaml
│ │ │ │ │ ├── test-helper.ts
│ │ │ │ │ └── test
│ │ │ │ │ ├── numberTypeToValibotSchema
│ │ │ │ │ ├── const-values.test.ts
│ │ │ │ │ ├── formats.test.ts
│ │ │ │ │ └── min-max-constraints.test.ts
│ │ │ │ │ └── objectAdditionalProperties
│ │ │ │ │ └── additional-properties.test.ts
│ │ │ └── tsconfig
│ │ │ │ └── tsconfig.nodenext.json
│ │ ├── tsconfig.json
│ │ ├── tsconfig.test.json
│ │ ├── turbo.json
│ │ └── vitest.config.ts
│ ├── sdks
│ │ ├── .gitignore
│ │ ├── __snapshots__
│ │ │ ├── method-class-conflict
│ │ │ │ ├── class
│ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ ├── client
│ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ ├── core
│ │ │ │ │ │ ├── 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.gen.ts
│ │ │ │ │ ├── client
│ │ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ ├── core
│ │ │ │ │ │ ├── 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.gen.ts
│ │ │ │ │ ├── client
│ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ └── utils.gen.ts
│ │ │ │ │ ├── core
│ │ │ │ │ ├── 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.gen.ts
│ │ │ │ ├── client
│ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ └── utils.gen.ts
│ │ │ │ ├── core
│ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ ├── client
│ │ │ │ │ ├── client.gen.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── types.gen.ts
│ │ │ │ │ └── utils.gen.ts
│ │ │ │ ├── core
│ │ │ │ │ ├── auth.gen.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.gen.ts
│ │ │ │ ├── client
│ │ │ │ ├── client.gen.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── types.gen.ts
│ │ │ │ └── utils.gen.ts
│ │ │ │ ├── core
│ │ │ │ ├── auth.gen.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.config.ts
│ ├── tsconfig.base.json
│ ├── utils.ts
│ └── zod
│ │ ├── v3
│ │ ├── .gitignore
│ │ ├── __snapshots__
│ │ │ ├── 2.0.x
│ │ │ │ ├── mini
│ │ │ │ │ ├── array-items-all-of
│ │ │ │ │ │ └── zod.gen.ts
│ │ │ │ │ ├── default
│ │ │ │ │ │ └── zod.gen.ts
│ │ │ │ │ └── type-format-zod
│ │ │ │ │ │ └── zod.gen.ts
│ │ │ │ ├── v3
│ │ │ │ │ ├── array-items-all-of
│ │ │ │ │ │ └── zod.gen.ts
│ │ │ │ │ ├── default
│ │ │ │ │ │ └── zod.gen.ts
│ │ │ │ │ └── type-format-zod
│ │ │ │ │ │ └── zod.gen.ts
│ │ │ │ └── v4
│ │ │ │ │ ├── array-items-all-of
│ │ │ │ │ └── zod.gen.ts
│ │ │ │ │ ├── default
│ │ │ │ │ └── zod.gen.ts
│ │ │ │ │ └── type-format-zod
│ │ │ │ │ └── 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
│ │ │ │ │ │ └── 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
│ │ │ │ │ │ └── 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
│ │ │ │ │ └── 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
│ │ │ │ ├── schema-const
│ │ │ │ │ └── zod.gen.ts
│ │ │ │ ├── type-format-zod
│ │ │ │ │ └── zod.gen.ts
│ │ │ │ ├── validators-bigint-min-max
│ │ │ │ │ └── zod.gen.ts
│ │ │ │ ├── validators-circular-ref-2
│ │ │ │ │ └── zod.gen.ts
│ │ │ │ ├── validators-circular-ref
│ │ │ │ │ └── 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
│ │ │ │ └── validators
│ │ │ │ │ └── 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
│ │ │ │ ├── schema-const
│ │ │ │ │ └── zod.gen.ts
│ │ │ │ ├── type-format-zod
│ │ │ │ │ └── zod.gen.ts
│ │ │ │ ├── validators-bigint-min-max
│ │ │ │ │ └── zod.gen.ts
│ │ │ │ ├── validators-circular-ref-2
│ │ │ │ │ └── zod.gen.ts
│ │ │ │ ├── validators-circular-ref
│ │ │ │ │ └── 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
│ │ │ │ └── validators
│ │ │ │ │ └── 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
│ │ │ │ ├── schema-const
│ │ │ │ └── zod.gen.ts
│ │ │ │ ├── type-format-zod
│ │ │ │ └── zod.gen.ts
│ │ │ │ ├── validators-bigint-min-max
│ │ │ │ └── zod.gen.ts
│ │ │ │ ├── validators-circular-ref-2
│ │ │ │ └── zod.gen.ts
│ │ │ │ ├── validators-circular-ref
│ │ │ │ └── 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
│ │ │ │ └── validators
│ │ │ │ └── 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.config.ts
│ │ └── v4
│ │ ├── .gitignore
│ │ ├── __snapshots__
│ │ ├── 2.0.x
│ │ │ ├── mini
│ │ │ │ ├── array-items-all-of
│ │ │ │ │ └── zod.gen.ts
│ │ │ │ ├── default
│ │ │ │ │ └── zod.gen.ts
│ │ │ │ └── type-format-zod
│ │ │ │ │ └── zod.gen.ts
│ │ │ ├── v3
│ │ │ │ ├── array-items-all-of
│ │ │ │ │ └── zod.gen.ts
│ │ │ │ ├── default
│ │ │ │ │ └── zod.gen.ts
│ │ │ │ └── type-format-zod
│ │ │ │ │ └── zod.gen.ts
│ │ │ └── v4
│ │ │ │ ├── array-items-all-of
│ │ │ │ └── zod.gen.ts
│ │ │ │ ├── default
│ │ │ │ └── zod.gen.ts
│ │ │ │ └── type-format-zod
│ │ │ │ └── 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
│ │ │ │ │ └── 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
│ │ │ │ │ └── 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
│ │ │ │ └── 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
│ │ │ ├── schema-const
│ │ │ │ └── zod.gen.ts
│ │ │ ├── type-format-zod
│ │ │ │ └── zod.gen.ts
│ │ │ ├── validators-bigint-min-max
│ │ │ │ └── zod.gen.ts
│ │ │ ├── validators-circular-ref-2
│ │ │ │ └── zod.gen.ts
│ │ │ ├── validators-circular-ref
│ │ │ │ └── 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
│ │ │ └── validators
│ │ │ │ └── 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
│ │ │ ├── schema-const
│ │ │ │ └── zod.gen.ts
│ │ │ ├── type-format-zod
│ │ │ │ └── zod.gen.ts
│ │ │ ├── validators-bigint-min-max
│ │ │ │ └── zod.gen.ts
│ │ │ ├── validators-circular-ref-2
│ │ │ │ └── zod.gen.ts
│ │ │ ├── validators-circular-ref
│ │ │ │ └── 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
│ │ │ └── validators
│ │ │ │ └── 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
│ │ │ ├── schema-const
│ │ │ └── zod.gen.ts
│ │ │ ├── type-format-zod
│ │ │ └── zod.gen.ts
│ │ │ ├── validators-bigint-min-max
│ │ │ └── zod.gen.ts
│ │ │ ├── validators-circular-ref-2
│ │ │ └── zod.gen.ts
│ │ │ ├── validators-circular-ref
│ │ │ └── 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
│ │ │ └── validators
│ │ │ └── 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.config.ts
├── openapi-ts
│ ├── .gitignore
│ ├── CHANGELOG.md
│ ├── LICENSE.md
│ ├── README.md
│ ├── bin
│ │ ├── run.cmd
│ │ └── run.js
│ ├── package.json
│ ├── setupTests.ts
│ ├── src
│ │ ├── __tests__
│ │ │ ├── cli.test.ts
│ │ │ ├── createClient.test.ts
│ │ │ ├── error.test.ts
│ │ │ ├── index.test.ts
│ │ │ ├── interactive.test.ts
│ │ │ └── internal.test.ts
│ │ ├── cli.ts
│ │ ├── config
│ │ │ ├── __tests__
│ │ │ │ └── input.test.ts
│ │ │ ├── engine.ts
│ │ │ ├── init.ts
│ │ │ ├── input.ts
│ │ │ ├── logs.ts
│ │ │ ├── merge.ts
│ │ │ ├── output.ts
│ │ │ ├── packages.ts
│ │ │ ├── parser.ts
│ │ │ ├── plugins.ts
│ │ │ └── utils
│ │ │ │ ├── config.ts
│ │ │ │ └── package.ts
│ │ ├── createClient.ts
│ │ ├── debug
│ │ │ ├── graph.ts
│ │ │ ├── index.ts
│ │ │ └── ir.ts
│ │ ├── error.ts
│ │ ├── generate.ts
│ │ ├── generate
│ │ │ ├── client.ts
│ │ │ ├── output.ts
│ │ │ ├── tsConfig.ts
│ │ │ └── utils.ts
│ │ ├── getSpec.ts
│ │ ├── graph
│ │ │ ├── __tests__
│ │ │ │ └── walk.test.ts
│ │ │ ├── index.ts
│ │ │ ├── types
│ │ │ │ ├── graph.d.ts
│ │ │ │ └── walk.d.ts
│ │ │ └── walk.ts
│ │ ├── index.ts
│ │ ├── internal.ts
│ │ ├── ir
│ │ │ ├── __tests__
│ │ │ │ ├── graph.test.ts
│ │ │ │ ├── mediaType.test.ts
│ │ │ │ ├── pagination.test.ts
│ │ │ │ └── schema.test.ts
│ │ │ ├── context.ts
│ │ │ ├── graph.ts
│ │ │ ├── mediaType.ts
│ │ │ ├── operation.ts
│ │ │ ├── pagination.ts
│ │ │ ├── parameter.ts
│ │ │ ├── schema.ts
│ │ │ ├── types.d.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.d.ts
│ │ │ │ │ ├── openapi-spec-extensions.d.ts
│ │ │ │ │ └── spec.d.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.d.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.d.ts
│ │ │ │ │ ├── spec-extensions.d.ts
│ │ │ │ │ └── spec.d.ts
│ │ │ ├── __tests__
│ │ │ │ ├── index.test.ts
│ │ │ │ └── utils.ts
│ │ │ ├── common
│ │ │ │ └── parser
│ │ │ │ │ ├── __tests__
│ │ │ │ │ └── sanitize.test.ts
│ │ │ │ │ └── sanitize.ts
│ │ │ ├── index.ts
│ │ │ ├── shared
│ │ │ │ ├── graph
│ │ │ │ │ └── meta.ts
│ │ │ │ ├── transforms
│ │ │ │ │ ├── enums.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── propertiesRequiredByDefault.ts
│ │ │ │ │ ├── readWrite.ts
│ │ │ │ │ └── utils.ts
│ │ │ │ ├── types
│ │ │ │ │ ├── openapi-spec-extensions.d.ts
│ │ │ │ │ ├── schema.d.ts
│ │ │ │ │ └── state.d.ts
│ │ │ │ └── utils
│ │ │ │ │ ├── __tests__
│ │ │ │ │ ├── deepEqual.test.ts
│ │ │ │ │ ├── graph.test.ts
│ │ │ │ │ ├── operation.test.ts
│ │ │ │ │ └── patch.test.ts
│ │ │ │ │ ├── deepEqual.ts
│ │ │ │ │ ├── discriminator.ts
│ │ │ │ │ ├── filter.ts
│ │ │ │ │ ├── graph.ts
│ │ │ │ │ ├── name.ts
│ │ │ │ │ ├── operation.ts
│ │ │ │ │ ├── parameter.ts
│ │ │ │ │ ├── patch.ts
│ │ │ │ │ ├── schema.ts
│ │ │ │ │ ├── schemaChildRelationships.ts
│ │ │ │ │ ├── transforms.ts
│ │ │ │ │ └── validator.ts
│ │ │ └── types.d.ts
│ │ ├── parser
│ │ │ └── types
│ │ │ │ └── hooks.d.ts
│ │ ├── plugins
│ │ │ ├── @angular
│ │ │ │ └── common
│ │ │ │ │ ├── config.ts
│ │ │ │ │ ├── httpRequests.ts
│ │ │ │ │ ├── httpResources.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── plugin.ts
│ │ │ │ │ └── types.d.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.d.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.d.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.d.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.d.ts
│ │ │ │ ├── client-ky
│ │ │ │ │ ├── __tests__
│ │ │ │ │ │ ├── client.test.ts
│ │ │ │ │ │ └── utils.test.ts
│ │ │ │ │ ├── bundle
│ │ │ │ │ │ ├── client.ts
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── types.ts
│ │ │ │ │ │ └── utils.ts
│ │ │ │ │ ├── config.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ └── types.d.ts
│ │ │ │ ├── client-next
│ │ │ │ │ ├── __tests__
│ │ │ │ │ │ ├── client.test.ts
│ │ │ │ │ │ └── utils.test.ts
│ │ │ │ │ ├── bundle
│ │ │ │ │ │ ├── client.ts
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── types.ts
│ │ │ │ │ │ └── utils.ts
│ │ │ │ │ ├── config.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ └── types.d.ts
│ │ │ │ ├── client-nuxt
│ │ │ │ │ ├── __tests__
│ │ │ │ │ │ ├── client.test.ts
│ │ │ │ │ │ └── utils.test.ts
│ │ │ │ │ ├── bundle
│ │ │ │ │ │ ├── client.ts
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── types.ts
│ │ │ │ │ │ └── utils.ts
│ │ │ │ │ ├── config.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ └── types.d.ts
│ │ │ │ ├── client-ofetch
│ │ │ │ │ ├── __tests__
│ │ │ │ │ │ ├── client.test.ts
│ │ │ │ │ │ └── utils.test.ts
│ │ │ │ │ ├── bundle
│ │ │ │ │ │ ├── client.ts
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── types.ts
│ │ │ │ │ │ └── utils.ts
│ │ │ │ │ ├── config.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ └── types.d.ts
│ │ │ │ ├── schemas
│ │ │ │ │ ├── config.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── plugin.ts
│ │ │ │ │ └── types.d.ts
│ │ │ │ ├── sdk
│ │ │ │ │ ├── config.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── plugin.ts
│ │ │ │ │ ├── shared
│ │ │ │ │ │ ├── auth.ts
│ │ │ │ │ │ ├── class.ts
│ │ │ │ │ │ ├── constants.ts
│ │ │ │ │ │ ├── functions.ts
│ │ │ │ │ │ ├── operation.ts
│ │ │ │ │ │ ├── regexp.ts
│ │ │ │ │ │ ├── signature.ts
│ │ │ │ │ │ ├── typeOptions.ts
│ │ │ │ │ │ └── validator.ts
│ │ │ │ │ ├── types.d.ts
│ │ │ │ │ └── v1
│ │ │ │ │ │ └── plugin.ts
│ │ │ │ ├── transformers
│ │ │ │ │ ├── config.ts
│ │ │ │ │ ├── expressions.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── plugin.ts
│ │ │ │ │ └── types.d.ts
│ │ │ │ └── typescript
│ │ │ │ │ ├── api.ts
│ │ │ │ │ ├── config.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── plugin.ts
│ │ │ │ │ ├── shared
│ │ │ │ │ ├── clientOptions.ts
│ │ │ │ │ ├── export.ts
│ │ │ │ │ ├── operation.ts
│ │ │ │ │ ├── types.d.ts
│ │ │ │ │ └── webhook.ts
│ │ │ │ │ ├── types.d.ts
│ │ │ │ │ └── v1
│ │ │ │ │ ├── api.ts
│ │ │ │ │ ├── plugin.ts
│ │ │ │ │ └── toAst
│ │ │ │ │ ├── array.ts
│ │ │ │ │ ├── boolean.ts
│ │ │ │ │ ├── enum.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── never.ts
│ │ │ │ │ ├── null.ts
│ │ │ │ │ ├── number.ts
│ │ │ │ │ ├── object.ts
│ │ │ │ │ ├── string.ts
│ │ │ │ │ ├── tuple.ts
│ │ │ │ │ ├── undefined.ts
│ │ │ │ │ ├── unknown.ts
│ │ │ │ │ └── void.ts
│ │ │ ├── @pinia
│ │ │ │ └── colada
│ │ │ │ │ ├── config.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── meta.ts
│ │ │ │ │ ├── mutationOptions.ts
│ │ │ │ │ ├── plugin.ts
│ │ │ │ │ ├── queryKey.ts
│ │ │ │ │ ├── queryOptions.ts
│ │ │ │ │ ├── types.d.ts
│ │ │ │ │ ├── useType.ts
│ │ │ │ │ ├── utils.ts
│ │ │ │ │ └── v0
│ │ │ │ │ └── plugin.ts
│ │ │ ├── @tanstack
│ │ │ │ ├── angular-query-experimental
│ │ │ │ │ ├── config.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ └── types.d.ts
│ │ │ │ ├── query-core
│ │ │ │ │ ├── plugin.ts
│ │ │ │ │ ├── queryKey.ts
│ │ │ │ │ ├── shared
│ │ │ │ │ │ ├── meta.ts
│ │ │ │ │ │ └── useType.ts
│ │ │ │ │ ├── types.d.ts
│ │ │ │ │ └── v5
│ │ │ │ │ │ ├── infiniteQueryOptions.ts
│ │ │ │ │ │ ├── mutationOptions.ts
│ │ │ │ │ │ ├── plugin.ts
│ │ │ │ │ │ ├── queryOptions.ts
│ │ │ │ │ │ └── useQuery.ts
│ │ │ │ ├── react-query
│ │ │ │ │ ├── config.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ └── types.d.ts
│ │ │ │ ├── solid-query
│ │ │ │ │ ├── config.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ └── types.d.ts
│ │ │ │ ├── svelte-query
│ │ │ │ │ ├── config.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ └── types.d.ts
│ │ │ │ └── vue-query
│ │ │ │ │ ├── config.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ └── types.d.ts
│ │ │ ├── arktype
│ │ │ │ ├── api.ts
│ │ │ │ ├── config.ts
│ │ │ │ ├── constants.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── plugin.ts
│ │ │ │ ├── shared
│ │ │ │ │ ├── export.ts
│ │ │ │ │ └── types.d.ts
│ │ │ │ ├── types.d.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.d.ts
│ │ │ ├── index.ts
│ │ │ ├── shared
│ │ │ │ ├── types
│ │ │ │ │ ├── instance.d.ts
│ │ │ │ │ └── schema.d.ts
│ │ │ │ └── utils
│ │ │ │ │ ├── config.ts
│ │ │ │ │ ├── instance.ts
│ │ │ │ │ ├── operation.ts
│ │ │ │ │ └── schema.ts
│ │ │ ├── swr
│ │ │ │ ├── config.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── plugin.ts
│ │ │ │ ├── types.d.ts
│ │ │ │ └── v2
│ │ │ │ │ ├── plugin.ts
│ │ │ │ │ └── useSwr.ts
│ │ │ ├── types.d.ts
│ │ │ ├── valibot
│ │ │ │ ├── api.ts
│ │ │ │ ├── config.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── plugin.ts
│ │ │ │ ├── shared
│ │ │ │ │ ├── export.ts
│ │ │ │ │ ├── numbers.ts
│ │ │ │ │ ├── operation.ts
│ │ │ │ │ ├── pipesToAst.ts
│ │ │ │ │ ├── types.d.ts
│ │ │ │ │ └── webhook.ts
│ │ │ │ ├── types.d.ts
│ │ │ │ └── v1
│ │ │ │ │ ├── api.ts
│ │ │ │ │ ├── constants.ts
│ │ │ │ │ ├── plugin.ts
│ │ │ │ │ └── toAst
│ │ │ │ │ ├── array.ts
│ │ │ │ │ ├── boolean.ts
│ │ │ │ │ ├── enum.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── never.ts
│ │ │ │ │ ├── null.ts
│ │ │ │ │ ├── number.ts
│ │ │ │ │ ├── object.ts
│ │ │ │ │ ├── string.ts
│ │ │ │ │ ├── tuple.ts
│ │ │ │ │ ├── undefined.ts
│ │ │ │ │ ├── unknown.ts
│ │ │ │ │ └── void.ts
│ │ │ └── zod
│ │ │ │ ├── api.ts
│ │ │ │ ├── config.ts
│ │ │ │ ├── constants.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── mini
│ │ │ │ ├── api.ts
│ │ │ │ ├── plugin.ts
│ │ │ │ └── toAst
│ │ │ │ │ ├── array.ts
│ │ │ │ │ ├── boolean.ts
│ │ │ │ │ ├── enum.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── never.ts
│ │ │ │ │ ├── null.ts
│ │ │ │ │ ├── number.ts
│ │ │ │ │ ├── object.ts
│ │ │ │ │ ├── string.ts
│ │ │ │ │ ├── tuple.ts
│ │ │ │ │ ├── undefined.ts
│ │ │ │ │ ├── unknown.ts
│ │ │ │ │ └── void.ts
│ │ │ │ ├── plugin.ts
│ │ │ │ ├── shared
│ │ │ │ ├── export.ts
│ │ │ │ ├── module.ts
│ │ │ │ ├── numbers.ts
│ │ │ │ ├── operation.ts
│ │ │ │ ├── types.d.ts
│ │ │ │ └── webhook.ts
│ │ │ │ ├── types.d.ts
│ │ │ │ ├── v3
│ │ │ │ ├── api.ts
│ │ │ │ ├── plugin.ts
│ │ │ │ └── toAst
│ │ │ │ │ ├── array.ts
│ │ │ │ │ ├── boolean.ts
│ │ │ │ │ ├── enum.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── never.ts
│ │ │ │ │ ├── null.ts
│ │ │ │ │ ├── number.ts
│ │ │ │ │ ├── object.ts
│ │ │ │ │ ├── string.ts
│ │ │ │ │ ├── tuple.ts
│ │ │ │ │ ├── undefined.ts
│ │ │ │ │ ├── unknown.ts
│ │ │ │ │ └── void.ts
│ │ │ │ └── v4
│ │ │ │ ├── api.ts
│ │ │ │ ├── plugin.ts
│ │ │ │ └── toAst
│ │ │ │ ├── array.ts
│ │ │ │ ├── boolean.ts
│ │ │ │ ├── enum.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── never.ts
│ │ │ │ ├── null.ts
│ │ │ │ ├── number.ts
│ │ │ │ ├── object.ts
│ │ │ │ ├── string.ts
│ │ │ │ ├── tuple.ts
│ │ │ │ ├── undefined.ts
│ │ │ │ ├── unknown.ts
│ │ │ │ └── void.ts
│ │ ├── processOutput.ts
│ │ ├── run.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
│ │ │ │ ├── types.d.ts
│ │ │ │ └── value.ts
│ │ │ ├── render
│ │ │ │ ├── __tests__
│ │ │ │ │ └── typescript.test.ts
│ │ │ │ ├── typescript.ts
│ │ │ │ └── utils.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
│ │ │ │ ├── keywords.ts
│ │ │ │ ├── name.ts
│ │ │ │ ├── regexp.ts
│ │ │ │ └── reserved.ts
│ │ ├── types
│ │ │ ├── case.d.ts
│ │ │ ├── config.d.ts
│ │ │ ├── input.d.ts
│ │ │ ├── logs.d.ts
│ │ │ ├── output.d.ts
│ │ │ ├── parser.d.ts
│ │ │ ├── types.d.ts
│ │ │ └── utils.d.ts
│ │ └── utils
│ │ │ ├── __tests__
│ │ │ ├── logger.test.ts
│ │ │ ├── minHeap.test.ts
│ │ │ ├── stringCase.test.ts
│ │ │ └── url.test.ts
│ │ │ ├── cli.ts
│ │ │ ├── escape.ts
│ │ │ ├── exports.ts
│ │ │ ├── input
│ │ │ ├── __tests__
│ │ │ │ ├── readme.test.ts
│ │ │ │ └── scalar.test.ts
│ │ │ ├── heyApi.ts
│ │ │ ├── index.ts
│ │ │ ├── readme.ts
│ │ │ └── scalar.ts
│ │ │ ├── logger.ts
│ │ │ ├── minHeap.ts
│ │ │ ├── ref.ts
│ │ │ ├── stringCase.ts
│ │ │ ├── transform.ts
│ │ │ └── url.ts
│ ├── tsconfig.base.json
│ ├── tsconfig.json
│ ├── tsdown.config.ts
│ ├── turbo.json
│ └── vitest.config.ts
└── 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-lock.yaml
├── pnpm-workspace.yaml
├── prettier.config.js
├── 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
│ ├── schema-unknown.yaml
│ ├── sdk-instance.yaml
│ ├── sdk-nested-classes.yaml
│ ├── security-api-key.json
│ ├── security-basic.json
│ ├── security-oauth2.yaml
│ ├── servers-base-path.yaml
│ ├── servers-host.yaml
│ ├── servers.yaml
│ ├── transforms-read-write.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-response-text-plain.yaml
│ ├── case.yaml
│ ├── circular.yaml
│ ├── components-request-bodies.json
│ ├── content-binary.json
│ ├── content-types.yaml
│ ├── discriminator-all-of.yaml
│ ├── discriminator-any-of.yaml
│ ├── discriminator-mapped-many.yaml
│ ├── 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
│ ├── parameter-explode-false.json
│ ├── ref-duplicate-url.yaml
│ ├── sdk-instance.yaml
│ ├── sdk-method-class-conflict.yaml
│ ├── sdk-nested-classes.yaml
│ ├── security-api-key.json
│ ├── security-http-bearer.json
│ ├── security-oauth2.yaml
│ ├── security-open-id-connect.yaml
│ ├── servers.yaml
│ ├── transformers-all-of.yaml
│ ├── transformers-any-of-null.json
│ ├── transformers-array.json
│ ├── transformers-recursive.json
│ ├── transforms-read-write.yaml
│ ├── type-format.yaml
│ ├── type-invalid.json
│ └── validators.json
└── 3.1.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-nested-array.yaml
│ ├── body-response-text-plain.yaml
│ ├── case.yaml
│ ├── components-request-bodies.json
│ ├── const.json
│ ├── content-binary.json
│ ├── content-types.yaml
│ ├── defaults-with-ref-and-anyof.json
│ ├── discriminator-all-of.yaml
│ ├── discriminator-any-of.yaml
│ ├── discriminator-mapped-many.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
│ ├── full.yaml
│ ├── headers.yaml
│ ├── integer-formats.yaml
│ ├── internal-name-conflict.json
│ ├── invalid
│ ├── operationId-unique.yaml
│ ├── servers-array.yaml
│ ├── servers-entry.yaml
│ └── servers-required.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
│ ├── pagination-ref.yaml
│ ├── parameter-explode-false.json
│ ├── parameter-tuple.json
│ ├── parser-filters.yaml
│ ├── pattern-properties.json
│ ├── 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-signatures.yaml
│ ├── security-api-key.json
│ ├── security-http-bearer.json
│ ├── security-oauth2.yaml
│ ├── security-open-id-connect.yaml
│ ├── servers.yaml
│ ├── string-with-format.yaml
│ ├── time-format.yaml
│ ├── transformers-all-of.yaml
│ ├── transformers-any-of-null.json
│ ├── transformers-array.json
│ ├── transformers-recursive.json
│ ├── transformers.json
│ ├── transforms-read-write-nested.yaml
│ ├── transforms-read-write-response.yaml
│ ├── transforms-read-write.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
├── turbo.json
└── vercel.json
/.changeset/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/.changeset/README.md
--------------------------------------------------------------------------------
/.changeset/changelog.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/.changeset/changelog.js
--------------------------------------------------------------------------------
/.changeset/config.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/.changeset/config.json
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/.editorconfig
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/.gitattributes
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github:
2 | - hey-api
3 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/bug_report.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/feature_request.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml
--------------------------------------------------------------------------------
/.github/copilot-instructions.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/.github/copilot-instructions.md
--------------------------------------------------------------------------------
/.github/workflows/ci.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/.github/workflows/ci.yml
--------------------------------------------------------------------------------
/.github/workflows/contributors.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/.github/workflows/contributors.yml
--------------------------------------------------------------------------------
/.github/workflows/coverage.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/.github/workflows/coverage.yml
--------------------------------------------------------------------------------
/.github/workflows/release.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/.github/workflows/release.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/.gitignore
--------------------------------------------------------------------------------
/.husky/pre-commit:
--------------------------------------------------------------------------------
1 | pnpm lint-staged
2 |
--------------------------------------------------------------------------------
/.npmrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/.npmrc
--------------------------------------------------------------------------------
/.nvmrc:
--------------------------------------------------------------------------------
1 | 24.10.0
2 |
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/.prettierignore
--------------------------------------------------------------------------------
/.vscode/extensions.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/.vscode/extensions.json
--------------------------------------------------------------------------------
/.vscode/launch.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/.vscode/launch.json
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/.vscode/settings.json
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/CODE_OF_CONDUCT.md
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/LICENSE.md
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | packages/openapi-ts/README.md
2 |
--------------------------------------------------------------------------------
/__tests__/changelog.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/__tests__/changelog.test.ts
--------------------------------------------------------------------------------
/dev/graph-hotspots.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/dev/graph-hotspots.js
--------------------------------------------------------------------------------
/dev/hey-api.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/dev/hey-api.ts
--------------------------------------------------------------------------------
/dev/json-to-dot.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/dev/json-to-dot.js
--------------------------------------------------------------------------------
/dev/openapi-ts.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/dev/openapi-ts.config.ts
--------------------------------------------------------------------------------
/dev/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/dev/package.json
--------------------------------------------------------------------------------
/dev/playground.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/dev/playground.ts
--------------------------------------------------------------------------------
/dev/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/dev/tsconfig.json
--------------------------------------------------------------------------------
/dev/turbo.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/dev/turbo.json
--------------------------------------------------------------------------------
/docs/.contributorsignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/.contributorsignore
--------------------------------------------------------------------------------
/docs/.contributorssince:
--------------------------------------------------------------------------------
1 | 2025-04-20T08:08:34Z
2 |
--------------------------------------------------------------------------------
/docs/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/.gitignore
--------------------------------------------------------------------------------
/docs/.vitepress/config/en.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/.vitepress/config/en.ts
--------------------------------------------------------------------------------
/docs/.vitepress/config/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/.vitepress/config/index.ts
--------------------------------------------------------------------------------
/docs/.vitepress/config/shared.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/.vitepress/config/shared.ts
--------------------------------------------------------------------------------
/docs/.vitepress/theme/components/AuthorsList.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/.vitepress/theme/components/AuthorsList.vue
--------------------------------------------------------------------------------
/docs/.vitepress/theme/components/Heading.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/.vitepress/theme/components/Heading.vue
--------------------------------------------------------------------------------
/docs/.vitepress/theme/components/Layout.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/.vitepress/theme/components/Layout.vue
--------------------------------------------------------------------------------
/docs/.vitepress/theme/components/VersionLabel.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/.vitepress/theme/components/VersionLabel.vue
--------------------------------------------------------------------------------
/docs/.vitepress/theme/custom.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/.vitepress/theme/custom.css
--------------------------------------------------------------------------------
/docs/.vitepress/theme/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/.vitepress/theme/index.ts
--------------------------------------------------------------------------------
/docs/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/CHANGELOG.md
--------------------------------------------------------------------------------
/docs/data/coreTeam.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/data/coreTeam.js
--------------------------------------------------------------------------------
/docs/data/hallOfFame.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/data/hallOfFame.js
--------------------------------------------------------------------------------
/docs/data/people.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/data/people.ts
--------------------------------------------------------------------------------
/docs/email-form.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/email-form.md
--------------------------------------------------------------------------------
/docs/embed.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/embed.ts
--------------------------------------------------------------------------------
/docs/index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/index.md
--------------------------------------------------------------------------------
/docs/openapi-ts/clients.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/clients.md
--------------------------------------------------------------------------------
/docs/openapi-ts/clients/angular.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/clients/angular.md
--------------------------------------------------------------------------------
/docs/openapi-ts/clients/angular/v19.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/clients/angular/v19.md
--------------------------------------------------------------------------------
/docs/openapi-ts/clients/axios.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/clients/axios.md
--------------------------------------------------------------------------------
/docs/openapi-ts/clients/custom.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/clients/custom.md
--------------------------------------------------------------------------------
/docs/openapi-ts/clients/effect.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/clients/effect.md
--------------------------------------------------------------------------------
/docs/openapi-ts/clients/fetch.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/clients/fetch.md
--------------------------------------------------------------------------------
/docs/openapi-ts/clients/got.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/clients/got.md
--------------------------------------------------------------------------------
/docs/openapi-ts/clients/ky.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/clients/ky.md
--------------------------------------------------------------------------------
/docs/openapi-ts/clients/next-js.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/clients/next-js.md
--------------------------------------------------------------------------------
/docs/openapi-ts/clients/nuxt.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/clients/nuxt.md
--------------------------------------------------------------------------------
/docs/openapi-ts/clients/ofetch.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/clients/ofetch.md
--------------------------------------------------------------------------------
/docs/openapi-ts/community/contributing.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/community/contributing.md
--------------------------------------------------------------------------------
/docs/openapi-ts/community/contributing/testing.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/community/contributing/testing.md
--------------------------------------------------------------------------------
/docs/openapi-ts/community/spotlight.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/community/spotlight.md
--------------------------------------------------------------------------------
/docs/openapi-ts/configuration.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/configuration.md
--------------------------------------------------------------------------------
/docs/openapi-ts/configuration/input.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/configuration/input.md
--------------------------------------------------------------------------------
/docs/openapi-ts/configuration/output.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/configuration/output.md
--------------------------------------------------------------------------------
/docs/openapi-ts/configuration/parser.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/configuration/parser.md
--------------------------------------------------------------------------------
/docs/openapi-ts/core.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/core.md
--------------------------------------------------------------------------------
/docs/openapi-ts/get-started.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/get-started.md
--------------------------------------------------------------------------------
/docs/openapi-ts/integrations.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/integrations.md
--------------------------------------------------------------------------------
/docs/openapi-ts/license.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/license.md
--------------------------------------------------------------------------------
/docs/openapi-ts/migrating.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/migrating.md
--------------------------------------------------------------------------------
/docs/openapi-ts/mocks.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/mocks.md
--------------------------------------------------------------------------------
/docs/openapi-ts/output.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/output.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/adonis.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/adonis.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/ajv.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/ajv.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/angular.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/angular.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/angular/v19.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/angular/v19.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/arktype.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/arktype.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/chance.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/chance.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/custom.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/custom.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/elysia.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/elysia.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/express.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/express.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/faker.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/faker.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/falso.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/falso.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/fastify.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/fastify.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/hono.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/hono.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/joi.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/joi.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/koa.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/koa.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/msw.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/msw.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/nest.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/nest.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/nock.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/nock.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/pinia-colada.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/pinia-colada.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/schemas.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/schemas.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/sdk.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/sdk.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/superstruct.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/superstruct.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/supertest.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/supertest.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/swr.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/swr.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/tanstack-query.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/tanstack-query.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/transformers.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/transformers.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/typebox.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/typebox.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/typescript.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/typescript.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/valibot.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/valibot.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/yup.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/yup.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/zod.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/zod.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/zod/mini.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/zod/mini.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/zod/v3.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/zod/v3.md
--------------------------------------------------------------------------------
/docs/openapi-ts/plugins/zustand.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/plugins/zustand.md
--------------------------------------------------------------------------------
/docs/openapi-ts/state-management.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/state-management.md
--------------------------------------------------------------------------------
/docs/openapi-ts/validators.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/validators.md
--------------------------------------------------------------------------------
/docs/openapi-ts/web-frameworks.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/openapi-ts/web-frameworks.md
--------------------------------------------------------------------------------
/docs/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/package.json
--------------------------------------------------------------------------------
/docs/partials/contributors-list.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/partials/contributors-list.md
--------------------------------------------------------------------------------
/docs/partials/examples.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/partials/examples.md
--------------------------------------------------------------------------------
/docs/partials/sponsors-list.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/partials/sponsors-list.md
--------------------------------------------------------------------------------
/docs/partials/sponsors.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/partials/sponsors.md
--------------------------------------------------------------------------------
/docs/public/blueprint.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/blueprint.png
--------------------------------------------------------------------------------
/docs/public/bricks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/bricks.png
--------------------------------------------------------------------------------
/docs/public/cella-logo-wordmark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/cella-logo-wordmark.png
--------------------------------------------------------------------------------
/docs/public/cella-logo-wordmark.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/cella-logo-wordmark.svg
--------------------------------------------------------------------------------
/docs/public/fastapi-logo-wordmark.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/fastapi-logo-wordmark.svg
--------------------------------------------------------------------------------
/docs/public/github-mark-white.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/github-mark-white.svg
--------------------------------------------------------------------------------
/docs/public/github-mark.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/github-mark.svg
--------------------------------------------------------------------------------
/docs/public/hero.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/hero.png
--------------------------------------------------------------------------------
/docs/public/images/blueprint-300w.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/blueprint-300w.png
--------------------------------------------------------------------------------
/docs/public/images/blueprint-640w.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/blueprint-640w.png
--------------------------------------------------------------------------------
/docs/public/images/bricks-300w.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/bricks-300w.png
--------------------------------------------------------------------------------
/docs/public/images/bricks-640w.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/bricks-640w.png
--------------------------------------------------------------------------------
/docs/public/images/cella-logo-wordmark-1200w.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/cella-logo-wordmark-1200w.png
--------------------------------------------------------------------------------
/docs/public/images/cella-logo-wordmark-1200w.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/cella-logo-wordmark-1200w.webp
--------------------------------------------------------------------------------
/docs/public/images/cella-logo-wordmark-480w.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/cella-logo-wordmark-480w.jpeg
--------------------------------------------------------------------------------
/docs/public/images/cella-logo-wordmark-480w.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/cella-logo-wordmark-480w.webp
--------------------------------------------------------------------------------
/docs/public/images/cella-logo-wordmark-768w.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/cella-logo-wordmark-768w.webp
--------------------------------------------------------------------------------
/docs/public/images/hero-300w.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/hero-300w.png
--------------------------------------------------------------------------------
/docs/public/images/hero-640w.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/hero-640w.png
--------------------------------------------------------------------------------
/docs/public/images/hero-920w.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/hero-920w.png
--------------------------------------------------------------------------------
/docs/public/images/kinde-logo-wordmark-1200w.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/kinde-logo-wordmark-1200w.png
--------------------------------------------------------------------------------
/docs/public/images/kinde-logo-wordmark-1200w.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/kinde-logo-wordmark-1200w.webp
--------------------------------------------------------------------------------
/docs/public/images/kinde-logo-wordmark-480w.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/kinde-logo-wordmark-480w.jpeg
--------------------------------------------------------------------------------
/docs/public/images/kinde-logo-wordmark-480w.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/kinde-logo-wordmark-480w.webp
--------------------------------------------------------------------------------
/docs/public/images/kinde-logo-wordmark-768w.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/kinde-logo-wordmark-768w.webp
--------------------------------------------------------------------------------
/docs/public/images/logo-16w.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/logo-16w.png
--------------------------------------------------------------------------------
/docs/public/images/logo-300w.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/logo-300w.png
--------------------------------------------------------------------------------
/docs/public/images/logo-32w.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/logo-32w.png
--------------------------------------------------------------------------------
/docs/public/images/logo-48w.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/logo-48w.png
--------------------------------------------------------------------------------
/docs/public/images/logo-640w.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/logo-640w.png
--------------------------------------------------------------------------------
/docs/public/images/logo-astronaut-300w.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/logo-astronaut-300w.png
--------------------------------------------------------------------------------
/docs/public/images/openapi-ts-hero-1280w.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/openapi-ts-hero-1280w.png
--------------------------------------------------------------------------------
/docs/public/images/openapi-ts-hero-300w.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/openapi-ts-hero-300w.png
--------------------------------------------------------------------------------
/docs/public/images/openapi-ts-hero-640w.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/openapi-ts-hero-640w.png
--------------------------------------------------------------------------------
/docs/public/images/openstatus-logo-1200w.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/openstatus-logo-1200w.png
--------------------------------------------------------------------------------
/docs/public/images/openstatus-logo-1200w.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/openstatus-logo-1200w.webp
--------------------------------------------------------------------------------
/docs/public/images/openstatus-logo-480w.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/openstatus-logo-480w.jpeg
--------------------------------------------------------------------------------
/docs/public/images/openstatus-logo-480w.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/openstatus-logo-480w.webp
--------------------------------------------------------------------------------
/docs/public/images/openstatus-logo-768w.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/openstatus-logo-768w.webp
--------------------------------------------------------------------------------
/docs/public/images/scalar-logo-wordmark-1200w.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/scalar-logo-wordmark-1200w.png
--------------------------------------------------------------------------------
/docs/public/images/scalar-logo-wordmark-480w.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/scalar-logo-wordmark-480w.jpeg
--------------------------------------------------------------------------------
/docs/public/images/scalar-logo-wordmark-480w.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/scalar-logo-wordmark-480w.webp
--------------------------------------------------------------------------------
/docs/public/images/scalar-logo-wordmark-768w.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/scalar-logo-wordmark-768w.webp
--------------------------------------------------------------------------------
/docs/public/images/vercel-logo-1200w.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/vercel-logo-1200w.png
--------------------------------------------------------------------------------
/docs/public/images/vercel-logo-1200w.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/vercel-logo-1200w.webp
--------------------------------------------------------------------------------
/docs/public/images/vercel-logo-480w.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/vercel-logo-480w.jpeg
--------------------------------------------------------------------------------
/docs/public/images/vercel-logo-480w.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/vercel-logo-480w.webp
--------------------------------------------------------------------------------
/docs/public/images/vercel-logo-768w.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/images/vercel-logo-768w.webp
--------------------------------------------------------------------------------
/docs/public/json-schema-white.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/json-schema-white.svg
--------------------------------------------------------------------------------
/docs/public/kinde-logo-wordmark-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/kinde-logo-wordmark-dark.png
--------------------------------------------------------------------------------
/docs/public/kinde-logo-wordmark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/kinde-logo-wordmark.png
--------------------------------------------------------------------------------
/docs/public/logo-astronaut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/logo-astronaut.png
--------------------------------------------------------------------------------
/docs/public/logo-dark.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/logo-dark.svg
--------------------------------------------------------------------------------
/docs/public/logo-light.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/logo-light.svg
--------------------------------------------------------------------------------
/docs/public/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/logo.png
--------------------------------------------------------------------------------
/docs/public/logo.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/logo.svg
--------------------------------------------------------------------------------
/docs/public/openapi-ts-hero.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/openapi-ts-hero.png
--------------------------------------------------------------------------------
/docs/public/openapi.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/openapi.svg
--------------------------------------------------------------------------------
/docs/public/opencode-logo-wordmark.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/opencode-logo-wordmark.svg
--------------------------------------------------------------------------------
/docs/public/openstatus-logo.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/openstatus-logo.svg
--------------------------------------------------------------------------------
/docs/public/robots.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/robots.txt
--------------------------------------------------------------------------------
/docs/public/scalar-logo-wordmark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/scalar-logo-wordmark.png
--------------------------------------------------------------------------------
/docs/public/scalar-logo-wordmark.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/scalar-logo-wordmark.svg
--------------------------------------------------------------------------------
/docs/public/stainless-logo-wordmark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/stainless-logo-wordmark.png
--------------------------------------------------------------------------------
/docs/public/stainless-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/stainless-logo.png
--------------------------------------------------------------------------------
/docs/public/tanstack-light.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/tanstack-light.svg
--------------------------------------------------------------------------------
/docs/public/ts-logo-128.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/ts-logo-128.svg
--------------------------------------------------------------------------------
/docs/public/vercel-logo.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/public/vercel-logo.svg
--------------------------------------------------------------------------------
/docs/scripts/optimize-images.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/scripts/optimize-images.js
--------------------------------------------------------------------------------
/docs/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/docs/tsconfig.json
--------------------------------------------------------------------------------
/eslint-rules/local-paths.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/eslint-rules/local-paths.js
--------------------------------------------------------------------------------
/eslint.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/eslint.config.js
--------------------------------------------------------------------------------
/examples/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/README.md
--------------------------------------------------------------------------------
/examples/openapi-ts-angular-common/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular-common/.editorconfig
--------------------------------------------------------------------------------
/examples/openapi-ts-angular-common/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular-common/.gitignore
--------------------------------------------------------------------------------
/examples/openapi-ts-angular-common/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular-common/README.md
--------------------------------------------------------------------------------
/examples/openapi-ts-angular-common/angular.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular-common/angular.json
--------------------------------------------------------------------------------
/examples/openapi-ts-angular-common/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular-common/package.json
--------------------------------------------------------------------------------
/examples/openapi-ts-angular-common/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/examples/openapi-ts-angular-common/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular-common/src/index.html
--------------------------------------------------------------------------------
/examples/openapi-ts-angular-common/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular-common/src/main.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-angular-common/src/server.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular-common/src/server.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-angular-common/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular-common/src/styles.css
--------------------------------------------------------------------------------
/examples/openapi-ts-angular-common/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular-common/tsconfig.json
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/.editorconfig
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/.gitignore
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/.vscode/launch.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/.vscode/launch.json
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/.vscode/tasks.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/.vscode/tasks.json
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/README.md
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/angular.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/angular.json
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/openapi-ts.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/openapi-ts.config.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/package-lock.json
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/package.json
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/public/favicon.ico
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/src/app/app.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/src/app/app.config.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/src/app/app.routes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/src/app/app.routes.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/src/app/demo/demo.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/src/app/demo/demo.css
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/src/app/demo/demo.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/src/app/demo/demo.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/src/client/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/src/client/index.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/src/client/sdk.gen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/src/client/sdk.gen.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/src/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/src/index.html
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/src/main.server.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/src/main.server.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/src/main.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/src/server.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/src/server.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/src/styles.css
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/tsconfig.app.json
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/tsconfig.json
--------------------------------------------------------------------------------
/examples/openapi-ts-angular/tsconfig.spec.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-angular/tsconfig.spec.json
--------------------------------------------------------------------------------
/examples/openapi-ts-axios/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-axios/.gitignore
--------------------------------------------------------------------------------
/examples/openapi-ts-axios/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-axios/CHANGELOG.md
--------------------------------------------------------------------------------
/examples/openapi-ts-axios/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-axios/index.html
--------------------------------------------------------------------------------
/examples/openapi-ts-axios/openapi-ts.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-axios/openapi-ts.config.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-axios/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-axios/package.json
--------------------------------------------------------------------------------
/examples/openapi-ts-axios/postcss.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-axios/postcss.config.js
--------------------------------------------------------------------------------
/examples/openapi-ts-axios/src/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-axios/src/App.css
--------------------------------------------------------------------------------
/examples/openapi-ts-axios/src/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-axios/src/App.tsx
--------------------------------------------------------------------------------
/examples/openapi-ts-axios/src/client/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-axios/src/client/index.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-axios/src/client/sdk.gen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-axios/src/client/sdk.gen.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-axios/src/client/types.gen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-axios/src/client/types.gen.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-axios/src/main.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-axios/src/main.tsx
--------------------------------------------------------------------------------
/examples/openapi-ts-axios/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/examples/openapi-ts-axios/tailwind.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-axios/tailwind.config.js
--------------------------------------------------------------------------------
/examples/openapi-ts-axios/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-axios/tsconfig.json
--------------------------------------------------------------------------------
/examples/openapi-ts-axios/tsconfig.node.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-axios/tsconfig.node.json
--------------------------------------------------------------------------------
/examples/openapi-ts-axios/vite.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-axios/vite.config.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-fastify/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fastify/CHANGELOG.md
--------------------------------------------------------------------------------
/examples/openapi-ts-fastify/openapi-ts.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fastify/openapi-ts.config.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-fastify/openapi.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fastify/openapi.json
--------------------------------------------------------------------------------
/examples/openapi-ts-fastify/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fastify/package.json
--------------------------------------------------------------------------------
/examples/openapi-ts-fastify/src/client/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fastify/src/client/index.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-fastify/src/client/sdk.gen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fastify/src/client/sdk.gen.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-fastify/src/handlers.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fastify/src/handlers.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-fastify/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fastify/src/index.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-fastify/src/server.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fastify/src/server.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-fastify/test/pets.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fastify/test/pets.test.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-fastify/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fastify/tsconfig.json
--------------------------------------------------------------------------------
/examples/openapi-ts-fastify/tsconfig.node.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fastify/tsconfig.node.json
--------------------------------------------------------------------------------
/examples/openapi-ts-fastify/vite.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fastify/vite.config.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-fetch/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fetch/.gitignore
--------------------------------------------------------------------------------
/examples/openapi-ts-fetch/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fetch/CHANGELOG.md
--------------------------------------------------------------------------------
/examples/openapi-ts-fetch/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fetch/index.html
--------------------------------------------------------------------------------
/examples/openapi-ts-fetch/openapi-ts.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fetch/openapi-ts.config.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-fetch/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fetch/package.json
--------------------------------------------------------------------------------
/examples/openapi-ts-fetch/postcss.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fetch/postcss.config.js
--------------------------------------------------------------------------------
/examples/openapi-ts-fetch/src/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fetch/src/App.css
--------------------------------------------------------------------------------
/examples/openapi-ts-fetch/src/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fetch/src/App.tsx
--------------------------------------------------------------------------------
/examples/openapi-ts-fetch/src/client/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fetch/src/client/index.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-fetch/src/client/sdk.gen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fetch/src/client/sdk.gen.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-fetch/src/client/types.gen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fetch/src/client/types.gen.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-fetch/src/main.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fetch/src/main.tsx
--------------------------------------------------------------------------------
/examples/openapi-ts-fetch/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/examples/openapi-ts-fetch/tailwind.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fetch/tailwind.config.js
--------------------------------------------------------------------------------
/examples/openapi-ts-fetch/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fetch/tsconfig.json
--------------------------------------------------------------------------------
/examples/openapi-ts-fetch/tsconfig.node.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fetch/tsconfig.node.json
--------------------------------------------------------------------------------
/examples/openapi-ts-fetch/vite.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-fetch/vite.config.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-ky/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ky/.gitignore
--------------------------------------------------------------------------------
/examples/openapi-ts-ky/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ky/CHANGELOG.md
--------------------------------------------------------------------------------
/examples/openapi-ts-ky/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ky/index.html
--------------------------------------------------------------------------------
/examples/openapi-ts-ky/openapi-ts.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ky/openapi-ts.config.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-ky/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ky/package.json
--------------------------------------------------------------------------------
/examples/openapi-ts-ky/postcss.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ky/postcss.config.js
--------------------------------------------------------------------------------
/examples/openapi-ts-ky/src/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ky/src/App.css
--------------------------------------------------------------------------------
/examples/openapi-ts-ky/src/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ky/src/App.tsx
--------------------------------------------------------------------------------
/examples/openapi-ts-ky/src/client/client.gen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ky/src/client/client.gen.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-ky/src/client/client/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ky/src/client/client/index.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-ky/src/client/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ky/src/client/index.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-ky/src/client/schemas.gen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ky/src/client/schemas.gen.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-ky/src/client/sdk.gen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ky/src/client/sdk.gen.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-ky/src/client/types.gen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ky/src/client/types.gen.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-ky/src/main.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ky/src/main.tsx
--------------------------------------------------------------------------------
/examples/openapi-ts-ky/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/examples/openapi-ts-ky/tailwind.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ky/tailwind.config.js
--------------------------------------------------------------------------------
/examples/openapi-ts-ky/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ky/tsconfig.json
--------------------------------------------------------------------------------
/examples/openapi-ts-ky/tsconfig.node.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ky/tsconfig.node.json
--------------------------------------------------------------------------------
/examples/openapi-ts-ky/vite.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ky/vite.config.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-next/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/.gitignore
--------------------------------------------------------------------------------
/examples/openapi-ts-next/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/CHANGELOG.md
--------------------------------------------------------------------------------
/examples/openapi-ts-next/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/README.md
--------------------------------------------------------------------------------
/examples/openapi-ts-next/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/app/favicon.ico
--------------------------------------------------------------------------------
/examples/openapi-ts-next/app/globals.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/app/globals.css
--------------------------------------------------------------------------------
/examples/openapi-ts-next/app/layout.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/app/layout.tsx
--------------------------------------------------------------------------------
/examples/openapi-ts-next/app/page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/app/page.tsx
--------------------------------------------------------------------------------
/examples/openapi-ts-next/app/pet/[id]/page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/app/pet/[id]/page.tsx
--------------------------------------------------------------------------------
/examples/openapi-ts-next/next.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/next.config.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-next/openapi-ts.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/openapi-ts.config.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-next/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/package.json
--------------------------------------------------------------------------------
/examples/openapi-ts-next/postcss.config.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/postcss.config.mjs
--------------------------------------------------------------------------------
/examples/openapi-ts-next/public/file.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/public/file.svg
--------------------------------------------------------------------------------
/examples/openapi-ts-next/public/globe.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/public/globe.svg
--------------------------------------------------------------------------------
/examples/openapi-ts-next/public/next.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/public/next.svg
--------------------------------------------------------------------------------
/examples/openapi-ts-next/public/vercel.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/public/vercel.svg
--------------------------------------------------------------------------------
/examples/openapi-ts-next/public/window.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/public/window.svg
--------------------------------------------------------------------------------
/examples/openapi-ts-next/src/client/client.gen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/src/client/client.gen.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-next/src/client/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/src/client/index.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-next/src/client/sdk.gen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/src/client/sdk.gen.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-next/src/client/types.gen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/src/client/types.gen.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-next/src/hey-api.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/src/hey-api.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-next/tailwind.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/tailwind.config.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-next/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-next/tsconfig.json
--------------------------------------------------------------------------------
/examples/openapi-ts-nuxt/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-nuxt/.gitignore
--------------------------------------------------------------------------------
/examples/openapi-ts-nuxt/.npmrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-nuxt/.npmrc
--------------------------------------------------------------------------------
/examples/openapi-ts-nuxt/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-nuxt/CHANGELOG.md
--------------------------------------------------------------------------------
/examples/openapi-ts-nuxt/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-nuxt/README.md
--------------------------------------------------------------------------------
/examples/openapi-ts-nuxt/app.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-nuxt/app.vue
--------------------------------------------------------------------------------
/examples/openapi-ts-nuxt/components/home.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-nuxt/components/home.vue
--------------------------------------------------------------------------------
/examples/openapi-ts-nuxt/nuxt.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-nuxt/nuxt.config.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-nuxt/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-nuxt/package.json
--------------------------------------------------------------------------------
/examples/openapi-ts-nuxt/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-nuxt/public/favicon.ico
--------------------------------------------------------------------------------
/examples/openapi-ts-nuxt/public/robots.txt:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/examples/openapi-ts-nuxt/server/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "../.nuxt/tsconfig.server.json"
3 | }
4 |
--------------------------------------------------------------------------------
/examples/openapi-ts-nuxt/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-nuxt/tsconfig.json
--------------------------------------------------------------------------------
/examples/openapi-ts-ofetch/env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/examples/openapi-ts-ofetch/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ofetch/index.html
--------------------------------------------------------------------------------
/examples/openapi-ts-ofetch/openapi-ts.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ofetch/openapi-ts.config.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-ofetch/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ofetch/package.json
--------------------------------------------------------------------------------
/examples/openapi-ts-ofetch/postcss.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ofetch/postcss.config.js
--------------------------------------------------------------------------------
/examples/openapi-ts-ofetch/src/App.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ofetch/src/App.vue
--------------------------------------------------------------------------------
/examples/openapi-ts-ofetch/src/assets/main.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ofetch/src/assets/main.css
--------------------------------------------------------------------------------
/examples/openapi-ts-ofetch/src/client/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ofetch/src/client/index.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-ofetch/src/client/sdk.gen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ofetch/src/client/sdk.gen.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-ofetch/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ofetch/src/main.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-ofetch/tailwind.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ofetch/tailwind.config.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-ofetch/tsconfig.app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ofetch/tsconfig.app.json
--------------------------------------------------------------------------------
/examples/openapi-ts-ofetch/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ofetch/tsconfig.json
--------------------------------------------------------------------------------
/examples/openapi-ts-ofetch/tsconfig.node.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ofetch/tsconfig.node.json
--------------------------------------------------------------------------------
/examples/openapi-ts-ofetch/vite.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-ofetch/vite.config.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-openai/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-openai/.gitignore
--------------------------------------------------------------------------------
/examples/openapi-ts-openai/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-openai/index.html
--------------------------------------------------------------------------------
/examples/openapi-ts-openai/openapi-ts.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-openai/openapi-ts.config.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-openai/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-openai/package.json
--------------------------------------------------------------------------------
/examples/openapi-ts-openai/postcss.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-openai/postcss.config.js
--------------------------------------------------------------------------------
/examples/openapi-ts-openai/src/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-openai/src/App.css
--------------------------------------------------------------------------------
/examples/openapi-ts-openai/src/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-openai/src/App.tsx
--------------------------------------------------------------------------------
/examples/openapi-ts-openai/src/client/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-openai/src/client/index.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-openai/src/client/sdk.gen.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-openai/src/client/sdk.gen.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-openai/src/main.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-openai/src/main.tsx
--------------------------------------------------------------------------------
/examples/openapi-ts-openai/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/examples/openapi-ts-openai/tailwind.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-openai/tailwind.config.js
--------------------------------------------------------------------------------
/examples/openapi-ts-openai/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-openai/tsconfig.json
--------------------------------------------------------------------------------
/examples/openapi-ts-openai/tsconfig.node.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-openai/tsconfig.node.json
--------------------------------------------------------------------------------
/examples/openapi-ts-openai/vite.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-openai/vite.config.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-pinia-colada/.eslintrc.cjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-pinia-colada/.eslintrc.cjs
--------------------------------------------------------------------------------
/examples/openapi-ts-pinia-colada/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-pinia-colada/.gitignore
--------------------------------------------------------------------------------
/examples/openapi-ts-pinia-colada/.prettierrc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-pinia-colada/.prettierrc.json
--------------------------------------------------------------------------------
/examples/openapi-ts-pinia-colada/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-pinia-colada/README.md
--------------------------------------------------------------------------------
/examples/openapi-ts-pinia-colada/env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/examples/openapi-ts-pinia-colada/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-pinia-colada/index.html
--------------------------------------------------------------------------------
/examples/openapi-ts-pinia-colada/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-pinia-colada/package.json
--------------------------------------------------------------------------------
/examples/openapi-ts-pinia-colada/src/App.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-pinia-colada/src/App.vue
--------------------------------------------------------------------------------
/examples/openapi-ts-pinia-colada/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-pinia-colada/src/main.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-pinia-colada/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-pinia-colada/tsconfig.json
--------------------------------------------------------------------------------
/examples/openapi-ts-pinia-colada/vite.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-pinia-colada/vite.config.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-pinia-colada/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-pinia-colada/vitest.config.ts
--------------------------------------------------------------------------------
/examples/openapi-ts-tanstack-angular-query-experimental/.eslintignore:
--------------------------------------------------------------------------------
1 | .angular
2 |
--------------------------------------------------------------------------------
/examples/openapi-ts-tanstack-angular-query-experimental/src/app/app.component.css:
--------------------------------------------------------------------------------
1 | :host {
2 | display: contents;
3 | }
4 |
--------------------------------------------------------------------------------
/examples/openapi-ts-tanstack-angular-query-experimental/src/app/app.component.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/examples/openapi-ts-tanstack-react-query/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/examples/openapi-ts-tanstack-vue-query/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-tanstack-vue-query/.gitignore
--------------------------------------------------------------------------------
/examples/openapi-ts-tanstack-vue-query/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-tanstack-vue-query/README.md
--------------------------------------------------------------------------------
/examples/openapi-ts-tanstack-vue-query/env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/examples/openapi-ts-tanstack-vue-query/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/examples/openapi-ts-tanstack-vue-query/index.html
--------------------------------------------------------------------------------
/lint-staged.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/lint-staged.config.js
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/package.json
--------------------------------------------------------------------------------
/packages/codegen-core/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/.gitignore
--------------------------------------------------------------------------------
/packages/codegen-core/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/codegen-core/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/LICENSE.md
--------------------------------------------------------------------------------
/packages/codegen-core/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/README.md
--------------------------------------------------------------------------------
/packages/codegen-core/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/package.json
--------------------------------------------------------------------------------
/packages/codegen-core/src/__tests__/data/file.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/__tests__/data/file.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/__tests__/files.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/__tests__/files.test.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/__tests__/refs.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/__tests__/refs.test.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/bindings.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/bindings.d.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/brands.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/brands.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/debug.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/debug.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/extensions.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/extensions.d.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/files/file.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/files/file.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/files/registry.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/files/registry.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/files/rules.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/files/rules.d.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/files/types.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/files/types.d.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/guards.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/guards.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/index.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/languages/extensions.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/languages/extensions.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/languages/resolvers.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/languages/resolvers.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/languages/types.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/languages/types.d.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/nodes/node.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/nodes/node.d.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/nodes/registry.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/nodes/registry.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/nodes/types.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/nodes/types.d.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/output.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/output.d.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/planner/analyzer.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/planner/analyzer.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/planner/planner.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/planner/planner.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/planner/resolvers.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/planner/resolvers.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/planner/types.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/planner/types.d.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/project/namespace.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/project/namespace.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/project/project.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/project/project.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/project/types.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/project/types.d.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/refs/refs.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/refs/refs.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/refs/types.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/refs/types.d.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/renderer.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/renderer.d.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/symbols/registry.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/symbols/registry.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/symbols/symbol.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/symbols/symbol.ts
--------------------------------------------------------------------------------
/packages/codegen-core/src/symbols/types.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/src/symbols/types.d.ts
--------------------------------------------------------------------------------
/packages/codegen-core/tsconfig.base.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/tsconfig.base.json
--------------------------------------------------------------------------------
/packages/codegen-core/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/tsconfig.json
--------------------------------------------------------------------------------
/packages/codegen-core/tsdown.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/tsdown.config.ts
--------------------------------------------------------------------------------
/packages/codegen-core/turbo.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/turbo.json
--------------------------------------------------------------------------------
/packages/codegen-core/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/codegen-core/vitest.config.ts
--------------------------------------------------------------------------------
/packages/config-vite-base/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/config-vite-base/README.md
--------------------------------------------------------------------------------
/packages/config-vite-base/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/config-vite-base/package.json
--------------------------------------------------------------------------------
/packages/config-vite-base/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/config-vite-base/src/index.ts
--------------------------------------------------------------------------------
/packages/config-vite-base/src/vite.base.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/config-vite-base/src/vite.base.config.ts
--------------------------------------------------------------------------------
/packages/config-vite-base/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/config-vite-base/tsconfig.json
--------------------------------------------------------------------------------
/packages/config-vite-base/tsdown.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/config-vite-base/tsdown.config.ts
--------------------------------------------------------------------------------
/packages/custom-client/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/custom-client/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/custom-client/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/custom-client/LICENSE.md
--------------------------------------------------------------------------------
/packages/custom-client/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/custom-client/package.json
--------------------------------------------------------------------------------
/packages/custom-client/rollup.config.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/custom-client/rollup.config.mjs
--------------------------------------------------------------------------------
/packages/custom-client/src/client.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/custom-client/src/client.ts
--------------------------------------------------------------------------------
/packages/custom-client/src/core/auth.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/custom-client/src/core/auth.ts
--------------------------------------------------------------------------------
/packages/custom-client/src/core/bodySerializer.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/custom-client/src/core/bodySerializer.ts
--------------------------------------------------------------------------------
/packages/custom-client/src/core/params.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/custom-client/src/core/params.ts
--------------------------------------------------------------------------------
/packages/custom-client/src/core/pathSerializer.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/custom-client/src/core/pathSerializer.ts
--------------------------------------------------------------------------------
/packages/custom-client/src/core/types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/custom-client/src/core/types.ts
--------------------------------------------------------------------------------
/packages/custom-client/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/custom-client/src/index.ts
--------------------------------------------------------------------------------
/packages/custom-client/src/plugin.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/custom-client/src/plugin.ts
--------------------------------------------------------------------------------
/packages/custom-client/src/types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/custom-client/src/types.ts
--------------------------------------------------------------------------------
/packages/custom-client/src/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/custom-client/src/utils.ts
--------------------------------------------------------------------------------
/packages/custom-client/tsconfig.base.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/custom-client/tsconfig.base.json
--------------------------------------------------------------------------------
/packages/custom-client/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/custom-client/tsconfig.json
--------------------------------------------------------------------------------
/packages/custom-client/tsdown.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/custom-client/tsdown.config.ts
--------------------------------------------------------------------------------
/packages/custom-client/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/custom-client/vitest.config.ts
--------------------------------------------------------------------------------
/packages/nuxt/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/nuxt/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/nuxt/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/nuxt/LICENSE.md
--------------------------------------------------------------------------------
/packages/nuxt/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/nuxt/README.md
--------------------------------------------------------------------------------
/packages/nuxt/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/nuxt/package.json
--------------------------------------------------------------------------------
/packages/nuxt/src/module.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/nuxt/src/module.ts
--------------------------------------------------------------------------------
/packages/nuxt/tsconfig.base.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/nuxt/tsconfig.base.json
--------------------------------------------------------------------------------
/packages/nuxt/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/nuxt/tsconfig.json
--------------------------------------------------------------------------------
/packages/nuxt/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/nuxt/vitest.config.ts
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/main/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/main/.gitignore
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/main/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/main/package.json
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/main/test/2.0.x.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/main/test/2.0.x.test.ts
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/main/test/3.0.x.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/main/test/3.0.x.test.ts
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/main/test/3.1.x.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/main/test/3.1.x.test.ts
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/main/test/cli.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/main/test/cli.test.ts
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/main/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/main/tsconfig.json
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/main/tsconfig.test.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/main/tsconfig.test.json
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/main/turbo.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/main/turbo.json
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/main/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/main/vitest.config.ts
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/sdks/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/sdks/.gitignore
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/sdks/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/sdks/package.json
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/sdks/test/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/sdks/test/utils.ts
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/sdks/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/sdks/tsconfig.json
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/sdks/turbo.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/sdks/turbo.json
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/sdks/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/sdks/vitest.config.ts
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/tsconfig.base.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/tsconfig.base.json
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/utils.ts
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/zod/v3/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/zod/v3/.gitignore
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/zod/v3/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/zod/v3/package.json
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/zod/v3/test/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/zod/v3/test/utils.ts
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/zod/v3/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/zod/v3/tsconfig.json
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/zod/v3/turbo.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/zod/v3/turbo.json
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/zod/v3/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/zod/v3/vitest.config.ts
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/zod/v4/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/zod/v4/.gitignore
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/zod/v4/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/zod/v4/package.json
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/zod/v4/test/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/zod/v4/test/utils.ts
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/zod/v4/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/zod/v4/tsconfig.json
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/zod/v4/turbo.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/zod/v4/turbo.json
--------------------------------------------------------------------------------
/packages/openapi-ts-tests/zod/v4/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts-tests/zod/v4/vitest.config.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/.gitignore
--------------------------------------------------------------------------------
/packages/openapi-ts/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/openapi-ts/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/LICENSE.md
--------------------------------------------------------------------------------
/packages/openapi-ts/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/README.md
--------------------------------------------------------------------------------
/packages/openapi-ts/bin/run.cmd:
--------------------------------------------------------------------------------
1 | @echo off
2 | node "%~dp0\run.js" %*
3 |
4 |
--------------------------------------------------------------------------------
/packages/openapi-ts/bin/run.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/bin/run.js
--------------------------------------------------------------------------------
/packages/openapi-ts/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/package.json
--------------------------------------------------------------------------------
/packages/openapi-ts/setupTests.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/setupTests.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/__tests__/cli.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/__tests__/cli.test.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/__tests__/error.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/__tests__/error.test.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/__tests__/index.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/__tests__/index.test.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/cli.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/cli.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/config/engine.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/config/engine.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/config/init.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/config/init.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/config/input.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/config/input.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/config/logs.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/config/logs.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/config/merge.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/config/merge.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/config/output.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/config/output.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/config/packages.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/config/packages.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/config/parser.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/config/parser.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/config/plugins.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/config/plugins.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/config/utils/config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/config/utils/config.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/config/utils/package.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/config/utils/package.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/createClient.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/createClient.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/debug/graph.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/debug/graph.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/debug/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/debug/index.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/debug/ir.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/debug/ir.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/error.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/error.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/generate.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/generate.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/generate/client.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/generate/client.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/generate/output.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/generate/output.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/generate/tsConfig.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/generate/tsConfig.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/generate/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/generate/utils.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/getSpec.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/getSpec.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/graph/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/graph/index.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/graph/types/graph.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/graph/types/graph.d.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/graph/types/walk.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/graph/types/walk.d.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/graph/walk.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/graph/walk.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/index.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/internal.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/internal.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ir/context.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ir/context.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ir/graph.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ir/graph.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ir/mediaType.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ir/mediaType.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ir/operation.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ir/operation.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ir/pagination.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ir/pagination.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ir/parameter.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ir/parameter.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ir/schema.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ir/schema.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ir/types.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ir/types.d.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ir/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ir/utils.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/openApi/2.0.x/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/openApi/2.0.x/index.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/openApi/3.0.x/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/openApi/3.0.x/index.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/openApi/3.1.x/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/openApi/3.1.x/index.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/openApi/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/openApi/index.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/openApi/types.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/openApi/types.d.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/parser/types/hooks.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/parser/types/hooks.d.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/plugins/arktype/api.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/plugins/arktype/api.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/plugins/arktype/config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/plugins/arktype/config.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/plugins/config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/plugins/config.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/plugins/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/plugins/index.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/plugins/swr/config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/plugins/swr/config.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/plugins/swr/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/plugins/swr/index.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/plugins/swr/plugin.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/plugins/swr/plugin.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/plugins/swr/types.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/plugins/swr/types.d.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/plugins/types.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/plugins/types.d.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/plugins/valibot/api.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/plugins/valibot/api.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/plugins/zod/api.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/plugins/zod/api.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/plugins/zod/config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/plugins/zod/config.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/plugins/zod/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/plugins/zod/index.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/plugins/zod/mini/api.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/plugins/zod/mini/api.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/plugins/zod/plugin.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/plugins/zod/plugin.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/plugins/zod/types.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/plugins/zod/types.d.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/plugins/zod/v3/api.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/plugins/zod/v3/api.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/plugins/zod/v4/api.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/plugins/zod/v4/api.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/processOutput.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/processOutput.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/run.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/run.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/base.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/base.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/decl/class.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/decl/class.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/decl/enum.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/decl/enum.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/decl/field.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/decl/field.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/decl/func.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/decl/func.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/decl/getter.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/decl/getter.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/decl/init.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/decl/init.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/decl/member.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/decl/member.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/decl/method.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/decl/method.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/decl/param.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/decl/param.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/decl/pattern.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/decl/pattern.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/decl/setter.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/decl/setter.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/expr/array.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/expr/array.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/expr/as.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/expr/as.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/expr/attr.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/expr/attr.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/expr/await.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/expr/await.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/expr/binary.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/expr/binary.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/expr/call.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/expr/call.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/expr/expr.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/expr/expr.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/expr/id.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/expr/id.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/expr/literal.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/expr/literal.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/expr/new.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/expr/new.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/expr/object.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/expr/object.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/expr/prefix.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/expr/prefix.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/expr/prop.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/expr/prop.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/expr/regexp.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/expr/regexp.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/expr/template.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/expr/template.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/expr/ternary.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/expr/ternary.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/expr/typeof.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/expr/typeof.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/index.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/layout/doc.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/layout/doc.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/layout/hint.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/layout/hint.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/layout/note.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/layout/note.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/mixins/args.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/mixins/args.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/mixins/as.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/mixins/as.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/mixins/do.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/mixins/do.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/mixins/doc.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/mixins/doc.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/mixins/expr.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/mixins/expr.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/mixins/hint.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/mixins/hint.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/mixins/layout.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/mixins/layout.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/mixins/note.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/mixins/note.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/mixins/param.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/mixins/param.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/mixins/value.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/mixins/value.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/render/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/render/utils.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/stmt/block.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/stmt/block.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/stmt/if.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/stmt/if.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/stmt/return.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/stmt/return.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/stmt/stmt.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/stmt/stmt.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/stmt/throw.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/stmt/throw.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/stmt/try.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/stmt/try.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/stmt/var.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/stmt/var.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/token.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/token.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/type/alias.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/type/alias.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/type/and.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/type/and.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/type/attr.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/type/attr.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/type/expr.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/type/expr.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/type/func.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/type/func.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/type/idx-sig.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/type/idx-sig.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/type/idx.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/type/idx.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/type/literal.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/type/literal.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/type/mapped.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/type/mapped.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/type/object.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/type/object.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/type/operator.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/type/operator.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/type/or.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/type/or.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/type/param.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/type/param.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/type/prop.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/type/prop.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/type/query.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/type/query.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/type/template.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/type/template.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/type/tuple.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/type/tuple.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/utils/name.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/utils/name.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/ts-dsl/utils/regexp.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/ts-dsl/utils/regexp.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/types/case.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/types/case.d.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/types/config.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/types/config.d.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/types/input.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/types/input.d.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/types/logs.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/types/logs.d.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/types/output.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/types/output.d.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/types/parser.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/types/parser.d.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/types/types.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/types/types.d.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/types/utils.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/types/utils.d.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/utils/cli.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/utils/cli.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/utils/escape.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/utils/escape.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/utils/exports.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/utils/exports.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/utils/input/heyApi.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/utils/input/heyApi.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/utils/input/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/utils/input/index.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/utils/input/readme.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/utils/input/readme.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/utils/input/scalar.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/utils/input/scalar.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/utils/logger.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/utils/logger.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/utils/minHeap.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/utils/minHeap.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/utils/ref.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/utils/ref.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/utils/stringCase.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/utils/stringCase.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/utils/transform.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/utils/transform.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/src/utils/url.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/src/utils/url.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/tsconfig.base.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/tsconfig.base.json
--------------------------------------------------------------------------------
/packages/openapi-ts/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/tsconfig.json
--------------------------------------------------------------------------------
/packages/openapi-ts/tsdown.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/tsdown.config.ts
--------------------------------------------------------------------------------
/packages/openapi-ts/turbo.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/turbo.json
--------------------------------------------------------------------------------
/packages/openapi-ts/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/openapi-ts/vitest.config.ts
--------------------------------------------------------------------------------
/packages/vite-plugin/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/vite-plugin/.gitignore
--------------------------------------------------------------------------------
/packages/vite-plugin/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/vite-plugin/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/vite-plugin/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/vite-plugin/LICENSE.md
--------------------------------------------------------------------------------
/packages/vite-plugin/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/vite-plugin/README.md
--------------------------------------------------------------------------------
/packages/vite-plugin/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/vite-plugin/package.json
--------------------------------------------------------------------------------
/packages/vite-plugin/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/vite-plugin/src/index.ts
--------------------------------------------------------------------------------
/packages/vite-plugin/tsconfig.base.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/vite-plugin/tsconfig.base.json
--------------------------------------------------------------------------------
/packages/vite-plugin/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/vite-plugin/tsconfig.json
--------------------------------------------------------------------------------
/packages/vite-plugin/tsdown.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/packages/vite-plugin/tsdown.config.ts
--------------------------------------------------------------------------------
/patches/vitepress.patch:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/patches/vitepress.patch
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/pnpm-lock.yaml
--------------------------------------------------------------------------------
/pnpm-workspace.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/pnpm-workspace.yaml
--------------------------------------------------------------------------------
/prettier.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/prettier.config.js
--------------------------------------------------------------------------------
/renovate.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/renovate.json
--------------------------------------------------------------------------------
/scripts/examples-check.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/scripts/examples-check.sh
--------------------------------------------------------------------------------
/scripts/examples-generate.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/scripts/examples-generate.sh
--------------------------------------------------------------------------------
/scripts/publish-preview-packages.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/scripts/publish-preview-packages.sh
--------------------------------------------------------------------------------
/scripts/update-contributors.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/scripts/update-contributors.sh
--------------------------------------------------------------------------------
/specs/2.0.x/additional-properties-false.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/2.0.x/additional-properties-false.json
--------------------------------------------------------------------------------
/specs/2.0.x/additional-properties-true.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/2.0.x/additional-properties-true.json
--------------------------------------------------------------------------------
/specs/2.0.x/array-items-all-of.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/2.0.x/array-items-all-of.yaml
--------------------------------------------------------------------------------
/specs/2.0.x/body-response-text-plain.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/2.0.x/body-response-text-plain.yaml
--------------------------------------------------------------------------------
/specs/2.0.x/enum-names-values.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/2.0.x/enum-names-values.json
--------------------------------------------------------------------------------
/specs/2.0.x/exclude-deprecated.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/2.0.x/exclude-deprecated.yaml
--------------------------------------------------------------------------------
/specs/2.0.x/external-shared.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/2.0.x/external-shared.json
--------------------------------------------------------------------------------
/specs/2.0.x/external.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/2.0.x/external.yaml
--------------------------------------------------------------------------------
/specs/2.0.x/form-data.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/2.0.x/form-data.json
--------------------------------------------------------------------------------
/specs/2.0.x/full.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/2.0.x/full.yaml
--------------------------------------------------------------------------------
/specs/2.0.x/invalid/operationId-unique.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/2.0.x/invalid/operationId-unique.yaml
--------------------------------------------------------------------------------
/specs/2.0.x/schema-unknown.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/2.0.x/schema-unknown.yaml
--------------------------------------------------------------------------------
/specs/2.0.x/sdk-instance.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/2.0.x/sdk-instance.yaml
--------------------------------------------------------------------------------
/specs/2.0.x/sdk-nested-classes.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/2.0.x/sdk-nested-classes.yaml
--------------------------------------------------------------------------------
/specs/2.0.x/security-api-key.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/2.0.x/security-api-key.json
--------------------------------------------------------------------------------
/specs/2.0.x/security-basic.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/2.0.x/security-basic.json
--------------------------------------------------------------------------------
/specs/2.0.x/security-oauth2.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/2.0.x/security-oauth2.yaml
--------------------------------------------------------------------------------
/specs/2.0.x/servers-base-path.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/2.0.x/servers-base-path.yaml
--------------------------------------------------------------------------------
/specs/2.0.x/servers-host.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/2.0.x/servers-host.yaml
--------------------------------------------------------------------------------
/specs/2.0.x/servers.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/2.0.x/servers.yaml
--------------------------------------------------------------------------------
/specs/2.0.x/transforms-read-write.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/2.0.x/transforms-read-write.yaml
--------------------------------------------------------------------------------
/specs/2.0.x/type-format.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/2.0.x/type-format.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/additional-properties-false.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/additional-properties-false.json
--------------------------------------------------------------------------------
/specs/3.0.x/additional-properties-true.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/additional-properties-true.json
--------------------------------------------------------------------------------
/specs/3.0.x/array-items-all-of.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/array-items-all-of.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/array-items-one-of-length-1.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/array-items-one-of-length-1.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/array-nested-one-of.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/array-nested-one-of.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/body-response-text-plain.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/body-response-text-plain.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/case.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/case.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/circular.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/circular.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/components-request-bodies.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/components-request-bodies.json
--------------------------------------------------------------------------------
/specs/3.0.x/content-binary.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/content-binary.json
--------------------------------------------------------------------------------
/specs/3.0.x/content-types.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/content-types.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/discriminator-all-of.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/discriminator-all-of.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/discriminator-any-of.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/discriminator-any-of.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/discriminator-mapped-many.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/discriminator-mapped-many.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/discriminator-one-of.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/discriminator-one-of.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/dutchie.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/dutchie.json
--------------------------------------------------------------------------------
/specs/3.0.x/enum-escape.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/enum-escape.json
--------------------------------------------------------------------------------
/specs/3.0.x/enum-inline.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/enum-inline.json
--------------------------------------------------------------------------------
/specs/3.0.x/enum-names-values.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/enum-names-values.json
--------------------------------------------------------------------------------
/specs/3.0.x/enum-null.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/enum-null.json
--------------------------------------------------------------------------------
/specs/3.0.x/exclude-deprecated.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/exclude-deprecated.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/external-shared.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/external-shared.json
--------------------------------------------------------------------------------
/specs/3.0.x/external.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/external.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/full.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/full.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/internal-name-conflict.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/internal-name-conflict.json
--------------------------------------------------------------------------------
/specs/3.0.x/invalid/operationId-unique.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/invalid/operationId-unique.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/invalid/servers-array.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/invalid/servers-array.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/invalid/servers-entry.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/invalid/servers-entry.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/invalid/servers-required.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/invalid/servers-required.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/operation-204.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/operation-204.json
--------------------------------------------------------------------------------
/specs/3.0.x/parameter-explode-false.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/parameter-explode-false.json
--------------------------------------------------------------------------------
/specs/3.0.x/ref-duplicate-url.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/ref-duplicate-url.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/sdk-instance.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/sdk-instance.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/sdk-method-class-conflict.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/sdk-method-class-conflict.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/sdk-nested-classes.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/sdk-nested-classes.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/security-api-key.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/security-api-key.json
--------------------------------------------------------------------------------
/specs/3.0.x/security-http-bearer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/security-http-bearer.json
--------------------------------------------------------------------------------
/specs/3.0.x/security-oauth2.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/security-oauth2.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/security-open-id-connect.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/security-open-id-connect.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/servers.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/servers.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/transformers-all-of.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/transformers-all-of.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/transformers-any-of-null.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/transformers-any-of-null.json
--------------------------------------------------------------------------------
/specs/3.0.x/transformers-array.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/transformers-array.json
--------------------------------------------------------------------------------
/specs/3.0.x/transformers-recursive.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/transformers-recursive.json
--------------------------------------------------------------------------------
/specs/3.0.x/transforms-read-write.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/transforms-read-write.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/type-format.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/type-format.yaml
--------------------------------------------------------------------------------
/specs/3.0.x/type-invalid.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/type-invalid.json
--------------------------------------------------------------------------------
/specs/3.0.x/validators.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.0.x/validators.json
--------------------------------------------------------------------------------
/specs/3.1.x/additional-properties-false.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/additional-properties-false.json
--------------------------------------------------------------------------------
/specs/3.1.x/additional-properties-true.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/additional-properties-true.json
--------------------------------------------------------------------------------
/specs/3.1.x/array-items-all-of.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/array-items-all-of.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/array-items-one-of-length-1.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/array-items-one-of-length-1.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/array-nested-one-of.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/array-nested-one-of.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/body-nested-array.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/body-nested-array.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/body-response-text-plain.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/body-response-text-plain.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/case.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/case.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/components-request-bodies.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/components-request-bodies.json
--------------------------------------------------------------------------------
/specs/3.1.x/const.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/const.json
--------------------------------------------------------------------------------
/specs/3.1.x/content-binary.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/content-binary.json
--------------------------------------------------------------------------------
/specs/3.1.x/content-types.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/content-types.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/defaults-with-ref-and-anyof.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/defaults-with-ref-and-anyof.json
--------------------------------------------------------------------------------
/specs/3.1.x/discriminator-all-of.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/discriminator-all-of.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/discriminator-any-of.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/discriminator-any-of.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/discriminator-mapped-many.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/discriminator-mapped-many.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/discriminator-one-of.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/discriminator-one-of.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/duplicate-null.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/duplicate-null.json
--------------------------------------------------------------------------------
/specs/3.1.x/enum-escape.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/enum-escape.json
--------------------------------------------------------------------------------
/specs/3.1.x/enum-inline.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/enum-inline.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/enum-names-values.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/enum-names-values.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/enum-null.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/enum-null.json
--------------------------------------------------------------------------------
/specs/3.1.x/exclude-deprecated.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/exclude-deprecated.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/external-shared.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/external-shared.json
--------------------------------------------------------------------------------
/specs/3.1.x/external.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/external.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/full.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/full.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/headers.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/headers.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/integer-formats.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/integer-formats.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/internal-name-conflict.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/internal-name-conflict.json
--------------------------------------------------------------------------------
/specs/3.1.x/invalid/operationId-unique.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/invalid/operationId-unique.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/invalid/servers-array.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/invalid/servers-array.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/invalid/servers-entry.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/invalid/servers-entry.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/invalid/servers-required.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/invalid/servers-required.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/negative-property-names.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/negative-property-names.json
--------------------------------------------------------------------------------
/specs/3.1.x/object-properties-all-of.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/object-properties-all-of.json
--------------------------------------------------------------------------------
/specs/3.1.x/object-properties-any-of.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/object-properties-any-of.json
--------------------------------------------------------------------------------
/specs/3.1.x/object-properties-one-of.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/object-properties-one-of.json
--------------------------------------------------------------------------------
/specs/3.1.x/object-property-names.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/object-property-names.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/openai.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/openai.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/opencode.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/opencode.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/operation-204.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/operation-204.json
--------------------------------------------------------------------------------
/specs/3.1.x/pagination-ref.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/pagination-ref.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/parameter-explode-false.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/parameter-explode-false.json
--------------------------------------------------------------------------------
/specs/3.1.x/parameter-tuple.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/parameter-tuple.json
--------------------------------------------------------------------------------
/specs/3.1.x/parser-filters.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/parser-filters.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/pattern-properties.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/pattern-properties.json
--------------------------------------------------------------------------------
/specs/3.1.x/ref-type.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/ref-type.json
--------------------------------------------------------------------------------
/specs/3.1.x/required-all-of-ref.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/required-all-of-ref.json
--------------------------------------------------------------------------------
/specs/3.1.x/required-any-of-ref.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/required-any-of-ref.json
--------------------------------------------------------------------------------
/specs/3.1.x/required-one-of-ref.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/required-one-of-ref.json
--------------------------------------------------------------------------------
/specs/3.1.x/schema-const.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/schema-const.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/sdk-instance.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/sdk-instance.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/sdk-nested-classes.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/sdk-nested-classes.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/sdk-signatures.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/sdk-signatures.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/security-api-key.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/security-api-key.json
--------------------------------------------------------------------------------
/specs/3.1.x/security-http-bearer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/security-http-bearer.json
--------------------------------------------------------------------------------
/specs/3.1.x/security-oauth2.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/security-oauth2.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/security-open-id-connect.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/security-open-id-connect.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/servers.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/servers.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/string-with-format.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/string-with-format.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/time-format.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/time-format.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/transformers-all-of.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/transformers-all-of.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/transformers-any-of-null.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/transformers-any-of-null.json
--------------------------------------------------------------------------------
/specs/3.1.x/transformers-array.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/transformers-array.json
--------------------------------------------------------------------------------
/specs/3.1.x/transformers-recursive.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/transformers-recursive.json
--------------------------------------------------------------------------------
/specs/3.1.x/transformers.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/transformers.json
--------------------------------------------------------------------------------
/specs/3.1.x/transforms-read-write-nested.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/transforms-read-write-nested.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/transforms-read-write-response.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/transforms-read-write-response.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/transforms-read-write.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/transforms-read-write.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/type-format.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/type-format.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/type-invalid.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/type-invalid.json
--------------------------------------------------------------------------------
/specs/3.1.x/union-types.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/union-types.json
--------------------------------------------------------------------------------
/specs/3.1.x/validators-bigint-min-max.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/validators-bigint-min-max.json
--------------------------------------------------------------------------------
/specs/3.1.x/validators-circular-ref-2.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/validators-circular-ref-2.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/validators-circular-ref.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/validators-circular-ref.json
--------------------------------------------------------------------------------
/specs/3.1.x/validators-union-merge.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/validators-union-merge.json
--------------------------------------------------------------------------------
/specs/3.1.x/validators.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/validators.yaml
--------------------------------------------------------------------------------
/specs/3.1.x/zoom-video-sdk.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/specs/3.1.x/zoom-video-sdk.json
--------------------------------------------------------------------------------
/turbo.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/turbo.json
--------------------------------------------------------------------------------
/vercel.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hey-api/openapi-ts/HEAD/vercel.json
--------------------------------------------------------------------------------