@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/dist/index.mjs CHANGED
@@ -2620,7 +2620,10 @@ var openaiResponsesChunkSchema = lazySchema14(
2620
2620
  queries: z16.array(z16.string()),
2621
2621
  results: z16.array(
2622
2622
  z16.object({
2623
- attributes: z16.record(z16.string(), z16.unknown()),
2623
+ attributes: z16.record(
2624
+ z16.string(),
2625
+ z16.union([z16.string(), z16.number(), z16.boolean()])
2626
+ ),
2624
2627
  file_id: z16.string(),
2625
2628
  filename: z16.string(),
2626
2629
  score: z16.number(),
@@ -2812,7 +2815,10 @@ var openaiResponsesResponseSchema = lazySchema14(
2812
2815
  queries: z16.array(z16.string()),
2813
2816
  results: z16.array(
2814
2817
  z16.object({
2815
- attributes: z16.record(z16.string(), z16.unknown()),
2818
+ attributes: z16.record(
2819
+ z16.string(),
2820
+ z16.union([z16.string(), z16.number(), z16.boolean()])
2821
+ ),
2816
2822
  file_id: z16.string(),
2817
2823
  filename: z16.string(),
2818
2824
  score: z16.number(),
@@ -4545,7 +4551,7 @@ var OpenAITranscriptionModel = class {
4545
4551
  };
4546
4552
 
4547
4553
  // src/version.ts
4548
- var VERSION = true ? "3.0.0-beta.49" : "0.0.0-test";
4554
+ var VERSION = true ? "3.0.0-beta.50" : "0.0.0-test";
4549
4555
 
4550
4556
  // src/openai-provider.ts
4551
4557
  function createOpenAI(options = {}) {