@hey-api/openapi-ts 0.80.9 → 0.80.11
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 +3 -2
- package/dist/chunk-7WYJFIBI.js +43 -0
- package/dist/chunk-7WYJFIBI.js.map +1 -0
- package/dist/clients/angular/client.ts +97 -38
- package/dist/clients/angular/types.ts +76 -39
- package/dist/clients/angular/utils.ts +43 -31
- package/dist/clients/core/bodySerializer.ts +2 -0
- package/dist/index.cjs +68 -67
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/internal.cjs +13 -12
- package/dist/internal.cjs.map +1 -1
- package/dist/internal.d.cts +1 -1
- package/dist/internal.d.ts +1 -1
- package/dist/internal.js +1 -1
- package/dist/{types.d-5eps4CIa.d.cts → types.d-CjuizMGC.d.cts} +133 -20
- package/dist/{types.d-5eps4CIa.d.ts → types.d-CjuizMGC.d.ts} +133 -20
- package/package.json +1 -1
- package/dist/chunk-7LYLA6HT.js +0 -42
- package/dist/chunk-7LYLA6HT.js.map +0 -1
package/README.md
CHANGED
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
- runs in CLI, Node.js 18+, or npx
|
|
35
35
|
- works with OpenAPI 2.0, 3.0, and 3.1
|
|
36
36
|
- customizable types and SDKs
|
|
37
|
-
- clients for your runtime (Fetch API, Axios, Next.js, Nuxt, etc.)
|
|
37
|
+
- clients for your runtime (Fetch API, Angular, Axios, Next.js, Nuxt, etc.)
|
|
38
38
|
- plugin ecosystem to reduce third-party boilerplate
|
|
39
39
|
- custom plugins and custom clients
|
|
40
40
|
- [integration](https://heyapi.dev/openapi-ts/integrations) with Hey API Platform
|
|
@@ -282,6 +282,7 @@ Clients are responsible for sending the actual HTTP requests. Using clients is n
|
|
|
282
282
|
### Native Clients
|
|
283
283
|
|
|
284
284
|
- [`@hey-api/client-fetch`](https://heyapi.dev/openapi-ts/clients/fetch)
|
|
285
|
+
- [`@hey-api/client-angular`](https://heyapi.dev/openapi-ts/clients/angular)
|
|
285
286
|
- [`@hey-api/client-axios`](https://heyapi.dev/openapi-ts/clients/axios)
|
|
286
287
|
- [`@hey-api/client-next`](https://heyapi.dev/openapi-ts/clients/next-js)
|
|
287
288
|
- [`@hey-api/client-nuxt`](https://heyapi.dev/openapi-ts/clients/nuxt)
|
|
@@ -290,7 +291,6 @@ Clients are responsible for sending the actual HTTP requests. Using clients is n
|
|
|
290
291
|
|
|
291
292
|
The following clients are planned but not in development yet. You can help us prioritize them by voting on [GitHub](https://github.com/hey-api/openapi-ts/labels/RSVP%20%F0%9F%91%8D%F0%9F%91%8E).
|
|
292
293
|
|
|
293
|
-
- [`@hey-api/client-angular`](https://heyapi.dev/openapi-ts/clients/angular)
|
|
294
294
|
- [`@hey-api/client-effect`](https://heyapi.dev/openapi-ts/clients/effect)
|
|
295
295
|
|
|
296
296
|
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).
|
|
@@ -308,6 +308,7 @@ These plugins help reduce boilerplate associated with third-party dependencies.
|
|
|
308
308
|
- [`@tanstack/solid-query`](https://heyapi.dev/openapi-ts/plugins/tanstack-query)
|
|
309
309
|
- [`@tanstack/svelte-query`](https://heyapi.dev/openapi-ts/plugins/tanstack-query)
|
|
310
310
|
- [`@tanstack/vue-query`](https://heyapi.dev/openapi-ts/plugins/tanstack-query)
|
|
311
|
+
- [`@angular/common`](https://heyapi.dev/openapi-ts/plugins/angular)
|
|
311
312
|
- [`fastify`](https://heyapi.dev/openapi-ts/plugins/fastify)
|
|
312
313
|
- [`valibot`](https://heyapi.dev/openapi-ts/plugins/valibot)
|
|
313
314
|
- [`zod`](https://heyapi.dev/openapi-ts/plugins/zod)
|