@ai-sdk/provider-utils 5.0.0-beta.11 → 5.0.0-beta.14

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
@@ -577,7 +577,7 @@ function withUserAgentSuffix(headers, ...userAgentSuffixParts) {
577
577
  }
578
578
 
579
579
  // src/version.ts
580
- var VERSION = true ? "5.0.0-beta.11" : "0.0.0-test";
580
+ var VERSION = true ? "5.0.0-beta.14" : "0.0.0-test";
581
581
 
582
582
  // src/get-from-api.ts
583
583
  var getOriginalFetch = () => globalThis.fetch;
@@ -730,7 +730,7 @@ function loadApiKey({
730
730
  }
731
731
  if (typeof process === "undefined") {
732
732
  throw new LoadAPIKeyError({
733
- message: `${description} API key is missing. Pass it using the '${apiKeyParameterName}' parameter. Environment variables is not supported in this environment.`
733
+ message: `${description} API key is missing. Pass it using the '${apiKeyParameterName}' parameter. Environment variables are not supported in this environment.`
734
734
  });
735
735
  }
736
736
  apiKey = process.env[environmentVariableName];
@@ -840,7 +840,7 @@ function loadSetting({
840
840
  }
841
841
  if (typeof process === "undefined") {
842
842
  throw new LoadSettingError({
843
- message: `${description} setting is missing. Pass it using the '${settingName}' parameter. Environment variables is not supported in this environment.`
843
+ message: `${description} setting is missing. Pass it using the '${settingName}' parameter. Environment variables are not supported in this environment.`
844
844
  });
845
845
  }
846
846
  settingValue = process.env[environmentVariableName];