@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.
@@ -2647,7 +2647,10 @@ var openaiResponsesChunkSchema = lazySchema12(
2647
2647
  queries: z14.array(z14.string()),
2648
2648
  results: z14.array(
2649
2649
  z14.object({
2650
- attributes: z14.record(z14.string(), z14.unknown()),
2650
+ attributes: z14.record(
2651
+ z14.string(),
2652
+ z14.union([z14.string(), z14.number(), z14.boolean()])
2653
+ ),
2651
2654
  file_id: z14.string(),
2652
2655
  filename: z14.string(),
2653
2656
  score: z14.number(),
@@ -2839,7 +2842,10 @@ var openaiResponsesResponseSchema = lazySchema12(
2839
2842
  queries: z14.array(z14.string()),
2840
2843
  results: z14.array(
2841
2844
  z14.object({
2842
- attributes: z14.record(z14.string(), z14.unknown()),
2845
+ attributes: z14.record(
2846
+ z14.string(),
2847
+ z14.union([z14.string(), z14.number(), z14.boolean()])
2848
+ ),
2843
2849
  file_id: z14.string(),
2844
2850
  filename: z14.string(),
2845
2851
  score: z14.number(),