@ai-sdk/gateway 3.0.136 → 3.0.137

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ai-sdk/gateway",
3
3
  "private": false,
4
- "version": "3.0.136",
4
+ "version": "3.0.137",
5
5
  "license": "Apache-2.0",
6
6
  "sideEffects": false,
7
7
  "main": "./dist/index.js",
@@ -199,16 +199,20 @@ const parallelSearchInputSchema = lazySchema(() =>
199
199
  include_domains: z
200
200
  .array(z.string())
201
201
  .optional()
202
- .describe('List of domains to include in search results.'),
202
+ .describe(
203
+ 'Limit results to these domains. Use plain domain names only — e.g. example.com or sub.example.gov, or a bare extension like .edu. Do not include a scheme, path, or port (e.g. not https://example.com/page).',
204
+ ),
203
205
  exclude_domains: z
204
206
  .array(z.string())
205
207
  .optional()
206
- .describe('List of domains to exclude from search results.'),
208
+ .describe(
209
+ 'Exclude results from these domains. Use plain domain names only — e.g. example.com or sub.example.gov, or a bare extension like .edu. Do not include a scheme, path, or port (e.g. not https://example.com/page).',
210
+ ),
207
211
  after_date: z
208
212
  .string()
209
213
  .optional()
210
214
  .describe(
211
- 'Only include results published after this date (ISO 8601 format).',
215
+ 'Only include results published after this date. Use an ISO 8601 calendar date formatted YYYY-MM-DD (e.g. 2025-01-01); do not include a time.',
212
216
  ),
213
217
  })
214
218
  .optional()