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

Merge pull request #2795 from hey-api/docs/got-ky-client

docs: add got and ky client pages

authored by

Lubos and committed by
GitHub
9ac73967 c6159c33

+46
+8
docs/.vitepress/config/en.ts
··· 112 112 text: 'Effect <span data-soon>soon</span>', 113 113 }, 114 114 { 115 + link: '/openapi-ts/clients/got', 116 + text: 'Got <span data-soon>soon</span>', 117 + }, 118 + { 119 + link: '/openapi-ts/clients/ky', 120 + text: 'Ky <span data-soon>soon</span>', 121 + }, 122 + { 115 123 link: '/openapi-ts/clients/legacy', 116 124 text: 'Legacy', 117 125 },
+2
docs/openapi-ts/clients.md
··· 32 32 - [Nuxt](/openapi-ts/clients/nuxt) 33 33 - [OFetch](/openapi-ts/clients/ofetch) 34 34 - [Effect](/openapi-ts/clients/effect) <span data-soon>Soon</span> 35 + - [Got](/openapi-ts/clients/got) <span data-soon>Soon</span> 36 + - [Ky](/openapi-ts/clients/ky) <span data-soon>Soon</span> 35 37 - [Legacy](/openapi-ts/clients/legacy) 36 38 37 39 Don't see your client? [Build your own](/openapi-ts/clients/custom) or let us know your interest by [opening an issue](https://github.com/hey-api/openapi-ts/issues).
+18
docs/openapi-ts/clients/got.md
··· 1 + --- 2 + title: Got client 3 + description: Got client for Hey API. Compatible with all our features. 4 + --- 5 + 6 + <script setup lang="ts"> 7 + import FeatureStatus from '@components/FeatureStatus.vue'; 8 + </script> 9 + 10 + # Got <span data-soon>soon</span> 11 + 12 + <FeatureStatus issueNumber=586 name="Got" /> 13 + 14 + ### About 15 + 16 + [Got](https://github.com/sindresorhus/got) is a human-friendly and powerful HTTP request library for Node.js. 17 + 18 + <!--@include: ../../partials/sponsors.md-->
+18
docs/openapi-ts/clients/ky.md
··· 1 + --- 2 + title: Ky client 3 + description: Ky client for Hey API. Compatible with all our features. 4 + --- 5 + 6 + <script setup lang="ts"> 7 + import FeatureStatus from '@components/FeatureStatus.vue'; 8 + </script> 9 + 10 + # Ky <span data-soon>soon</span> 11 + 12 + <FeatureStatus issueNumber=2794 name="Ky" /> 13 + 14 + ### About 15 + 16 + [Ky](https://github.com/sindresorhus/ky) is a tiny and elegant JavaScript HTTP client based on the Fetch API. 17 + 18 + <!--@include: ../../partials/sponsors.md-->