fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #905 from hey-api/docs/sponsorship

fix: add sponsors link

authored by

Lubos and committed by
GitHub
cd25f5d3 67b94769

+78 -14
+4
README.md
··· 20 20 21 21 Please visit our [website](https://heyapi.vercel.app/) for documentation, guides, migrating, and more. 22 22 23 + ## Sponsoring 24 + 25 + Love Hey API? Please consider becoming a [sponsor](https://github.com/sponsors/mrlubos). 26 + 23 27 ## GitHub Integration (coming soon) 24 28 25 29 Automatically update your code when the APIs it depends on change. [Find out more](https://heyapi.vercel.app/openapi-ts/integrations.html).
+16
docs/.vitepress/theme/custom.css
··· 3 3 --vp-c-brand-1: #a37ab4; 4 4 --vp-c-brand-2: #d486b8; 5 5 --vp-c-brand-3: #a37ab4; 6 + 7 + --github-mark-fill-color: #24292f; 8 + --vp-home-hero-name-color: transparent; 9 + --vp-home-hero-name-background: -webkit-linear-gradient( 10 + 120deg, 11 + var(--c-gradient-start) 30%, 12 + var(--vp-c-brand-3) 13 + ); 6 14 } 7 15 8 16 html.dark { ··· 13 21 --vp-c-brand-1: #b3cde4; 14 22 --vp-c-brand-2: #b3cde4; 15 23 --vp-c-brand-3: #537692; 24 + 25 + --github-mark-fill-color: #fff; 26 + --vp-home-hero-image-background-image: linear-gradient( 27 + -45deg, 28 + var(--vp-c-brand-3) 50%, 29 + var(--c-gradient-start) 50% 30 + ); 31 + --vp-home-hero-image-filter: blur(144px); 16 32 } 17 33 18 34 .soon {
+3 -2
docs/.vitepress/theme/index.js
··· 1 + // eslint-disable-next-line simple-import-sort/imports 2 + import DefaultTheme from 'vitepress/theme'; 3 + // custom CSS must be imported after default theme to correctly apply styles 1 4 import './custom.css'; 2 - 3 - import DefaultTheme from 'vitepress/theme'; 4 5 5 6 export default DefaultTheme;
+29
docs/about.md
··· 3 3 description: Hello from Hey API. 4 4 --- 5 5 6 + <script setup> 7 + import { VPTeamMembers } from 'vitepress/theme' 8 + 9 + const members = [ 10 + { 11 + avatar: 'https://github.com/mrlubos.png', 12 + name: 'Lubos', 13 + title: 'Author', 14 + links: [ 15 + { icon: 'github', link: 'https://github.com/mrlubos' }, 16 + { icon: 'twitter', link: 'https://twitter.com/mrlubos' } 17 + ], 18 + sponsor: 'https://github.com/sponsors/mrlubos', 19 + }, 20 + { 21 + avatar: 'https://github.com/jordanshatford.png', 22 + name: 'Jordan', 23 + title: 'Maintainer', 24 + links: [ 25 + { icon: 'github', link: 'https://github.com/jordanshatford' }, 26 + ], 27 + }, 28 + ] 29 + </script> 30 + 6 31 # About 7 32 8 33 Hey 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. ··· 19 44 20 45 ## Team 21 46 47 + <VPTeamMembers size="small" :members="members" /> 48 + 22 49 Our 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. 23 50 24 51 ## Acknowledgements 25 52 26 53 None 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. 54 + 55 + <!--@include: ./sponsorship.md-->
-12
docs/index.md
··· 53 53 Read our [migration guide](/openapi-ts/migrating#openapi-typescript-codegen). 54 54 55 55 <style> 56 - :root { 57 - --github-mark-fill-color: #24292f; 58 - --vp-home-hero-name-color: transparent; 59 - --vp-home-hero-name-background: -webkit-linear-gradient(120deg, var(--c-gradient-start) 30%, var(--vp-c-brand-3)); 60 - } 61 - 62 - html.dark { 63 - --github-mark-fill-color: #fff; 64 - --vp-home-hero-image-background-image: linear-gradient(-45deg, var(--vp-c-brand-3) 50%, var(--c-gradient-start) 50%); 65 - --vp-home-hero-image-filter: blur(144px); 66 - } 67 - 68 56 .icon-github path { 69 57 fill: var(--github-mark-fill-color); 70 58 }
+1
docs/openapi-ts/clients.md
··· 30 30 If you'd like a standalone package for your client, let us know by [opening an issue](https://github.com/hey-api/openapi-ts/issues). 31 31 32 32 <!--@include: ../examples.md--> 33 + <!--@include: ../sponsorship.md-->
+1
docs/openapi-ts/clients/axios.md
··· 156 156 ``` 157 157 158 158 <!--@include: ../../examples.md--> 159 + <!--@include: ../../sponsorship.md-->
+1
docs/openapi-ts/clients/fetch.md
··· 195 195 ``` 196 196 197 197 <!--@include: ../../examples.md--> 198 + <!--@include: ../../sponsorship.md-->
+1
docs/openapi-ts/clients/legacy.md
··· 129 129 ::: 130 130 131 131 <!--@include: ../../examples.md--> 132 + <!--@include: ../../sponsorship.md-->
+1
docs/openapi-ts/configuration.md
··· 251 251 You 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. 252 252 253 253 <!--@include: ../examples.md--> 254 + <!--@include: ../sponsorship.md-->
+1
docs/openapi-ts/get-started.md
··· 94 94 It 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. 95 95 96 96 <!--@include: ../examples.md--> 97 + <!--@include: ../sponsorship.md-->
+1
docs/openapi-ts/output.md
··· 274 274 Different plugins may emit their own artifacts. These will be documented in their respective pages. 275 275 276 276 <!--@include: ../examples.md--> 277 + <!--@include: ../sponsorship.md-->
+2
docs/openapi-ts/tanstack-query.md
··· 8 8 [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. 9 9 10 10 You can follow the updates on [GitHub](https://github.com/hey-api/openapi-ts/issues/653), your feedback is welcome! 11 + 12 + <!--@include: ../sponsorship.md-->
+2
docs/openapi-ts/transformers.md
··· 69 69 url: '/foo', 70 70 }); 71 71 ``` 72 + 73 + <!--@include: ../sponsorship.md-->
+3
docs/sponsorship.md
··· 1 + ## Sponsoring 2 + 3 + Love Hey API? Please consider becoming a [sponsor](https://github.com/sponsors/mrlubos).
+4
packages/client-axios/README.md
··· 21 21 22 22 Please visit our [website](https://heyapi.vercel.app/) for documentation, guides, migrating, and more. 23 23 24 + ## Sponsoring 25 + 26 + Love Hey API? Please consider becoming a [sponsor](https://github.com/sponsors/mrlubos). 27 + 24 28 ## GitHub Integration (coming soon) 25 29 26 30 Automatically 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
··· 21 21 22 22 Please visit our [website](https://heyapi.vercel.app/) for documentation, guides, migrating, and more. 23 23 24 + ## Sponsoring 25 + 26 + Love Hey API? Please consider becoming a [sponsor](https://github.com/sponsors/mrlubos). 27 + 24 28 ## GitHub Integration (coming soon) 25 29 26 30 Automatically 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
··· 20 20 21 21 Please visit our [website](https://heyapi.vercel.app/) for documentation, guides, migrating, and more. 22 22 23 + ## Sponsoring 24 + 25 + Love Hey API? Please consider becoming a [sponsor](https://github.com/sponsors/mrlubos). 26 + 23 27 ## GitHub Integration (coming soon) 24 28 25 29 Automatically update your code when the APIs it depends on change. [Find out more](https://heyapi.vercel.app/openapi-ts/integrations.html).