ai 7.0.50 → 7.0.52

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,24 @@
1
1
  # ai
2
2
 
3
+ ## 7.0.52
4
+
5
+ ### Patch Changes
6
+
7
+ - 3836a85: Skip re-validating tool input for terminal output-available UI message parts.
8
+ - Updated dependencies [1bec07d]
9
+ - Updated dependencies [53c326e]
10
+ - Updated dependencies [d765f82]
11
+ - @ai-sdk/provider-utils@5.0.21
12
+ - @ai-sdk/gateway@4.0.41
13
+
14
+ ## 7.0.51
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [160ccdb]
19
+ - @ai-sdk/provider-utils@5.0.20
20
+ - @ai-sdk/gateway@4.0.40
21
+
3
22
  ## 7.0.50
4
23
 
5
24
  ### Patch Changes
package/dist/index.js CHANGED
@@ -1143,7 +1143,7 @@ import {
1143
1143
  } from "@ai-sdk/provider-utils";
1144
1144
 
1145
1145
  // src/version.ts
1146
- var VERSION = true ? "7.0.50" : "0.0.0-test";
1146
+ var VERSION = true ? "7.0.52" : "0.0.0-test";
1147
1147
 
1148
1148
  // src/util/download/download.ts
1149
1149
  var download = async ({
@@ -11391,7 +11391,7 @@ async function safeValidateUIMessages({
11391
11391
  })
11392
11392
  };
11393
11393
  }
11394
- if (toolPart.state === "input-available" || toolPart.state === "output-available") {
11394
+ if (toolPart.state === "input-available") {
11395
11395
  await validateTypes4({
11396
11396
  value: toolPart.input,
11397
11397
  schema: tool2.inputSchema,