scrapebadger 0.33.0 → 0.34.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/README.md +1 -0
- package/dist/index.d.cts +423 -49
- package/dist/index.d.ts +423 -49
- package/dist/index.js +200 -40
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +183 -28
- 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$h {
|
|
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$f {
|
|
812
812
|
private readonly client;
|
|
813
813
|
constructor(client: BaseClient);
|
|
814
814
|
/**
|
|
@@ -923,13 +923,13 @@ declare class ReferenceClient$e {
|
|
|
923
923
|
*/
|
|
924
924
|
declare class VintedClient {
|
|
925
925
|
/** Client for item search operations */
|
|
926
|
-
readonly search: SearchClient$
|
|
926
|
+
readonly search: SearchClient$h;
|
|
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$f;
|
|
933
933
|
/**
|
|
934
934
|
* Create a new Vinted client.
|
|
935
935
|
*
|
|
@@ -1810,7 +1810,7 @@ declare class MapsClient {
|
|
|
1810
1810
|
* const trending = await client.google.news.trending();
|
|
1811
1811
|
* ```
|
|
1812
1812
|
*/
|
|
1813
|
-
declare class NewsClient$
|
|
1813
|
+
declare class NewsClient$2 {
|
|
1814
1814
|
private readonly client;
|
|
1815
1815
|
constructor(client: BaseClient);
|
|
1816
1816
|
/**
|
|
@@ -1940,7 +1940,7 @@ declare class ScholarClient {
|
|
|
1940
1940
|
* }
|
|
1941
1941
|
* ```
|
|
1942
1942
|
*/
|
|
1943
|
-
declare class SearchClient$
|
|
1943
|
+
declare class SearchClient$g {
|
|
1944
1944
|
private readonly client;
|
|
1945
1945
|
constructor(client: BaseClient);
|
|
1946
1946
|
/**
|
|
@@ -2142,11 +2142,11 @@ 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$g;
|
|
2146
2146
|
/** Google Maps — places, reviews, photos, posts. */
|
|
2147
2147
|
readonly maps: MapsClient;
|
|
2148
2148
|
/** Google News — articles, topics, trending. */
|
|
2149
|
-
readonly news: NewsClient$
|
|
2149
|
+
readonly news: NewsClient$2;
|
|
2150
2150
|
/** Google Hotels — search and property details. */
|
|
2151
2151
|
readonly hotels: HotelsClient;
|
|
2152
2152
|
/** Google Trends — interest, regions, related, trending, topic autocomplete. */
|
|
@@ -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$f {
|
|
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$f;
|
|
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) */
|
|
@@ -4117,7 +4117,7 @@ declare class UsersClient$1 {
|
|
|
4117
4117
|
* }
|
|
4118
4118
|
* ```
|
|
4119
4119
|
*/
|
|
4120
|
-
declare class MediaClient$
|
|
4120
|
+
declare class MediaClient$3 {
|
|
4121
4121
|
private readonly client;
|
|
4122
4122
|
constructor(client: BaseClient);
|
|
4123
4123
|
/**
|
|
@@ -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$e {
|
|
4176
4176
|
private readonly client;
|
|
4177
4177
|
constructor(client: BaseClient);
|
|
4178
4178
|
/**
|
|
@@ -4328,9 +4328,9 @@ declare class InstagramClient {
|
|
|
4328
4328
|
/** Client for user operations (profile, posts, followers, stories, highlights) */
|
|
4329
4329
|
readonly users: UsersClient$1;
|
|
4330
4330
|
/** Client for media operations (detail, comments, replies, likers, oEmbed) */
|
|
4331
|
-
readonly media: MediaClient$
|
|
4331
|
+
readonly media: MediaClient$3;
|
|
4332
4332
|
/** Client for search operations (users, hashtags, places, top, reels, music, autocomplete) */
|
|
4333
|
-
readonly search: SearchClient$
|
|
4333
|
+
readonly search: SearchClient$e;
|
|
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$d {
|
|
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$e {
|
|
5605
5605
|
private readonly client;
|
|
5606
5606
|
constructor(client: BaseClient);
|
|
5607
5607
|
/**
|
|
@@ -5656,7 +5656,7 @@ declare class ReferenceClient$d {
|
|
|
5656
5656
|
*/
|
|
5657
5657
|
declare class AmazonClient {
|
|
5658
5658
|
/** Client for keyword search and autocomplete */
|
|
5659
|
-
readonly search: SearchClient$
|
|
5659
|
+
readonly search: SearchClient$d;
|
|
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$e;
|
|
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$c {
|
|
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$d {
|
|
6083
6083
|
private readonly client;
|
|
6084
6084
|
constructor(client: BaseClient);
|
|
6085
6085
|
/**
|
|
@@ -6139,13 +6139,13 @@ declare class ReferenceClient$c {
|
|
|
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$c;
|
|
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$d;
|
|
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$b {
|
|
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$c {
|
|
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$b;
|
|
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$c;
|
|
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$a {
|
|
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$b {
|
|
7969
7969
|
private readonly client;
|
|
7970
7970
|
constructor(client: BaseClient);
|
|
7971
7971
|
/**
|
|
@@ -8020,7 +8020,7 @@ declare class ReferenceClient$a {
|
|
|
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$a;
|
|
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$b;
|
|
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$9 {
|
|
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$a {
|
|
8857
8857
|
private readonly client;
|
|
8858
8858
|
constructor(client: BaseClient);
|
|
8859
8859
|
/**
|
|
@@ -8904,7 +8904,7 @@ declare class ReferenceClient$9 {
|
|
|
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$9;
|
|
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$a;
|
|
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$8 {
|
|
9126
9126
|
private readonly client;
|
|
9127
9127
|
constructor(client: BaseClient);
|
|
9128
9128
|
/**
|
|
@@ -9153,7 +9153,7 @@ declare class SearchClient$7 {
|
|
|
9153
9153
|
* const videos = await client.duckduckgo.media.videos("lofi", { duration: "long" });
|
|
9154
9154
|
* ```
|
|
9155
9155
|
*/
|
|
9156
|
-
declare class MediaClient$
|
|
9156
|
+
declare class MediaClient$2 {
|
|
9157
9157
|
private readonly client;
|
|
9158
9158
|
constructor(client: BaseClient);
|
|
9159
9159
|
/**
|
|
@@ -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$9 {
|
|
9202
9202
|
private readonly client;
|
|
9203
9203
|
constructor(client: BaseClient);
|
|
9204
9204
|
/**
|
|
@@ -9250,11 +9250,11 @@ declare class ReferenceClient$8 {
|
|
|
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$8;
|
|
9254
9254
|
/** Client for image, news and video search */
|
|
9255
|
-
readonly media: MediaClient$
|
|
9255
|
+
readonly media: MediaClient$2;
|
|
9256
9256
|
/** Client for autocomplete, instant answers and supported regions */
|
|
9257
|
-
readonly reference: ReferenceClient$
|
|
9257
|
+
readonly reference: ReferenceClient$9;
|
|
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$7 {
|
|
9452
9452
|
private readonly client;
|
|
9453
9453
|
constructor(client: BaseClient);
|
|
9454
9454
|
/**
|
|
@@ -9489,7 +9489,7 @@ declare class SearchClient$6 {
|
|
|
9489
9489
|
* const videos = await client.bing.media.videos("cats");
|
|
9490
9490
|
* ```
|
|
9491
9491
|
*/
|
|
9492
|
-
declare class MediaClient {
|
|
9492
|
+
declare class MediaClient$1 {
|
|
9493
9493
|
private readonly client;
|
|
9494
9494
|
constructor(client: BaseClient);
|
|
9495
9495
|
/**
|
|
@@ -9530,7 +9530,7 @@ declare class MediaClient {
|
|
|
9530
9530
|
* }
|
|
9531
9531
|
* ```
|
|
9532
9532
|
*/
|
|
9533
|
-
declare class NewsClient {
|
|
9533
|
+
declare class NewsClient$1 {
|
|
9534
9534
|
private readonly client;
|
|
9535
9535
|
constructor(client: BaseClient);
|
|
9536
9536
|
/**
|
|
@@ -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$8 {
|
|
9561
9561
|
private readonly client;
|
|
9562
9562
|
constructor(client: BaseClient);
|
|
9563
9563
|
/**
|
|
@@ -9597,13 +9597,13 @@ declare class ReferenceClient$7 {
|
|
|
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$7;
|
|
9601
9601
|
/** Client for image search and video search */
|
|
9602
|
-
readonly media: MediaClient;
|
|
9602
|
+
readonly media: MediaClient$1;
|
|
9603
9603
|
/** Client for the news vertical */
|
|
9604
|
-
readonly news: NewsClient;
|
|
9604
|
+
readonly news: NewsClient$1;
|
|
9605
9605
|
/** Client for reference data (markets) */
|
|
9606
|
-
readonly reference: ReferenceClient$
|
|
9606
|
+
readonly reference: ReferenceClient$8;
|
|
9607
9607
|
/**
|
|
9608
9608
|
* Create a new Bing client.
|
|
9609
9609
|
*
|
|
@@ -9882,6 +9882,376 @@ declare class BaiduClient {
|
|
|
9882
9882
|
autocomplete(query: string): Promise<BaiduAutocompleteResponse>;
|
|
9883
9883
|
}
|
|
9884
9884
|
|
|
9885
|
+
/**
|
|
9886
|
+
* TypeScript types for the Yahoo API.
|
|
9887
|
+
*
|
|
9888
|
+
* These interfaces mirror the backend `yahoo_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
|
+
/** One organic result from a Yahoo web SERP. */
|
|
9893
|
+
interface YahooOrganicResult {
|
|
9894
|
+
/** 1-based rank on the page. */
|
|
9895
|
+
position: number;
|
|
9896
|
+
title: string;
|
|
9897
|
+
/** Destination URL, with Yahoo's redirect wrapper resolved. */
|
|
9898
|
+
url: string | null;
|
|
9899
|
+
display_url: string | null;
|
|
9900
|
+
snippet: string | null;
|
|
9901
|
+
}
|
|
9902
|
+
/** A sponsored result on the SERP. */
|
|
9903
|
+
interface YahooAd {
|
|
9904
|
+
/** 1-based rank within the ad block. */
|
|
9905
|
+
position: number;
|
|
9906
|
+
title: string;
|
|
9907
|
+
url: string | null;
|
|
9908
|
+
display_url: string | null;
|
|
9909
|
+
snippet: string | null;
|
|
9910
|
+
}
|
|
9911
|
+
/**
|
|
9912
|
+
* A page of Yahoo web search results.
|
|
9913
|
+
*
|
|
9914
|
+
* Yahoo does not expose a total-results count on the web SERP, so only
|
|
9915
|
+
* `result_count` (results in this response) is available.
|
|
9916
|
+
*/
|
|
9917
|
+
interface YahooSearchResponse {
|
|
9918
|
+
query: string;
|
|
9919
|
+
market: string;
|
|
9920
|
+
result_count: number;
|
|
9921
|
+
results: YahooOrganicResult[];
|
|
9922
|
+
ads: YahooAd[];
|
|
9923
|
+
related_searches: string[];
|
|
9924
|
+
}
|
|
9925
|
+
/** One image from Yahoo image search. */
|
|
9926
|
+
interface YahooImageResult {
|
|
9927
|
+
/** 1-based rank on the page. */
|
|
9928
|
+
position: number;
|
|
9929
|
+
title: string | null;
|
|
9930
|
+
image_url: string | null;
|
|
9931
|
+
thumbnail_url: string | null;
|
|
9932
|
+
source_url: string | null;
|
|
9933
|
+
source_domain: string | null;
|
|
9934
|
+
width: number | null;
|
|
9935
|
+
height: number | null;
|
|
9936
|
+
}
|
|
9937
|
+
/** Response from the Yahoo image search endpoint. */
|
|
9938
|
+
interface YahooImagesResponse {
|
|
9939
|
+
query: string;
|
|
9940
|
+
market: string;
|
|
9941
|
+
result_count: number;
|
|
9942
|
+
results: YahooImageResult[];
|
|
9943
|
+
}
|
|
9944
|
+
/** One video from Yahoo video search. */
|
|
9945
|
+
interface YahooVideoResult {
|
|
9946
|
+
/** 1-based rank on the page. */
|
|
9947
|
+
position: number;
|
|
9948
|
+
title: string | null;
|
|
9949
|
+
url: string | null;
|
|
9950
|
+
thumbnail_url: string | null;
|
|
9951
|
+
/** Runtime as displayed, e.g. `"13:47"`. */
|
|
9952
|
+
duration: string | null;
|
|
9953
|
+
/** Host platform, e.g. `"YouTube"`. */
|
|
9954
|
+
source: string | null;
|
|
9955
|
+
source_domain: string | null;
|
|
9956
|
+
description: string | null;
|
|
9957
|
+
/** View count as displayed, e.g. `"1.8M views"`. */
|
|
9958
|
+
views: string | null;
|
|
9959
|
+
}
|
|
9960
|
+
/** Response from the Yahoo video search endpoint. */
|
|
9961
|
+
interface YahooVideosResponse {
|
|
9962
|
+
query: string;
|
|
9963
|
+
market: string;
|
|
9964
|
+
result_count: number;
|
|
9965
|
+
results: YahooVideoResult[];
|
|
9966
|
+
}
|
|
9967
|
+
/** One article from the Yahoo news vertical. */
|
|
9968
|
+
interface YahooNewsArticle {
|
|
9969
|
+
/** 1-based rank on the page. */
|
|
9970
|
+
position: number;
|
|
9971
|
+
title: string;
|
|
9972
|
+
/** Destination article URL, with Yahoo's redirect wrapper resolved. */
|
|
9973
|
+
url: string | null;
|
|
9974
|
+
/** Publisher name. */
|
|
9975
|
+
source: string | null;
|
|
9976
|
+
/** Syndication source, e.g. `"via Yahoo Finance"`. */
|
|
9977
|
+
via: string | null;
|
|
9978
|
+
snippet: string | null;
|
|
9979
|
+
/**
|
|
9980
|
+
* Relative age as rendered by Yahoo, e.g. `"26 minutes ago"`. Yahoo News
|
|
9981
|
+
* shows no absolute date, so there is no parsed timestamp field.
|
|
9982
|
+
*/
|
|
9983
|
+
published: string | null;
|
|
9984
|
+
thumbnail_url: string | null;
|
|
9985
|
+
}
|
|
9986
|
+
/** Response from the Yahoo news endpoint. */
|
|
9987
|
+
interface YahooNewsResponse {
|
|
9988
|
+
query: string;
|
|
9989
|
+
market: string;
|
|
9990
|
+
/** Yahoo's reported total match count (approximate). */
|
|
9991
|
+
total_results: number | null;
|
|
9992
|
+
total_results_text: string | null;
|
|
9993
|
+
result_count: number;
|
|
9994
|
+
results: YahooNewsArticle[];
|
|
9995
|
+
}
|
|
9996
|
+
/** Search-box suggestions for a partial term. */
|
|
9997
|
+
interface YahooAutocompleteResponse {
|
|
9998
|
+
query: string;
|
|
9999
|
+
market: string;
|
|
10000
|
+
result_count: number;
|
|
10001
|
+
suggestions: string[];
|
|
10002
|
+
}
|
|
10003
|
+
/** A supported Yahoo market. */
|
|
10004
|
+
interface YahooMarket {
|
|
10005
|
+
/** Lowercase market code, e.g. `"us"`, `"fr"`. */
|
|
10006
|
+
code: string;
|
|
10007
|
+
name: string;
|
|
10008
|
+
/** Two-letter country code. */
|
|
10009
|
+
country: string;
|
|
10010
|
+
/** Regional search host, e.g. `"fr.search.yahoo.com"`. */
|
|
10011
|
+
host: string;
|
|
10012
|
+
}
|
|
10013
|
+
/** The supported-markets list. */
|
|
10014
|
+
interface YahooMarketsResponse {
|
|
10015
|
+
result_count: number;
|
|
10016
|
+
markets: YahooMarket[];
|
|
10017
|
+
}
|
|
10018
|
+
/** Adult-content filter level. */
|
|
10019
|
+
type YahooSafeSearch = "off" | "moderate" | "strict";
|
|
10020
|
+
/** Options for the web search endpoint. */
|
|
10021
|
+
interface YahooSearchParams {
|
|
10022
|
+
/** Yahoo market code, e.g. `"us"`, `"de"`. Defaults to `"us"`. */
|
|
10023
|
+
market?: string;
|
|
10024
|
+
/**
|
|
10025
|
+
* Zero-based absolute result offset. Yahoo serves 7 organic results per
|
|
10026
|
+
* page, so page 2 is `offset: 7`. Defaults to 0.
|
|
10027
|
+
*/
|
|
10028
|
+
offset?: number;
|
|
10029
|
+
safe_search?: YahooSafeSearch;
|
|
10030
|
+
}
|
|
10031
|
+
/** Options for the image search endpoint. */
|
|
10032
|
+
interface YahooImagesParams {
|
|
10033
|
+
/** Yahoo market code, e.g. `"us"`. Defaults to `"us"`. */
|
|
10034
|
+
market?: string;
|
|
10035
|
+
/** Number of images to return (1-100). Defaults to 30. */
|
|
10036
|
+
count?: number;
|
|
10037
|
+
}
|
|
10038
|
+
/** Options for the video search endpoint. */
|
|
10039
|
+
interface YahooVideosParams {
|
|
10040
|
+
/** Yahoo market code, e.g. `"us"`. Defaults to `"us"`. */
|
|
10041
|
+
market?: string;
|
|
10042
|
+
/** Number of videos to return (1-100). Defaults to 30. */
|
|
10043
|
+
count?: number;
|
|
10044
|
+
}
|
|
10045
|
+
/** Options for the news endpoint. */
|
|
10046
|
+
interface YahooNewsParams {
|
|
10047
|
+
/** Yahoo market code, e.g. `"us"`. Defaults to `"us"`. */
|
|
10048
|
+
market?: string;
|
|
10049
|
+
}
|
|
10050
|
+
/** Options for the autocomplete endpoint. */
|
|
10051
|
+
interface YahooAutocompleteParams {
|
|
10052
|
+
/** Yahoo market code, e.g. `"us"`. Defaults to `"us"`. */
|
|
10053
|
+
market?: string;
|
|
10054
|
+
}
|
|
10055
|
+
|
|
10056
|
+
/**
|
|
10057
|
+
* Yahoo Search API client.
|
|
10058
|
+
*
|
|
10059
|
+
* Web search and search-box autocomplete.
|
|
10060
|
+
*/
|
|
10061
|
+
|
|
10062
|
+
/**
|
|
10063
|
+
* Client for Yahoo web search and autocomplete endpoints.
|
|
10064
|
+
*
|
|
10065
|
+
* @example
|
|
10066
|
+
* ```typescript
|
|
10067
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
10068
|
+
*
|
|
10069
|
+
* const results = await client.yahoo.search.search("coffee machine");
|
|
10070
|
+
* for (const r of results.results) {
|
|
10071
|
+
* console.log(`${r.position}. ${r.title} — ${r.url}`);
|
|
10072
|
+
* }
|
|
10073
|
+
*
|
|
10074
|
+
* const suggestions = await client.yahoo.search.autocomplete("coff");
|
|
10075
|
+
* ```
|
|
10076
|
+
*/
|
|
10077
|
+
declare class SearchClient$6 {
|
|
10078
|
+
private readonly client;
|
|
10079
|
+
constructor(client: BaseClient);
|
|
10080
|
+
/**
|
|
10081
|
+
* Search yahoo.com — the web SERP.
|
|
10082
|
+
*
|
|
10083
|
+
* Yahoo serves 7 organic results per page, so `offset` moves in steps of 7
|
|
10084
|
+
* (page 2 is `offset: 7`). There is no page-size parameter.
|
|
10085
|
+
*
|
|
10086
|
+
* @param query - Search keywords, e.g. `"coffee machine"`.
|
|
10087
|
+
* @param params - Optional market, offset and safe-search filter.
|
|
10088
|
+
* @returns A page of organic results, ads and related searches.
|
|
10089
|
+
*/
|
|
10090
|
+
search(query: string, params?: YahooSearchParams): Promise<YahooSearchResponse>;
|
|
10091
|
+
/**
|
|
10092
|
+
* Yahoo search-box suggestions — the cheapest call in this API.
|
|
10093
|
+
*
|
|
10094
|
+
* @param query - Partial search term, e.g. `"coff"`.
|
|
10095
|
+
* @param params - Optional market.
|
|
10096
|
+
*/
|
|
10097
|
+
autocomplete(query: string, params?: YahooAutocompleteParams): Promise<YahooAutocompleteResponse>;
|
|
10098
|
+
}
|
|
10099
|
+
|
|
10100
|
+
/**
|
|
10101
|
+
* Yahoo Media API client.
|
|
10102
|
+
*
|
|
10103
|
+
* Image search and video search.
|
|
10104
|
+
*/
|
|
10105
|
+
|
|
10106
|
+
/**
|
|
10107
|
+
* Client for Yahoo image and video search endpoints.
|
|
10108
|
+
*
|
|
10109
|
+
* @example
|
|
10110
|
+
* ```typescript
|
|
10111
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
10112
|
+
*
|
|
10113
|
+
* const images = await client.yahoo.media.images("cats");
|
|
10114
|
+
* for (const img of images.results) {
|
|
10115
|
+
* console.log(img.image_url, img.width, img.height);
|
|
10116
|
+
* }
|
|
10117
|
+
*
|
|
10118
|
+
* const videos = await client.yahoo.media.videos("cats");
|
|
10119
|
+
* ```
|
|
10120
|
+
*/
|
|
10121
|
+
declare class MediaClient {
|
|
10122
|
+
private readonly client;
|
|
10123
|
+
constructor(client: BaseClient);
|
|
10124
|
+
/**
|
|
10125
|
+
* Search Yahoo images.
|
|
10126
|
+
*
|
|
10127
|
+
* Yahoo renders ~60 tiles server-side with no native page-size parameter,
|
|
10128
|
+
* so `count` trims the list rather than paginating.
|
|
10129
|
+
*
|
|
10130
|
+
* @param query - Search keywords, e.g. `"cats"`.
|
|
10131
|
+
* @param params - Optional market and count.
|
|
10132
|
+
* @returns Full-size image URLs, thumbnails, pixel dimensions and the
|
|
10133
|
+
* source page each image came from.
|
|
10134
|
+
*/
|
|
10135
|
+
images(query: string, params?: YahooImagesParams): Promise<YahooImagesResponse>;
|
|
10136
|
+
/**
|
|
10137
|
+
* Search Yahoo videos.
|
|
10138
|
+
*
|
|
10139
|
+
* Like images, Yahoo has no native page-size parameter here, so `count`
|
|
10140
|
+
* trims the returned list.
|
|
10141
|
+
*
|
|
10142
|
+
* @param query - Search keywords, e.g. `"cats"`.
|
|
10143
|
+
* @param params - Optional market and count.
|
|
10144
|
+
* @returns Video URLs, thumbnails, duration, host platform and view counts.
|
|
10145
|
+
*/
|
|
10146
|
+
videos(query: string, params?: YahooVideosParams): Promise<YahooVideosResponse>;
|
|
10147
|
+
}
|
|
10148
|
+
|
|
10149
|
+
/**
|
|
10150
|
+
* Yahoo News API client.
|
|
10151
|
+
*
|
|
10152
|
+
* The Yahoo news vertical.
|
|
10153
|
+
*/
|
|
10154
|
+
|
|
10155
|
+
/**
|
|
10156
|
+
* Client for the Yahoo news endpoint.
|
|
10157
|
+
*
|
|
10158
|
+
* @example
|
|
10159
|
+
* ```typescript
|
|
10160
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
10161
|
+
*
|
|
10162
|
+
* const news = await client.yahoo.news.news("artificial intelligence");
|
|
10163
|
+
* for (const article of news.results) {
|
|
10164
|
+
* console.log(article.source, article.published, article.title);
|
|
10165
|
+
* }
|
|
10166
|
+
* ```
|
|
10167
|
+
*/
|
|
10168
|
+
declare class NewsClient {
|
|
10169
|
+
private readonly client;
|
|
10170
|
+
constructor(client: BaseClient);
|
|
10171
|
+
/**
|
|
10172
|
+
* Search the Yahoo news vertical.
|
|
10173
|
+
*
|
|
10174
|
+
* @param query - Search keywords, e.g. `"artificial intelligence"`.
|
|
10175
|
+
* @param params - Optional market.
|
|
10176
|
+
* @returns Articles carrying publisher, syndication source and real URLs.
|
|
10177
|
+
* `published` is a relative age string (`"26 minutes ago"`) — Yahoo
|
|
10178
|
+
* renders no absolute date.
|
|
10179
|
+
*/
|
|
10180
|
+
news(query: string, params?: YahooNewsParams): Promise<YahooNewsResponse>;
|
|
10181
|
+
}
|
|
10182
|
+
|
|
10183
|
+
/**
|
|
10184
|
+
* Yahoo Reference Data API client.
|
|
10185
|
+
*/
|
|
10186
|
+
|
|
10187
|
+
/**
|
|
10188
|
+
* Client for Yahoo reference data endpoints (markets).
|
|
10189
|
+
*
|
|
10190
|
+
* @example
|
|
10191
|
+
* ```typescript
|
|
10192
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
10193
|
+
*
|
|
10194
|
+
* const markets = await client.yahoo.reference.markets();
|
|
10195
|
+
* ```
|
|
10196
|
+
*/
|
|
10197
|
+
declare class ReferenceClient$7 {
|
|
10198
|
+
private readonly client;
|
|
10199
|
+
constructor(client: BaseClient);
|
|
10200
|
+
/**
|
|
10201
|
+
* Get the supported Yahoo markets.
|
|
10202
|
+
*
|
|
10203
|
+
* Yahoo Japan (`search.yahoo.co.jp`) is a separate engine and is not
|
|
10204
|
+
* covered by this API.
|
|
10205
|
+
*
|
|
10206
|
+
* @returns Every Yahoo market code, name, country and regional search host.
|
|
10207
|
+
*/
|
|
10208
|
+
markets(): Promise<YahooMarketsResponse>;
|
|
10209
|
+
}
|
|
10210
|
+
|
|
10211
|
+
/**
|
|
10212
|
+
* Yahoo API client.
|
|
10213
|
+
*
|
|
10214
|
+
* Provides access to all Yahoo API endpoints through specialized sub-clients.
|
|
10215
|
+
*/
|
|
10216
|
+
|
|
10217
|
+
/**
|
|
10218
|
+
* Yahoo API client with access to all Yahoo endpoints.
|
|
10219
|
+
*
|
|
10220
|
+
* Sub-clients:
|
|
10221
|
+
* - `search` - Web search and search-box autocomplete
|
|
10222
|
+
* - `media` - Image search and video search
|
|
10223
|
+
* - `news` - The news vertical
|
|
10224
|
+
* - `reference` - Reference data (markets)
|
|
10225
|
+
*
|
|
10226
|
+
* @example
|
|
10227
|
+
* ```typescript
|
|
10228
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
10229
|
+
*
|
|
10230
|
+
* const results = await client.yahoo.search.search("coffee machine");
|
|
10231
|
+
* const images = await client.yahoo.media.images("cats");
|
|
10232
|
+
* const videos = await client.yahoo.media.videos("cats");
|
|
10233
|
+
* const news = await client.yahoo.news.news("ai");
|
|
10234
|
+
* const suggestions = await client.yahoo.search.autocomplete("coff");
|
|
10235
|
+
* const markets = await client.yahoo.reference.markets();
|
|
10236
|
+
* ```
|
|
10237
|
+
*/
|
|
10238
|
+
declare class YahooClient {
|
|
10239
|
+
/** Client for web search and search-box autocomplete */
|
|
10240
|
+
readonly search: SearchClient$6;
|
|
10241
|
+
/** Client for image search and video search */
|
|
10242
|
+
readonly media: MediaClient;
|
|
10243
|
+
/** Client for the news vertical */
|
|
10244
|
+
readonly news: NewsClient;
|
|
10245
|
+
/** Client for reference data (markets) */
|
|
10246
|
+
readonly reference: ReferenceClient$7;
|
|
10247
|
+
/**
|
|
10248
|
+
* Create a new Yahoo client.
|
|
10249
|
+
*
|
|
10250
|
+
* @param client - The base HTTP client for making requests.
|
|
10251
|
+
*/
|
|
10252
|
+
constructor(client: BaseClient);
|
|
10253
|
+
}
|
|
10254
|
+
|
|
9885
10255
|
/**
|
|
9886
10256
|
* TypeScript types for the Yandex API.
|
|
9887
10257
|
*
|
|
@@ -14448,6 +14818,8 @@ interface DepopProductDetail {
|
|
|
14448
14818
|
price?: string | null;
|
|
14449
14819
|
currency?: string | null;
|
|
14450
14820
|
availability?: string | null;
|
|
14821
|
+
/** Seller's average dispatch estimate as shown on the listing, e.g. "3 days" or "24 hours". */
|
|
14822
|
+
dispatch_time?: string | null;
|
|
14451
14823
|
seller_username?: string | null;
|
|
14452
14824
|
images: string[];
|
|
14453
14825
|
url: string;
|
|
@@ -15481,6 +15853,8 @@ declare class ScrapeBadger {
|
|
|
15481
15853
|
readonly bing: BingClient;
|
|
15482
15854
|
/** Baidu scraper API client — search, news, images, autocomplete (baidu.com, China's #1 search engine) */
|
|
15483
15855
|
readonly baidu: BaiduClient;
|
|
15856
|
+
/** Yahoo scraper API client — 6 endpoints (search, images, videos, news, autocomplete, markets) across 35 markets */
|
|
15857
|
+
readonly yahoo: YahooClient;
|
|
15484
15858
|
/** Yandex scraper API client — web search, image search, reverse-image (CBIR), markets (tr/com/ru/by/kz/uz) */
|
|
15485
15859
|
readonly yandex: YandexClient;
|
|
15486
15860
|
/** YouTube scraper API client — 39 endpoints */
|
|
@@ -15529,4 +15903,4 @@ declare class ScrapeBadger {
|
|
|
15529
15903
|
constructor(config?: Partial<ScrapeBadgerConfig>);
|
|
15530
15904
|
}
|
|
15531
15905
|
|
|
15532
|
-
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 };
|
|
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 };
|