@ai-sdk/provider-utils 4.0.22 → 4.0.23

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
@@ -582,7 +582,7 @@ function withUserAgentSuffix(headers, ...userAgentSuffixParts) {
582
582
  }
583
583
 
584
584
  // src/version.ts
585
- var VERSION = true ? "4.0.22" : "0.0.0-test";
585
+ var VERSION = true ? "4.0.23" : "0.0.0-test";
586
586
 
587
587
  // src/get-from-api.ts
588
588
  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];
@@ -783,7 +783,7 @@ function loadSetting({
783
783
  }
784
784
  if (typeof process === "undefined") {
785
785
  throw new LoadSettingError({
786
- message: `${description} setting is missing. Pass it using the '${settingName}' parameter. Environment variables is not supported in this environment.`
786
+ message: `${description} setting is missing. Pass it using the '${settingName}' parameter. Environment variables are not supported in this environment.`
787
787
  });
788
788
  }
789
789
  settingValue = process.env[environmentVariableName];