scrapebadger 0.26.0 → 0.26.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.
package/dist/index.d.cts CHANGED
@@ -12219,6 +12219,8 @@ interface ChatGPTAskResponse {
12219
12219
  truncated: boolean;
12220
12220
  web_search_triggered: boolean;
12221
12221
  /** Raw reference markers (e.g. "turn0search1") */
12222
+ /** Actual sub-queries ChatGPT issued to the search engine. */
12223
+ search_queries: string[];
12222
12224
  reference_tokens: string[];
12223
12225
  /** Model slug that answered (e.g. "gpt-5-5") */
12224
12226
  model: string | null;
package/dist/index.d.ts CHANGED
@@ -12219,6 +12219,8 @@ interface ChatGPTAskResponse {
12219
12219
  truncated: boolean;
12220
12220
  web_search_triggered: boolean;
12221
12221
  /** Raw reference markers (e.g. "turn0search1") */
12222
+ /** Actual sub-queries ChatGPT issued to the search engine. */
12223
+ search_queries: string[];
12222
12224
  reference_tokens: string[];
12223
12225
  /** Model slug that answered (e.g. "gpt-5-5") */
12224
12226
  model: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scrapebadger",
3
- "version": "0.26.0",
3
+ "version": "0.26.1",
4
4
  "description": "Official Node.js SDK for ScrapeBadger - Async web scraping APIs for Twitter, Google, Vinted, Reddit, and more",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",