scrapebadger 0.24.2 → 0.26.0

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
@@ -1,5 +1,5 @@
1
- import { B as BaseClient, T as TwitterClient, S as ScrapeBadgerConfig } from './index-jp8WyFsJ.cjs';
2
- export { e as AccountRestrictedError, a3 as ApiResponse, $ as Article, A as AuthenticationError, aj as BillingLog, ak as BillingLogList, a2 as Broadcast, j as CommunitiesClient, K as Community, F as CommunityBanner, O as CommunityMember, a0 as CommunityNote, J as CommunityRule, q as CommunityTweetType, C as ConflictError, al as ConnectOptions, ab as ConnectedEvent, a8 as CreateMonitorParams, ah as DeliveryLog, ai as DeliveryLogList, ae as ErrorEvent, ao as FilterRuleCreate, at as FilterRuleDeliveryLog, au as FilterRuleDeliveryLogListResponse, ar as FilterRuleListResponse, aq as FilterRulePricingTier, av as FilterRulePricingTiersResponse, an as FilterRuleResponse, am as FilterRuleStatus, ap as FilterRuleUpdate, as as FilterRuleValidateResponse, G as GeoClient, l as GeoSearchOptions, H as Hashtag, I as InsufficientCreditsError, g as IteratorOptions, E as List, a4 as ListResponse, L as ListsClient, Y as Location, M as Media, a5 as MonitorStatus, N as NotFoundError, P as PaginatedResponse, f as PaginationOptions, ac as PingEvent, _ as Place, Z as PlaceTrends, s as Poll, r as PollOption, Q as QueryType, b as RateLimitError, R as ResolvedConfig, a as ScrapeBadgerError, c as ServerError, a1 as Space, o as SpacesClient, m as StreamClient, n as StreamEmitter, af as StreamEvent, ag as StreamEventType, a6 as StreamMonitor, a7 as StreamMonitorList, aa as StreamTweet, d as TimeoutError, X as Trend, p as TrendCategory, k as TrendsClient, x as Tweet, ad as TweetEvent, w as TweetPlace, i as TweetsClient, a9 as UpdateMonitorParams, t as Url, y as User, z as UserAbout, D as UserIds, u as UserMention, U as UsersClient, V as ValidationError, W as WebSocketStreamError, h as collectAll, v as verifyWebhookSignature } from './index-jp8WyFsJ.cjs';
1
+ import { B as BaseClient, T as TwitterClient, S as ScrapeBadgerConfig } from './index-ZD3sVCjc.cjs';
2
+ export { e as AccountRestrictedError, a3 as ApiResponse, $ as Article, A as AuthenticationError, aj as BillingLog, ak as BillingLogList, a2 as Broadcast, j as CommunitiesClient, K as Community, F as CommunityBanner, O as CommunityMember, a0 as CommunityNote, J as CommunityRule, q as CommunityTweetType, C as ConflictError, al as ConnectOptions, ab as ConnectedEvent, a8 as CreateMonitorParams, ah as DeliveryLog, ai as DeliveryLogList, ae as ErrorEvent, ao as FilterRuleCreate, at as FilterRuleDeliveryLog, au as FilterRuleDeliveryLogListResponse, ar as FilterRuleListResponse, aq as FilterRulePricingTier, av as FilterRulePricingTiersResponse, an as FilterRuleResponse, am as FilterRuleStatus, ap as FilterRuleUpdate, as as FilterRuleValidateResponse, G as GeoClient, l as GeoSearchOptions, H as Hashtag, I as InsufficientCreditsError, g as IteratorOptions, E as List, a4 as ListResponse, L as ListsClient, Y as Location, M as Media, a5 as MonitorStatus, N as NotFoundError, P as PaginatedResponse, f as PaginationOptions, ac as PingEvent, _ as Place, Z as PlaceTrends, s as Poll, r as PollOption, Q as QueryType, b as RateLimitError, R as ResolvedConfig, a as ScrapeBadgerError, c as ServerError, a1 as Space, o as SpacesClient, m as StreamClient, n as StreamEmitter, af as StreamEvent, ag as StreamEventType, a6 as StreamMonitor, a7 as StreamMonitorList, aa as StreamTweet, d as TimeoutError, X as Trend, p as TrendCategory, k as TrendsClient, x as Tweet, ad as TweetEvent, w as TweetPlace, i as TweetsClient, a9 as UpdateMonitorParams, t as Url, y as User, z as UserAbout, D as UserIds, u as UserMention, U as UsersClient, V as ValidationError, W as WebSocketStreamError, h as collectAll, v as verifyWebhookSignature } from './index-ZD3sVCjc.cjs';
3
3
  import 'node:events';
4
4
 
5
5
  /**
@@ -65,6 +65,22 @@ interface ScrapeResult {
65
65
  url: string;
66
66
  status_code: number;
67
67
  content: string | null;
68
+ /**
69
+ * Base64 body for a binary target (image/PDF/archive). Set instead of
70
+ * `content`, which is null there — binary bytes have no text form.
71
+ * Null when the body exceeded the 25 MB base64 ceiling.
72
+ */
73
+ content_base64: string | null;
74
+ /** Whether the target returned a binary (non-text) body. */
75
+ is_binary: boolean;
76
+ /** The target's response Content-Type, as a bare media type. */
77
+ content_type: string | null;
78
+ /**
79
+ * Undecoded response body. Only set when `rawContent: true` — that mode
80
+ * returns the body itself rather than a JSON envelope. Write it straight to
81
+ * a file; do not decode it, the payload may be an image or a PDF.
82
+ */
83
+ content_bytes?: Uint8Array;
68
84
  format: string;
69
85
  engine_used: string;
70
86
  credits_used: number;
