@ai-sdk/openai 4.0.0 → 4.0.1

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.
@@ -4613,13 +4613,14 @@ var openaiLanguageModelResponsesOptionsSchema = lazySchema17(
4613
4613
  conversation: z19.string().nullish(),
4614
4614
  /**
4615
4615
  * The set of extra fields to include in the response (advanced, usually not needed).
4616
- * Example values: 'reasoning.encrypted_content', 'file_search_call.results', 'message.output_text.logprobs'.
4616
+ * Example values: 'reasoning.encrypted_content', 'file_search_call.results', 'web_search_call.results', 'message.output_text.logprobs'.
4617
4617
  */
4618
4618
  include: z19.array(
4619
4619
  z19.enum([
4620
4620
  "reasoning.encrypted_content",
4621
4621
  // handled internally by default, only needed for unknown reasoning models
4622
4622
  "file_search_call.results",
4623
+ "web_search_call.results",
4623
4624
  "message.output_text.logprobs"
4624
4625
  ])
4625
4626
  ).nullish(),