@ai-sdk/openai 3.0.0-beta.49 → 3.0.0-beta.50

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,13 @@
1
1
  # @ai-sdk/openai
2
2
 
3
+ ## 3.0.0-beta.50
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [bb36798]
8
+ - @ai-sdk/provider@3.0.0-beta.15
9
+ - @ai-sdk/provider-utils@4.0.0-beta.31
10
+
3
11
  ## 3.0.0-beta.49
4
12
 
5
13
  ### Patch Changes
package/dist/index.js CHANGED
@@ -2569,7 +2569,10 @@ var openaiResponsesChunkSchema = (0, import_provider_utils21.lazySchema)(
2569
2569
  queries: import_v416.z.array(import_v416.z.string()),
2570
2570
  results: import_v416.z.array(
2571
2571
  import_v416.z.object({
2572
- attributes: import_v416.z.record(import_v416.z.string(), import_v416.z.unknown()),
2572
+ attributes: import_v416.z.record(
2573
+ import_v416.z.string(),
2574
+ import_v416.z.union([import_v416.z.string(), import_v416.z.number(), import_v416.z.boolean()])
2575
+ ),
2573
2576
  file_id: import_v416.z.string(),
2574
2577
  filename: import_v416.z.string(),
2575
2578
  score: import_v416.z.number(),
@@ -2761,7 +2764,10 @@ var openaiResponsesResponseSchema = (0, import_provider_utils21.lazySchema)(
2761
2764
  queries: import_v416.z.array(import_v416.z.string()),
2762
2765
  results: import_v416.z.array(
2763
2766
  import_v416.z.object({
2764
- attributes: import_v416.z.record(import_v416.z.string(), import_v416.z.unknown()),
2767
+ attributes: import_v416.z.record(
2768
+ import_v416.z.string(),
2769
+ import_v416.z.union([import_v416.z.string(), import_v416.z.number(), import_v416.z.boolean()])
2770
+ ),
2765
2771
  file_id: import_v416.z.string(),
2766
2772
  filename: import_v416.z.string(),
2767
2773
  score: import_v416.z.number(),
@@ -4480,7 +4486,7 @@ var OpenAITranscriptionModel = class {
4480
4486
  };
4481
4487
 
4482
4488
  // src/version.ts
4483
- var VERSION = true ? "3.0.0-beta.49" : "0.0.0-test";
4489
+ var VERSION = true ? "3.0.0-beta.50" : "0.0.0-test";
4484
4490
 
4485
4491
  // src/openai-provider.ts
4486
4492
  function createOpenAI(options = {}) {