@ai-sdk/provider-utils 4.0.0-beta.54 → 4.0.0-beta.56
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 +13 -0
- package/dist/index.d.mts +26 -1
- package/dist/index.d.ts +26 -1
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -382,7 +382,7 @@ function withUserAgentSuffix(headers, ...userAgentSuffixParts) {
|
|
|
382
382
|
}
|
|
383
383
|
|
|
384
384
|
// src/version.ts
|
|
385
|
-
var VERSION = true ? "4.0.0-beta.
|
|
385
|
+
var VERSION = true ? "4.0.0-beta.56" : "0.0.0-test";
|
|
386
386
|
|
|
387
387
|
// src/get-from-api.ts
|
|
388
388
|
var getOriginalFetch = () => globalThis.fetch;
|
|
@@ -2263,7 +2263,8 @@ function createProviderToolFactory({
|
|
|
2263
2263
|
function createProviderToolFactoryWithOutputSchema({
|
|
2264
2264
|
id,
|
|
2265
2265
|
inputSchema,
|
|
2266
|
-
outputSchema
|
|
2266
|
+
outputSchema,
|
|
2267
|
+
supportsDeferredResults
|
|
2267
2268
|
}) {
|
|
2268
2269
|
return ({
|
|
2269
2270
|
execute,
|
|
@@ -2284,7 +2285,8 @@ function createProviderToolFactoryWithOutputSchema({
|
|
|
2284
2285
|
toModelOutput,
|
|
2285
2286
|
onInputStart,
|
|
2286
2287
|
onInputDelta,
|
|
2287
|
-
onInputAvailable
|
|
2288
|
+
onInputAvailable,
|
|
2289
|
+
supportsDeferredResults
|
|
2288
2290
|
});
|
|
2289
2291
|
}
|
|
2290
2292
|
|