···20202121Please visit our [website](https://heyapi.vercel.app/) for documentation, guides, migrating, and more.
22222323+## Sponsoring
2424+2525+Love Hey API? Please consider becoming a [sponsor](https://github.com/sponsors/mrlubos).
2626+2327## GitHub Integration (coming soon)
24282529Automatically update your code when the APIs it depends on change. [Find out more](https://heyapi.vercel.app/openapi-ts/integrations.html).
···11+// eslint-disable-next-line simple-import-sort/imports
22+import DefaultTheme from 'vitepress/theme';
33+// custom CSS must be imported after default theme to correctly apply styles
14import './custom.css';
22-33-import DefaultTheme from 'vitepress/theme';
4556export default DefaultTheme;
+29
docs/about.md
···33description: Hello from Hey API.
44---
5566+<script setup>
77+import { VPTeamMembers } from 'vitepress/theme'
88+99+const members = [
1010+ {
1111+ avatar: 'https://github.com/mrlubos.png',
1212+ name: 'Lubos',
1313+ title: 'Author',
1414+ links: [
1515+ { icon: 'github', link: 'https://github.com/mrlubos' },
1616+ { icon: 'twitter', link: 'https://twitter.com/mrlubos' }
1717+ ],
1818+ sponsor: 'https://github.com/sponsors/mrlubos',
1919+ },
2020+ {
2121+ avatar: 'https://github.com/jordanshatford.png',
2222+ name: 'Jordan',
2323+ title: 'Maintainer',
2424+ links: [
2525+ { icon: 'github', link: 'https://github.com/jordanshatford' },
2626+ ],
2727+ },
2828+]
2929+</script>
3030+631# About
732833Hey API's objective is to provide a suite of TypeScript tools to manage API interactions. Whether you're building a front-end application, API-to-API service, or micro-frontends, we want Hey API to be your go-to resource.
···19442045## Team
21464747+<VPTeamMembers size="small" :members="members" />
4848+2249Our core members are [Jordan](https://github.com/jordanshatford) and [Lubos](https://lmen.us/), but we also accept external contributions. Please see our [contributing](./contributing) guide for more information.
23502451## Acknowledgements
25522653None of this would be possible without [Ferdi Koomen](https://madebyferdi.com/) and the contributors to OpenAPI TypeScript Codegen throughout the years. We want to say a huge thank you to all of you, and promise to continue the legacy of the original project.
5454+5555+<!--@include: ./sponsorship.md-->
···3030If you'd like a standalone package for your client, let us know by [opening an issue](https://github.com/hey-api/openapi-ts/issues).
31313232<!--@include: ../examples.md-->
3333+<!--@include: ../sponsorship.md-->
···251251You can view the complete list of options in the [UserConfig](https://github.com/hey-api/openapi-ts/blob/main/packages/openapi-ts/src/types/config.ts) interface.
252252253253<!--@include: ../examples.md-->
254254+<!--@include: ../sponsorship.md-->
+1
docs/openapi-ts/get-started.md
···9494It is a good practice to extract your configuration into a separate file. Learn how to do that and discover available options on the [Configuration](/openapi-ts/configuration) page.
95959696<!--@include: ../examples.md-->
9797+<!--@include: ../sponsorship.md-->
+1
docs/openapi-ts/output.md
···274274Different plugins may emit their own artifacts. These will be documented in their respective pages.
275275276276<!--@include: ../examples.md-->
277277+<!--@include: ../sponsorship.md-->
+2
docs/openapi-ts/tanstack-query.md
···88[TanStack Query](https://tanstack.com/query) is one of the most popular state management solutions. Hey API can generate query keys and query functions for you, so you can focus on building your product. Everything is compatible with our REST clients, but you can bring your own too.
991010You can follow the updates on [GitHub](https://github.com/hey-api/openapi-ts/issues/653), your feedback is welcome!
1111+1212+<!--@include: ../sponsorship.md-->
···11+## Sponsoring
22+33+Love Hey API? Please consider becoming a [sponsor](https://github.com/sponsors/mrlubos).
+4
packages/client-axios/README.md
···21212222Please visit our [website](https://heyapi.vercel.app/) for documentation, guides, migrating, and more.
23232424+## Sponsoring
2525+2626+Love Hey API? Please consider becoming a [sponsor](https://github.com/sponsors/mrlubos).
2727+2428## GitHub Integration (coming soon)
25292630Automatically update your code when the APIs it depends on change. [Find out more](https://heyapi.vercel.app/openapi-ts/integrations.html).
+4
packages/client-fetch/README.md
···21212222Please visit our [website](https://heyapi.vercel.app/) for documentation, guides, migrating, and more.
23232424+## Sponsoring
2525+2626+Love Hey API? Please consider becoming a [sponsor](https://github.com/sponsors/mrlubos).
2727+2428## GitHub Integration (coming soon)
25292630Automatically update your code when the APIs it depends on change. [Find out more](https://heyapi.vercel.app/openapi-ts/integrations.html).
+4
packages/openapi-ts/README.md
···20202121Please visit our [website](https://heyapi.vercel.app/) for documentation, guides, migrating, and more.
22222323+## Sponsoring
2424+2525+Love Hey API? Please consider becoming a [sponsor](https://github.com/sponsors/mrlubos).
2626+2327## GitHub Integration (coming soon)
24282529Automatically update your code when the APIs it depends on change. [Find out more](https://heyapi.vercel.app/openapi-ts/integrations.html).