@ai-sdk/provider-utils 5.0.0-canary.34 → 5.0.0-canary.35

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @ai-sdk/provider-utils
2
2
 
3
+ ## 5.0.0-canary.35
4
+
5
+ ### Patch Changes
6
+
7
+ - f634bac: feat(mcp): add new McpProviderMetadata type
8
+
3
9
  ## 5.0.0-canary.34
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -1417,6 +1417,8 @@ type ToolOutputProperties<INPUT, OUTPUT, CONTEXT extends Context | unknown | nev
1417
1417
  type BaseTool<INPUT extends JSONValue | unknown | never = any, OUTPUT extends JSONValue | unknown | never = any, CONTEXT extends Context | unknown | never = any> = {
1418
1418
  /**
1419
1419
  * An optional title of the tool.
1420
+ *
1421
+ * @deprecated Use `providerMetadata` for source-specific tool display metadata.
1420
1422
  */
1421
1423
  title?: string;
1422
1424
  /**
package/dist/index.js CHANGED
@@ -862,7 +862,7 @@ function withUserAgentSuffix(headers, ...userAgentSuffixParts) {
862
862
  }
863
863
 
864
864
  // src/version.ts
865
- var VERSION = true ? "5.0.0-canary.34" : "0.0.0-test";
865
+ var VERSION = true ? "5.0.0-canary.35" : "0.0.0-test";
866
866
 
867
867
  // src/get-from-api.ts
868
868
  var getOriginalFetch = () => globalThis.fetch;