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.

docs: init @brolnickij in collaboration sections

+16 -2
+5
docs/data/people.ts
··· 22 22 github: 'https://github.com/SebastiaanWouters', 23 23 name: 'Sebastiaan Wouters', 24 24 }; 25 + 26 + export const dmitriyBrolnickij: Person = { 27 + github: 'https://github.com/brolnickij', 28 + name: 'Dmitriy Brolnickij', 29 + };
+9
docs/openapi-ts/clients/ofetch.md
··· 3 3 description: Generate a type-safe ofetch client from OpenAPI with the ofetch client for openapi-ts. Fully compatible with validators, transformers, and all core features. 4 4 --- 5 5 6 + <script setup lang="ts"> 7 + import AuthorsList from '@components/AuthorsList.vue'; 8 + import { dmitriyBrolnickij } from '@data/people.js'; 9 + </script> 10 + 6 11 # OFetch 7 12 8 13 ### About ··· 10 15 [`ofetch`](https://github.com/unjs/ofetch) is a better Fetch API that adds useful defaults and features such as automatic response parsing, request/response hooks, and it works in Node, browser, and workers. 11 16 12 17 The `ofetch` client for Hey API generates a type-safe client from your OpenAPI spec, fully compatible with validators, transformers, and all core features. 18 + 19 + ### Collaborators 20 + 21 + <AuthorsList :people="[dmitriyBrolnickij]" /> 13 22 14 23 ## Features 15 24
+2 -2
docs/openapi-ts/plugins/pinia-colada.md
··· 7 7 import AuthorsList from '@components/AuthorsList.vue'; 8 8 import Heading from '@components/Heading.vue'; 9 9 import VersionLabel from '@components/VersionLabel.vue'; 10 - import { joshHemphill, sebastiaanWouters } from '@data/people.js'; 10 + import { joshHemphill, sebastiaanWouters, dmitriyBrolnickij } from '@data/people.js'; 11 11 </script> 12 12 13 13 <Heading> ··· 23 23 24 24 ### Collaborators 25 25 26 - <AuthorsList :people="[joshHemphill, sebastiaanWouters]" /> 26 + <AuthorsList :people="[joshHemphill, sebastiaanWouters, dmitriyBrolnickij]" /> 27 27 28 28 ## Features 29 29