-
-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/zod-plugin-models
- Loading branch information
Showing
67 changed files
with
1,635 additions
and
1,452 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@hey-api/docs': patch | ||
--- | ||
|
||
docs: add Zod plugin page |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,24 +6,30 @@ description: Hello from Hey API. | |
<script setup> | ||
import { VPTeamMembers } from 'vitepress/theme' | ||
|
||
const members = [ | ||
const hallOfFame = [ | ||
{ | ||
avatar: 'https://github.com/mrlubos.png', | ||
name: 'Lubos', | ||
title: 'Author', | ||
avatar: 'https://github.com/ferdikoomen.png', | ||
name: 'Ferdi Koomen', | ||
links: [ | ||
{ icon: 'github', link: 'https://github.com/mrlubos' }, | ||
{ icon: 'twitter', link: 'https://twitter.com/mrlubos' } | ||
{ icon: 'github', link: 'https://github.com/ferdikoomen' }, | ||
], | ||
sponsor: 'https://github.com/sponsors/mrlubos', | ||
title: 'OpenAPI TypeScript Codegen', | ||
}, | ||
{ | ||
avatar: 'https://github.com/nicolas-chaulet.png', | ||
name: 'Nicolas Chaulet', | ||
links: [ | ||
{ icon: 'github', link: 'https://github.com/nicolas-chaulet' }, | ||
], | ||
title: 'Made the Hey API fork', | ||
}, | ||
{ | ||
avatar: 'https://github.com/jordanshatford.png', | ||
name: 'Jordan', | ||
title: 'Maintainer', | ||
name: 'Jordan Shatford', | ||
links: [ | ||
{ icon: 'github', link: 'https://github.com/jordanshatford' }, | ||
], | ||
title: 'Maintainer and Contributor', | ||
}, | ||
] | ||
</script> | ||
|
@@ -40,16 +46,12 @@ Typically, developers of such applications want to: | |
|
||
Doing any of these steps manually quickly becomes a huge time sink as your project grows and APIs evolve. Ideally, you want to spend most time on your application. Hey API allows you to do just that. | ||
|
||
We're constantly learning about the ways in which you use our tools. If you have any feedback, please [email us](mailto:[email protected]), [open an issue](https://github.com/hey-api/openapi-ts/issues), or [join a discussion](https://github.com/hey-api/openapi-ts/discussions). | ||
|
||
## Team | ||
|
||
<VPTeamMembers size="small" :members="members" /> | ||
We're constantly learning about the ways in which you use our tools. If you have any feedback, please [email us](mailto:[email protected]), [open an issue](https://github.com/hey-api/openapi-ts/issues), or [join a discussion](https://github.com/orgs/hey-api/discussions). | ||
|
||
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. | ||
## Hall of Fame | ||
|
||
## Acknowledgements | ||
These are the people with significant contributions to Hey API. A special thank you goes to [Ferdi Koomen](https://madebyferdi.com/) for allowing us to use the original source code from OpenAPI TypeScript Codegen. None of this would've been possible without you! | ||
|
||
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. | ||
<VPTeamMembers size="small" :members="hallOfFame" /> | ||
|
||
<!--@include: ./sponsorship.md--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.