@hey-api/openapi-ts 0.94.2 → 0.94.4

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.
@@ -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