@ai-sdk/google 4.0.0-canary.64 → 4.0.0-canary.65

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/google
2
2
 
3
+ ## 4.0.0-canary.65
4
+
5
+ ### Patch Changes
6
+
7
+ - 4e825f3: feat(google): update Interactions API implementation to cater for upstream breaking changes coming May 26
8
+
3
9
  ## 4.0.0-canary.64
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -291,6 +291,22 @@ declare const googleInteractionsLanguageModelOptions: _ai_sdk_provider_utils.Laz
291
291
  } | null | undefined;
292
292
  thinkingLevel?: "minimal" | "low" | "medium" | "high" | null | undefined;
293
293
  thinkingSummaries?: "auto" | "none" | null | undefined;
294
+ responseFormat?: ({
295
+ [x: string]: unknown;
296
+ type: "text";
297
+ mimeType?: string | null | undefined;
298
+ schema?: unknown;
299
+ } | {
300
+ [x: string]: unknown;
301
+ type: "image";
302
+ mimeType?: string | null | undefined;
303
+ aspectRatio?: "1:1" | "2:3" | "3:2" | "3:4" | "4:3" | "4:5" | "5:4" | "9:16" | "16:9" | "21:9" | "1:8" | "8:1" | "1:4" | "4:1" | null | undefined;
304
+ imageSize?: "1K" | "2K" | "4K" | "512" | null | undefined;
305
+ } | {
306
+ [x: string]: unknown;
307
+ type: "audio";
308
+ mimeType?: string | null | undefined;
309
+ })[] | null | undefined;
294
310
  imageConfig?: {
295
311
  aspectRatio?: "1:1" | "2:3" | "3:2" | "3:4" | "4:3" | "4:5" | "5:4" | "9:16" | "16:9" | "21:9" | "1:8" | "8:1" | "1:4" | "4:1" | null | undefined;
296
312
  imageSize?: "1K" | "2K" | "4K" | "512" | null | undefined;