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 +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
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