ai 5.0.252 → 5.0.253

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/dist/index.mjs CHANGED
@@ -727,7 +727,7 @@ import {
727
727
  } from "@ai-sdk/provider-utils";
728
728
 
729
729
  // src/version.ts
730
- var VERSION = true ? "5.0.252" : "0.0.0-test";
730
+ var VERSION = true ? "5.0.253" : "0.0.0-test";
731
731
 
732
732
  // src/util/download/download.ts
733
733
  var download = async ({
@@ -1267,7 +1267,7 @@ var jsonValueSchema = z2.lazy(
1267
1267
  z2.string(),
1268
1268
  z2.number(),
1269
1269
  z2.boolean(),
1270
- z2.record(z2.string(), jsonValueSchema),
1270
+ z2.record(z2.string(), jsonValueSchema.optional()),
1271
1271
  z2.array(jsonValueSchema)
1272
1272
  ])
1273
1273
  );