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

Merge pull request #2498 from hey-api/docs/falso-chance

docs: add Falso and Chance pages

authored by

Lubos and committed by
GitHub
649349a2 3d9aad52

+50
+8
docs/.vitepress/config/en.ts
··· 196 196 collapsed: true, 197 197 items: [ 198 198 { 199 + link: '/openapi-ts/plugins/chance', 200 + text: 'Chance <span data-soon>soon</span>', 201 + }, 202 + { 199 203 link: '/openapi-ts/plugins/faker', 200 204 text: 'Faker <span data-soon>soon</span>', 205 + }, 206 + { 207 + link: '/openapi-ts/plugins/falso', 208 + text: 'Falso <span data-soon>soon</span>', 201 209 }, 202 210 { 203 211 link: '/openapi-ts/plugins/msw',
+2
docs/openapi-ts/mocks.md
··· 11 11 12 12 Hey API natively supports the following mocking frameworks. 13 13 14 + - [Chance](/openapi-ts/plugins/chance) <span data-soon>Soon</span> 14 15 - [Faker](/openapi-ts/plugins/faker) <span data-soon>Soon</span> 16 + - [Falso](/openapi-ts/plugins/falso) <span data-soon>Soon</span> 15 17 - [MSW](/openapi-ts/plugins/msw) <span data-soon>Soon</span> 16 18 - [Nock](/openapi-ts/plugins/nock) <span data-soon>Soon</span> 17 19 - [Supertest](/openapi-ts/plugins/supertest) <span data-soon>Soon</span>
+2
docs/openapi-ts/plugins.md
··· 37 37 - [Adonis](/openapi-ts/plugins/adonis) <span data-soon>Soon</span> 38 38 - [Ajv](/openapi-ts/plugins/ajv) <span data-soon>Soon</span> 39 39 - [Arktype](/openapi-ts/plugins/arktype) <span data-soon>Soon</span> 40 + - [Chance](/openapi-ts/plugins/chance) <span data-soon>Soon</span> 40 41 - [Express](/openapi-ts/plugins/express) <span data-soon>Soon</span> 41 42 - [Faker](/openapi-ts/plugins/faker) <span data-soon>Soon</span> 43 + - [Falso](/openapi-ts/plugins/falso) <span data-soon>Soon</span> 42 44 - [Hono](/openapi-ts/plugins/hono) <span data-soon>Soon</span> 43 45 - [Joi](/openapi-ts/plugins/joi) <span data-soon>Soon</span> 44 46 - [Koa](/openapi-ts/plugins/koa) <span data-soon>Soon</span>
+18
docs/openapi-ts/plugins/chance.md
··· 1 + --- 2 + title: Chance 3 + description: Chance plugin 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 + # Chance <span data-soon>soon</span> 11 + 12 + <FeatureStatus issueNumber=2497 name="Chance" /> 13 + 14 + ### About 15 + 16 + [Chance](https://chancejs.com/) is a minimalist generator of random strings, numbers, etc. to help reduce some monotony particularly while writing automated tests or anywhere else you need anything random. 17 + 18 + <!--@include: ../../partials/sponsors.md-->
+18
docs/openapi-ts/plugins/falso.md
··· 1 + --- 2 + title: Falso 3 + description: Falso plugin 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 + # Falso <span data-soon>soon</span> 11 + 12 + <FeatureStatus issueNumber=2496 name="Falso" /> 13 + 14 + ### About 15 + 16 + [Falso](https://ngneat.github.io/falso/) creates massive amounts of fake data in the browser and NodeJS. Tree shakeable & fully typed. 17 + 18 + <!--@include: ../../partials/sponsors.md-->
+2
packages/openapi-ts/README.md
··· 318 318 - [Adonis](https://heyapi.dev/openapi-ts/plugins/adonis) 319 319 - [Ajv](https://heyapi.dev/openapi-ts/plugins/ajv) 320 320 - [Arktype](https://heyapi.dev/openapi-ts/plugins/arktype) 321 + - [Chance](https://heyapi.dev/openapi-ts/plugins/chance) 321 322 - [Express](https://heyapi.dev/openapi-ts/plugins/express) 322 323 - [Faker](https://heyapi.dev/openapi-ts/plugins/faker) 324 + - [Falso](https://heyapi.dev/openapi-ts/plugins/falso) 323 325 - [Hono](https://heyapi.dev/openapi-ts/plugins/hono) 324 326 - [Joi](https://heyapi.dev/openapi-ts/plugins/joi) 325 327 - [Koa](https://heyapi.dev/openapi-ts/plugins/koa)