@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.
- package/dist/clients/nuxt/utils.ts +6 -1
- package/dist/index.d.mts +515 -323
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/{init-C6327prb.mjs → init-B4xCXgH4.mjs} +472 -163
- package/dist/init-B4xCXgH4.mjs.map +1 -0
- package/dist/internal.d.mts +1 -1
- package/dist/internal.mjs +1 -1
- package/dist/run.mjs +3 -3
- package/dist/{src-CdNoenvJ.mjs → src-B7Bwskcz.mjs} +5 -6
- package/dist/src-B7Bwskcz.mjs.map +1 -0
- package/dist/{types-CR-cSsLu.d.mts → types-DAEl4_a4.d.mts} +5 -12
- package/dist/types-DAEl4_a4.d.mts.map +1 -0
- package/package.json +5 -5
- package/dist/init-C6327prb.mjs.map +0 -1
- package/dist/src-CdNoenvJ.mjs.map +0 -1
- package/dist/types-CR-cSsLu.d.mts.map +0 -1
|
@@ -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 (
|
|
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
|
|