@ai-sdk/openai 3.0.75 → 3.0.77

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.
@@ -4317,13 +4317,14 @@ var openaiLanguageModelResponsesOptionsSchema = lazySchema17(
4317
4317
  conversation: z19.string().nullish(),
4318
4318
  /**
4319
4319
  * The set of extra fields to include in the response (advanced, usually not needed).
4320
- * Example values: 'reasoning.encrypted_content', 'file_search_call.results', 'message.output_text.logprobs'.
4320
+ * Example values: 'reasoning.encrypted_content', 'file_search_call.results', 'web_search_call.results', 'message.output_text.logprobs'.
4321
4321
  */
4322
4322
  include: z19.array(
4323
4323
  z19.enum([
4324
4324
  "reasoning.encrypted_content",
4325
4325
  // handled internally by default, only needed for unknown reasoning models
4326
4326
  "file_search_call.results",
4327
+ "web_search_call.results",
4327
4328
  "message.output_text.logprobs"
4328
4329
  ])
4329
4330
  ).nullish(),