@ai-sdk/amazon-bedrock 4.0.0 → 4.0.1

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
@@ -1326,7 +1326,7 @@ var BedrockStopReasonSchema = z3.union([
1326
1326
  z3.string()
1327
1327
  ]);
1328
1328
  var BedrockAdditionalModelResponseFieldsSchema = z3.object({
1329
- stop_sequence: z3.string().optional()
1329
+ stop_sequence: z3.string().nullish()
1330
1330
  }).catchall(z3.unknown());
1331
1331
  var BedrockToolUseSchema = z3.object({
1332
1332
  toolUseId: z3.string(),
@@ -1746,7 +1746,7 @@ import {
1746
1746
  import { AwsV4Signer } from "aws4fetch";
1747
1747
 
1748
1748
  // src/version.ts
1749
- var VERSION = true ? "4.0.0" : "0.0.0-test";
1749
+ var VERSION = true ? "4.0.1" : "0.0.0-test";
1750
1750
 
1751
1751
  // src/bedrock-sigv4-fetch.ts
1752
1752
  function createSigV4FetchFunction(getCredentials, fetch = globalThis.fetch) {