scrapebadger 0.34.0 → 0.35.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.ts CHANGED
@@ -15598,7 +15598,7 @@ interface ChatGPTModelsResponse {
15598
15598
  * }
15599
15599
  * ```
15600
15600
  */
15601
- declare class AskClient {
15601
+ declare class AskClient$1 {
15602
15602
  private readonly client;
15603
15603
  constructor(client: BaseClient);
15604
15604
  /**
@@ -15651,7 +15651,7 @@ declare class AskClient {
15651
15651
  * console.log(result.mentioned, result.share_of_voice_pct);
15652
15652
  * ```
15653
15653
  */
15654
- declare class BrandClient {
15654
+ declare class BrandClient$1 {
15655
15655
  private readonly client;
15656
15656
  constructor(client: BaseClient);
15657
15657
  /**
@@ -15768,9 +15768,9 @@ declare class ReferenceClient {
15768
15768
  */
15769
15769
  declare class ChatGPTClient {
15770
15770
  /** Client for asking ChatGPT a question */
15771
- readonly ask: AskClient;
15771
+ readonly ask: AskClient$1;
15772
15772
  /** Client for AEO/GEO brand-visibility analysis */
15773
- readonly brand: BrandClient;
15773
+ readonly brand: BrandClient$1;
15774
15774
  /** Client for reference data (available models) */
15775
15775
  readonly reference: ReferenceClient;
15776
15776
  /**
@@ -15781,6 +15781,331 @@ declare class ChatGPTClient {
15781
15781
  constructor(client: BaseClient);
15782
15782
  }
15783
15783
 
15784
+ /**
15785
+ * TypeScript types for the Gemini API.
15786
+ *
15787
+ * Answers come from the real gemini.google.com web surface (not the Gemini
15788
+ * API), anonymously — no Google account or API key is involved.
15789
+ */
15790
+ /** Whether Gemini should ground the answer with a web search. */
15791
+ type GeminiWebSearchMode = "auto" | "force" | "off";
15792
+ /** Parameters for the ask endpoint. */
15793
+ interface GeminiAskParams {
15794
+ /** The prompt to send. Maximum 4096 characters. */
15795
+ prompt: string;
15796
+ /** ISO-3166 alpha-2 egress country (default: "US") */
15797
+ country?: string;
15798
+ /** Whether Gemini should ground with web search (default: "auto") */
15799
+ web_search?: GeminiWebSearchMode;
15800
+ }
15801
+ /** Parameters for the brand-visibility endpoint. */
15802
+ interface GeminiBrandVisibilityParams {
15803
+ /** The prompt to send. Maximum 4096 characters. */
15804
+ prompt: string;
15805
+ /** The brand name to look for in the answer. */
15806
+ brand: string;
15807
+ /** The brand's domain, used to detect brand citations. */
15808
+ domain?: string;
15809
+ /** Other spellings of the brand that should count as mentions. */
15810
+ aliases?: string[];
15811
+ /** Competitor names to measure share of voice against. */
15812
+ competitors?: string[];
15813
+ /** ISO-3166 alpha-2 egress country (default: "US") */
15814
+ country?: string;
15815
+ /** Whether Gemini should ground with web search (default: "force") */
15816
+ web_search?: GeminiWebSearchMode;
15817
+ }
15818
+ /**
15819
+ * A web source Gemini actually referenced in its answer.
15820
+ *
15821
+ * `start_index` / `end_index` are character offsets into the answer, so a
15822
+ * citation can be anchored to the exact span of text it supports.
15823
+ */
15824
+ interface GeminiCitation {
15825
+ /** Source URL */
15826
+ url: string | null;
15827
+ /** Page title */
15828
+ title: string | null;
15829
+ /** Snippet of the source text */
15830
+ snippet: string | null;
15831
+ /** Bare domain of the source (e.g. "reuters.com") */
15832
+ domain: string | null;
15833
+ /** Publisher attribution string, when Gemini provides one */
15834
+ attribution: string | null;
15835
+ /** Character offset into the answer where the supported span begins */
15836
+ start_index: number | null;
15837
+ /** Character offset into the answer where the supported span ends */
15838
+ end_index: number | null;
15839
+ /** The answer substring this source supports */
15840
+ matched_text: string | null;
15841
+ }
15842
+ /** One entry of the FULL set Gemini retrieved — cited or not. */
15843
+ interface GeminiSearchResult {
15844
+ /** Result URL */
15845
+ url: string | null;
15846
+ /** Page title */
15847
+ title: string | null;
15848
+ /** Snippet of the result text */
15849
+ snippet: string | null;
15850
+ /** Bare domain of the result */
15851
+ domain: string | null;
15852
+ /** Publisher attribution string, when present */
15853
+ attribution: string | null;
15854
+ /** Whether this result was actually referenced in the answer */
15855
+ cited: boolean;
15856
+ }
15857
+ /** A Gemini answer with its sources. */
15858
+ interface GeminiAskResponse {
15859
+ /** The prompt that was sent */
15860
+ prompt: string;
15861
+ /** The answer as plain text */
15862
+ answer: string;
15863
+ /** The answer as markdown, when available */
15864
+ answer_markdown: string | null;
15865
+ /** Sources Gemini actually referenced */
15866
+ citations: GeminiCitation[];
15867
+ /** The full retrieved set, cited or not */
15868
+ search_results: GeminiSearchResult[];
15869
+ /** Distinct domains across the sources */
15870
+ source_domains: string[];
15871
+ /** True when the render budget expired mid-answer; `answer` is partial. */
15872
+ truncated: boolean;
15873
+ /** Whether Gemini ACTUALLY grounded the answer with a web search */
15874
+ web_search_triggered: boolean;
15875
+ /** Model slug that answered (e.g. a Gemini Flash-Lite build) */
15876
+ model: string | null;
15877
+ /** Gemini conversation identifier */
15878
+ conversation_id: string | null;
15879
+ /** Gemini message identifier */
15880
+ message_id: string | null;
15881
+ /** ISO-3166 alpha-2 egress country used */
15882
+ country: string;
15883
+ /** Length of the answer in characters */
15884
+ answer_length: number;
15885
+ /** Number of citations */
15886
+ citation_count: number;
15887
+ /** End-to-end latency in milliseconds */
15888
+ latency_ms: number;
15889
+ /** Creation time as a Unix timestamp */
15890
+ created_utc: number | null;
15891
+ /** Creation time as an ISO-8601 Z string */
15892
+ created_at: string | null;
15893
+ }
15894
+ /** How one competitor fared in the same answer. */
15895
+ interface GeminiCompetitorMention {
15896
+ /** Competitor name as supplied in the request */
15897
+ name: string;
15898
+ /** Whether the competitor appears in the answer */
15899
+ mentioned: boolean;
15900
+ /** Number of mentions */
15901
+ mention_count: number;
15902
+ /** Character offset of the first mention */
15903
+ first_position: number | null;
15904
+ /** Whether a competitor URL is cited as a source */
15905
+ cited: boolean;
15906
+ /** Cited URLs attributed to this competitor */
15907
+ cited_urls: string[];
15908
+ }
15909
+ /** AEO/GEO brand analysis of a Gemini answer. */
15910
+ interface GeminiBrandVisibilityResponse {
15911
+ /** The prompt that was sent */
15912
+ prompt: string;
15913
+ /** The brand that was analysed */
15914
+ brand: string;
15915
+ /** The brand's domain, when supplied */
15916
+ domain: string | null;
15917
+ /** Whether the brand appears in the answer */
15918
+ mentioned: boolean;
15919
+ /** Number of brand mentions */
15920
+ mention_count: number;
15921
+ /** Character offset of the first brand mention */
15922
+ first_position: number | null;
15923
+ /** 1.0 = named at the very start, 0.0 = absent */
15924
+ position_score: number;
15925
+ /** Brand mentions / (brand + competitor mentions) */
15926
+ share_of_voice_pct: number;
15927
+ /** Whether the brand's domain is cited as a source */
15928
+ cited: boolean;
15929
+ /** Cited URLs on the brand's domain */
15930
+ cited_urls: string[];
15931
+ /** 1-based rank of the first cited brand URL */
15932
+ citation_rank: number | null;
15933
+ /** Per-competitor breakdown */
15934
+ competitors: GeminiCompetitorMention[];
15935
+ /** Answer text around the first brand mention */
15936
+ excerpt: string | null;
15937
+ /** The answer as plain text */
15938
+ answer: string;
15939
+ /** Sources Gemini actually referenced */
15940
+ citations: GeminiCitation[];
15941
+ /** Whether Gemini ACTUALLY grounded the answer with a web search */
15942
+ web_search_triggered: boolean;
15943
+ /** Model slug that answered */
15944
+ model: string | null;
15945
+ /** ISO-3166 alpha-2 egress country used */
15946
+ country: string;
15947
+ /** End-to-end latency in milliseconds */
15948
+ latency_ms: number;
15949
+ /** Creation time as a Unix timestamp */
15950
+ created_utc: number | null;
15951
+ /** Creation time as an ISO-8601 Z string */
15952
+ created_at: string | null;
15953
+ }
15954
+
15955
+ /**
15956
+ * Gemini Ask API client.
15957
+ *
15958
+ * Sends a prompt to the real gemini.google.com and returns the answer as
15959
+ * structured JSON, including the web sources Gemini cited.
15960
+ */
15961
+
15962
+ /**
15963
+ * Client for the Gemini ask endpoint.
15964
+ *
15965
+ * @example
15966
+ * ```typescript
15967
+ * const client = new ScrapeBadger({ apiKey: "key" });
15968
+ *
15969
+ * const result = await client.gemini.ask.ask({
15970
+ * prompt: "best running shoes 2026",
15971
+ * });
15972
+ * console.log(result.answer);
15973
+ * for (const citation of result.citations) {
15974
+ * console.log(`${citation.domain}: ${citation.url}`);
15975
+ * }
15976
+ * ```
15977
+ */
15978
+ declare class AskClient {
15979
+ private readonly client;
15980
+ constructor(client: BaseClient);
15981
+ /**
15982
+ * Ask Gemini a question and get the answer with its sources.
15983
+ *
15984
+ * @param params - Ask parameters.
15985
+ * @param params.prompt - The prompt to send (max 4096 characters).
15986
+ * @param params.country - ISO-3166 alpha-2 egress country (default: "US").
15987
+ * @param params.web_search - "auto", "force", or "off" (default: "auto").
15988
+ * @returns The answer, its citations, and the full retrieved search set.
15989
+ *
15990
+ * @example
15991
+ * ```typescript
15992
+ * const result = await client.gemini.ask.ask({
15993
+ * prompt: "what is the best CRM for a 10-person startup?",
15994
+ * country: "GB",
15995
+ * web_search: "force",
15996
+ * });
15997
+ * console.log(result.web_search_triggered, result.model);
15998
+ * for (const source of result.search_results) {
15999
+ * console.log(`${source.cited ? "*" : " "} ${source.url}`);
16000
+ * }
16001
+ * ```
16002
+ */
16003
+ ask(params: GeminiAskParams): Promise<GeminiAskResponse>;
16004
+ }
16005
+
16006
+ /**
16007
+ * Gemini Brand Visibility API client.
16008
+ *
16009
+ * Answer-engine-optimisation (AEO/GEO) analysis: ask Gemini a prompt and get
16010
+ * back how a brand fares in the answer, next to its competitors.
16011
+ */
16012
+
16013
+ /**
16014
+ * Client for the Gemini brand-visibility endpoint.
16015
+ *
16016
+ * @example
16017
+ * ```typescript
16018
+ * const client = new ScrapeBadger({ apiKey: "key" });
16019
+ *
16020
+ * const result = await client.gemini.brand.visibility({
16021
+ * prompt: "best web scraping API",
16022
+ * brand: "ScrapeBadger",
16023
+ * domain: "scrapebadger.com",
16024
+ * competitors: ["Bright Data", "Apify"],
16025
+ * });
16026
+ * console.log(result.mentioned, result.share_of_voice_pct);
16027
+ * ```
16028
+ */
16029
+ declare class BrandClient {
16030
+ private readonly client;
16031
+ constructor(client: BaseClient);
16032
+ /**
16033
+ * Analyse how a brand shows up in Gemini's answer to a prompt.
16034
+ *
16035
+ * @param params - Brand-visibility parameters.
16036
+ * @param params.prompt - The prompt to send (max 4096 characters).
16037
+ * @param params.brand - The brand name to look for in the answer.
16038
+ * @param params.domain - The brand's domain, used to detect brand citations.
16039
+ * @param params.aliases - Other spellings that should count as mentions.
16040
+ * @param params.competitors - Competitors to measure share of voice against.
16041
+ * @param params.country - ISO-3166 alpha-2 egress country (default: "US").
16042
+ * @param params.web_search - "auto", "force", or "off" (default: "force").
16043
+ * @returns The brand analysis plus the answer and its citations.
16044
+ *
16045
+ * @example
16046
+ * ```typescript
16047
+ * const result = await client.gemini.brand.visibility({
16048
+ * prompt: "which proxy provider should I use?",
16049
+ * brand: "ScrapeBadger",
16050
+ * domain: "scrapebadger.com",
16051
+ * aliases: ["Scrape Badger"],
16052
+ * competitors: ["Bright Data", "Oxylabs"],
16053
+ * country: "DE",
16054
+ * });
16055
+ * console.log(`position score: ${result.position_score}`);
16056
+ * for (const competitor of result.competitors) {
16057
+ * console.log(`${competitor.name}: ${competitor.mention_count}`);
16058
+ * }
16059
+ * ```
16060
+ */
16061
+ visibility(params: GeminiBrandVisibilityParams): Promise<GeminiBrandVisibilityResponse>;
16062
+ }
16063
+
16064
+ /**
16065
+ * Gemini API client.
16066
+ *
16067
+ * Provides access to all Gemini API endpoints through specialized sub-clients.
16068
+ */
16069
+
16070
+ /**
16071
+ * Gemini API client with access to all Gemini endpoints.
16072
+ *
16073
+ * Prompts the real gemini.google.com — not the Gemini API — anonymously, and
16074
+ * returns the answer as structured JSON including the web sources Gemini
16075
+ * cited.
16076
+ *
16077
+ * Sub-clients:
16078
+ * - `ask` - Send a prompt and get the answer with its sources
16079
+ * - `brand` - AEO/GEO brand-visibility analysis
16080
+ *
16081
+ * @example
16082
+ * ```typescript
16083
+ * const client = new ScrapeBadger({ apiKey: "key" });
16084
+ *
16085
+ * // Ask a question
16086
+ * const result = await client.gemini.ask.ask({ prompt: "best running shoes 2026" });
16087
+ *
16088
+ * // Brand visibility
16089
+ * const brand = await client.gemini.brand.visibility({
16090
+ * prompt: "best web scraping API",
16091
+ * brand: "ScrapeBadger",
16092
+ * competitors: ["Bright Data"],
16093
+ * });
16094
+ * ```
16095
+ */
16096
+ declare class GeminiClient {
16097
+ /** Client for asking Gemini a question */
16098
+ readonly ask: AskClient;
16099
+ /** Client for AEO/GEO brand-visibility analysis */
16100
+ readonly brand: BrandClient;
16101
+ /**
16102
+ * Create a new Gemini client.
16103
+ *
16104
+ * @param client - The base HTTP client for making requests.
16105
+ */
16106
+ constructor(client: BaseClient);
16107
+ }
16108
+
15784
16109
  /**
15785
16110
  * Main ScrapeBadger client.
15786
16111
  *
@@ -15875,6 +16200,8 @@ declare class ScrapeBadger {
15875
16200
  readonly linkedin: LinkedInClient;
15876
16201
  /** ChatGPT scraper API client — ask, brand visibility, models (the real chatgpt.com, anonymous) */
15877
16202
  readonly chatgpt: ChatGPTClient;
16203
+ /** Gemini scraper API client — ask, brand visibility (the real gemini.google.com, anonymous) */
16204
+ readonly gemini: GeminiClient;
15878
16205
  /**
15879
16206
  * Create a new ScrapeBadger client.
15880
16207
  *
@@ -15903,4 +16230,4 @@ declare class ScrapeBadger {
15903
16230
  constructor(config?: Partial<ScrapeBadgerConfig>);
15904
16231
  }
15905
16232
 
15906
- 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$2 as AmazonProductsClient, type RatingBreakdown$1 as AmazonRatingBreakdown, ReferenceClient$e as AmazonReferenceClient, type RelatedProduct as AmazonRelatedProduct, type Review$1 as AmazonReview, type ReviewProfile as AmazonReviewProfile, type AmazonReviewsParams, type ReviewsResponse$1 as AmazonReviewsResponse, SearchClient$d 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$3 as AmazonSellersClient, ApartmentsClient, type FloorPlan as ApartmentsFloorPlan, type Property$3 as ApartmentsProperty, type ApartmentsPropertyParams, type School$4 as ApartmentsSchool, type ApartmentsSearchParams, type SearchResponse$9 as ApartmentsSearchResponse, type SearchResult$4 as ApartmentsSearchResult, type Unit as ApartmentsUnit, type AutocompleteParams, type BaiduAutocompleteResponse, BaiduClient, type BaiduImageResult, type BaiduImagesParams, type BaiduImagesResponse, type BaiduLanguage, type BaiduNewsParams, type BaiduNewsResponse, type BaiduNewsResult, type BaiduNewsSort, type BaiduOrganicResult, type BaiduRelatedSearch, type BaiduSearchParams, type BaiduSearchResponse, type BaiduSuggestion, type BingAd, type BingAutocompleteParams, type BingAutocompleteResponse, BingClient, type BingDeepLink, type BingFreshness, type BingImageResult, type BingImagesParams, type BingImagesResponse, type BingMarket, type BingMarketsResponse, MediaClient$1 as BingMediaClient, type BingNewsArticle, NewsClient$1 as BingNewsClient, type BingNewsParams, type BingNewsResponse, type BingOrganicResult, ReferenceClient$8 as BingReferenceClient, type BingSafeSearch, SearchClient$7 as BingSearchClient, type BingSearchParams, type BingSearchResponse, type BingVideoResult, type BingVideosParams, type BingVideosResponse, 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 DuckDuckGoAbstract, type DuckDuckGoAutocompleteParams, type DuckDuckGoAutocompleteResponse, DuckDuckGoClient, type DuckDuckGoImageResult, type DuckDuckGoImagesParams, type DuckDuckGoImagesResponse, type DuckDuckGoInstantResponse, MediaClient$2 as DuckDuckGoMediaClient, type DuckDuckGoNewsParams, type DuckDuckGoNewsResponse, type DuckDuckGoNewsResult, type DuckDuckGoRaw, ReferenceClient$9 as DuckDuckGoReferenceClient, type DuckDuckGoRegion, type DuckDuckGoRegionsResponse, type DuckDuckGoRelatedTopic, SearchClient$8 as DuckDuckGoSearchClient, type DuckDuckGoSearchParams, type DuckDuckGoSearchResponse, type DuckDuckGoSearchResult, type DuckDuckGoVideoResult, type DuckDuckGoVideosParams, type DuckDuckGoVideosResponse, 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$b as EbayReferenceClient, type ReturnsPolicy as EbayReturnsPolicy, type Review as EbayReview, type EbayReviewsParams, type ReviewsResponse as EbayReviewsResponse, SearchClient$a 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$2 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$1 as GoogleImagesClient, JobsClient as GoogleJobsClient, LensClient as GoogleLensClient, MapsClient as GoogleMapsClient, NewsClient$2 as GoogleNewsClient, PatentsClient as GooglePatentsClient, ProductsClient$3 as GoogleProductsClient, type GoogleResponse, ScholarClient as GoogleScholarClient, SearchClient$g 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 Audio as InstagramAudio, AudioClient as InstagramAudioClient, type BioLink as InstagramBioLink, InstagramClient, type Comment$1 as InstagramComment, type Hashtag as InstagramHashtag, HashtagsClient$1 as InstagramHashtagsClient, type Highlight as InstagramHighlight, type Location$2 as InstagramLocation, LocationsClient as InstagramLocationsClient, type Media as InstagramMedia, MediaClient$3 as InstagramMediaClient, type Oembed as InstagramOembed, type Paginated as InstagramPaginated, type Resource as InstagramResource, SearchClient$e as InstagramSearchClient, type SearchTopResponse as InstagramSearchTopResponse, type User as InstagramUser, type UserAbout as InstagramUserAbout, type UserShort as InstagramUserShort, UsersClient$1 as InstagramUsersClient, 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$f as RedditSearchClient, type RedditSubreddit, SubredditsClient as RedditSubredditsClient, type RedditTrophy, type RedditUser, type UserProfileResponse as RedditUserProfileResponse, type RedditUserSubreddit, UsersClient$2 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$1 as ShopeeProductsClient, type RatingBreakdown as ShopeeRatingBreakdown, ReferenceClient$d as ShopeeReferenceClient, type ShopeeReview, type ReviewReply as ShopeeReviewReply, type ReviewSummary as ShopeeReviewSummary, ReviewsClient as ShopeeReviewsClient, type ShopeeReviewsParams, type ReviewsResult as ShopeeReviewsResult, SearchClient$c 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$c as TikTokReferenceClient, type RegionInfo as TikTokRegionInfo, type RegionsResponse$2 as TikTokRegionsResponse, type TikTokRelatedParams, SearchClient$b 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$f as VintedReferenceClient, SearchClient$h as VintedSearchClient, type VintedSearchParams, type SearchResponse$a as VintedSearchResponse, type VintedSellerSummary, type VintedStatus, type StatusesResponse as VintedStatusesResponse, type UserItemsResponse as VintedUserItemsResponse, type VintedUserProfile, type UserProfileResponse$1 as VintedUserProfileResponse, type VintedUserSummary, UsersClient$3 as VintedUsersClient, type WalmartAutocompleteResponse, type WalmartBadge, type WalmartBreadcrumb, type WalmartCategoryParams, WalmartClient, type WalmartConditionOffer, type WalmartDealsParams, type WalmartEmbeddedSeller, type WalmartFulfillmentOption, type WalmartFulfillmentSummary, type WalmartImage, type WalmartLocationContext, type WalmartMarket, type WalmartMarketsResponse, type WalmartNameValue, type WalmartNutritionFacts, type WalmartPrice, type WalmartPriceInfo, type WalmartPriceRange, type WalmartProduct, ProductsClient as WalmartProductsClient, type WalmartPromotion, type WalmartRatingDistribution, type WalmartRaw, ReferenceClient$a as WalmartReferenceClient, type WalmartReturnPolicy, type WalmartReview, type WalmartReviewSort, type WalmartReviewsParams, type WalmartReviewsResponse, SearchClient$9 as WalmartSearchClient, type WalmartSearchItem, type WalmartSearchParams, type WalmartSearchResponse, type WalmartSeller, type WalmartSellerProductsParams, type WalmartSellerResponse, SellersClient$1 as WalmartSellersClient, type WalmartSortBy, type WalmartSpecificationGroup, type WalmartStore, type WalmartStoreHours, type WalmartStoreResponse, type WalmartStoreService, StoresClient as WalmartStoresClient, type WalmartSuggestion, type WalmartVariant, type WalmartVideo, type WalmartWarranty, WebClient, type WikiPageResponse, type YahooAd, type YahooAutocompleteParams, type YahooAutocompleteResponse, YahooClient, type YahooImageResult, type YahooImagesParams, type YahooImagesResponse, type YahooMarket, type YahooMarketsResponse, MediaClient as YahooMediaClient, type YahooNewsArticle, NewsClient as YahooNewsClient, type YahooNewsParams, type YahooNewsResponse, type YahooOrganicResult, ReferenceClient$7 as YahooReferenceClient, type YahooSafeSearch, SearchClient$6 as YahooSearchClient, type YahooSearchParams, type YahooSearchResponse, type YahooVideoResult, type YahooVideosParams, type YahooVideosResponse, YandexClient, type YandexImage, type YandexImageResult, ImagesClient as YandexImagesClient, type YandexImagesParams, type YandexImagesResponse, type YandexMarket, type YandexMarketsResponse, type YandexOrganicResult, type YandexOtherSize, type YandexPagination, type YandexRaw, ReferenceClient$6 as YandexReferenceClient, type YandexReverseImageResponse, type YandexReverseParams, type YandexReverseSite, SearchClient$5 as YandexSearchClient, type YandexSearchParams, type YandexSearchResponse, type YandexSimilarImage, type YandexSitelink, type YandexTag, 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 };
16233
+ 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$2 as AmazonProductsClient, type RatingBreakdown$1 as AmazonRatingBreakdown, ReferenceClient$e as AmazonReferenceClient, type RelatedProduct as AmazonRelatedProduct, type Review$1 as AmazonReview, type ReviewProfile as AmazonReviewProfile, type AmazonReviewsParams, type ReviewsResponse$1 as AmazonReviewsResponse, SearchClient$d 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$3 as AmazonSellersClient, ApartmentsClient, type FloorPlan as ApartmentsFloorPlan, type Property$3 as ApartmentsProperty, type ApartmentsPropertyParams, type School$4 as ApartmentsSchool, type ApartmentsSearchParams, type SearchResponse$9 as ApartmentsSearchResponse, type SearchResult$4 as ApartmentsSearchResult, type Unit as ApartmentsUnit, type AutocompleteParams, type BaiduAutocompleteResponse, BaiduClient, type BaiduImageResult, type BaiduImagesParams, type BaiduImagesResponse, type BaiduLanguage, type BaiduNewsParams, type BaiduNewsResponse, type BaiduNewsResult, type BaiduNewsSort, type BaiduOrganicResult, type BaiduRelatedSearch, type BaiduSearchParams, type BaiduSearchResponse, type BaiduSuggestion, type BingAd, type BingAutocompleteParams, type BingAutocompleteResponse, BingClient, type BingDeepLink, type BingFreshness, type BingImageResult, type BingImagesParams, type BingImagesResponse, type BingMarket, type BingMarketsResponse, MediaClient$1 as BingMediaClient, type BingNewsArticle, NewsClient$1 as BingNewsClient, type BingNewsParams, type BingNewsResponse, type BingOrganicResult, ReferenceClient$8 as BingReferenceClient, type BingSafeSearch, SearchClient$7 as BingSearchClient, type BingSearchParams, type BingSearchResponse, type BingVideoResult, type BingVideosParams, type BingVideosResponse, AskClient$1 as ChatGPTAskClient, type ChatGPTAskParams, type ChatGPTAskResponse, BrandClient$1 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 DuckDuckGoAbstract, type DuckDuckGoAutocompleteParams, type DuckDuckGoAutocompleteResponse, DuckDuckGoClient, type DuckDuckGoImageResult, type DuckDuckGoImagesParams, type DuckDuckGoImagesResponse, type DuckDuckGoInstantResponse, MediaClient$2 as DuckDuckGoMediaClient, type DuckDuckGoNewsParams, type DuckDuckGoNewsResponse, type DuckDuckGoNewsResult, type DuckDuckGoRaw, ReferenceClient$9 as DuckDuckGoReferenceClient, type DuckDuckGoRegion, type DuckDuckGoRegionsResponse, type DuckDuckGoRelatedTopic, SearchClient$8 as DuckDuckGoSearchClient, type DuckDuckGoSearchParams, type DuckDuckGoSearchResponse, type DuckDuckGoSearchResult, type DuckDuckGoVideoResult, type DuckDuckGoVideosParams, type DuckDuckGoVideosResponse, 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$b as EbayReferenceClient, type ReturnsPolicy as EbayReturnsPolicy, type Review as EbayReview, type EbayReviewsParams, type ReviewsResponse as EbayReviewsResponse, SearchClient$a 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$2 as EbaySellersClient, type ShippingOption as EbayShippingOption, type EbaySortBy, type FinanceQuoteParams, type FlightsSearchParams, type FlightsSortBy, type FlightsStopsFilter, type FlightsTravelClass, type FlightsTripType, AskClient as GeminiAskClient, type GeminiAskParams, type GeminiAskResponse, BrandClient as GeminiBrandClient, type GeminiBrandVisibilityParams, type GeminiBrandVisibilityResponse, type GeminiCitation, GeminiClient, type GeminiCompetitorMention, type GeminiSearchResult, type GeminiWebSearchMode, AiModeClient as GoogleAiModeClient, AutocompleteClient as GoogleAutocompleteClient, GoogleClient, FinanceClient as GoogleFinanceClient, FlightsClient as GoogleFlightsClient, HotelsClient as GoogleHotelsClient, ImagesClient$1 as GoogleImagesClient, JobsClient as GoogleJobsClient, LensClient as GoogleLensClient, MapsClient as GoogleMapsClient, NewsClient$2 as GoogleNewsClient, PatentsClient as GooglePatentsClient, ProductsClient$3 as GoogleProductsClient, type GoogleResponse, ScholarClient as GoogleScholarClient, SearchClient$g 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 Audio as InstagramAudio, AudioClient as InstagramAudioClient, type BioLink as InstagramBioLink, InstagramClient, type Comment$1 as InstagramComment, type Hashtag as InstagramHashtag, HashtagsClient$1 as InstagramHashtagsClient, type Highlight as InstagramHighlight, type Location$2 as InstagramLocation, LocationsClient as InstagramLocationsClient, type Media as InstagramMedia, MediaClient$3 as InstagramMediaClient, type Oembed as InstagramOembed, type Paginated as InstagramPaginated, type Resource as InstagramResource, SearchClient$e as InstagramSearchClient, type SearchTopResponse as InstagramSearchTopResponse, type User as InstagramUser, type UserAbout as InstagramUserAbout, type UserShort as InstagramUserShort, UsersClient$1 as InstagramUsersClient, 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$f as RedditSearchClient, type RedditSubreddit, SubredditsClient as RedditSubredditsClient, type RedditTrophy, type RedditUser, type UserProfileResponse as RedditUserProfileResponse, type RedditUserSubreddit, UsersClient$2 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$1 as ShopeeProductsClient, type RatingBreakdown as ShopeeRatingBreakdown, ReferenceClient$d as ShopeeReferenceClient, type ShopeeReview, type ReviewReply as ShopeeReviewReply, type ReviewSummary as ShopeeReviewSummary, ReviewsClient as ShopeeReviewsClient, type ShopeeReviewsParams, type ReviewsResult as ShopeeReviewsResult, SearchClient$c 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$c as TikTokReferenceClient, type RegionInfo as TikTokRegionInfo, type RegionsResponse$2 as TikTokRegionsResponse, type TikTokRelatedParams, SearchClient$b 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$f as VintedReferenceClient, SearchClient$h as VintedSearchClient, type VintedSearchParams, type SearchResponse$a as VintedSearchResponse, type VintedSellerSummary, type VintedStatus, type StatusesResponse as VintedStatusesResponse, type UserItemsResponse as VintedUserItemsResponse, type VintedUserProfile, type UserProfileResponse$1 as VintedUserProfileResponse, type VintedUserSummary, UsersClient$3 as VintedUsersClient, type WalmartAutocompleteResponse, type WalmartBadge, type WalmartBreadcrumb, type WalmartCategoryParams, WalmartClient, type WalmartConditionOffer, type WalmartDealsParams, type WalmartEmbeddedSeller, type WalmartFulfillmentOption, type WalmartFulfillmentSummary, type WalmartImage, type WalmartLocationContext, type WalmartMarket, type WalmartMarketsResponse, type WalmartNameValue, type WalmartNutritionFacts, type WalmartPrice, type WalmartPriceInfo, type WalmartPriceRange, type WalmartProduct, ProductsClient as WalmartProductsClient, type WalmartPromotion, type WalmartRatingDistribution, type WalmartRaw, ReferenceClient$a as WalmartReferenceClient, type WalmartReturnPolicy, type WalmartReview, type WalmartReviewSort, type WalmartReviewsParams, type WalmartReviewsResponse, SearchClient$9 as WalmartSearchClient, type WalmartSearchItem, type WalmartSearchParams, type WalmartSearchResponse, type WalmartSeller, type WalmartSellerProductsParams, type WalmartSellerResponse, SellersClient$1 as WalmartSellersClient, type WalmartSortBy, type WalmartSpecificationGroup, type WalmartStore, type WalmartStoreHours, type WalmartStoreResponse, type WalmartStoreService, StoresClient as WalmartStoresClient, type WalmartSuggestion, type WalmartVariant, type WalmartVideo, type WalmartWarranty, WebClient, type WikiPageResponse, type YahooAd, type YahooAutocompleteParams, type YahooAutocompleteResponse, YahooClient, type YahooImageResult, type YahooImagesParams, type YahooImagesResponse, type YahooMarket, type YahooMarketsResponse, MediaClient as YahooMediaClient, type YahooNewsArticle, NewsClient as YahooNewsClient, type YahooNewsParams, type YahooNewsResponse, type YahooOrganicResult, ReferenceClient$7 as YahooReferenceClient, type YahooSafeSearch, SearchClient$6 as YahooSearchClient, type YahooSearchParams, type YahooSearchResponse, type YahooVideoResult, type YahooVideosParams, type YahooVideosResponse, YandexClient, type YandexImage, type YandexImageResult, ImagesClient as YandexImagesClient, type YandexImagesParams, type YandexImagesResponse, type YandexMarket, type YandexMarketsResponse, type YandexOrganicResult, type YandexOtherSize, type YandexPagination, type YandexRaw, ReferenceClient$6 as YandexReferenceClient, type YandexReverseImageResponse, type YandexReverseParams, type YandexReverseSite, SearchClient$5 as YandexSearchClient, type YandexSearchParams, type YandexSearchResponse, type YandexSimilarImage, type YandexSitelink, type YandexTag, 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 };
package/dist/index.js CHANGED
@@ -8246,6 +8246,112 @@ var ChatGPTClient = class {
8246
8246
  }
8247
8247
  };
8248
8248
 
8249
+ // src/gemini/ask.ts
8250
+ var AskClient2 = class {
8251
+ client;
8252
+ constructor(client) {
8253
+ this.client = client;
8254
+ }
8255
+ /**
8256
+ * Ask Gemini a question and get the answer with its sources.
8257
+ *
8258
+ * @param params - Ask parameters.
8259
+ * @param params.prompt - The prompt to send (max 4096 characters).
8260
+ * @param params.country - ISO-3166 alpha-2 egress country (default: "US").
8261
+ * @param params.web_search - "auto", "force", or "off" (default: "auto").
8262
+ * @returns The answer, its citations, and the full retrieved search set.
8263
+ *
8264
+ * @example
8265
+ * ```typescript
8266
+ * const result = await client.gemini.ask.ask({
8267
+ * prompt: "what is the best CRM for a 10-person startup?",
8268
+ * country: "GB",
8269
+ * web_search: "force",
8270
+ * });
8271
+ * console.log(result.web_search_triggered, result.model);
8272
+ * for (const source of result.search_results) {
8273
+ * console.log(`${source.cited ? "*" : " "} ${source.url}`);
8274
+ * }
8275
+ * ```
8276
+ */
8277
+ async ask(params) {
8278
+ return this.client.request("/v1/gemini/ask", {
8279
+ params: {
8280
+ prompt: params.prompt,
8281
+ country: params.country,
8282
+ web_search: params.web_search
8283
+ }
8284
+ });
8285
+ }
8286
+ };
8287
+
8288
+ // src/gemini/brand.ts
8289
+ var BrandClient2 = class {
8290
+ client;
8291
+ constructor(client) {
8292
+ this.client = client;
8293
+ }
8294
+ /**
8295
+ * Analyse how a brand shows up in Gemini's answer to a prompt.
8296
+ *
8297
+ * @param params - Brand-visibility parameters.
8298
+ * @param params.prompt - The prompt to send (max 4096 characters).
8299
+ * @param params.brand - The brand name to look for in the answer.
8300
+ * @param params.domain - The brand's domain, used to detect brand citations.
8301
+ * @param params.aliases - Other spellings that should count as mentions.
8302
+ * @param params.competitors - Competitors to measure share of voice against.
8303
+ * @param params.country - ISO-3166 alpha-2 egress country (default: "US").
8304
+ * @param params.web_search - "auto", "force", or "off" (default: "force").
8305
+ * @returns The brand analysis plus the answer and its citations.
8306
+ *
8307
+ * @example
8308
+ * ```typescript
8309
+ * const result = await client.gemini.brand.visibility({
8310
+ * prompt: "which proxy provider should I use?",
8311
+ * brand: "ScrapeBadger",
8312
+ * domain: "scrapebadger.com",
8313
+ * aliases: ["Scrape Badger"],
8314
+ * competitors: ["Bright Data", "Oxylabs"],
8315
+ * country: "DE",
8316
+ * });
8317
+ * console.log(`position score: ${result.position_score}`);
8318
+ * for (const competitor of result.competitors) {
8319
+ * console.log(`${competitor.name}: ${competitor.mention_count}`);
8320
+ * }
8321
+ * ```
8322
+ */
8323
+ async visibility(params) {
8324
+ return this.client.request("/v1/gemini/brand-visibility", {
8325
+ params: {
8326
+ prompt: params.prompt,
8327
+ brand: params.brand,
8328
+ domain: params.domain,
8329
+ aliases: params.aliases?.length ? params.aliases.join(",") : void 0,
8330
+ competitors: params.competitors?.length ? params.competitors.join(",") : void 0,
8331
+ country: params.country,
8332
+ web_search: params.web_search
8333
+ }
8334
+ });
8335
+ }
8336
+ };
8337
+
8338
+ // src/gemini/client.ts
8339
+ var GeminiClient = class {
8340
+ /** Client for asking Gemini a question */
8341
+ ask;
8342
+ /** Client for AEO/GEO brand-visibility analysis */
8343
+ brand;
8344
+ /**
8345
+ * Create a new Gemini client.
8346
+ *
8347
+ * @param client - The base HTTP client for making requests.
8348
+ */
8349
+ constructor(client) {
8350
+ this.ask = new AskClient2(client);
8351
+ this.brand = new BrandClient2(client);
8352
+ }
8353
+ };
8354
+
8249
8355
  // src/client.ts
8250
8356
  var ScrapeBadger = class {
8251
8357
  baseClient;
@@ -8303,6 +8409,8 @@ var ScrapeBadger = class {
8303
8409
  linkedin;
8304
8410
  /** ChatGPT scraper API client — ask, brand visibility, models (the real chatgpt.com, anonymous) */
8305
8411
  chatgpt;
8412
+ /** Gemini scraper API client — ask, brand visibility (the real gemini.google.com, anonymous) */
8413
+ gemini;
8306
8414
  /**
8307
8415
  * Create a new ScrapeBadger client.
8308
8416
  *
@@ -8364,6 +8472,7 @@ var ScrapeBadger = class {
8364
8472
  this.depop = new DepopClient(this.baseClient);
8365
8473
  this.linkedin = new LinkedInClient(this.baseClient);
8366
8474
  this.chatgpt = new ChatGPTClient(this.baseClient);
8475
+ this.gemini = new GeminiClient(this.baseClient);
8367
8476
  }
8368
8477
  };
8369
8478
 
@@ -8399,6 +8508,9 @@ exports.EbayItemsClient = ItemsClient2;
8399
8508
  exports.EbayReferenceClient = ReferenceClient5;
8400
8509
  exports.EbaySearchClient = SearchClient8;
8401
8510
  exports.EbaySellersClient = SellersClient2;
8511
+ exports.GeminiAskClient = AskClient2;
8512
+ exports.GeminiBrandClient = BrandClient2;
8513
+ exports.GeminiClient = GeminiClient;
8402
8514
  exports.GeoClient = GeoClient;
8403
8515
  exports.GoogleAiModeClient = AiModeClient;
8404
8516
  exports.GoogleAutocompleteClient = AutocompleteClient;