@hey-api/openapi-ts 0.65.0 → 0.66.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -9
- package/dist/index.cjs +73 -73
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +78 -35
- package/dist/index.d.ts +78 -35
- package/dist/index.js +74 -74
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,17 +30,19 @@
|
|
|
30
30
|
|
|
31
31
|
## Features
|
|
32
32
|
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
- Fetch API, Axios, Nuxt, Angular, Node.js, and XHR clients available
|
|
33
|
+
- runs in CLI, Node.js 18+, or npx
|
|
34
|
+
- works with OpenAPI 2.0, 3.0, and 3.1
|
|
35
|
+
- customizable types and SDKs
|
|
36
|
+
- clients for your runtime (Fetch API, Axios, Next.js, Nuxt, etc.)
|
|
38
37
|
- plugin ecosystem to reduce third-party boilerplate
|
|
39
|
-
-
|
|
38
|
+
- custom plugins and custom clients
|
|
39
|
+
- [integration](https://heyapi.dev/openapi-ts/integrations) with Hey API platform
|
|
40
40
|
|
|
41
|
-
##
|
|
41
|
+
## Dashboard
|
|
42
42
|
|
|
43
|
-
|
|
43
|
+
Hey API is an ecosystem of products helping you build better APIs. Superpower your codegen and APIs with our platform.
|
|
44
|
+
|
|
45
|
+
[Sign In](https://app.heyapi.dev) to Hey API platform.
|
|
44
46
|
|
|
45
47
|
## Sponsors
|
|
46
48
|
|
|
@@ -177,7 +179,14 @@ Output is the next thing to define. It can be either a string pointing to the de
|
|
|
177
179
|
|
|
178
180
|
Clients are responsible for sending the actual HTTP requests. Using clients is not required, but you must add a client to `plugins` if you're generating SDKs (enabled by default).
|
|
179
181
|
|
|
180
|
-
|
|
182
|
+
### Native Clients
|
|
183
|
+
|
|
184
|
+
- [`@hey-api/client-fetch`](https://heyapi.dev/openapi-ts/clients/fetch)
|
|
185
|
+
- [`@hey-api/client-axios`](https://heyapi.dev/openapi-ts/clients/axios)
|
|
186
|
+
- [`@hey-api/client-next`](https://heyapi.dev/openapi-ts/clients/next-js)
|
|
187
|
+
- [`@hey-api/client-nuxt`](https://heyapi.dev/openapi-ts/clients/nuxt)
|
|
188
|
+
|
|
189
|
+
Don't see your client? [Build your own](https://heyapi.dev/openapi-ts/clients/custom) or let us know your interest by [opening an issue](https://github.com/hey-api/openapi-ts/issues).
|
|
181
190
|
|
|
182
191
|
## Plugins
|
|
183
192
|
|
|
@@ -222,6 +231,8 @@ The following plugins are planned but not in development yet. You can help us pr
|
|
|
222
231
|
- [Yup](https://heyapi.dev/openapi-ts/plugins/yup)
|
|
223
232
|
- [Zustand](https://heyapi.dev/openapi-ts/plugins/zustand)
|
|
224
233
|
|
|
234
|
+
Don't see your plugin? [Build your own](https://heyapi.dev/openapi-ts/plugins/custom) or let us know your interest by [opening an issue](https://github.com/hey-api/openapi-ts/issues).
|
|
235
|
+
|
|
225
236
|
## Migration Guides
|
|
226
237
|
|
|
227
238
|
[OpenAPI Typescript Codegen](https://heyapi.dev/openapi-ts/migrating#openapi-typescript-codegen)
|