@hey-api/openapi-ts 0.94.1 → 0.94.3

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 CHANGED
@@ -343,6 +343,7 @@ These plugins help reduce boilerplate associated with third-party dependencies.
343
343
  - [`@tanstack/svelte-query`](https://heyapi.dev/openapi-ts/plugins/tanstack-query)
344
344
  - [`@tanstack/vue-query`](https://heyapi.dev/openapi-ts/plugins/tanstack-query)
345
345
  - [`fastify`](https://heyapi.dev/openapi-ts/plugins/fastify)
346
+ - [`nestjs`](https://heyapi.dev/openapi-ts/plugins/nest)
346
347
  - [`valibot`](https://heyapi.dev/openapi-ts/plugins/valibot)
347
348
  - [`zod`](https://heyapi.dev/openapi-ts/plugins/zod)
348
349
 
@@ -362,7 +363,6 @@ The following plugins are planned but not in development yet. You can help us pr
362
363
  - [Joi](https://heyapi.dev/openapi-ts/plugins/joi)
363
364
  - [Koa](https://heyapi.dev/openapi-ts/plugins/koa)
364
365
  - [MSW](https://heyapi.dev/openapi-ts/plugins/msw)
365
- - [Nest](https://heyapi.dev/openapi-ts/plugins/nest)
366
366
  - [Nock](https://heyapi.dev/openapi-ts/plugins/nock)
367
367
  - [Superstruct](https://heyapi.dev/openapi-ts/plugins/superstruct)
368
368
  - [Supertest](https://heyapi.dev/openapi-ts/plugins/supertest)
@@ -344,7 +344,12 @@ export const unwrapRefs = <T>(value: T): UnwrapRefs<T> => {
344
344
  return (isRef(value) ? unref(value) : value) as UnwrapRefs<T>;
345
345
  }
346
346
 
347
- if (value instanceof Blob) {
347
+ if (
348
+ value instanceof Blob ||
349
+ value instanceof FormData ||
350
+ value instanceof ReadableStream ||
351
+ value instanceof AbortSignal
352
+ ) {
348
353
  return value as UnwrapRefs<T>;
349
354
  }
350
355