@ai-sdk/provider-utils 5.0.26 → 5.0.27
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/CHANGELOG.md +6 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/read-response-with-size-limit.ts +2 -0
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -1109,6 +1109,7 @@ async function readResponseWithSizeLimit({
|
|
|
1109
1109
|
} finally {
|
|
1110
1110
|
try {
|
|
1111
1111
|
await reader.cancel();
|
|
1112
|
+
} catch (e) {
|
|
1112
1113
|
} finally {
|
|
1113
1114
|
reader.releaseLock();
|
|
1114
1115
|
}
|
|
@@ -1328,7 +1329,7 @@ function withUserAgentSuffix(headers, ...userAgentSuffixParts) {
|
|
|
1328
1329
|
}
|
|
1329
1330
|
|
|
1330
1331
|
// src/version.ts
|
|
1331
|
-
var VERSION = true ? "5.0.
|
|
1332
|
+
var VERSION = true ? "5.0.27" : "0.0.0-test";
|
|
1332
1333
|
|
|
1333
1334
|
// src/get-from-api.ts
|
|
1334
1335
|
var getOriginalFetch = () => globalThis.fetch;
|