scrapebadger 0.32.0 → 0.33.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/index.d.cts +333 -41
- package/dist/index.d.ts +333 -41
- package/dist/index.js +135 -34
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +121 -24
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -609,7 +609,7 @@ interface VintedSearchParams {
|
|
|
609
609
|
* });
|
|
610
610
|
* ```
|
|
611
611
|
*/
|
|
612
|
-
declare class SearchClient$
|
|
612
|
+
declare class SearchClient$g {
|
|
613
613
|
private readonly client;
|
|
614
614
|
constructor(client: BaseClient);
|
|
615
615
|
/**
|
|
@@ -808,7 +808,7 @@ declare class UsersClient$3 {
|
|
|
808
808
|
* }
|
|
809
809
|
* ```
|
|
810
810
|
*/
|
|
811
|
-
declare class ReferenceClient$
|
|
811
|
+
declare class ReferenceClient$e {
|
|
812
812
|
private readonly client;
|
|
813
813
|
constructor(client: BaseClient);
|
|
814
814
|
/**
|
|
@@ -923,13 +923,13 @@ declare class ReferenceClient$d {
|
|
|
923
923
|
*/
|
|
924
924
|
declare class VintedClient {
|
|
925
925
|
/** Client for item search operations */
|
|
926
|
-
readonly search: SearchClient$
|
|
926
|
+
readonly search: SearchClient$g;
|
|
927
927
|
/** Client for individual item operations */
|
|
928
928
|
readonly items: ItemsClient$1;
|
|
929
929
|
/** Client for user operations */
|
|
930
930
|
readonly users: UsersClient$3;
|
|
931
931
|
/** Client for reference data (brands, colors, statuses, markets) */
|
|
932
|
-
readonly reference: ReferenceClient$
|
|
932
|
+
readonly reference: ReferenceClient$e;
|
|
933
933
|
/**
|
|
934
934
|
* Create a new Vinted client.
|
|
935
935
|
*
|
|
@@ -1678,7 +1678,7 @@ declare class HotelsClient {
|
|
|
1678
1678
|
* }
|
|
1679
1679
|
* ```
|
|
1680
1680
|
*/
|
|
1681
|
-
declare class ImagesClient {
|
|
1681
|
+
declare class ImagesClient$1 {
|
|
1682
1682
|
private readonly client;
|
|
1683
1683
|
constructor(client: BaseClient);
|
|
1684
1684
|
search(params: ImagesSearchParams): Promise<GoogleResponse>;
|
|
@@ -1940,7 +1940,7 @@ declare class ScholarClient {
|
|
|
1940
1940
|
* }
|
|
1941
1941
|
* ```
|
|
1942
1942
|
*/
|
|
1943
|
-
declare class SearchClient$
|
|
1943
|
+
declare class SearchClient$f {
|
|
1944
1944
|
private readonly client;
|
|
1945
1945
|
constructor(client: BaseClient);
|
|
1946
1946
|
/**
|
|
@@ -2142,7 +2142,7 @@ declare class VideosClient$2 {
|
|
|
2142
2142
|
*/
|
|
2143
2143
|
declare class GoogleClient {
|
|
2144
2144
|
/** Google Web Search (SERP) — with optional deferred AI Overview follow-up. */
|
|
2145
|
-
readonly search: SearchClient$
|
|
2145
|
+
readonly search: SearchClient$f;
|
|
2146
2146
|
/** Google Maps — places, reviews, photos, posts. */
|
|
2147
2147
|
readonly maps: MapsClient;
|
|
2148
2148
|
/** Google News — articles, topics, trending. */
|
|
@@ -2162,7 +2162,7 @@ declare class GoogleClient {
|
|
|
2162
2162
|
/** Google Autocomplete — search suggestions. */
|
|
2163
2163
|
readonly autocomplete: AutocompleteClient;
|
|
2164
2164
|
/** Google Images. */
|
|
2165
|
-
readonly images: ImagesClient;
|
|
2165
|
+
readonly images: ImagesClient$1;
|
|
2166
2166
|
/** Google Videos. */
|
|
2167
2167
|
readonly videos: VideosClient$2;
|
|
2168
2168
|
/** Google Finance — stock and index quotes. */
|
|
@@ -2973,7 +2973,7 @@ interface DomainPostsResponse {
|
|
|
2973
2973
|
* const domainPosts = await client.reddit.search.domainPosts({ domain: "github.com" });
|
|
2974
2974
|
* ```
|
|
2975
2975
|
*/
|
|
2976
|
-
declare class SearchClient$
|
|
2976
|
+
declare class SearchClient$e {
|
|
2977
2977
|
private readonly client;
|
|
2978
2978
|
constructor(client: BaseClient);
|
|
2979
2979
|
/**
|
|
@@ -3582,7 +3582,7 @@ declare class UsersClient$2 {
|
|
|
3582
3582
|
*/
|
|
3583
3583
|
declare class RedditClient {
|
|
3584
3584
|
/** Client for search operations (posts, subreddits, users, domain posts) */
|
|
3585
|
-
readonly search: SearchClient$
|
|
3585
|
+
readonly search: SearchClient$e;
|
|
3586
3586
|
/** Client for post operations (trending, details, comments, duplicates) */
|
|
3587
3587
|
readonly posts: PostsClient;
|
|
3588
3588
|
/** Client for subreddit operations (details, posts, rules, moderators, wiki) */
|
|
@@ -4172,7 +4172,7 @@ declare class MediaClient$2 {
|
|
|
4172
4172
|
* const tags = await client.instagram.search.hashtags("running");
|
|
4173
4173
|
* ```
|
|
4174
4174
|
*/
|
|
4175
|
-
declare class SearchClient$
|
|
4175
|
+
declare class SearchClient$d {
|
|
4176
4176
|
private readonly client;
|
|
4177
4177
|
constructor(client: BaseClient);
|
|
4178
4178
|
/**
|
|
@@ -4330,7 +4330,7 @@ declare class InstagramClient {
|
|
|
4330
4330
|
/** Client for media operations (detail, comments, replies, likers, oEmbed) */
|
|
4331
4331
|
readonly media: MediaClient$2;
|
|
4332
4332
|
/** Client for search operations (users, hashtags, places, top, reels, music, autocomplete) */
|
|
4333
|
-
readonly search: SearchClient$
|
|
4333
|
+
readonly search: SearchClient$d;
|
|
4334
4334
|
/** Client for hashtag operations (info, top, recent, reels) */
|
|
4335
4335
|
readonly hashtags: HashtagsClient$1;
|
|
4336
4336
|
/** Client for location operations (info, top, recent, search) */
|
|
@@ -5405,7 +5405,7 @@ interface AmazonAutocompleteParams {
|
|
|
5405
5405
|
* const suggestions = await client.amazon.search.autocomplete("lapt");
|
|
5406
5406
|
* ```
|
|
5407
5407
|
*/
|
|
5408
|
-
declare class SearchClient$
|
|
5408
|
+
declare class SearchClient$c {
|
|
5409
5409
|
private readonly client;
|
|
5410
5410
|
constructor(client: BaseClient);
|
|
5411
5411
|
/**
|
|
@@ -5601,7 +5601,7 @@ declare class SellersClient$3 {
|
|
|
5601
5601
|
* const categories = await client.amazon.reference.categories();
|
|
5602
5602
|
* ```
|
|
5603
5603
|
*/
|
|
5604
|
-
declare class ReferenceClient$
|
|
5604
|
+
declare class ReferenceClient$d {
|
|
5605
5605
|
private readonly client;
|
|
5606
5606
|
constructor(client: BaseClient);
|
|
5607
5607
|
/**
|
|
@@ -5656,7 +5656,7 @@ declare class ReferenceClient$c {
|
|
|
5656
5656
|
*/
|
|
5657
5657
|
declare class AmazonClient {
|
|
5658
5658
|
/** Client for keyword search and autocomplete */
|
|
5659
|
-
readonly search: SearchClient$
|
|
5659
|
+
readonly search: SearchClient$c;
|
|
5660
5660
|
/** Client for product detail, offers, and reviews */
|
|
5661
5661
|
readonly products: ProductsClient$2;
|
|
5662
5662
|
/** Client for bestsellers, new releases, deals, and category browse */
|
|
@@ -5664,7 +5664,7 @@ declare class AmazonClient {
|
|
|
5664
5664
|
/** Client for seller profile, products, and feedback */
|
|
5665
5665
|
readonly sellers: SellersClient$3;
|
|
5666
5666
|
/** Client for reference data (markets, categories) */
|
|
5667
|
-
readonly reference: ReferenceClient$
|
|
5667
|
+
readonly reference: ReferenceClient$d;
|
|
5668
5668
|
/**
|
|
5669
5669
|
* Create a new Amazon client.
|
|
5670
5670
|
*
|
|
@@ -5956,7 +5956,7 @@ interface ShopeeCategoriesParams {
|
|
|
5956
5956
|
* const cat = await client.shopee.search.categoryItems(100001, { market: "sg" });
|
|
5957
5957
|
* ```
|
|
5958
5958
|
*/
|
|
5959
|
-
declare class SearchClient$
|
|
5959
|
+
declare class SearchClient$b {
|
|
5960
5960
|
private readonly client;
|
|
5961
5961
|
constructor(client: BaseClient);
|
|
5962
5962
|
/**
|
|
@@ -6079,7 +6079,7 @@ declare class ReviewsClient {
|
|
|
6079
6079
|
* }
|
|
6080
6080
|
* ```
|
|
6081
6081
|
*/
|
|
6082
|
-
declare class ReferenceClient$
|
|
6082
|
+
declare class ReferenceClient$c {
|
|
6083
6083
|
private readonly client;
|
|
6084
6084
|
constructor(client: BaseClient);
|
|
6085
6085
|
/**
|
|
@@ -6139,13 +6139,13 @@ declare class ReferenceClient$b {
|
|
|
6139
6139
|
*/
|
|
6140
6140
|
declare class ShopeeClient {
|
|
6141
6141
|
/** Client for keyword search and category-item listing */
|
|
6142
|
-
readonly search: SearchClient$
|
|
6142
|
+
readonly search: SearchClient$b;
|
|
6143
6143
|
/** Client for full product detail pages */
|
|
6144
6144
|
readonly products: ProductsClient$1;
|
|
6145
6145
|
/** Client for product reviews and rating summaries */
|
|
6146
6146
|
readonly reviews: ReviewsClient;
|
|
6147
6147
|
/** Client for reference data (markets, category tree) */
|
|
6148
|
-
readonly reference: ReferenceClient$
|
|
6148
|
+
readonly reference: ReferenceClient$c;
|
|
6149
6149
|
/**
|
|
6150
6150
|
* Create a new Shopee client.
|
|
6151
6151
|
*
|
|
@@ -6991,7 +6991,7 @@ declare class VideosClient$1 {
|
|
|
6991
6991
|
* const users = await client.tiktok.search.users({ query: "skincare" });
|
|
6992
6992
|
* ```
|
|
6993
6993
|
*/
|
|
6994
|
-
declare class SearchClient$
|
|
6994
|
+
declare class SearchClient$a {
|
|
6995
6995
|
private readonly client;
|
|
6996
6996
|
constructor(client: BaseClient);
|
|
6997
6997
|
/**
|
|
@@ -7197,7 +7197,7 @@ declare class AdsClient$1 {
|
|
|
7197
7197
|
* }
|
|
7198
7198
|
* ```
|
|
7199
7199
|
*/
|
|
7200
|
-
declare class ReferenceClient$
|
|
7200
|
+
declare class ReferenceClient$b {
|
|
7201
7201
|
private readonly client;
|
|
7202
7202
|
constructor(client: BaseClient);
|
|
7203
7203
|
/**
|
|
@@ -7262,7 +7262,7 @@ declare class TikTokClient {
|
|
|
7262
7262
|
/** Client for video detail, comments, replies, related, transcript, oEmbed */
|
|
7263
7263
|
readonly videos: VideosClient$1;
|
|
7264
7264
|
/** Client for keyword search across videos, users, and hashtags */
|
|
7265
|
-
readonly search: SearchClient$
|
|
7265
|
+
readonly search: SearchClient$a;
|
|
7266
7266
|
/** Client for sound/music detail and videos using a sound */
|
|
7267
7267
|
readonly music: MusicClient$1;
|
|
7268
7268
|
/** Client for hashtag detail and tagged videos */
|
|
@@ -7272,7 +7272,7 @@ declare class TikTokClient {
|
|
|
7272
7272
|
/** Client for the Commercial Content Library (ad transparency) */
|
|
7273
7273
|
readonly ads: AdsClient$1;
|
|
7274
7274
|
/** Client for reference data (regions) and service health */
|
|
7275
|
-
readonly reference: ReferenceClient$
|
|
7275
|
+
readonly reference: ReferenceClient$b;
|
|
7276
7276
|
/**
|
|
7277
7277
|
* Create a new TikTok client.
|
|
7278
7278
|
*
|
|
@@ -7784,7 +7784,7 @@ interface EbayAutocompleteParams {
|
|
|
7784
7784
|
* const suggestions = await client.ebay.search.autocomplete("ipho");
|
|
7785
7785
|
* ```
|
|
7786
7786
|
*/
|
|
7787
|
-
declare class SearchClient$
|
|
7787
|
+
declare class SearchClient$9 {
|
|
7788
7788
|
private readonly client;
|
|
7789
7789
|
constructor(client: BaseClient);
|
|
7790
7790
|
/**
|
|
@@ -7965,7 +7965,7 @@ declare class CategoriesClient {
|
|
|
7965
7965
|
* }
|
|
7966
7966
|
* ```
|
|
7967
7967
|
*/
|
|
7968
|
-
declare class ReferenceClient$
|
|
7968
|
+
declare class ReferenceClient$a {
|
|
7969
7969
|
private readonly client;
|
|
7970
7970
|
constructor(client: BaseClient);
|
|
7971
7971
|
/**
|
|
@@ -8020,7 +8020,7 @@ declare class ReferenceClient$9 {
|
|
|
8020
8020
|
*/
|
|
8021
8021
|
declare class EbayClient {
|
|
8022
8022
|
/** Client for active search, completed/sold search, and autocomplete */
|
|
8023
|
-
readonly search: SearchClient$
|
|
8023
|
+
readonly search: SearchClient$9;
|
|
8024
8024
|
/** Client for item detail and catalog product reviews */
|
|
8025
8025
|
readonly items: ItemsClient;
|
|
8026
8026
|
/** Client for seller profile, items, and feedback */
|
|
@@ -8028,7 +8028,7 @@ declare class EbayClient {
|
|
|
8028
8028
|
/** Client for category browse and the reference category list */
|
|
8029
8029
|
readonly categories: CategoriesClient;
|
|
8030
8030
|
/** Client for reference data (markets) */
|
|
8031
|
-
readonly reference: ReferenceClient$
|
|
8031
|
+
readonly reference: ReferenceClient$a;
|
|
8032
8032
|
/**
|
|
8033
8033
|
* Create a new eBay client.
|
|
8034
8034
|
*
|
|
@@ -8670,7 +8670,7 @@ interface WalmartSellerProductsParams {
|
|
|
8670
8670
|
* const suggestions = await client.walmart.search.autocomplete("lapt");
|
|
8671
8671
|
* ```
|
|
8672
8672
|
*/
|
|
8673
|
-
declare class SearchClient$
|
|
8673
|
+
declare class SearchClient$8 {
|
|
8674
8674
|
private readonly client;
|
|
8675
8675
|
constructor(client: BaseClient);
|
|
8676
8676
|
/**
|
|
@@ -8853,7 +8853,7 @@ declare class StoresClient {
|
|
|
8853
8853
|
* const markets = await client.walmart.reference.markets();
|
|
8854
8854
|
* ```
|
|
8855
8855
|
*/
|
|
8856
|
-
declare class ReferenceClient$
|
|
8856
|
+
declare class ReferenceClient$9 {
|
|
8857
8857
|
private readonly client;
|
|
8858
8858
|
constructor(client: BaseClient);
|
|
8859
8859
|
/**
|
|
@@ -8904,7 +8904,7 @@ declare class ReferenceClient$8 {
|
|
|
8904
8904
|
*/
|
|
8905
8905
|
declare class WalmartClient {
|
|
8906
8906
|
/** Client for search, category browse, deals and autocomplete */
|
|
8907
|
-
readonly search: SearchClient$
|
|
8907
|
+
readonly search: SearchClient$8;
|
|
8908
8908
|
/** Client for product detail and reviews */
|
|
8909
8909
|
readonly products: ProductsClient;
|
|
8910
8910
|
/** Client for marketplace seller profile and catalogue */
|
|
@@ -8912,7 +8912,7 @@ declare class WalmartClient {
|
|
|
8912
8912
|
/** Client for store detail and nearby stores */
|
|
8913
8913
|
readonly stores: StoresClient;
|
|
8914
8914
|
/** Client for reference data (markets) and service health */
|
|
8915
|
-
readonly reference: ReferenceClient$
|
|
8915
|
+
readonly reference: ReferenceClient$9;
|
|
8916
8916
|
/**
|
|
8917
8917
|
* Create a new Walmart client.
|
|
8918
8918
|
*
|
|
@@ -9122,7 +9122,7 @@ interface DuckDuckGoAutocompleteParams {
|
|
|
9122
9122
|
* }
|
|
9123
9123
|
* ```
|
|
9124
9124
|
*/
|
|
9125
|
-
declare class SearchClient$
|
|
9125
|
+
declare class SearchClient$7 {
|
|
9126
9126
|
private readonly client;
|
|
9127
9127
|
constructor(client: BaseClient);
|
|
9128
9128
|
/**
|
|
@@ -9198,7 +9198,7 @@ declare class MediaClient$1 {
|
|
|
9198
9198
|
* const regions = await client.duckduckgo.reference.regions();
|
|
9199
9199
|
* ```
|
|
9200
9200
|
*/
|
|
9201
|
-
declare class ReferenceClient$
|
|
9201
|
+
declare class ReferenceClient$8 {
|
|
9202
9202
|
private readonly client;
|
|
9203
9203
|
constructor(client: BaseClient);
|
|
9204
9204
|
/**
|
|
@@ -9250,11 +9250,11 @@ declare class ReferenceClient$7 {
|
|
|
9250
9250
|
*/
|
|
9251
9251
|
declare class DuckDuckGoClient {
|
|
9252
9252
|
/** Client for web search with the optional Instant-Answer abstract */
|
|
9253
|
-
readonly search: SearchClient$
|
|
9253
|
+
readonly search: SearchClient$7;
|
|
9254
9254
|
/** Client for image, news and video search */
|
|
9255
9255
|
readonly media: MediaClient$1;
|
|
9256
9256
|
/** Client for autocomplete, instant answers and supported regions */
|
|
9257
|
-
readonly reference: ReferenceClient$
|
|
9257
|
+
readonly reference: ReferenceClient$8;
|
|
9258
9258
|
/**
|
|
9259
9259
|
* Create a new DuckDuckGo client.
|
|
9260
9260
|
*
|
|
@@ -9448,7 +9448,7 @@ interface BingAutocompleteParams {
|
|
|
9448
9448
|
* const suggestions = await client.bing.search.autocomplete("coff");
|
|
9449
9449
|
* ```
|
|
9450
9450
|
*/
|
|
9451
|
-
declare class SearchClient$
|
|
9451
|
+
declare class SearchClient$6 {
|
|
9452
9452
|
private readonly client;
|
|
9453
9453
|
constructor(client: BaseClient);
|
|
9454
9454
|
/**
|
|
@@ -9557,7 +9557,7 @@ declare class NewsClient {
|
|
|
9557
9557
|
* const markets = await client.bing.reference.markets();
|
|
9558
9558
|
* ```
|
|
9559
9559
|
*/
|
|
9560
|
-
declare class ReferenceClient$
|
|
9560
|
+
declare class ReferenceClient$7 {
|
|
9561
9561
|
private readonly client;
|
|
9562
9562
|
constructor(client: BaseClient);
|
|
9563
9563
|
/**
|
|
@@ -9597,13 +9597,13 @@ declare class ReferenceClient$6 {
|
|
|
9597
9597
|
*/
|
|
9598
9598
|
declare class BingClient {
|
|
9599
9599
|
/** Client for web search and search-box autocomplete */
|
|
9600
|
-
readonly search: SearchClient$
|
|
9600
|
+
readonly search: SearchClient$6;
|
|
9601
9601
|
/** Client for image search and video search */
|
|
9602
9602
|
readonly media: MediaClient;
|
|
9603
9603
|
/** Client for the news vertical */
|
|
9604
9604
|
readonly news: NewsClient;
|
|
9605
9605
|
/** Client for reference data (markets) */
|
|
9606
|
-
readonly reference: ReferenceClient$
|
|
9606
|
+
readonly reference: ReferenceClient$7;
|
|
9607
9607
|
/**
|
|
9608
9608
|
* Create a new Bing client.
|
|
9609
9609
|
*
|
|
@@ -9882,6 +9882,294 @@ declare class BaiduClient {
|
|
|
9882
9882
|
autocomplete(query: string): Promise<BaiduAutocompleteResponse>;
|
|
9883
9883
|
}
|
|
9884
9884
|
|
|
9885
|
+
/**
|
|
9886
|
+
* TypeScript types for the Yandex API.
|
|
9887
|
+
*
|
|
9888
|
+
* These interfaces mirror the backend `yandex_scraper` response schema
|
|
9889
|
+
* field-for-field. Optional / nullable backend fields are typed as
|
|
9890
|
+
* `Type | null`; backend list fields default to `[]` and are typed as arrays.
|
|
9891
|
+
*
|
|
9892
|
+
* Field names are snake_case to match the backend payload and the rest of this
|
|
9893
|
+
* SDK (see the DuckDuckGo module).
|
|
9894
|
+
*/
|
|
9895
|
+
/** An untyped JSON object passed through verbatim from Yandex's payload. */
|
|
9896
|
+
type YandexRaw = Record<string, unknown>;
|
|
9897
|
+
/** A sitelink nested under an organic result or ad. */
|
|
9898
|
+
interface YandexSitelink {
|
|
9899
|
+
title: string | null;
|
|
9900
|
+
url: string | null;
|
|
9901
|
+
snippet: string | null;
|
|
9902
|
+
}
|
|
9903
|
+
/** A single organic web result (ads share the same shape). */
|
|
9904
|
+
interface YandexOrganicResult {
|
|
9905
|
+
position: number | null;
|
|
9906
|
+
title: string | null;
|
|
9907
|
+
url: string | null;
|
|
9908
|
+
displayed_url: string | null;
|
|
9909
|
+
domain: string | null;
|
|
9910
|
+
snippet: string | null;
|
|
9911
|
+
sitelinks: YandexSitelink[];
|
|
9912
|
+
}
|
|
9913
|
+
/** The SERP pagination block. */
|
|
9914
|
+
interface YandexPagination {
|
|
9915
|
+
current: number | null;
|
|
9916
|
+
next_url: string | null;
|
|
9917
|
+
other_pages: YandexRaw[];
|
|
9918
|
+
}
|
|
9919
|
+
/** A page of Yandex web results. */
|
|
9920
|
+
interface YandexSearchResponse {
|
|
9921
|
+
query: string;
|
|
9922
|
+
domain: string;
|
|
9923
|
+
page: number;
|
|
9924
|
+
result_count: number;
|
|
9925
|
+
organic_results: YandexOrganicResult[];
|
|
9926
|
+
ads: YandexOrganicResult[];
|
|
9927
|
+
inline_images: YandexRaw[];
|
|
9928
|
+
inline_videos: YandexRaw[];
|
|
9929
|
+
related_searches: string[];
|
|
9930
|
+
pagination: YandexPagination | null;
|
|
9931
|
+
}
|
|
9932
|
+
/** An image reference with dimensions. */
|
|
9933
|
+
interface YandexImage {
|
|
9934
|
+
url: string | null;
|
|
9935
|
+
width: number | null;
|
|
9936
|
+
height: number | null;
|
|
9937
|
+
}
|
|
9938
|
+
/** A single image-search result. */
|
|
9939
|
+
interface YandexImageResult {
|
|
9940
|
+
position: number | null;
|
|
9941
|
+
title: string | null;
|
|
9942
|
+
source: string | null;
|
|
9943
|
+
source_url: string | null;
|
|
9944
|
+
thumbnail: string | null;
|
|
9945
|
+
image: YandexImage | null;
|
|
9946
|
+
snippet: string | null;
|
|
9947
|
+
}
|
|
9948
|
+
/** A page of image-search results. */
|
|
9949
|
+
interface YandexImagesResponse {
|
|
9950
|
+
query: string;
|
|
9951
|
+
domain: string;
|
|
9952
|
+
page: number;
|
|
9953
|
+
result_count: number;
|
|
9954
|
+
results: YandexImageResult[];
|
|
9955
|
+
suggested_searches: string[];
|
|
9956
|
+
}
|
|
9957
|
+
/** One page where the query image (or a variant) was found. */
|
|
9958
|
+
interface YandexReverseSite {
|
|
9959
|
+
title: string | null;
|
|
9960
|
+
description: string | null;
|
|
9961
|
+
url: string | null;
|
|
9962
|
+
domain: string | null;
|
|
9963
|
+
thumbnail: YandexImage | null;
|
|
9964
|
+
original_image: YandexImage | null;
|
|
9965
|
+
}
|
|
9966
|
+
/** One visually-similar image. */
|
|
9967
|
+
interface YandexSimilarImage {
|
|
9968
|
+
title: string | null;
|
|
9969
|
+
thumbnail: string | null;
|
|
9970
|
+
url: string | null;
|
|
9971
|
+
width: number | null;
|
|
9972
|
+
height: number | null;
|
|
9973
|
+
}
|
|
9974
|
+
/** A CBIR tag / suggested refinement. */
|
|
9975
|
+
interface YandexTag {
|
|
9976
|
+
text: string | null;
|
|
9977
|
+
url: string | null;
|
|
9978
|
+
}
|
|
9979
|
+
/** The same image at another resolution. */
|
|
9980
|
+
interface YandexOtherSize {
|
|
9981
|
+
label: string | null;
|
|
9982
|
+
url: string | null;
|
|
9983
|
+
width: number | null;
|
|
9984
|
+
height: number | null;
|
|
9985
|
+
}
|
|
9986
|
+
/** The Yandex reverse-image (CBIR) response. */
|
|
9987
|
+
interface YandexReverseImageResponse {
|
|
9988
|
+
query_image_url: string;
|
|
9989
|
+
domain: string;
|
|
9990
|
+
cbir_id: string | null;
|
|
9991
|
+
is_empty: boolean;
|
|
9992
|
+
result_count: number;
|
|
9993
|
+
sites: YandexReverseSite[];
|
|
9994
|
+
similar_images: YandexSimilarImage[];
|
|
9995
|
+
tags: YandexTag[];
|
|
9996
|
+
other_sizes: YandexOtherSize[];
|
|
9997
|
+
}
|
|
9998
|
+
/** A supported Yandex market. */
|
|
9999
|
+
interface YandexMarket {
|
|
10000
|
+
code: string;
|
|
10001
|
+
name: string;
|
|
10002
|
+
domain: string;
|
|
10003
|
+
country_code: string;
|
|
10004
|
+
default_lr: number | null;
|
|
10005
|
+
lang: string | null;
|
|
10006
|
+
}
|
|
10007
|
+
/** The list of supported markets. */
|
|
10008
|
+
interface YandexMarketsResponse {
|
|
10009
|
+
result_count: number;
|
|
10010
|
+
markets: YandexMarket[];
|
|
10011
|
+
}
|
|
10012
|
+
/** Options for the web-search endpoint. */
|
|
10013
|
+
interface YandexSearchParams {
|
|
10014
|
+
/** Market domain: `"tr"` (default), `"com"`, `"ru"`, `"by"`, `"kz"`, `"uz"`. */
|
|
10015
|
+
domain?: string;
|
|
10016
|
+
/** Page number (1-25). */
|
|
10017
|
+
page?: number;
|
|
10018
|
+
/** Yandex region id (`lr`), e.g. `213` for Moscow. */
|
|
10019
|
+
lr?: number;
|
|
10020
|
+
/** UI/results language code, e.g. `"en"`. */
|
|
10021
|
+
lang?: string;
|
|
10022
|
+
}
|
|
10023
|
+
/** Options for the image-search endpoint. */
|
|
10024
|
+
interface YandexImagesParams {
|
|
10025
|
+
/** Market domain: `"tr"` (default), `"com"`, `"ru"`, `"by"`, `"kz"`, `"uz"`. */
|
|
10026
|
+
domain?: string;
|
|
10027
|
+
/** Page number (1-25). */
|
|
10028
|
+
page?: number;
|
|
10029
|
+
}
|
|
10030
|
+
/** Options for the reverse-image endpoint. */
|
|
10031
|
+
interface YandexReverseParams {
|
|
10032
|
+
/** Market domain: `"tr"` (default), `"com"`, `"ru"`, `"by"`, `"kz"`, `"uz"`. */
|
|
10033
|
+
domain?: string;
|
|
10034
|
+
}
|
|
10035
|
+
|
|
10036
|
+
/**
|
|
10037
|
+
* Yandex Search API client.
|
|
10038
|
+
*
|
|
10039
|
+
* Web search — organic results, ads, sitelinks, inline media, related
|
|
10040
|
+
* searches, and pagination.
|
|
10041
|
+
*/
|
|
10042
|
+
|
|
10043
|
+
/**
|
|
10044
|
+
* Client for the Yandex web-search endpoint.
|
|
10045
|
+
*
|
|
10046
|
+
* @example
|
|
10047
|
+
* ```typescript
|
|
10048
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
10049
|
+
*
|
|
10050
|
+
* const results = await client.yandex.search.search("python asyncio", { domain: "com" });
|
|
10051
|
+
* for (const item of results.organic_results) {
|
|
10052
|
+
* console.log(`${item.position}. ${item.title} — ${item.url}`);
|
|
10053
|
+
* }
|
|
10054
|
+
* ```
|
|
10055
|
+
*/
|
|
10056
|
+
declare class SearchClient$5 {
|
|
10057
|
+
private readonly client;
|
|
10058
|
+
constructor(client: BaseClient);
|
|
10059
|
+
/**
|
|
10060
|
+
* Search yandex.<domain>.
|
|
10061
|
+
*
|
|
10062
|
+
* @param query - Search keywords, e.g. `"python asyncio"`.
|
|
10063
|
+
* @param params - Optional domain, page, lr (region id) and lang.
|
|
10064
|
+
* @returns A page of web results with organic results, ads and pagination.
|
|
10065
|
+
*/
|
|
10066
|
+
search(query: string, params?: YandexSearchParams): Promise<YandexSearchResponse>;
|
|
10067
|
+
}
|
|
10068
|
+
|
|
10069
|
+
/**
|
|
10070
|
+
* Yandex Images API client.
|
|
10071
|
+
*
|
|
10072
|
+
* Forward image search and reverse-image (CBIR) search.
|
|
10073
|
+
*/
|
|
10074
|
+
|
|
10075
|
+
/**
|
|
10076
|
+
* Client for the Yandex image search and reverse-image endpoints.
|
|
10077
|
+
*
|
|
10078
|
+
* @example
|
|
10079
|
+
* ```typescript
|
|
10080
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
10081
|
+
*
|
|
10082
|
+
* const images = await client.yandex.images.search("golden retriever");
|
|
10083
|
+
* const reverse = await client.yandex.images.reverse("https://example.com/photo.jpg");
|
|
10084
|
+
* ```
|
|
10085
|
+
*/
|
|
10086
|
+
declare class ImagesClient {
|
|
10087
|
+
private readonly client;
|
|
10088
|
+
constructor(client: BaseClient);
|
|
10089
|
+
/**
|
|
10090
|
+
* Search Yandex Images.
|
|
10091
|
+
*
|
|
10092
|
+
* @param query - Search keywords.
|
|
10093
|
+
* @param params - Optional domain and page.
|
|
10094
|
+
*/
|
|
10095
|
+
search(query: string, params?: YandexImagesParams): Promise<YandexImagesResponse>;
|
|
10096
|
+
/**
|
|
10097
|
+
* Reverse-image (CBIR) search for a given image URL.
|
|
10098
|
+
*
|
|
10099
|
+
* @param imageUrl - The publicly reachable URL of the query image.
|
|
10100
|
+
* @param params - Optional domain.
|
|
10101
|
+
*/
|
|
10102
|
+
reverse(imageUrl: string, params?: YandexReverseParams): Promise<YandexReverseImageResponse>;
|
|
10103
|
+
}
|
|
10104
|
+
|
|
10105
|
+
/**
|
|
10106
|
+
* Yandex Reference API client.
|
|
10107
|
+
*
|
|
10108
|
+
* The list of supported Yandex markets.
|
|
10109
|
+
*/
|
|
10110
|
+
|
|
10111
|
+
/**
|
|
10112
|
+
* Client for the Yandex markets endpoint.
|
|
10113
|
+
*
|
|
10114
|
+
* @example
|
|
10115
|
+
* ```typescript
|
|
10116
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
10117
|
+
*
|
|
10118
|
+
* const markets = await client.yandex.reference.markets();
|
|
10119
|
+
* for (const m of markets.markets) {
|
|
10120
|
+
* console.log(`${m.code}: ${m.domain} (lr ${m.default_lr})`);
|
|
10121
|
+
* }
|
|
10122
|
+
* ```
|
|
10123
|
+
*/
|
|
10124
|
+
declare class ReferenceClient$6 {
|
|
10125
|
+
private readonly client;
|
|
10126
|
+
constructor(client: BaseClient);
|
|
10127
|
+
/**
|
|
10128
|
+
* Get the supported Yandex markets.
|
|
10129
|
+
*/
|
|
10130
|
+
markets(): Promise<YandexMarketsResponse>;
|
|
10131
|
+
}
|
|
10132
|
+
|
|
10133
|
+
/**
|
|
10134
|
+
* Yandex API client.
|
|
10135
|
+
*
|
|
10136
|
+
* Provides access to all Yandex API endpoints through specialized
|
|
10137
|
+
* sub-clients.
|
|
10138
|
+
*/
|
|
10139
|
+
|
|
10140
|
+
/**
|
|
10141
|
+
* Yandex API client with access to all Yandex endpoints.
|
|
10142
|
+
*
|
|
10143
|
+
* Sub-clients:
|
|
10144
|
+
* - `search` - Web search (organic + ads + sitelinks + inline media)
|
|
10145
|
+
* - `images` - Image search and reverse-image (CBIR) search
|
|
10146
|
+
* - `reference` - The supported-markets list
|
|
10147
|
+
*
|
|
10148
|
+
* @example
|
|
10149
|
+
* ```typescript
|
|
10150
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
10151
|
+
*
|
|
10152
|
+
* const results = await client.yandex.search.search("privacy");
|
|
10153
|
+
* const images = await client.yandex.images.search("puppies");
|
|
10154
|
+
* const reverse = await client.yandex.images.reverse("https://example.com/photo.jpg");
|
|
10155
|
+
* const markets = await client.yandex.reference.markets();
|
|
10156
|
+
* ```
|
|
10157
|
+
*/
|
|
10158
|
+
declare class YandexClient {
|
|
10159
|
+
/** Client for web search (organic + ads + sitelinks + inline media) */
|
|
10160
|
+
readonly search: SearchClient$5;
|
|
10161
|
+
/** Client for image search and reverse-image (CBIR) search */
|
|
10162
|
+
readonly images: ImagesClient;
|
|
10163
|
+
/** Client for the supported-markets list */
|
|
10164
|
+
readonly reference: ReferenceClient$6;
|
|
10165
|
+
/**
|
|
10166
|
+
* Create a new Yandex client.
|
|
10167
|
+
*
|
|
10168
|
+
* @param client - The base HTTP client for making requests.
|
|
10169
|
+
*/
|
|
10170
|
+
constructor(client: BaseClient);
|
|
10171
|
+
}
|
|
10172
|
+
|
|
9885
10173
|
/**
|
|
9886
10174
|
* TypeScript types for YouTube API responses.
|
|
9887
10175
|
*
|
|
@@ -14160,6 +14448,8 @@ interface DepopProductDetail {
|
|
|
14160
14448
|
price?: string | null;
|
|
14161
14449
|
currency?: string | null;
|
|
14162
14450
|
availability?: string | null;
|
|
14451
|
+
/** Seller's average dispatch estimate as shown on the listing, e.g. "3 days" or "24 hours". */
|
|
14452
|
+
dispatch_time?: string | null;
|
|
14163
14453
|
seller_username?: string | null;
|
|
14164
14454
|
images: string[];
|
|
14165
14455
|
url: string;
|
|
@@ -15193,6 +15483,8 @@ declare class ScrapeBadger {
|
|
|
15193
15483
|
readonly bing: BingClient;
|
|
15194
15484
|
/** Baidu scraper API client — search, news, images, autocomplete (baidu.com, China's #1 search engine) */
|
|
15195
15485
|
readonly baidu: BaiduClient;
|
|
15486
|
+
/** Yandex scraper API client — web search, image search, reverse-image (CBIR), markets (tr/com/ru/by/kz/uz) */
|
|
15487
|
+
readonly yandex: YandexClient;
|
|
15196
15488
|
/** YouTube scraper API client — 39 endpoints */
|
|
15197
15489
|
readonly youtube: YoutubeClient;
|
|
15198
15490
|
/** Realtor scraper API client — 4 endpoints across 2 markets (us, ca) */
|
|
@@ -15239,4 +15531,4 @@ declare class ScrapeBadger {
|
|
|
15239
15531
|
constructor(config?: Partial<ScrapeBadgerConfig>);
|
|
15240
15532
|
}
|
|
15241
15533
|
|
|
15242
|
-
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$c as AmazonReferenceClient, type RelatedProduct as AmazonRelatedProduct, type Review$1 as AmazonReview, type ReviewProfile as AmazonReviewProfile, type AmazonReviewsParams, type ReviewsResponse$1 as AmazonReviewsResponse, SearchClient$b 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 as BingMediaClient, type BingNewsArticle, NewsClient as BingNewsClient, type BingNewsParams, type BingNewsResponse, type BingOrganicResult, ReferenceClient$6 as BingReferenceClient, type BingSafeSearch, SearchClient$5 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$1 as DuckDuckGoMediaClient, type DuckDuckGoNewsParams, type DuckDuckGoNewsResponse, type DuckDuckGoNewsResult, type DuckDuckGoRaw, ReferenceClient$7 as DuckDuckGoReferenceClient, type DuckDuckGoRegion, type DuckDuckGoRegionsResponse, type DuckDuckGoRelatedTopic, SearchClient$6 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$9 as EbayReferenceClient, type ReturnsPolicy as EbayReturnsPolicy, type Review as EbayReview, type EbayReviewsParams, type ReviewsResponse as EbayReviewsResponse, SearchClient$8 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 as GoogleImagesClient, JobsClient as GoogleJobsClient, LensClient as GoogleLensClient, MapsClient as GoogleMapsClient, NewsClient$1 as GoogleNewsClient, PatentsClient as GooglePatentsClient, ProductsClient$3 as GoogleProductsClient, type GoogleResponse, ScholarClient as GoogleScholarClient, SearchClient$e 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$2 as InstagramMediaClient, type Oembed as InstagramOembed, type Paginated as InstagramPaginated, type Resource as InstagramResource, SearchClient$c 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$d 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$b as ShopeeReferenceClient, type ShopeeReview, type ReviewReply as ShopeeReviewReply, type ReviewSummary as ShopeeReviewSummary, ReviewsClient as ShopeeReviewsClient, type ShopeeReviewsParams, type ReviewsResult as ShopeeReviewsResult, SearchClient$a 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$a as TikTokReferenceClient, type RegionInfo as TikTokRegionInfo, type RegionsResponse$2 as TikTokRegionsResponse, type TikTokRelatedParams, SearchClient$9 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$d as VintedReferenceClient, SearchClient$f 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$8 as WalmartReferenceClient, type WalmartReturnPolicy, type WalmartReview, type WalmartReviewSort, type WalmartReviewsParams, type WalmartReviewsResponse, SearchClient$7 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 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 };
|
|
15534
|
+
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$d as AmazonReferenceClient, type RelatedProduct as AmazonRelatedProduct, type Review$1 as AmazonReview, type ReviewProfile as AmazonReviewProfile, type AmazonReviewsParams, type ReviewsResponse$1 as AmazonReviewsResponse, SearchClient$c 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 as BingMediaClient, type BingNewsArticle, NewsClient as BingNewsClient, type BingNewsParams, type BingNewsResponse, type BingOrganicResult, ReferenceClient$7 as BingReferenceClient, type BingSafeSearch, SearchClient$6 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$1 as DuckDuckGoMediaClient, type DuckDuckGoNewsParams, type DuckDuckGoNewsResponse, type DuckDuckGoNewsResult, type DuckDuckGoRaw, ReferenceClient$8 as DuckDuckGoReferenceClient, type DuckDuckGoRegion, type DuckDuckGoRegionsResponse, type DuckDuckGoRelatedTopic, SearchClient$7 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$a as EbayReferenceClient, type ReturnsPolicy as EbayReturnsPolicy, type Review as EbayReview, type EbayReviewsParams, type ReviewsResponse as EbayReviewsResponse, SearchClient$9 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$1 as GoogleNewsClient, PatentsClient as GooglePatentsClient, ProductsClient$3 as GoogleProductsClient, type GoogleResponse, ScholarClient as GoogleScholarClient, SearchClient$f 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$2 as InstagramMediaClient, type Oembed as InstagramOembed, type Paginated as InstagramPaginated, type Resource as InstagramResource, SearchClient$d 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$e 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$c as ShopeeReferenceClient, type ShopeeReview, type ReviewReply as ShopeeReviewReply, type ReviewSummary as ShopeeReviewSummary, ReviewsClient as ShopeeReviewsClient, type ShopeeReviewsParams, type ReviewsResult as ShopeeReviewsResult, SearchClient$b 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$b as TikTokReferenceClient, type RegionInfo as TikTokRegionInfo, type RegionsResponse$2 as TikTokRegionsResponse, type TikTokRelatedParams, SearchClient$a 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$e as VintedReferenceClient, SearchClient$g 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$9 as WalmartReferenceClient, type WalmartReturnPolicy, type WalmartReview, type WalmartReviewSort, type WalmartReviewsParams, type WalmartReviewsResponse, SearchClient$8 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, 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 };
|