@ai-sdk/provider 3.0.0-beta.24 → 3.0.0-beta.25

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @ai-sdk/provider
2
2
 
3
+ ## 3.0.0-beta.25
4
+
5
+ ### Patch Changes
6
+
7
+ - 53f3368: feat(provider): support embedding model call warnings in specification
8
+
3
9
  ## 3.0.0-beta.24
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -247,6 +247,10 @@ type EmbeddingModelV3 = {
247
247
  */
248
248
  body?: unknown;
249
249
  };
250
+ /**
251
+ Warnings for the call, e.g. unsupported settings.
252
+ */
253
+ warnings: Array<SharedV3Warning>;
250
254
  }>;
251
255
  };
252
256
 
package/dist/index.d.ts CHANGED
@@ -247,6 +247,10 @@ type EmbeddingModelV3 = {
247
247
  */
248
248
  body?: unknown;
249
249
  };
250
+ /**
251
+ Warnings for the call, e.g. unsupported settings.
252
+ */
253
+ warnings: Array<SharedV3Warning>;
250
254
  }>;
251
255
  };
252
256
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/provider",
3
- "version": "3.0.0-beta.24",
3
+ "version": "3.0.0-beta.25",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",