ai 6.0.191 → 6.0.193
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.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/internal/index.js +1 -1
- package/dist/internal/index.mjs +1 -1
- package/docs/02-foundations/02-providers-and-models.mdx +1 -0
- package/package.json +2 -2
- package/src/ui/validate-ui-messages.ts +5 -3
package/dist/index.mjs
CHANGED
|
@@ -1144,7 +1144,7 @@ import {
|
|
|
1144
1144
|
} from "@ai-sdk/provider-utils";
|
|
1145
1145
|
|
|
1146
1146
|
// src/version.ts
|
|
1147
|
-
var VERSION = true ? "6.0.
|
|
1147
|
+
var VERSION = true ? "6.0.193" : "0.0.0-test";
|
|
1148
1148
|
|
|
1149
1149
|
// src/util/download/download.ts
|
|
1150
1150
|
var download = async ({
|
|
@@ -9065,7 +9065,7 @@ async function safeValidateUIMessages({
|
|
|
9065
9065
|
})
|
|
9066
9066
|
};
|
|
9067
9067
|
}
|
|
9068
|
-
if (toolPart.state === "input-available" || toolPart.state === "output-available"
|
|
9068
|
+
if (toolPart.state === "input-available" || toolPart.state === "output-available") {
|
|
9069
9069
|
await validateTypes3({
|
|
9070
9070
|
value: toolPart.input,
|
|
9071
9071
|
schema: tool2.inputSchema,
|