@@ -144,6 +160,16 @@ declare class WebClient {
144
160
  * @returns The scrape result including content, metadata, and credit usage
145
161
  */
146
162
  scrape(url: string, options?: ScrapeOptions): Promise<ScrapeResult>;
163
+ /**
164
+ * Run a `rawContent` scrape, whose response is not JSON.
165
+ *
166
+ * The normal path funnels a non-JSON response into `{ detail: text }`, so a
167
+ * raw scrape returned a result with no content — and for a binary target,
168
+ * `response.text()` decoded the bytes as UTF-8 and destroyed them. Read the
169
+ * body as bytes and rebuild the metadata from the `X-Scrape-*` headers the
170
+ * server sends in this mode.
171
+ */
172
+ private scrapeRaw;
147
173
  /**
148
174
  * Extract structured data from a web page using AI.
149
175
  *
@@ -782,7 +808,7 @@ declare class UsersClient$2 {
782
808
  * }
783
809
  * ```
784
810
  */
785
- declare class ReferenceClient$9 {
811
+ declare class ReferenceClient$a {
786
812
  private readonly client;
787
813
  constructor(client: BaseClient);
788
814
  /**
@@ -903,7 +929,7 @@ declare class VintedClient {
903
929
  /** Client for user operations */
904
930
  readonly users: UsersClient$2;
905
931
  /** Client for reference data (brands, colors, statuses, markets) */
906
- readonly reference: ReferenceClient$9;
932
+ readonly reference: ReferenceClient$a;
907
933
  /**
908
934
  * Create a new Vinted client.
909
935
  *
@@ -4827,7 +4853,7 @@ declare class SellersClient$2 {
4827
4853
  * const categories = await client.amazon.reference.categories();
4828
4854
  * ```
4829
4855
  */
4830
- declare class ReferenceClient$8 {
4856
+ declare class ReferenceClient$9 {
4831
4857
  private readonly client;
4832
4858
  constructor(client: BaseClient);
4833
4859
  /**
@@ -4890,7 +4916,7 @@ declare class AmazonClient {
4890
4916
  /** Client for seller profile, products, and feedback */
4891
4917
  readonly sellers: SellersClient$2;
4892
4918
  /** Client for reference data (markets, categories) */
4893
- readonly reference: ReferenceClient$8;
4919
+ readonly reference: ReferenceClient$9;
4894
4920
  /**
4895
4921
  * Create a new Amazon client.
4896
4922
  *
@@ -5305,7 +5331,7 @@ declare class ReviewsClient {
5305
5331
  * }
5306
5332
  * ```
5307
5333
  */
5308
- declare class ReferenceClient$7 {
5334
+ declare class ReferenceClient$8 {
5309
5335
  private readonly client;
5310
5336
  constructor(client: BaseClient);
5311
5337
  /**
@@ -5371,7 +5397,7 @@ declare class ShopeeClient {
5371
5397
  /** Client for product reviews and rating summaries */
5372
5398
  readonly reviews: ReviewsClient;
5373
5399
  /** Client for reference data (markets, category tree) */
5374
- readonly reference: ReferenceClient$7;
5400
+ readonly reference: ReferenceClient$8;
5375
5401
  /**
5376
5402
  * Create a new Shopee client.
5377
5403
  *
@@ -6423,7 +6449,7 @@ declare class AdsClient$1 {
6423
6449
  * }
6424
6450
  * ```
6425
6451
  */
6426
- declare class ReferenceClient$6 {
6452
+ declare class ReferenceClient$7 {
6427
6453
  private readonly client;
6428
6454
  constructor(client: BaseClient);
6429
6455
  /**
@@ -6498,7 +6524,7 @@ declare class TikTokClient {
6498
6524
  /** Client for the Commercial Content Library (ad transparency) */
6499
6525
  readonly ads: AdsClient$1;
6500
6526
  /** Client for reference data (regions) and service health */
6501
- readonly reference: ReferenceClient$6;
6527
+ readonly reference: ReferenceClient$7;
6502
6528
  /**
6503
6529
  * Create a new TikTok client.
6504
6530
  *
@@ -7191,7 +7217,7 @@ declare class CategoriesClient {
7191
7217
  * }
7192
7218
  * ```
7193
7219
  */
7194
- declare class ReferenceClient$5 {
7220
+ declare class ReferenceClient$6 {
7195
7221
  private readonly client;
7196
7222
  constructor(client: BaseClient);
7197
7223
  /**
@@ -7254,7 +7280,7 @@ declare class EbayClient {
7254
7280
  /** Client for category browse and the reference category list */
7255
7281
  readonly categories: CategoriesClient;
7256
7282
  /** Client for reference data (markets) */
7257
- readonly reference: ReferenceClient$5;
7283
+ readonly reference: ReferenceClient$6;
7258
7284
  /**
7259
7285
  * Create a new eBay client.
7260
7286
  *
@@ -8664,7 +8690,7 @@ declare class MusicClient {
8664
8690
  * const markets = await client.youtube.reference.markets();
8665
8691
  * ```
8666
8692
  */
8667
- declare class ReferenceClient$4 {
8693
+ declare class ReferenceClient$5 {
8668
8694
  private readonly client;
8669
8695
  constructor(client: BaseClient);
8670
8696
  /**
@@ -8758,7 +8784,7 @@ declare class YoutubeClient {
8758
8784
  /** Client for YouTube Music search */
8759
8785
  readonly music: MusicClient;
8760
8786
  /** Client for reference data (categories, languages, regions, markets) */
8761
- readonly reference: ReferenceClient$4;
8787
+ readonly reference: ReferenceClient$5;
8762
8788
  /**
8763
8789
  * Create a new YouTube client.
8764
8790
  *
@@ -9151,7 +9177,7 @@ declare class PropertiesClient$1 {
9151
9177
  * }
9152
9178
  * ```
9153
9179
  */
9154
- declare class ReferenceClient$3 {
9180
+ declare class ReferenceClient$4 {
9155
9181
  private readonly client;
9156
9182
  constructor(client: BaseClient);
9157
9183
  /**
@@ -9201,7 +9227,7 @@ declare class RealtorClient {
9201
9227
  /** Client for full property detail */
9202
9228
  readonly properties: PropertiesClient$1;
9203
9229
  /** Client for reference data (markets) */
9204
- readonly reference: ReferenceClient$3;
9230
+ readonly reference: ReferenceClient$4;
9205
9231
  /**
9206
9232
  * Create a new Realtor client.
9207
9233
  *
@@ -9644,7 +9670,7 @@ declare class SellersClient {
9644
9670
  * const { markets } = await client.leboncoin.reference.markets();
9645
9671
  * ```
9646
9672
  */
9647
- declare class ReferenceClient$2 {
9673
+ declare class ReferenceClient$3 {
9648
9674
  private readonly client;
9649
9675
  constructor(client: BaseClient);
9650
9676
  /**
@@ -9727,7 +9753,7 @@ declare class LeboncoinClient {
9727
9753
  /** Client for seller profile and listings */
9728
9754
  readonly sellers: SellersClient;
9729
9755
  /** Client for reference data (categories, regions, departments, locations, markets) */
9730
- readonly reference: ReferenceClient$2;
9756
+ readonly reference: ReferenceClient$3;
9731
9757
  /**
9732
9758
  * Create a new Leboncoin client.
9733
9759
  *
@@ -10519,7 +10545,7 @@ declare class AgentClient {
10519
10545
  * }
10520
10546
  * ```
10521
10547
  */
10522
- declare class ReferenceClient$1 {
10548
+ declare class ReferenceClient$2 {
10523
10549
  private readonly client;
10524
10550
  constructor(client: BaseClient);
10525
10551
  /**
@@ -10576,7 +10602,7 @@ declare class ZillowClient {
10576
10602
  /** Client for agent profile + listings */
10577
10603
  readonly agent: AgentClient;
10578
10604
  /** Client for reference data (markets) */
10579
- readonly reference: ReferenceClient$1;
10605
+ readonly reference: ReferenceClient$2;
10580
10606
  /**
10581
10607
  * Create a new Zillow client.
10582
10608
  *
@@ -11406,7 +11432,7 @@ declare class BrokersClient {
11406
11432
  * const types = await client.loopnet.reference.propertyTypes();
11407
11433
  * ```
11408
11434
  */
11409
- declare class ReferenceClient {
11435
+ declare class ReferenceClient$1 {
11410
11436
  private readonly client;
11411
11437
  constructor(client: BaseClient);
11412
11438
  /**
@@ -11467,7 +11493,7 @@ declare class LoopNetClient {
11467
11493
  /** Client for broker profile and their active listings */
11468
11494
  readonly brokers: BrokersClient;
11469
11495
  /** Client for reference data (markets, property types) */
11470
- readonly reference: ReferenceClient;
11496
+ readonly reference: ReferenceClient$1;
11471
11497
  /**
11472
11498
  * Create a new LoopNet client.
11473
11499
  *
@@ -12086,6 +12112,420 @@ declare class LinkedInClient {
12086
12112
  health(): Promise<LinkedInHealthResponse>;
12087
12113
  }
12088
12114
 
12115
+ /**
12116
+ * TypeScript types for the ChatGPT API.
12117
+ *
12118
+ * Answers come from the real chatgpt.com web surface (not the OpenAI API),
12119
+ * anonymously — no OpenAI account or API key is involved.
12120
+ */
12121
+ /** Whether ChatGPT should browse the web for the answer. */
12122
+ type ChatGPTWebSearchMode = "auto" | "force" | "off";
12123
+ /** Parameters for the ask endpoint. */
12124
+ interface ChatGPTAskParams {
12125
+ /** The prompt to send. Maximum 4096 characters. */
12126
+ prompt: string;
12127
+ /** ISO-3166 alpha-2 egress country (default: "US") */
12128
+ country?: string;
12129
+ /** Whether ChatGPT should browse (default: "auto") */
12130
+ web_search?: ChatGPTWebSearchMode;
12131
+ }
12132
+ /** Parameters for the brand-visibility endpoint. */
12133
+ interface ChatGPTBrandVisibilityParams {
12134
+ /** The prompt to send. Maximum 4096 characters. */
12135
+ prompt: string;
12136
+ /** The brand name to look for in the answer. */
12137
+ brand: string;
12138
+ /** The brand's domain, used to detect brand citations. */
12139
+ domain?: string;
12140
+ /** Other spellings of the brand that should count as mentions. */
12141
+ aliases?: string[];
12142
+ /** Competitor names to measure share of voice against. */
12143
+ competitors?: string[];
12144
+ /** ISO-3166 alpha-2 egress country (default: "US") */
12145
+ country?: string;
12146
+ /** Whether ChatGPT should browse (default: "force") */
12147
+ web_search?: ChatGPTWebSearchMode;
12148
+ }
12149
+ /** Parameters for the models endpoint. */
12150
+ interface ChatGPTModelsParams {
12151
+ /** ISO-3166 alpha-2 egress country (default: "US") */
12152
+ country?: string;
12153
+ }
12154
+ /**
12155
+ * A web source ChatGPT actually referenced in its answer.
12156
+ *
12157
+ * `start_index` / `end_index` are character offsets into the answer, so a
12158
+ * citation can be anchored to the exact span of text it supports.
12159
+ */
12160
+ interface ChatGPTCitation {
12161
+ /** Source URL */
12162
+ url: string | null;
12163
+ /** Page title */
12164
+ title: string | null;
12165
+ /** Snippet of the source text */
12166
+ snippet: string | null;
12167
+ /** Bare domain of the source (e.g. "reuters.com") */
12168
+ domain: string | null;
12169
+ /** Publisher attribution string, when ChatGPT provides one */
12170
+ attribution: string | null;
12171
+ /** Publication time as a Unix timestamp */
12172
+ pub_date_utc: number | null;
12173
+ /** Publication time as an ISO-8601 Z string */
12174
+ published_at: string | null;
12175
+ /** Character offset into the answer where the supported span begins */
12176
+ start_index: number | null;
12177
+ /** Character offset into the answer where the supported span ends */
12178
+ end_index: number | null;
12179
+ /** The answer substring this source supports */
12180
+ matched_text: string | null;
12181
+ }
12182
+ /** One entry of the FULL set ChatGPT retrieved — cited or not. */
12183
+ interface ChatGPTSearchResult {
12184
+ /** Result URL */
12185
+ url: string | null;
12186
+ /** Page title */
12187
+ title: string | null;
12188
+ /** Snippet of the result text */
12189
+ snippet: string | null;
12190
+ /** Bare domain of the result */
12191
+ domain: string | null;
12192
+ /** Publisher attribution string, when present */
12193
+ attribution: string | null;
12194
+ /** Publication time as a Unix timestamp */
12195
+ pub_date_utc: number | null;
12196
+ /** Publication time as an ISO-8601 Z string */
12197
+ published_at: string | null;
12198
+ /** Index of this result in the retrieved set */
12199
+ ref_index: number | null;
12200
+ /** Whether this result was actually referenced in the answer */
12201
+ cited: boolean;
12202
+ }
12203
+ /** A ChatGPT answer with its sources. */
12204
+ interface ChatGPTAskResponse {
12205
+ /** The prompt that was sent */
12206
+ prompt: string;
12207
+ /** The answer as plain text */
12208
+ answer: string;
12209
+ /** The answer as markdown, when available */
12210
+ answer_markdown: string | null;
12211
+ /** Sources ChatGPT actually referenced */
12212
+ citations: ChatGPTCitation[];
12213
+ /** The full retrieved set, cited or not */
12214
+ search_results: ChatGPTSearchResult[];
12215
+ /** Distinct domains across the sources */
12216
+ source_domains: string[];
12217
+ /** Whether ChatGPT ACTUALLY browsed the web */
12218
+ /** True when the render budget expired mid-answer; `answer` is partial. */
12219
+ truncated: boolean;
12220
+ web_search_triggered: boolean;
12221
+ /** Raw reference markers (e.g. "turn0search1") */
12222
+ reference_tokens: string[];
12223
+ /** Model slug that answered (e.g. "gpt-5-5") */
12224
+ model: string | null;
12225
+ /** ChatGPT conversation identifier */
12226
+ conversation_id: string | null;
12227
+ /** ChatGPT message identifier */
12228
+ message_id: string | null;
12229
+ /** ISO-3166 alpha-2 egress country used */
12230
+ country: string;
12231
+ /** Length of the answer in characters */
12232
+ answer_length: number;
12233
+ /** Number of citations */
12234
+ citation_count: number;
12235
+ /** End-to-end latency in milliseconds */
12236
+ latency_ms: number;
12237
+ /** Creation time as a Unix timestamp */
12238
+ created_utc: number | null;
12239
+ /** Creation time as an ISO-8601 Z string */
12240
+ created_at: string | null;
12241
+ }
12242
+ /** How one competitor fared in the same answer. */
12243
+ interface ChatGPTCompetitorMention {
12244
+ /** Competitor name as supplied in the request */
12245
+ name: string;
12246
+ /** Whether the competitor appears in the answer */
12247
+ mentioned: boolean;
12248
+ /** Number of mentions */
12249
+ mention_count: number;
12250
+ /** Character offset of the first mention */
12251
+ first_position: number | null;
12252
+ /** Whether a competitor URL is cited as a source */
12253
+ cited: boolean;
12254
+ /** Cited URLs attributed to this competitor */
12255
+ cited_urls: string[];
12256
+ }
12257
+ /** AEO/GEO brand analysis of a ChatGPT answer. */
12258
+ interface ChatGPTBrandVisibilityResponse {
12259
+ /** The prompt that was sent */
12260
+ prompt: string;
12261
+ /** The brand that was analysed */
12262
+ brand: string;
12263
+ /** The brand's domain, when supplied */
12264
+ domain: string | null;
12265
+ /** Whether the brand appears in the answer */
12266
+ mentioned: boolean;
12267
+ /** Number of brand mentions */
12268
+ mention_count: number;
12269
+ /** Character offset of the first brand mention */
12270
+ first_position: number | null;
12271
+ /** 1.0 = named at the very start, 0.0 = absent */
12272
+ position_score: number;
12273
+ /** Brand mentions / (brand + competitor mentions) */
12274
+ share_of_voice_pct: number;
12275
+ /** Whether the brand's domain is cited as a source */
12276
+ cited: boolean;
12277
+ /** Cited URLs on the brand's domain */
12278
+ cited_urls: string[];
12279
+ /** 1-based rank of the first cited brand URL */
12280
+ citation_rank: number | null;
12281
+ /** Per-competitor breakdown */
12282
+ competitors: ChatGPTCompetitorMention[];
12283
+ /** Answer text around the first brand mention */
12284
+ excerpt: string | null;
12285
+ /** The answer as plain text */
12286
+ answer: string;
12287
+ /** Sources ChatGPT actually referenced */
12288
+ citations: ChatGPTCitation[];
12289
+ /** Whether ChatGPT ACTUALLY browsed the web */
12290
+ web_search_triggered: boolean;
12291
+ /** Model slug that answered */
12292
+ model: string | null;
12293
+ /** ISO-3166 alpha-2 egress country used */
12294
+ country: string;
12295
+ /** End-to-end latency in milliseconds */
12296
+ latency_ms: number;
12297
+ /** Creation time as a Unix timestamp */
12298
+ created_utc: number | null;
12299
+ /** Creation time as an ISO-8601 Z string */
12300
+ created_at: string | null;
12301
+ }
12302
+ /** One model offered by chatgpt.com. */
12303
+ interface ChatGPTModel {
12304
+ /** Model slug (e.g. "gpt-5-5") */
12305
+ slug: string;
12306
+ /** Human-readable name */
12307
+ title: string | null;
12308
+ /** Short description */
12309
+ description: string | null;
12310
+ /** Maximum context length, when advertised */
12311
+ max_tokens: number | null;
12312
+ /** Model tags */
12313
+ tags: string[];
12314
+ }
12315
+ /** The models chatgpt.com currently offers. */
12316
+ interface ChatGPTModelsResponse {
12317
+ /** Available models */
12318
+ models: ChatGPTModel[];
12319
+ /** Number of models */
12320
+ count: number;
12321
+ }
12322
+
12323
+ /**
12324
+ * ChatGPT Ask API client.
12325
+ *
12326
+ * Sends a prompt to the real chatgpt.com and returns the answer as structured
12327
+ * JSON, including the web sources ChatGPT cited.
12328
+ */
12329
+
12330
+ /**
12331
+ * Client for the ChatGPT ask endpoint.
12332
+ *
12333
+ * @example
12334
+ * ```typescript
12335
+ * const client = new ScrapeBadger({ apiKey: "key" });
12336
+ *
12337
+ * const result = await client.chatgpt.ask.ask({
12338
+ * prompt: "best running shoes 2026",
12339
+ * });
12340
+ * console.log(result.answer);
12341
+ * for (const citation of result.citations) {
12342
+ * console.log(`${citation.domain}: ${citation.url}`);
12343
+ * }
12344
+ * ```
12345
+ */
12346
+ declare class AskClient {
12347
+ private readonly client;
12348
+ constructor(client: BaseClient);
12349
+ /**
12350
+ * Ask ChatGPT a question and get the answer with its sources.
12351
+ *
12352
+ * Costs 20 credits. Typical latency is 20-25s ungrounded, 30-70s with web search.
12353
+ *
12354
+ * @param params - Ask parameters.
12355
+ * @param params.prompt - The prompt to send (max 4096 characters).
12356
+ * @param params.country - ISO-3166 alpha-2 egress country (default: "US").
12357
+ * @param params.web_search - "auto", "force", or "off" (default: "auto").
12358
+ * @returns The answer, its citations, and the full retrieved search set.
12359
+ *
12360
+ * @example
12361
+ * ```typescript
12362
+ * const result = await client.chatgpt.ask.ask({
12363
+ * prompt: "what is the best CRM for a 10-person startup?",
12364
+ * country: "GB",
12365
+ * web_search: "force",
12366
+ * });
12367
+ * console.log(result.web_search_triggered, result.model);
12368
+ * for (const source of result.search_results) {
12369
+ * console.log(`${source.cited ? "*" : " "} ${source.url}`);
12370
+ * }
12371
+ * ```
12372
+ */
12373
+ ask(params: ChatGPTAskParams): Promise<ChatGPTAskResponse>;
12374
+ }
12375
+
12376
+ /**
12377
+ * ChatGPT Brand Visibility API client.
12378
+ *
12379
+ * Answer-engine-optimisation (AEO/GEO) analysis: ask ChatGPT a prompt and get
12380
+ * back how a brand fares in the answer, next to its competitors.
12381
+ */
12382
+
12383
+ /**
12384
+ * Client for the ChatGPT brand-visibility endpoint.
12385
+ *
12386
+ * @example
12387
+ * ```typescript
12388
+ * const client = new ScrapeBadger({ apiKey: "key" });
12389
+ *
12390
+ * const result = await client.chatgpt.brand.visibility({
12391
+ * prompt: "best web scraping API",
12392
+ * brand: "ScrapeBadger",
12393
+ * domain: "scrapebadger.com",
12394
+ * competitors: ["Bright Data", "Apify"],
12395
+ * });
12396
+ * console.log(result.mentioned, result.share_of_voice_pct);
12397
+ * ```
12398
+ */
12399
+ declare class BrandClient {
12400
+ private readonly client;
12401
+ constructor(client: BaseClient);
12402
+ /**
12403
+ * Analyse how a brand shows up in ChatGPT's answer to a prompt.
12404
+ *
12405
+ * Costs 25 credits.
12406
+ *
12407
+ * @param params - Brand-visibility parameters.
12408
+ * @param params.prompt - The prompt to send (max 4096 characters).
12409
+ * @param params.brand - The brand name to look for in the answer.
12410
+ * @param params.domain - The brand's domain, used to detect brand citations.
12411
+ * @param params.aliases - Other spellings that should count as mentions.
12412
+ * @param params.competitors - Competitors to measure share of voice against.
12413
+ * @param params.country - ISO-3166 alpha-2 egress country (default: "US").
12414
+ * @param params.web_search - "auto", "force", or "off" (default: "force").
12415
+ * @returns The brand analysis plus the answer and its citations.
12416
+ *
12417
+ * @example
12418
+ * ```typescript
12419
+ * const result = await client.chatgpt.brand.visibility({
12420
+ * prompt: "which proxy provider should I use?",
12421
+ * brand: "ScrapeBadger",
12422
+ * domain: "scrapebadger.com",
12423
+ * aliases: ["Scrape Badger"],
12424
+ * competitors: ["Bright Data", "Oxylabs"],
12425
+ * country: "DE",
12426
+ * });
12427
+ * console.log(`position score: ${result.position_score}`);
12428
+ * for (const competitor of result.competitors) {
12429
+ * console.log(`${competitor.name}: ${competitor.mention_count}`);
12430
+ * }
12431
+ * ```
12432
+ */
12433
+ visibility(params: ChatGPTBrandVisibilityParams): Promise<ChatGPTBrandVisibilityResponse>;
12434
+ }
12435
+
12436
+ /**
12437
+ * ChatGPT Reference Data API client.
12438
+ *
12439
+ * Provides the list of models chatgpt.com currently offers.
12440
+ */
12441
+
12442
+ /**
12443
+ * Client for ChatGPT reference data endpoints.
12444
+ *
12445
+ * @example
12446
+ * ```typescript
12447
+ * const client = new ScrapeBadger({ apiKey: "key" });
12448
+ *
12449
+ * const result = await client.chatgpt.reference.models();
12450
+ * for (const model of result.models) {
12451
+ * console.log(`${model.slug}: ${model.title}`);
12452
+ * }
12453
+ * ```
12454
+ */
12455
+ declare class ReferenceClient {
12456
+ private readonly client;
12457
+ constructor(client: BaseClient);
12458
+ /**
12459
+ * Get the models chatgpt.com currently offers.
12460
+ *
12461
+ * Costs 1 credit.
12462
+ *
12463
+ * @param params - Optional parameters.
12464
+ * @param params.country - ISO-3166 alpha-2 egress country (default: "US").
12465
+ * @returns The available models.
12466
+ *
12467
+ * @example
12468
+ * ```typescript
12469
+ * const result = await client.chatgpt.reference.models({ country: "GB" });
12470
+ * console.log(`${result.count} models`);
12471
+ * for (const model of result.models) {
12472
+ * console.log(`${model.slug}: ${model.max_tokens} tokens`);
12473
+ * }
12474
+ * ```
12475
+ */
12476
+ models(params?: ChatGPTModelsParams): Promise<ChatGPTModelsResponse>;
12477
+ }
12478
+
12479
+ /**
12480
+ * ChatGPT API client.
12481
+ *
12482
+ * Provides access to all ChatGPT API endpoints through specialized sub-clients.
12483
+ */
12484
+
12485
+ /**
12486
+ * ChatGPT API client with access to all ChatGPT endpoints.
12487
+ *
12488
+ * Prompts the real chatgpt.com — not the OpenAI API — anonymously, and returns
12489
+ * the answer as structured JSON including the web sources ChatGPT cited.
12490
+ *
12491
+ * Sub-clients:
12492
+ * - `ask` - Send a prompt and get the answer with its sources
12493
+ * - `brand` - AEO/GEO brand-visibility analysis
12494
+ * - `reference` - Reference data (available models)
12495
+ *
12496
+ * @example
12497
+ * ```typescript
12498
+ * const client = new ScrapeBadger({ apiKey: "key" });
12499
+ *
12500
+ * // Ask a question
12501
+ * const result = await client.chatgpt.ask.ask({ prompt: "best running shoes 2026" });
12502
+ *
12503
+ * // Brand visibility
12504
+ * const brand = await client.chatgpt.brand.visibility({
12505
+ * prompt: "best web scraping API",
12506
+ * brand: "ScrapeBadger",
12507
+ * competitors: ["Bright Data"],
12508
+ * });
12509
+ *
12510
+ * // Available models
12511
+ * const models = await client.chatgpt.reference.models();
12512
+ * ```
12513
+ */
12514
+ declare class ChatGPTClient {
12515
+ /** Client for asking ChatGPT a question */
12516
+ readonly ask: AskClient;
12517
+ /** Client for AEO/GEO brand-visibility analysis */
12518
+ readonly brand: BrandClient;
12519
+ /** Client for reference data (available models) */
12520
+ readonly reference: ReferenceClient;
12521
+ /**
12522
+ * Create a new ChatGPT client.
12523
+ *
12524
+ * @param client - The base HTTP client for making requests.
12525
+ */
12526
+ constructor(client: BaseClient);
12527
+ }
12528
+
12089
12529
  /**
12090
12530
  * Main ScrapeBadger client.
12091
12531
  *
@@ -12162,6 +12602,8 @@ declare class ScrapeBadger {
12162
12602
  readonly depop: DepopClient;
12163
12603
  /** LinkedIn scraper API client — 11 no-auth endpoints (jobs, company, school, profile, post, article, learning, geo) */
12164
12604
  readonly linkedin: LinkedInClient;
12605
+ /** ChatGPT scraper API client — ask, brand visibility, models (the real chatgpt.com, anonymous) */
12606
+ readonly chatgpt: ChatGPTClient;
12165
12607
  /**
12166
12608
  * Create a new ScrapeBadger client.
12167
12609
  *
@@ -12190,4 +12632,4 @@ declare class ScrapeBadger {
12190
12632
  constructor(config?: Partial<ScrapeBadgerConfig>);
12191
12633
  }
12192
12634
 
12193
- export { type AiListItem, type AiModeResponse, type AiModeSearchParams, type AiReference, type AiTableRow, type AiTextBlock, type AmazonAutocompleteParams, type AutocompleteResponse$4 as AmazonAutocompleteResponse, type AutocompleteSuggestion$1 as AmazonAutocompleteSuggestion, type Bestseller as AmazonBestseller, type BestsellersRankEntry as AmazonBestsellersRankEntry, type BestsellersResponse as AmazonBestsellersResponse, type Buybox as AmazonBuybox, type CategoriesResponse$3 as AmazonCategoriesResponse, type CategoryInfo$1 as AmazonCategoryInfo, type AmazonCategoryParams, type CategoryResponse$1 as AmazonCategoryResponse, AmazonClient, type Coupon as AmazonCoupon, type Deal as AmazonDeal, type AmazonDealsParams, type DealsResponse as AmazonDealsResponse, type Delivery as AmazonDelivery, type FeedbackWindow as AmazonFeedbackWindow, ListingsClient$1 as AmazonListingsClient, type AmazonListingsParams, type MarketInfo$5 as AmazonMarketInfo, type MarketsResponse$8 as AmazonMarketsResponse, type NewReleasesResponse as AmazonNewReleasesResponse, type Offer as AmazonOffer, type OfferCondition as AmazonOfferCondition, type OfferDelivery as AmazonOfferDelivery, type OfferSeller as AmazonOfferSeller, type AmazonOffersParams, type OffersResponse as AmazonOffersResponse, type Pagination$3 as AmazonPagination, type AmazonPrice, type Product as AmazonProduct, type ProductBadges as AmazonProductBadges, type ProductDeal as AmazonProductDeal, type ProductDetailResponse as AmazonProductDetailResponse, type AmazonProductParams, type ProductVariant as AmazonProductVariant, ProductsClient$1 as AmazonProductsClient, type RatingBreakdown$1 as AmazonRatingBreakdown, ReferenceClient$8 as AmazonReferenceClient, type RelatedProduct as AmazonRelatedProduct, type Review$1 as AmazonReview, type ReviewProfile as AmazonReviewProfile, type AmazonReviewsParams, type ReviewsResponse$1 as AmazonReviewsResponse, SearchClient$8 as AmazonSearchClient, type AmazonSearchParams, type SearchResponse$7 as AmazonSearchResponse, type SearchResult$3 as AmazonSearchResult, type Seller$2 as AmazonSeller, type SellerFeedbackEntry as AmazonSellerFeedbackEntry, type SellerFeedbackResponse$1 as AmazonSellerFeedbackResponse, type SellerFeedbackSummary as AmazonSellerFeedbackSummary, type AmazonSellerListParams, type AmazonSellerParams, type SellerProductsResponse as AmazonSellerProductsResponse, type SellerProfileResponse$1 as AmazonSellerProfileResponse, SellersClient$2 as AmazonSellersClient, type AutocompleteParams, type DepopCard, DepopClient, type DepopMarket, type DepopMarketsResponse, type DepopProductDetail, type DepopProductParams, type SearchMeta as DepopSearchMeta, type DepopSearchParams, type DepopSearchResponse, type DepopShopProfile, type DepopUserParams, type DepopUserProductsParams, type DepopUserProductsResponse, type DetectOptions, type DetectResult, type DomainPostsResponse, type EbayAutocompleteParams, type AutocompleteResponse$3 as EbayAutocompleteResponse, type AutocompleteSuggestion as EbayAutocompleteSuggestion, type EbayBuyingFormat, CategoriesClient as EbayCategoriesClient, type CategoriesResponse$2 as EbayCategoriesResponse, type CategoryInfo as EbayCategoryInfo, type EbayCategoryParams, type CategoryResponse as EbayCategoryResponse, EbayClient, type EbayCompletedParams, type EbayCondition, type FeedbackBreakdown as EbayFeedbackBreakdown, type FeedbackEntry as EbayFeedbackEntry, type Image as EbayImage, type Item as EbayItem, type ItemDetailResponse as EbayItemDetailResponse, type EbayItemParams, type ItemSeller as EbayItemSeller, ItemsClient as EbayItemsClient, type MarketInfo$4 as EbayMarketInfo, type MarketsResponse$6 as EbayMarketsResponse, type Pagination$2 as EbayPagination, type EbayPrice, type RatingHistogram as EbayRatingHistogram, ReferenceClient$5 as EbayReferenceClient, type ReturnsPolicy as EbayReturnsPolicy, type Review as EbayReview, type EbayReviewsParams, type ReviewsResponse as EbayReviewsResponse, SearchClient$5 as EbaySearchClient, type EbaySearchParams, type SearchResponse$6 as EbaySearchResponse, type SearchResult$1 as EbaySearchResult, type Seller$1 as EbaySeller, type EbaySellerFeedbackParams, type SellerFeedbackResponse as EbaySellerFeedbackResponse, type EbaySellerItemsParams, type SellerItemsResponse as EbaySellerItemsResponse, type EbaySellerParams, type SellerProfileResponse as EbaySellerProfileResponse, SellersClient$1 as EbaySellersClient, type ShippingOption as EbayShippingOption, type EbaySortBy, type FinanceQuoteParams, type FlightsSearchParams, type FlightsSortBy, type FlightsStopsFilter, type FlightsTravelClass, type FlightsTripType, AiModeClient as GoogleAiModeClient, AutocompleteClient as GoogleAutocompleteClient, GoogleClient, FinanceClient as GoogleFinanceClient, FlightsClient as GoogleFlightsClient, HotelsClient as GoogleHotelsClient, ImagesClient as GoogleImagesClient, JobsClient as GoogleJobsClient, LensClient as GoogleLensClient, MapsClient as GoogleMapsClient, NewsClient as GoogleNewsClient, PatentsClient as GooglePatentsClient, ProductsClient$2 as GoogleProductsClient, type GoogleResponse, ScholarClient as GoogleScholarClient, SearchClient$a as GoogleSearchClient, type GoogleSearchParams, ShoppingClient as GoogleShoppingClient, ShortsClient$1 as GoogleShortsClient, TrendsClient as GoogleTrendsClient, VideosClient$2 as GoogleVideosClient, type HotelsDetailsParams, type HotelsSearchParams, type ImagesSearchParams, type Agency as ImmobiliareAgency, type AgencyAgent as ImmobiliareAgencyAgent, type ImmobiliareAgencyListingsParams, type AgencyListingsResponse as ImmobiliareAgencyListingsResponse, type ImmobiliareAgencyParams, type AgencyProfile as ImmobiliareAgencyProfile, type Agent as ImmobiliareAgent, type ImmobiliareAutocompleteParams, type ImmobiliareCategory, ImmobiliareClient, type ImmobiliareContract, type Feature as ImmobiliareFeature, type Listing as ImmobiliareListing, type ImmobiliareListingParams, type Location as ImmobiliareLocation, type Market as ImmobiliareMarket, type ImmobiliareMarketCode, type MarketsResponse$1 as ImmobiliareMarketsResponse, type Photo as ImmobiliarePhoto, type Price as ImmobiliarePrice, type ImmobiliarePriceStatsParams, type PriceStatsPoint as ImmobiliarePriceStatsPoint, type PriceStatsResponse as ImmobiliarePriceStatsResponse, type PropertyUnit as ImmobiliarePropertyUnit, type ReferenceResponse as ImmobiliareReferenceResponse, type RelatedSearch as ImmobiliareRelatedSearch, type ImmobiliareSearchParams, type SearchResponse$1 as ImmobiliareSearchResponse, type ImmobiliareSort, type SuggestResponse as ImmobiliareSuggestResponse, type Suggestion as ImmobiliareSuggestion, type JobsSearchParams, type Ad as LeboncoinAd, type AdResponse as LeboncoinAdResponse, type LeboncoinAdType, AdsClient as LeboncoinAdsClient, type Attribute as LeboncoinAttribute, type CategoriesResponse as LeboncoinCategoriesResponse, type Category as LeboncoinCategory, LeboncoinClient, type Department as LeboncoinDepartment, type LeboncoinDepartmentsParams, type DepartmentsResponse as LeboncoinDepartmentsResponse, type FeedbackScores as LeboncoinFeedbackScores, type Images as LeboncoinImages, type Location$1 as LeboncoinLocation, type LocationSearchResponse as LeboncoinLocationSearchResponse, type LocationSuggestion as LeboncoinLocationSuggestion, type MarketsResponse$3 as LeboncoinMarketsResponse, type Owner as LeboncoinOwner, type LeboncoinOwnerType, ReferenceClient$2 as LeboncoinReferenceClient, type Region as LeboncoinRegion, type RegionsResponse as LeboncoinRegionsResponse, SearchClient$2 as LeboncoinSearchClient, type LeboncoinSearchParams, type SearchResponse$3 as LeboncoinSearchResponse, type Seller as LeboncoinSeller, type LeboncoinSellerListingsParams, type SellerListingsResponse as LeboncoinSellerListingsResponse, type SellerResponse as LeboncoinSellerResponse, SellersClient as LeboncoinSellersClient, type LeboncoinSimilarParams, type SimilarResponse as LeboncoinSimilarResponse, type LeboncoinSortBy, type StoreRatingReview as LeboncoinStoreRatingReview, type LensSearchParams, type Address as LinkedInAddress, LinkedInClient, type Company as LinkedInCompany, type LinkedInCompanyJobsParams, type LinkedInCountryParams, type CourseInstructor as LinkedInCourseInstructor, type LinkedInGeoSuggestResponse, type GeoSuggestion as LinkedInGeoSuggestion, type LinkedInHealthResponse, type JobCard as LinkedInJobCard, type JobDetail as LinkedInJobDetail, type JobsSearchMeta as LinkedInJobsSearchMeta, type LinkedInJobsSearchParams, type LinkedInJobsSearchResponse, type LearningCourse as LinkedInLearningCourse, type Post as LinkedInPost, type PostComment as LinkedInPostComment, type Profile as LinkedInProfile, type ProfileEducation as LinkedInProfileEducation, type ProfileExperience as LinkedInProfileExperience, type School as LinkedInSchool, type Broker as LoopNetBroker, type LoopNetBrokerParams, type BrokerProfile as LoopNetBrokerProfile, type BrokerResponse as LoopNetBrokerResponse, BrokersClient as LoopNetBrokersClient, LoopNetClient, type ListingCard as LoopNetListingCard, type ListingDetail as LoopNetListingDetail, type LoopNetListingParams, type ListingResponse as LoopNetListingResponse, type LoopNetListingType, ListingsClient as LoopNetListingsClient, type LoopNetMarket, type MarketInfo as LoopNetMarketInfo, type MarketsResponse as LoopNetMarketsResponse, type Pagination as LoopNetPagination, type LoopNetPriceType, type PropertyTypeInfo as LoopNetPropertyTypeInfo, type PropertyTypesResponse as LoopNetPropertyTypesResponse, ReferenceClient as LoopNetReferenceClient, SearchClient as LoopNetSearchClient, type LoopNetSearchParams, type SearchResponse as LoopNetSearchResponse, type Space as LoopNetSpace, type MapsPhotosParams, type MapsPlaceParams, type MapsPostsParams, type MapsReviewsParams, type MapsSearchParams, type NewsSearchParams, type NewsTopicsParams, type NewsTrendingParams, type PatentsDetailParams, type PatentsSearchParams, type PopularSubredditsResponse, type PostCommentsResponse, type PostDetailResponse, type PostDuplicatesResponse, type ProductsDetailParams, type Address$2 as RealtorAddress, type Agent$2 as RealtorAgent, type RealtorAutocompleteOptions, type AutocompleteResponse$1 as RealtorAutocompleteResponse, RealtorClient, type Coordinate as RealtorCoordinate, type DetailGroup as RealtorDetailGroup, type Estimate as RealtorEstimate, type Flags as RealtorFlags, type RealtorMarket, type MarketInfo$2 as RealtorMarketInfo, type MarketsResponse$4 as RealtorMarketsResponse, type Office as RealtorOffice, type OpenHouse$1 as RealtorOpenHouse, type Phone as RealtorPhone, type Photo$2 as RealtorPhoto, type PriceEvent as RealtorPriceEvent, PropertiesClient$1 as RealtorPropertiesClient, type Property$1 as RealtorProperty, type PropertyDetail as RealtorPropertyDetail, type RealtorPropertyOptions, ReferenceClient$3 as RealtorReferenceClient, type School$2 as RealtorSchool, SearchClient$3 as RealtorSearchClient, type RealtorSearchOptions, type SearchResponse$4 as RealtorSearchResponse, type RealtorSort, type RealtorStatus, type Suggestion$1 as RealtorSuggestion, type TaxRecord as RealtorTaxRecord, type RedditAward, RedditClient, type RedditComment, type RedditModeratedSubreddit, type RedditPagination, type RedditPost, PostsClient as RedditPostsClient, type RedditRule, SearchClient$9 as RedditSearchClient, type RedditSubreddit, SubredditsClient as RedditSubredditsClient, type RedditTrophy, type RedditUser, type UserProfileResponse as RedditUserProfileResponse, type RedditUserSubreddit, UsersClient$1 as RedditUsersClient, type RedditWikiPage, type Address$3 as RedfinAddress, type Agent$3 as RedfinAgent, type RedfinAgentParams, type AgentResponse$1 as RedfinAgentResponse, type AgentReview$1 as RedfinAgentReview, type AmenityGroup as RedfinAmenityGroup, type AutocompleteResponse$5 as RedfinAutocompleteResponse, type AutocompleteResult$1 as RedfinAutocompleteResult, RedfinClient, type DataSource as RedfinDataSource, type RedfinHomeType, type LatLong$1 as RedfinLatLong, type Listing$2 as RedfinListing, type MapBounds$1 as RedfinMapBounds, type MarketInfo$6 as RedfinMarketInfo, type MarketsResponse$9 as RedfinMarketsResponse, type Pagination$4 as RedfinPagination, type Photo$3 as RedfinPhoto, type PriceHistoryEvent$1 as RedfinPriceHistoryEvent, type Property$2 as RedfinProperty, type RedfinPropertyParams, type PropertyResponse$1 as RedfinPropertyResponse, type RegionSelection$1 as RedfinRegionSelection, type Sash as RedfinSash, type School$3 as RedfinSchool, type SearchMedian as RedfinSearchMedian, type RedfinSearchParams, type SearchResponse$8 as RedfinSearchResponse, type RedfinSort, type TaxHistoryEvent$1 as RedfinTaxHistoryEvent, type ScholarAuthorCitationParams, type ScholarAuthorParams, type ScholarCiteParams, type ScholarProfilesParams, type ScholarSearchParams, ScrapeBadger, ScrapeBadgerConfig, type ScrapeOptions, type ScrapeResult, type SearchPostsResponse, type SearchSubredditsResponse, type SearchUsersResponse, type ShopeeCategoriesParams, type ShopeeCategoryItemsParams, type CategoryNode as ShopeeCategoryNode, type CategoryTree as ShopeeCategoryTree, ShopeeClient, type ShopeeMarket, type MarketsResponse$7 as ShopeeMarketsResponse, type ShopeeProduct, type ProductAttribute as ShopeeProductAttribute, type ProductImage as ShopeeProductImage, type ProductModel as ShopeeProductModel, type ShopeeProductParams, ProductsClient as ShopeeProductsClient, type RatingBreakdown as ShopeeRatingBreakdown, ReferenceClient$7 as ShopeeReferenceClient, type ShopeeReview, type ReviewReply as ShopeeReviewReply, type ReviewSummary as ShopeeReviewSummary, ReviewsClient as ShopeeReviewsClient, type ShopeeReviewsParams, type ReviewsResult as ShopeeReviewsResult, SearchClient$7 as ShopeeSearchClient, type ShopeeSearchParams, type SearchResult$2 as ShopeeSearchResult, type ShoppingClickParams, type ShoppingOffersParams, type ShoppingProductParams, type ShoppingSearchParams, type ShortsSearchParams, type SubredditDetailResponse, type SubredditPostsResponse, type SubredditRulesResponse, type SubredditWikiPagesResponse, type TikTokAd, type AdLibraryPage as TikTokAdLibraryPage, type AdLibrarySearchResponse as TikTokAdLibrarySearchResponse, type TikTokAdSearchParams, type TikTokAdVideo, AdsClient$1 as TikTokAdsClient, type TikTokAnchor, type TikTokAuthor, type TikTokChallenge, TikTokClient, type TikTokComment, type CommentListResponse as TikTokCommentListResponse, type TikTokCommentRepliesParams, type TikTokCommentsParams, type TikTokCursorPage, type TikTokEffectSticker, type TikTokHashtag, type TikTokHashtagParams, type HashtagResponse$1 as TikTokHashtagResponse, type HashtagSearchResponse as TikTokHashtagSearchResponse, HashtagsClient as TikTokHashtagsClient, type TikTokListVideosParams, type TikTokMusic, MusicClient$1 as TikTokMusicClient, type TikTokMusicParams, type MusicResponse as TikTokMusicResponse, type TikTokOEmbed, type TikTokOEmbedParams, type ProfileResponse as TikTokProfileResponse, ReferenceClient$6 as TikTokReferenceClient, type RegionInfo as TikTokRegionInfo, type RegionsResponse$2 as TikTokRegionsResponse, type TikTokRelatedParams, SearchClient$6 as TikTokSearchClient, type TikTokSearchParams, type TikTokStats, type TikTokSubtitle, type TikTokTextExtra, type TikTokTranscriptParams, type TranscriptResponse as TikTokTranscriptResponse, TrendingClient$1 as TikTokTrendingClient, type TikTokTrendingHashtag, type TrendingHashtagsResponse as TikTokTrendingHashtagsResponse, type TikTokTrendingParams, type TikTokTrendingSong, type TrendingSongsResponse as TikTokTrendingSongsResponse, type TikTokTrendingVideosParams, type TikTokUser, type TikTokUserListParams, type UserListResponse as TikTokUserListResponse, type TikTokUserParams, type UserSearchResponse as TikTokUserSearchResponse, type TikTokUserStats, UsersClient as TikTokUsersClient, type TikTokVideo, type TikTokVideoControl, type VideoListResponse as TikTokVideoListResponse, type TikTokVideoMeta, type TikTokVideoParams, type VideoResponse as TikTokVideoResponse, type TikTokVideoStatus, VideosClient$1 as TikTokVideosClient, type TrendingPostsResponse, type TrendsAutocompleteParams, type TrendsInterestParams, type TrendsRegionsParams, type TrendsRelatedParams, type TrendsTrendingParams, TwitterClient, type UserCommentsResponse, type UserModeratedResponse, type UserPostsResponse, type UserTrophiesResponse, type VideosSearchParams, type VintedBrand, type BrandsResponse as VintedBrandsResponse, VintedClient, type VintedColor, type ColorsResponse as VintedColorsResponse, type VintedItemDetail, type ItemDetailResponse$1 as VintedItemDetailResponse, type VintedItemSummary, ItemsClient$1 as VintedItemsClient, type VintedMarket, type MarketsResponse$a as VintedMarketsResponse, type VintedPagination, type VintedPhoto, type VintedPrice, ReferenceClient$9 as VintedReferenceClient, SearchClient$b as VintedSearchClient, type VintedSearchParams, type SearchResponse$9 as VintedSearchResponse, type VintedSellerSummary, type VintedStatus, type StatusesResponse as VintedStatusesResponse, type UserItemsResponse as VintedUserItemsResponse, type VintedUserProfile, type UserProfileResponse$1 as VintedUserProfileResponse, type VintedUserSummary, UsersClient$2 as VintedUsersClient, WebClient, type WikiPageResponse, type AudioTrack as YoutubeAudioTrack, type YoutubeAutocompleteParams, type AutocompleteResponse$2 as YoutubeAutocompleteResponse, type YoutubeBatchParams, type BatchResponse as YoutubeBatchResponse, type CaptionTrack as YoutubeCaptionTrack, type YoutubeCaptionsParams, type CaptionsResponse as YoutubeCaptionsResponse, type YoutubeCategoriesParams, type CategoriesResponse$1 as YoutubeCategoriesResponse, type Channel as YoutubeChannel, type ChannelAbout as YoutubeChannelAbout, type ChannelLink as YoutubeChannelLink, type YoutubeChannelParams, type YoutubeChannelSearchParams, type YoutubeChannelTabParams, type ChannelTabResponse as YoutubeChannelTabResponse, type ChannelVideosResponse as YoutubeChannelVideosResponse, ChannelsClient as YoutubeChannelsClient, type Chapter as YoutubeChapter, YoutubeClient, type Comment as YoutubeComment, type YoutubeCommentSort, type YoutubeCommentsParams, type CommentsResponse as YoutubeCommentsResponse, CommunityClient as YoutubeCommunityClient, type CommunityPost as YoutubeCommunityPost, type CommunityResponse as YoutubeCommunityResponse, type YoutubeDuration, type Format as YoutubeFormat, type YoutubeHashtagParams, type HashtagResponse as YoutubeHashtagResponse, type HeatMarker as YoutubeHeatMarker, type YoutubeHomeParams, type HomeResponse as YoutubeHomeResponse, type LanguagesResponse as YoutubeLanguagesResponse, type LiveChatMessage as YoutubeLiveChatMessage, type YoutubeLiveChatParams, type LiveChatResponse as YoutubeLiveChatResponse, type LiveStreamingDetails as YoutubeLiveStreamingDetails, type MarketInfo$3 as YoutubeMarketInfo, type MarketsResponse$5 as YoutubeMarketsResponse, MusicClient as YoutubeMusicClient, type YoutubeMusicSearchParams, type OEmbed as YoutubeOEmbed, type YoutubeOEmbedParams, type Playlist as YoutubePlaylist, type PlaylistItem as YoutubePlaylistItem, type YoutubePlaylistItemsParams, type PlaylistItemsResponse as YoutubePlaylistItemsResponse, type YoutubePlaylistParams, PlaylistsClient as YoutubePlaylistsClient, type PollChoice as YoutubePollChoice, type YoutubePostCommentsParams, type YoutubePostParams, ReferenceClient$4 as YoutubeReferenceClient, type ReferenceRow as YoutubeReferenceRow, type YoutubeRegionParams, type RegionRestriction as YoutubeRegionRestriction, type RegionsResponse$1 as YoutubeRegionsResponse, type YoutubeRelatedParams, type RelatedResponse as YoutubeRelatedResponse, type YoutubeRepliesParams, type RepliesResponse as YoutubeRepliesResponse, type YoutubeResolveParams, type ResolveResult as YoutubeResolveResult, type SearchChip as YoutubeSearchChip, SearchClient$4 as YoutubeSearchClient, type YoutubeSearchParams, type SearchResponse$5 as YoutubeSearchResponse, type SearchResult as YoutubeSearchResult, type YoutubeSearchSort, type YoutubeSearchType, type ShoppingResult as YoutubeShoppingResult, type Short as YoutubeShort, type YoutubeShortParams, type YoutubeShortsBySoundParams, ShortsClient as YoutubeShortsClient, type StreamingData as YoutubeStreamingData, type YoutubeStreamsClient, type YoutubeStreamsParams, type SubscriberCount as YoutubeSubscriberCount, type Thumbnail as YoutubeThumbnail, type Transcript as YoutubeTranscript, type YoutubeTranscriptParams, type TranscriptSegment as YoutubeTranscriptSegment, TrendingClient as YoutubeTrendingClient, type TrendingItem as YoutubeTrendingItem, type YoutubeTrendingParams, type TrendingResponse as YoutubeTrendingResponse, type YoutubeTrendingShortsParams, type YoutubeTrendingType, type YoutubeUploadDate, type Video as YoutubeVideo, type YoutubeVideoParams, VideosClient as YoutubeVideosClient, type Address$1 as ZillowAddress, type Agent$1 as ZillowAgent, type AgentAttribution as ZillowAgentAttribution, AgentClient as ZillowAgentClient, type AgentLicense as ZillowAgentLicense, type ZillowAgentOptions, type AgentResponse as ZillowAgentResponse, type AgentReview as ZillowAgentReview, type AutocompleteResponse as ZillowAutocompleteResponse, type AutocompleteResult as ZillowAutocompleteResult, ZillowClient, type HomeFacts as ZillowHomeFacts, type LatLong as ZillowLatLong, type Listing$1 as ZillowListing, type ListingSubType as ZillowListingSubType, type MapBounds as ZillowMapBounds, type MarketInfo$1 as ZillowMarketInfo, type MarketsResponse$2 as ZillowMarketsResponse, type MortgageRate as ZillowMortgageRate, type MortgageRates as ZillowMortgageRates, type NearbyRegion as ZillowNearbyRegion, type OpenHouse as ZillowOpenHouse, type Pagination$1 as ZillowPagination, type PastSale as ZillowPastSale, type Photo$1 as ZillowPhoto, type PriceHistoryEvent as ZillowPriceHistoryEvent, PropertiesClient as ZillowPropertiesClient, type Property as ZillowProperty, type PropertyResponse as ZillowPropertyResponse, ReferenceClient$1 as ZillowReferenceClient, type RegionSelection as ZillowRegionSelection, type School$1 as ZillowSchool, SearchClient$1 as ZillowSearchClient, type ZillowSearchOptions, type SearchResponse$2 as ZillowSearchResponse, type ZillowSort, type ZillowStatus, type TaxHistoryEvent as ZillowTaxHistoryEvent, type ZestimateHistoryPoint as ZillowZestimateHistoryPoint };
12635
+ export { type AiListItem, type AiModeResponse, type AiModeSearchParams, type AiReference, type AiTableRow, type AiTextBlock, type AmazonAutocompleteParams, type AutocompleteResponse$4 as AmazonAutocompleteResponse, type AutocompleteSuggestion$1 as AmazonAutocompleteSuggestion, type Bestseller as AmazonBestseller, type BestsellersRankEntry as AmazonBestsellersRankEntry, type BestsellersResponse as AmazonBestsellersResponse, type Buybox as AmazonBuybox, type CategoriesResponse$3 as AmazonCategoriesResponse, type CategoryInfo$1 as AmazonCategoryInfo, type AmazonCategoryParams, type CategoryResponse$1 as AmazonCategoryResponse, AmazonClient, type Coupon as AmazonCoupon, type Deal as AmazonDeal, type AmazonDealsParams, type DealsResponse as AmazonDealsResponse, type Delivery as AmazonDelivery, type FeedbackWindow as AmazonFeedbackWindow, ListingsClient$1 as AmazonListingsClient, type AmazonListingsParams, type MarketInfo$5 as AmazonMarketInfo, type MarketsResponse$8 as AmazonMarketsResponse, type NewReleasesResponse as AmazonNewReleasesResponse, type Offer as AmazonOffer, type OfferCondition as AmazonOfferCondition, type OfferDelivery as AmazonOfferDelivery, type OfferSeller as AmazonOfferSeller, type AmazonOffersParams, type OffersResponse as AmazonOffersResponse, type Pagination$3 as AmazonPagination, type AmazonPrice, type Product as AmazonProduct, type ProductBadges as AmazonProductBadges, type ProductDeal as AmazonProductDeal, type ProductDetailResponse as AmazonProductDetailResponse, type AmazonProductParams, type ProductVariant as AmazonProductVariant, ProductsClient$1 as AmazonProductsClient, type RatingBreakdown$1 as AmazonRatingBreakdown, ReferenceClient$9 as AmazonReferenceClient, type RelatedProduct as AmazonRelatedProduct, type Review$1 as AmazonReview, type ReviewProfile as AmazonReviewProfile, type AmazonReviewsParams, type ReviewsResponse$1 as AmazonReviewsResponse, SearchClient$8 as AmazonSearchClient, type AmazonSearchParams, type SearchResponse$7 as AmazonSearchResponse, type SearchResult$3 as AmazonSearchResult, type Seller$2 as AmazonSeller, type SellerFeedbackEntry as AmazonSellerFeedbackEntry, type SellerFeedbackResponse$1 as AmazonSellerFeedbackResponse, type SellerFeedbackSummary as AmazonSellerFeedbackSummary, type AmazonSellerListParams, type AmazonSellerParams, type SellerProductsResponse as AmazonSellerProductsResponse, type SellerProfileResponse$1 as AmazonSellerProfileResponse, SellersClient$2 as AmazonSellersClient, type AutocompleteParams, AskClient as ChatGPTAskClient, type ChatGPTAskParams, type ChatGPTAskResponse, BrandClient as ChatGPTBrandClient, type ChatGPTBrandVisibilityParams, type ChatGPTBrandVisibilityResponse, type ChatGPTCitation, ChatGPTClient, type ChatGPTCompetitorMention, type ChatGPTModel, type ChatGPTModelsParams, type ChatGPTModelsResponse, ReferenceClient as ChatGPTReferenceClient, type ChatGPTSearchResult, type ChatGPTWebSearchMode, type DepopCard, DepopClient, type DepopMarket, type DepopMarketsResponse, type DepopProductDetail, type DepopProductParams, type SearchMeta as DepopSearchMeta, type DepopSearchParams, type DepopSearchResponse, type DepopShopProfile, type DepopUserParams, type DepopUserProductsParams, type DepopUserProductsResponse, type DetectOptions, type DetectResult, type DomainPostsResponse, type EbayAutocompleteParams, type AutocompleteResponse$3 as EbayAutocompleteResponse, type AutocompleteSuggestion as EbayAutocompleteSuggestion, type EbayBuyingFormat, CategoriesClient as EbayCategoriesClient, type CategoriesResponse$2 as EbayCategoriesResponse, type CategoryInfo as EbayCategoryInfo, type EbayCategoryParams, type CategoryResponse as EbayCategoryResponse, EbayClient, type EbayCompletedParams, type EbayCondition, type FeedbackBreakdown as EbayFeedbackBreakdown, type FeedbackEntry as EbayFeedbackEntry, type Image as EbayImage, type Item as EbayItem, type ItemDetailResponse as EbayItemDetailResponse, type EbayItemParams, type ItemSeller as EbayItemSeller, ItemsClient as EbayItemsClient, type MarketInfo$4 as EbayMarketInfo, type MarketsResponse$6 as EbayMarketsResponse, type Pagination$2 as EbayPagination, type EbayPrice, type RatingHistogram as EbayRatingHistogram, ReferenceClient$6 as EbayReferenceClient, type ReturnsPolicy as EbayReturnsPolicy, type Review as EbayReview, type EbayReviewsParams, type ReviewsResponse as EbayReviewsResponse, SearchClient$5 as EbaySearchClient, type EbaySearchParams, type SearchResponse$6 as EbaySearchResponse, type SearchResult$1 as EbaySearchResult, type Seller$1 as EbaySeller, type EbaySellerFeedbackParams, type SellerFeedbackResponse as EbaySellerFeedbackResponse, type EbaySellerItemsParams, type SellerItemsResponse as EbaySellerItemsResponse, type EbaySellerParams, type SellerProfileResponse as EbaySellerProfileResponse, SellersClient$1 as EbaySellersClient, type ShippingOption as EbayShippingOption, type EbaySortBy, type FinanceQuoteParams, type FlightsSearchParams, type FlightsSortBy, type FlightsStopsFilter, type FlightsTravelClass, type FlightsTripType, AiModeClient as GoogleAiModeClient, AutocompleteClient as GoogleAutocompleteClient, GoogleClient, FinanceClient as GoogleFinanceClient, FlightsClient as GoogleFlightsClient, HotelsClient as GoogleHotelsClient, ImagesClient as GoogleImagesClient, JobsClient as GoogleJobsClient, LensClient as GoogleLensClient, MapsClient as GoogleMapsClient, NewsClient as GoogleNewsClient, PatentsClient as GooglePatentsClient, ProductsClient$2 as GoogleProductsClient, type GoogleResponse, ScholarClient as GoogleScholarClient, SearchClient$a as GoogleSearchClient, type GoogleSearchParams, ShoppingClient as GoogleShoppingClient, ShortsClient$1 as GoogleShortsClient, TrendsClient as GoogleTrendsClient, VideosClient$2 as GoogleVideosClient, type HotelsDetailsParams, type HotelsSearchParams, type ImagesSearchParams, type Agency as ImmobiliareAgency, type AgencyAgent as ImmobiliareAgencyAgent, type ImmobiliareAgencyListingsParams, type AgencyListingsResponse as ImmobiliareAgencyListingsResponse, type ImmobiliareAgencyParams, type AgencyProfile as ImmobiliareAgencyProfile, type Agent as ImmobiliareAgent, type ImmobiliareAutocompleteParams, type ImmobiliareCategory, ImmobiliareClient, type ImmobiliareContract, type Feature as ImmobiliareFeature, type Listing as ImmobiliareListing, type ImmobiliareListingParams, type Location as ImmobiliareLocation, type Market as ImmobiliareMarket, type ImmobiliareMarketCode, type MarketsResponse$1 as ImmobiliareMarketsResponse, type Photo as ImmobiliarePhoto, type Price as ImmobiliarePrice, type ImmobiliarePriceStatsParams, type PriceStatsPoint as ImmobiliarePriceStatsPoint, type PriceStatsResponse as ImmobiliarePriceStatsResponse, type PropertyUnit as ImmobiliarePropertyUnit, type ReferenceResponse as ImmobiliareReferenceResponse, type RelatedSearch as ImmobiliareRelatedSearch, type ImmobiliareSearchParams, type SearchResponse$1 as ImmobiliareSearchResponse, type ImmobiliareSort, type SuggestResponse as ImmobiliareSuggestResponse, type Suggestion as ImmobiliareSuggestion, type JobsSearchParams, type Ad as LeboncoinAd, type AdResponse as LeboncoinAdResponse, type LeboncoinAdType, AdsClient as LeboncoinAdsClient, type Attribute as LeboncoinAttribute, type CategoriesResponse as LeboncoinCategoriesResponse, type Category as LeboncoinCategory, LeboncoinClient, type Department as LeboncoinDepartment, type LeboncoinDepartmentsParams, type DepartmentsResponse as LeboncoinDepartmentsResponse, type FeedbackScores as LeboncoinFeedbackScores, type Images as LeboncoinImages, type Location$1 as LeboncoinLocation, type LocationSearchResponse as LeboncoinLocationSearchResponse, type LocationSuggestion as LeboncoinLocationSuggestion, type MarketsResponse$3 as LeboncoinMarketsResponse, type Owner as LeboncoinOwner, type LeboncoinOwnerType, ReferenceClient$3 as LeboncoinReferenceClient, type Region as LeboncoinRegion, type RegionsResponse as LeboncoinRegionsResponse, SearchClient$2 as LeboncoinSearchClient, type LeboncoinSearchParams, type SearchResponse$3 as LeboncoinSearchResponse, type Seller as LeboncoinSeller, type LeboncoinSellerListingsParams, type SellerListingsResponse as LeboncoinSellerListingsResponse, type SellerResponse as LeboncoinSellerResponse, SellersClient as LeboncoinSellersClient, type LeboncoinSimilarParams, type SimilarResponse as LeboncoinSimilarResponse, type LeboncoinSortBy, type StoreRatingReview as LeboncoinStoreRatingReview, type LensSearchParams, type Address as LinkedInAddress, LinkedInClient, type Company as LinkedInCompany, type LinkedInCompanyJobsParams, type LinkedInCountryParams, type CourseInstructor as LinkedInCourseInstructor, type LinkedInGeoSuggestResponse, type GeoSuggestion as LinkedInGeoSuggestion, type LinkedInHealthResponse, type JobCard as LinkedInJobCard, type JobDetail as LinkedInJobDetail, type JobsSearchMeta as LinkedInJobsSearchMeta, type LinkedInJobsSearchParams, type LinkedInJobsSearchResponse, type LearningCourse as LinkedInLearningCourse, type Post as LinkedInPost, type PostComment as LinkedInPostComment, type Profile as LinkedInProfile, type ProfileEducation as LinkedInProfileEducation, type ProfileExperience as LinkedInProfileExperience, type School as LinkedInSchool, type Broker as LoopNetBroker, type LoopNetBrokerParams, type BrokerProfile as LoopNetBrokerProfile, type BrokerResponse as LoopNetBrokerResponse, BrokersClient as LoopNetBrokersClient, LoopNetClient, type ListingCard as LoopNetListingCard, type ListingDetail as LoopNetListingDetail, type LoopNetListingParams, type ListingResponse as LoopNetListingResponse, type LoopNetListingType, ListingsClient as LoopNetListingsClient, type LoopNetMarket, type MarketInfo as LoopNetMarketInfo, type MarketsResponse as LoopNetMarketsResponse, type Pagination as LoopNetPagination, type LoopNetPriceType, type PropertyTypeInfo as LoopNetPropertyTypeInfo, type PropertyTypesResponse as LoopNetPropertyTypesResponse, ReferenceClient$1 as LoopNetReferenceClient, SearchClient as LoopNetSearchClient, type LoopNetSearchParams, type SearchResponse as LoopNetSearchResponse, type Space as LoopNetSpace, type MapsPhotosParams, type MapsPlaceParams, type MapsPostsParams, type MapsReviewsParams, type MapsSearchParams, type NewsSearchParams, type NewsTopicsParams, type NewsTrendingParams, type PatentsDetailParams, type PatentsSearchParams, type PopularSubredditsResponse, type PostCommentsResponse, type PostDetailResponse, type PostDuplicatesResponse, type ProductsDetailParams, type Address$2 as RealtorAddress, type Agent$2 as RealtorAgent, type RealtorAutocompleteOptions, type AutocompleteResponse$1 as RealtorAutocompleteResponse, RealtorClient, type Coordinate as RealtorCoordinate, type DetailGroup as RealtorDetailGroup, type Estimate as RealtorEstimate, type Flags as RealtorFlags, type RealtorMarket, type MarketInfo$2 as RealtorMarketInfo, type MarketsResponse$4 as RealtorMarketsResponse, type Office as RealtorOffice, type OpenHouse$1 as RealtorOpenHouse, type Phone as RealtorPhone, type Photo$2 as RealtorPhoto, type PriceEvent as RealtorPriceEvent, PropertiesClient$1 as RealtorPropertiesClient, type Property$1 as RealtorProperty, type PropertyDetail as RealtorPropertyDetail, type RealtorPropertyOptions, ReferenceClient$4 as RealtorReferenceClient, type School$2 as RealtorSchool, SearchClient$3 as RealtorSearchClient, type RealtorSearchOptions, type SearchResponse$4 as RealtorSearchResponse, type RealtorSort, type RealtorStatus, type Suggestion$1 as RealtorSuggestion, type TaxRecord as RealtorTaxRecord, type RedditAward, RedditClient, type RedditComment, type RedditModeratedSubreddit, type RedditPagination, type RedditPost, PostsClient as RedditPostsClient, type RedditRule, SearchClient$9 as RedditSearchClient, type RedditSubreddit, SubredditsClient as RedditSubredditsClient, type RedditTrophy, type RedditUser, type UserProfileResponse as RedditUserProfileResponse, type RedditUserSubreddit, UsersClient$1 as RedditUsersClient, type RedditWikiPage, type Address$3 as RedfinAddress, type Agent$3 as RedfinAgent, type RedfinAgentParams, type AgentResponse$1 as RedfinAgentResponse, type AgentReview$1 as RedfinAgentReview, type AmenityGroup as RedfinAmenityGroup, type AutocompleteResponse$5 as RedfinAutocompleteResponse, type AutocompleteResult$1 as RedfinAutocompleteResult, RedfinClient, type DataSource as RedfinDataSource, type RedfinHomeType, type LatLong$1 as RedfinLatLong, type Listing$2 as RedfinListing, type MapBounds$1 as RedfinMapBounds, type MarketInfo$6 as RedfinMarketInfo, type MarketsResponse$9 as RedfinMarketsResponse, type Pagination$4 as RedfinPagination, type Photo$3 as RedfinPhoto, type PriceHistoryEvent$1 as RedfinPriceHistoryEvent, type Property$2 as RedfinProperty, type RedfinPropertyParams, type PropertyResponse$1 as RedfinPropertyResponse, type RegionSelection$1 as RedfinRegionSelection, type Sash as RedfinSash, type School$3 as RedfinSchool, type SearchMedian as RedfinSearchMedian, type RedfinSearchParams, type SearchResponse$8 as RedfinSearchResponse, type RedfinSort, type TaxHistoryEvent$1 as RedfinTaxHistoryEvent, type ScholarAuthorCitationParams, type ScholarAuthorParams, type ScholarCiteParams, type ScholarProfilesParams, type ScholarSearchParams, ScrapeBadger, ScrapeBadgerConfig, type ScrapeOptions, type ScrapeResult, type SearchPostsResponse, type SearchSubredditsResponse, type SearchUsersResponse, type ShopeeCategoriesParams, type ShopeeCategoryItemsParams, type CategoryNode as ShopeeCategoryNode, type CategoryTree as ShopeeCategoryTree, ShopeeClient, type ShopeeMarket, type MarketsResponse$7 as ShopeeMarketsResponse, type ShopeeProduct, type ProductAttribute as ShopeeProductAttribute, type ProductImage as ShopeeProductImage, type ProductModel as ShopeeProductModel, type ShopeeProductParams, ProductsClient as ShopeeProductsClient, type RatingBreakdown as ShopeeRatingBreakdown, ReferenceClient$8 as ShopeeReferenceClient, type ShopeeReview, type ReviewReply as ShopeeReviewReply, type ReviewSummary as ShopeeReviewSummary, ReviewsClient as ShopeeReviewsClient, type ShopeeReviewsParams, type ReviewsResult as ShopeeReviewsResult, SearchClient$7 as ShopeeSearchClient, type ShopeeSearchParams, type SearchResult$2 as ShopeeSearchResult, type ShoppingClickParams, type ShoppingOffersParams, type ShoppingProductParams, type ShoppingSearchParams, type ShortsSearchParams, type SubredditDetailResponse, type SubredditPostsResponse, type SubredditRulesResponse, type SubredditWikiPagesResponse, type TikTokAd, type AdLibraryPage as TikTokAdLibraryPage, type AdLibrarySearchResponse as TikTokAdLibrarySearchResponse, type TikTokAdSearchParams, type TikTokAdVideo, AdsClient$1 as TikTokAdsClient, type TikTokAnchor, type TikTokAuthor, type TikTokChallenge, TikTokClient, type TikTokComment, type CommentListResponse as TikTokCommentListResponse, type TikTokCommentRepliesParams, type TikTokCommentsParams, type TikTokCursorPage, type TikTokEffectSticker, type TikTokHashtag, type TikTokHashtagParams, type HashtagResponse$1 as TikTokHashtagResponse, type HashtagSearchResponse as TikTokHashtagSearchResponse, HashtagsClient as TikTokHashtagsClient, type TikTokListVideosParams, type TikTokMusic, MusicClient$1 as TikTokMusicClient, type TikTokMusicParams, type MusicResponse as TikTokMusicResponse, type TikTokOEmbed, type TikTokOEmbedParams, type ProfileResponse as TikTokProfileResponse, ReferenceClient$7 as TikTokReferenceClient, type RegionInfo as TikTokRegionInfo, type RegionsResponse$2 as TikTokRegionsResponse, type TikTokRelatedParams, SearchClient$6 as TikTokSearchClient, type TikTokSearchParams, type TikTokStats, type TikTokSubtitle, type TikTokTextExtra, type TikTokTranscriptParams, type TranscriptResponse as TikTokTranscriptResponse, TrendingClient$1 as TikTokTrendingClient, type TikTokTrendingHashtag, type TrendingHashtagsResponse as TikTokTrendingHashtagsResponse, type TikTokTrendingParams, type TikTokTrendingSong, type TrendingSongsResponse as TikTokTrendingSongsResponse, type TikTokTrendingVideosParams, type TikTokUser, type TikTokUserListParams, type UserListResponse as TikTokUserListResponse, type TikTokUserParams, type UserSearchResponse as TikTokUserSearchResponse, type TikTokUserStats, UsersClient as TikTokUsersClient, type TikTokVideo, type TikTokVideoControl, type VideoListResponse as TikTokVideoListResponse, type TikTokVideoMeta, type TikTokVideoParams, type VideoResponse as TikTokVideoResponse, type TikTokVideoStatus, VideosClient$1 as TikTokVideosClient, type TrendingPostsResponse, type TrendsAutocompleteParams, type TrendsInterestParams, type TrendsRegionsParams, type TrendsRelatedParams, type TrendsTrendingParams, TwitterClient, type UserCommentsResponse, type UserModeratedResponse, type UserPostsResponse, type UserTrophiesResponse, type VideosSearchParams, type VintedBrand, type BrandsResponse as VintedBrandsResponse, VintedClient, type VintedColor, type ColorsResponse as VintedColorsResponse, type VintedItemDetail, type ItemDetailResponse$1 as VintedItemDetailResponse, type VintedItemSummary, ItemsClient$1 as VintedItemsClient, type VintedMarket, type MarketsResponse$a as VintedMarketsResponse, type VintedPagination, type VintedPhoto, type VintedPrice, ReferenceClient$a as VintedReferenceClient, SearchClient$b as VintedSearchClient, type VintedSearchParams, type SearchResponse$9 as VintedSearchResponse, type VintedSellerSummary, type VintedStatus, type StatusesResponse as VintedStatusesResponse, type UserItemsResponse as VintedUserItemsResponse, type VintedUserProfile, type UserProfileResponse$1 as VintedUserProfileResponse, type VintedUserSummary, UsersClient$2 as VintedUsersClient, WebClient, type WikiPageResponse, type AudioTrack as YoutubeAudioTrack, type YoutubeAutocompleteParams, type AutocompleteResponse$2 as YoutubeAutocompleteResponse, type YoutubeBatchParams, type BatchResponse as YoutubeBatchResponse, type CaptionTrack as YoutubeCaptionTrack, type YoutubeCaptionsParams, type CaptionsResponse as YoutubeCaptionsResponse, type YoutubeCategoriesParams, type CategoriesResponse$1 as YoutubeCategoriesResponse, type Channel as YoutubeChannel, type ChannelAbout as YoutubeChannelAbout, type ChannelLink as YoutubeChannelLink, type YoutubeChannelParams, type YoutubeChannelSearchParams, type YoutubeChannelTabParams, type ChannelTabResponse as YoutubeChannelTabResponse, type ChannelVideosResponse as YoutubeChannelVideosResponse, ChannelsClient as YoutubeChannelsClient, type Chapter as YoutubeChapter, YoutubeClient, type Comment as YoutubeComment, type YoutubeCommentSort, type YoutubeCommentsParams, type CommentsResponse as YoutubeCommentsResponse, CommunityClient as YoutubeCommunityClient, type CommunityPost as YoutubeCommunityPost, type CommunityResponse as YoutubeCommunityResponse, type YoutubeDuration, type Format as YoutubeFormat, type YoutubeHashtagParams, type HashtagResponse as YoutubeHashtagResponse, type HeatMarker as YoutubeHeatMarker, type YoutubeHomeParams, type HomeResponse as YoutubeHomeResponse, type LanguagesResponse as YoutubeLanguagesResponse, type LiveChatMessage as YoutubeLiveChatMessage, type YoutubeLiveChatParams, type LiveChatResponse as YoutubeLiveChatResponse, type LiveStreamingDetails as YoutubeLiveStreamingDetails, type MarketInfo$3 as YoutubeMarketInfo, type MarketsResponse$5 as YoutubeMarketsResponse, MusicClient as YoutubeMusicClient, type YoutubeMusicSearchParams, type OEmbed as YoutubeOEmbed, type YoutubeOEmbedParams, type Playlist as YoutubePlaylist, type PlaylistItem as YoutubePlaylistItem, type YoutubePlaylistItemsParams, type PlaylistItemsResponse as YoutubePlaylistItemsResponse, type YoutubePlaylistParams, PlaylistsClient as YoutubePlaylistsClient, type PollChoice as YoutubePollChoice, type YoutubePostCommentsParams, type YoutubePostParams, ReferenceClient$5 as YoutubeReferenceClient, type ReferenceRow as YoutubeReferenceRow, type YoutubeRegionParams, type RegionRestriction as YoutubeRegionRestriction, type RegionsResponse$1 as YoutubeRegionsResponse, type YoutubeRelatedParams, type RelatedResponse as YoutubeRelatedResponse, type YoutubeRepliesParams, type RepliesResponse as YoutubeRepliesResponse, type YoutubeResolveParams, type ResolveResult as YoutubeResolveResult, type SearchChip as YoutubeSearchChip, SearchClient$4 as YoutubeSearchClient, type YoutubeSearchParams, type SearchResponse$5 as YoutubeSearchResponse, type SearchResult as YoutubeSearchResult, type YoutubeSearchSort, type YoutubeSearchType, type ShoppingResult as YoutubeShoppingResult, type Short as YoutubeShort, type YoutubeShortParams, type YoutubeShortsBySoundParams, ShortsClient as YoutubeShortsClient, type StreamingData as YoutubeStreamingData, type YoutubeStreamsClient, type YoutubeStreamsParams, type SubscriberCount as YoutubeSubscriberCount, type Thumbnail as YoutubeThumbnail, type Transcript as YoutubeTranscript, type YoutubeTranscriptParams, type TranscriptSegment as YoutubeTranscriptSegment, TrendingClient as YoutubeTrendingClient, type TrendingItem as YoutubeTrendingItem, type YoutubeTrendingParams, type TrendingResponse as YoutubeTrendingResponse, type YoutubeTrendingShortsParams, type YoutubeTrendingType, type YoutubeUploadDate, type Video as YoutubeVideo, type YoutubeVideoParams, VideosClient as YoutubeVideosClient, type Address$1 as ZillowAddress, type Agent$1 as ZillowAgent, type AgentAttribution as ZillowAgentAttribution, AgentClient as ZillowAgentClient, type AgentLicense as ZillowAgentLicense, type ZillowAgentOptions, type AgentResponse as ZillowAgentResponse, type AgentReview as ZillowAgentReview, type AutocompleteResponse as ZillowAutocompleteResponse, type AutocompleteResult as ZillowAutocompleteResult, ZillowClient, type HomeFacts as ZillowHomeFacts, type LatLong as ZillowLatLong, type Listing$1 as ZillowListing, type ListingSubType as ZillowListingSubType, type MapBounds as ZillowMapBounds, type MarketInfo$1 as ZillowMarketInfo, type MarketsResponse$2 as ZillowMarketsResponse, type MortgageRate as ZillowMortgageRate, type MortgageRates as ZillowMortgageRates, type NearbyRegion as ZillowNearbyRegion, type OpenHouse as ZillowOpenHouse, type Pagination$1 as ZillowPagination, type PastSale as ZillowPastSale, type Photo$1 as ZillowPhoto, type PriceHistoryEvent as ZillowPriceHistoryEvent, PropertiesClient as ZillowPropertiesClient, type Property as ZillowProperty, type PropertyResponse as ZillowPropertyResponse, ReferenceClient$2 as ZillowReferenceClient, type RegionSelection as ZillowRegionSelection, type School$1 as ZillowSchool, SearchClient$1 as ZillowSearchClient, type ZillowSearchOptions, type SearchResponse$2 as ZillowSearchResponse, type ZillowSort, type ZillowStatus, type TaxHistoryEvent as ZillowTaxHistoryEvent, type ZestimateHistoryPoint as ZillowZestimateHistoryPoint };