scrapebadger 0.33.1 → 0.35.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/index.d.cts +1343 -644
- package/dist/index.d.ts +1343 -644
- package/dist/index.js +311 -39
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +291 -27
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
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
|
*
|
|
@@ -9883,287 +9883,369 @@ declare class BaiduClient {
|
|
|
9883
9883
|
}
|
|
9884
9884
|
|
|
9885
9885
|
/**
|
|
9886
|
-
* TypeScript types for the
|
|
9886
|
+
* TypeScript types for the Yahoo API.
|
|
9887
9887
|
*
|
|
9888
|
-
* These interfaces mirror the backend `
|
|
9888
|
+
* These interfaces mirror the backend `yahoo_scraper` response schema
|
|
9889
9889
|
* field-for-field. Optional / nullable backend fields are typed as
|
|
9890
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
9891
|
*/
|
|
9895
|
-
/**
|
|
9896
|
-
|
|
9897
|
-
/**
|
|
9898
|
-
|
|
9899
|
-
title: string
|
|
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. */
|
|
9900
9898
|
url: string | null;
|
|
9899
|
+
display_url: string | null;
|
|
9901
9900
|
snippet: string | null;
|
|
9902
9901
|
}
|
|
9903
|
-
/** A
|
|
9904
|
-
interface
|
|
9905
|
-
|
|
9906
|
-
|
|
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
9907
|
url: string | null;
|
|
9908
|
-
|
|
9909
|
-
domain: string | null;
|
|
9908
|
+
display_url: string | null;
|
|
9910
9909
|
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
9910
|
}
|
|
9919
|
-
/**
|
|
9920
|
-
|
|
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 {
|
|
9921
9918
|
query: string;
|
|
9922
|
-
|
|
9923
|
-
page: number;
|
|
9919
|
+
market: string;
|
|
9924
9920
|
result_count: number;
|
|
9925
|
-
|
|
9926
|
-
ads:
|
|
9927
|
-
inline_images: YandexRaw[];
|
|
9928
|
-
inline_videos: YandexRaw[];
|
|
9921
|
+
results: YahooOrganicResult[];
|
|
9922
|
+
ads: YahooAd[];
|
|
9929
9923
|
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
9924
|
}
|
|
9938
|
-
/**
|
|
9939
|
-
interface
|
|
9940
|
-
|
|
9925
|
+
/** One image from Yahoo image search. */
|
|
9926
|
+
interface YahooImageResult {
|
|
9927
|
+
/** 1-based rank on the page. */
|
|
9928
|
+
position: number;
|
|
9941
9929
|
title: string | null;
|
|
9942
|
-
|
|
9930
|
+
image_url: string | null;
|
|
9931
|
+
thumbnail_url: string | null;
|
|
9943
9932
|
source_url: string | null;
|
|
9944
|
-
|
|
9945
|
-
|
|
9946
|
-
|
|
9933
|
+
source_domain: string | null;
|
|
9934
|
+
width: number | null;
|
|
9935
|
+
height: number | null;
|
|
9947
9936
|
}
|
|
9948
|
-
/**
|
|
9949
|
-
interface
|
|
9937
|
+
/** Response from the Yahoo image search endpoint. */
|
|
9938
|
+
interface YahooImagesResponse {
|
|
9950
9939
|
query: string;
|
|
9951
|
-
|
|
9952
|
-
page: number;
|
|
9940
|
+
market: string;
|
|
9953
9941
|
result_count: number;
|
|
9954
|
-
results:
|
|
9955
|
-
suggested_searches: string[];
|
|
9942
|
+
results: YahooImageResult[];
|
|
9956
9943
|
}
|
|
9957
|
-
/** One
|
|
9958
|
-
interface
|
|
9944
|
+
/** One video from Yahoo video search. */
|
|
9945
|
+
interface YahooVideoResult {
|
|
9946
|
+
/** 1-based rank on the page. */
|
|
9947
|
+
position: number;
|
|
9959
9948
|
title: string | null;
|
|
9960
|
-
description: string | null;
|
|
9961
9949
|
url: string | null;
|
|
9962
|
-
|
|
9963
|
-
|
|
9964
|
-
|
|
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;
|
|
9965
9959
|
}
|
|
9966
|
-
/**
|
|
9967
|
-
interface
|
|
9968
|
-
|
|
9969
|
-
|
|
9970
|
-
|
|
9971
|
-
|
|
9972
|
-
height: number | null;
|
|
9960
|
+
/** Response from the Yahoo video search endpoint. */
|
|
9961
|
+
interface YahooVideosResponse {
|
|
9962
|
+
query: string;
|
|
9963
|
+
market: string;
|
|
9964
|
+
result_count: number;
|
|
9965
|
+
results: YahooVideoResult[];
|
|
9973
9966
|
}
|
|
9974
|
-
/**
|
|
9975
|
-
interface
|
|
9976
|
-
|
|
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. */
|
|
9977
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;
|
|
9978
9985
|
}
|
|
9979
|
-
/**
|
|
9980
|
-
interface
|
|
9981
|
-
|
|
9982
|
-
|
|
9983
|
-
|
|
9984
|
-
|
|
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[];
|
|
9985
9995
|
}
|
|
9986
|
-
/**
|
|
9987
|
-
interface
|
|
9988
|
-
|
|
9989
|
-
|
|
9990
|
-
cbir_id: string | null;
|
|
9991
|
-
is_empty: boolean;
|
|
9996
|
+
/** Search-box suggestions for a partial term. */
|
|
9997
|
+
interface YahooAutocompleteResponse {
|
|
9998
|
+
query: string;
|
|
9999
|
+
market: string;
|
|
9992
10000
|
result_count: number;
|
|
9993
|
-
|
|
9994
|
-
similar_images: YandexSimilarImage[];
|
|
9995
|
-
tags: YandexTag[];
|
|
9996
|
-
other_sizes: YandexOtherSize[];
|
|
10001
|
+
suggestions: string[];
|
|
9997
10002
|
}
|
|
9998
|
-
/** A supported
|
|
9999
|
-
interface
|
|
10003
|
+
/** A supported Yahoo market. */
|
|
10004
|
+
interface YahooMarket {
|
|
10005
|
+
/** Lowercase market code, e.g. `"us"`, `"fr"`. */
|
|
10000
10006
|
code: string;
|
|
10001
10007
|
name: string;
|
|
10002
|
-
|
|
10003
|
-
|
|
10004
|
-
|
|
10005
|
-
|
|
10008
|
+
/** Two-letter country code. */
|
|
10009
|
+
country: string;
|
|
10010
|
+
/** Regional search host, e.g. `"fr.search.yahoo.com"`. */
|
|
10011
|
+
host: string;
|
|
10006
10012
|
}
|
|
10007
|
-
/** The
|
|
10008
|
-
interface
|
|
10013
|
+
/** The supported-markets list. */
|
|
10014
|
+
interface YahooMarketsResponse {
|
|
10009
10015
|
result_count: number;
|
|
10010
|
-
markets:
|
|
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;
|
|
10016
|
+
markets: YahooMarket[];
|
|
10022
10017
|
}
|
|
10023
|
-
/**
|
|
10024
|
-
|
|
10025
|
-
|
|
10026
|
-
|
|
10027
|
-
/**
|
|
10028
|
-
|
|
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;
|
|
10029
10030
|
}
|
|
10030
|
-
/** Options for the
|
|
10031
|
-
interface
|
|
10032
|
-
/**
|
|
10033
|
-
|
|
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;
|
|
10034
10054
|
}
|
|
10035
10055
|
|
|
10036
10056
|
/**
|
|
10037
|
-
*
|
|
10057
|
+
* Yahoo Search API client.
|
|
10038
10058
|
*
|
|
10039
|
-
* Web search
|
|
10040
|
-
* searches, and pagination.
|
|
10059
|
+
* Web search and search-box autocomplete.
|
|
10041
10060
|
*/
|
|
10042
10061
|
|
|
10043
10062
|
/**
|
|
10044
|
-
* Client for
|
|
10063
|
+
* Client for Yahoo web search and autocomplete endpoints.
|
|
10045
10064
|
*
|
|
10046
10065
|
* @example
|
|
10047
10066
|
* ```typescript
|
|
10048
10067
|
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
10049
10068
|
*
|
|
10050
|
-
* const results = await client.
|
|
10051
|
-
* for (const
|
|
10052
|
-
* console.log(`${
|
|
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}`);
|
|
10053
10072
|
* }
|
|
10073
|
+
*
|
|
10074
|
+
* const suggestions = await client.yahoo.search.autocomplete("coff");
|
|
10054
10075
|
* ```
|
|
10055
10076
|
*/
|
|
10056
|
-
declare class SearchClient$
|
|
10077
|
+
declare class SearchClient$6 {
|
|
10057
10078
|
private readonly client;
|
|
10058
10079
|
constructor(client: BaseClient);
|
|
10059
10080
|
/**
|
|
10060
|
-
* Search
|
|
10081
|
+
* Search yahoo.com — the web SERP.
|
|
10061
10082
|
*
|
|
10062
|
-
*
|
|
10063
|
-
*
|
|
10064
|
-
*
|
|
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.
|
|
10065
10089
|
*/
|
|
10066
|
-
search(query: string, params?:
|
|
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>;
|
|
10067
10098
|
}
|
|
10068
10099
|
|
|
10069
10100
|
/**
|
|
10070
|
-
*
|
|
10101
|
+
* Yahoo Media API client.
|
|
10071
10102
|
*
|
|
10072
|
-
*
|
|
10103
|
+
* Image search and video search.
|
|
10073
10104
|
*/
|
|
10074
10105
|
|
|
10075
10106
|
/**
|
|
10076
|
-
* Client for
|
|
10107
|
+
* Client for Yahoo image and video search endpoints.
|
|
10077
10108
|
*
|
|
10078
10109
|
* @example
|
|
10079
10110
|
* ```typescript
|
|
10080
10111
|
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
10081
10112
|
*
|
|
10082
|
-
* const images = await client.
|
|
10083
|
-
* const
|
|
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");
|
|
10084
10119
|
* ```
|
|
10085
10120
|
*/
|
|
10086
|
-
declare class
|
|
10121
|
+
declare class MediaClient {
|
|
10087
10122
|
private readonly client;
|
|
10088
10123
|
constructor(client: BaseClient);
|
|
10089
10124
|
/**
|
|
10090
|
-
* Search
|
|
10125
|
+
* Search Yahoo images.
|
|
10091
10126
|
*
|
|
10092
|
-
*
|
|
10093
|
-
*
|
|
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.
|
|
10094
10134
|
*/
|
|
10095
|
-
|
|
10135
|
+
images(query: string, params?: YahooImagesParams): Promise<YahooImagesResponse>;
|
|
10096
10136
|
/**
|
|
10097
|
-
*
|
|
10137
|
+
* Search Yahoo videos.
|
|
10098
10138
|
*
|
|
10099
|
-
*
|
|
10100
|
-
*
|
|
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.
|
|
10101
10145
|
*/
|
|
10102
|
-
|
|
10146
|
+
videos(query: string, params?: YahooVideosParams): Promise<YahooVideosResponse>;
|
|
10103
10147
|
}
|
|
10104
10148
|
|
|
10105
10149
|
/**
|
|
10106
|
-
*
|
|
10150
|
+
* Yahoo News API client.
|
|
10107
10151
|
*
|
|
10108
|
-
* The
|
|
10152
|
+
* The Yahoo news vertical.
|
|
10109
10153
|
*/
|
|
10110
10154
|
|
|
10111
10155
|
/**
|
|
10112
|
-
* Client for the
|
|
10156
|
+
* Client for the Yahoo news endpoint.
|
|
10113
10157
|
*
|
|
10114
10158
|
* @example
|
|
10115
10159
|
* ```typescript
|
|
10116
10160
|
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
10117
10161
|
*
|
|
10118
|
-
* const
|
|
10119
|
-
* for (const
|
|
10120
|
-
* console.log(
|
|
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);
|
|
10121
10165
|
* }
|
|
10122
10166
|
* ```
|
|
10123
10167
|
*/
|
|
10124
|
-
declare class
|
|
10168
|
+
declare class NewsClient {
|
|
10125
10169
|
private readonly client;
|
|
10126
10170
|
constructor(client: BaseClient);
|
|
10127
10171
|
/**
|
|
10128
|
-
*
|
|
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.
|
|
10129
10179
|
*/
|
|
10130
|
-
|
|
10180
|
+
news(query: string, params?: YahooNewsParams): Promise<YahooNewsResponse>;
|
|
10131
10181
|
}
|
|
10132
10182
|
|
|
10133
10183
|
/**
|
|
10134
|
-
*
|
|
10184
|
+
* Yahoo Reference Data API client.
|
|
10185
|
+
*/
|
|
10186
|
+
|
|
10187
|
+
/**
|
|
10188
|
+
* Client for Yahoo reference data endpoints (markets).
|
|
10135
10189
|
*
|
|
10136
|
-
*
|
|
10137
|
-
*
|
|
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.
|
|
10138
10215
|
*/
|
|
10139
10216
|
|
|
10140
10217
|
/**
|
|
10141
|
-
*
|
|
10218
|
+
* Yahoo API client with access to all Yahoo endpoints.
|
|
10142
10219
|
*
|
|
10143
10220
|
* Sub-clients:
|
|
10144
|
-
* - `search` - Web search
|
|
10145
|
-
* - `
|
|
10146
|
-
* - `
|
|
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)
|
|
10147
10225
|
*
|
|
10148
10226
|
* @example
|
|
10149
10227
|
* ```typescript
|
|
10150
10228
|
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
10151
10229
|
*
|
|
10152
|
-
* const results = await client.
|
|
10153
|
-
* const images = await client.
|
|
10154
|
-
* const
|
|
10155
|
-
* const
|
|
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();
|
|
10156
10236
|
* ```
|
|
10157
10237
|
*/
|
|
10158
|
-
declare class
|
|
10159
|
-
/** Client for web search
|
|
10160
|
-
readonly search: SearchClient$
|
|
10161
|
-
/** Client for image search and
|
|
10162
|
-
readonly
|
|
10163
|
-
/** Client for the
|
|
10164
|
-
readonly
|
|
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;
|
|
10165
10247
|
/**
|
|
10166
|
-
* Create a new
|
|
10248
|
+
* Create a new Yahoo client.
|
|
10167
10249
|
*
|
|
10168
10250
|
* @param client - The base HTTP client for making requests.
|
|
10169
10251
|
*/
|
|
@@ -10171,194 +10253,482 @@ declare class YandexClient {
|
|
|
10171
10253
|
}
|
|
10172
10254
|
|
|
10173
10255
|
/**
|
|
10174
|
-
* TypeScript types for
|
|
10256
|
+
* TypeScript types for the Yandex API.
|
|
10175
10257
|
*
|
|
10176
|
-
* These interfaces mirror the backend `
|
|
10177
|
-
* field-for-field
|
|
10178
|
-
*
|
|
10179
|
-
* fields default to `[]` and are typed as arrays. Every datetime field ships in
|
|
10180
|
-
* BOTH `*_utc` (number) and `*_at` (string) form.
|
|
10258
|
+
* These interfaces mirror the backend `yandex_scraper` response schema
|
|
10259
|
+
* field-for-field. Optional / nullable backend fields are typed as
|
|
10260
|
+
* `Type | null`; backend list fields default to `[]` and are typed as arrays.
|
|
10181
10261
|
*
|
|
10182
|
-
*
|
|
10183
|
-
*
|
|
10184
|
-
*/
|
|
10185
|
-
/**
|
|
10186
|
-
* A single image variant.
|
|
10262
|
+
* Field names are snake_case to match the backend payload and the rest of this
|
|
10263
|
+
* SDK (see the DuckDuckGo module).
|
|
10187
10264
|
*/
|
|
10188
|
-
|
|
10189
|
-
|
|
10190
|
-
|
|
10191
|
-
|
|
10265
|
+
/** An untyped JSON object passed through verbatim from Yandex's payload. */
|
|
10266
|
+
type YandexRaw = Record<string, unknown>;
|
|
10267
|
+
/** A sitelink nested under an organic result or ad. */
|
|
10268
|
+
interface YandexSitelink {
|
|
10269
|
+
title: string | null;
|
|
10270
|
+
url: string | null;
|
|
10271
|
+
snippet: string | null;
|
|
10192
10272
|
}
|
|
10193
|
-
/**
|
|
10194
|
-
|
|
10195
|
-
|
|
10196
|
-
|
|
10197
|
-
|
|
10198
|
-
|
|
10199
|
-
|
|
10200
|
-
|
|
10201
|
-
|
|
10202
|
-
video_id: string | null;
|
|
10203
|
-
playlist_id: string | null;
|
|
10204
|
-
canonical_url: string | null;
|
|
10273
|
+
/** A single organic web result (ads share the same shape). */
|
|
10274
|
+
interface YandexOrganicResult {
|
|
10275
|
+
position: number | null;
|
|
10276
|
+
title: string | null;
|
|
10277
|
+
url: string | null;
|
|
10278
|
+
displayed_url: string | null;
|
|
10279
|
+
domain: string | null;
|
|
10280
|
+
snippet: string | null;
|
|
10281
|
+
sitelinks: YandexSitelink[];
|
|
10205
10282
|
}
|
|
10206
|
-
/**
|
|
10207
|
-
|
|
10208
|
-
|
|
10209
|
-
|
|
10210
|
-
|
|
10211
|
-
title: string;
|
|
10283
|
+
/** The SERP pagination block. */
|
|
10284
|
+
interface YandexPagination {
|
|
10285
|
+
current: number | null;
|
|
10286
|
+
next_url: string | null;
|
|
10287
|
+
other_pages: YandexRaw[];
|
|
10212
10288
|
}
|
|
10213
|
-
/**
|
|
10214
|
-
|
|
10215
|
-
|
|
10216
|
-
|
|
10217
|
-
|
|
10218
|
-
|
|
10219
|
-
|
|
10220
|
-
|
|
10221
|
-
|
|
10222
|
-
|
|
10223
|
-
|
|
10224
|
-
|
|
10225
|
-
|
|
10226
|
-
|
|
10289
|
+
/** A page of Yandex web results. */
|
|
10290
|
+
interface YandexSearchResponse {
|
|
10291
|
+
query: string;
|
|
10292
|
+
domain: string;
|
|
10293
|
+
page: number;
|
|
10294
|
+
result_count: number;
|
|
10295
|
+
organic_results: YandexOrganicResult[];
|
|
10296
|
+
ads: YandexOrganicResult[];
|
|
10297
|
+
inline_images: YandexRaw[];
|
|
10298
|
+
inline_videos: YandexRaw[];
|
|
10299
|
+
related_searches: string[];
|
|
10300
|
+
pagination: YandexPagination | null;
|
|
10301
|
+
}
|
|
10302
|
+
/** An image reference with dimensions. */
|
|
10303
|
+
interface YandexImage {
|
|
10304
|
+
url: string | null;
|
|
10227
10305
|
width: number | null;
|
|
10228
10306
|
height: number | null;
|
|
10229
|
-
html: string | null;
|
|
10230
10307
|
}
|
|
10231
|
-
/**
|
|
10232
|
-
|
|
10233
|
-
|
|
10234
|
-
interface Chapter {
|
|
10308
|
+
/** A single image-search result. */
|
|
10309
|
+
interface YandexImageResult {
|
|
10310
|
+
position: number | null;
|
|
10235
10311
|
title: string | null;
|
|
10236
|
-
|
|
10237
|
-
|
|
10312
|
+
source: string | null;
|
|
10313
|
+
source_url: string | null;
|
|
10238
10314
|
thumbnail: string | null;
|
|
10315
|
+
image: YandexImage | null;
|
|
10316
|
+
snippet: string | null;
|
|
10239
10317
|
}
|
|
10240
|
-
/**
|
|
10241
|
-
|
|
10242
|
-
|
|
10243
|
-
|
|
10244
|
-
|
|
10245
|
-
|
|
10246
|
-
|
|
10247
|
-
|
|
10318
|
+
/** A page of image-search results. */
|
|
10319
|
+
interface YandexImagesResponse {
|
|
10320
|
+
query: string;
|
|
10321
|
+
domain: string;
|
|
10322
|
+
page: number;
|
|
10323
|
+
result_count: number;
|
|
10324
|
+
results: YandexImageResult[];
|
|
10325
|
+
suggested_searches: string[];
|
|
10248
10326
|
}
|
|
10249
|
-
/**
|
|
10250
|
-
|
|
10251
|
-
|
|
10252
|
-
|
|
10253
|
-
|
|
10254
|
-
|
|
10255
|
-
|
|
10256
|
-
|
|
10257
|
-
is_original: boolean | null;
|
|
10327
|
+
/** One page where the query image (or a variant) was found. */
|
|
10328
|
+
interface YandexReverseSite {
|
|
10329
|
+
title: string | null;
|
|
10330
|
+
description: string | null;
|
|
10331
|
+
url: string | null;
|
|
10332
|
+
domain: string | null;
|
|
10333
|
+
thumbnail: YandexImage | null;
|
|
10334
|
+
original_image: YandexImage | null;
|
|
10258
10335
|
}
|
|
10259
|
-
/**
|
|
10260
|
-
|
|
10261
|
-
|
|
10262
|
-
|
|
10263
|
-
|
|
10264
|
-
mime_type: string | null;
|
|
10265
|
-
codecs: string | null;
|
|
10266
|
-
bitrate: number | null;
|
|
10267
|
-
average_bitrate: number | null;
|
|
10336
|
+
/** One visually-similar image. */
|
|
10337
|
+
interface YandexSimilarImage {
|
|
10338
|
+
title: string | null;
|
|
10339
|
+
thumbnail: string | null;
|
|
10340
|
+
url: string | null;
|
|
10268
10341
|
width: number | null;
|
|
10269
10342
|
height: number | null;
|
|
10270
|
-
|
|
10271
|
-
|
|
10272
|
-
|
|
10273
|
-
|
|
10274
|
-
audio_sample_rate: number | null;
|
|
10275
|
-
audio_channels: number | null;
|
|
10276
|
-
/** stable-volume (dynamic range compression) audio */
|
|
10277
|
-
is_drc: boolean | null;
|
|
10278
|
-
loudness_db: number | null;
|
|
10279
|
-
audio_track: AudioTrack | null;
|
|
10280
|
-
content_length: number | null;
|
|
10281
|
-
approx_duration_ms: number | null;
|
|
10282
|
-
/** may require a PO token (best-effort) */
|
|
10343
|
+
}
|
|
10344
|
+
/** A CBIR tag / suggested refinement. */
|
|
10345
|
+
interface YandexTag {
|
|
10346
|
+
text: string | null;
|
|
10283
10347
|
url: string | null;
|
|
10284
|
-
signature_cipher: string | null;
|
|
10285
|
-
projection_type: string | null;
|
|
10286
10348
|
}
|
|
10349
|
+
/** The same image at another resolution. */
|
|
10350
|
+
interface YandexOtherSize {
|
|
10351
|
+
label: string | null;
|
|
10352
|
+
url: string | null;
|
|
10353
|
+
width: number | null;
|
|
10354
|
+
height: number | null;
|
|
10355
|
+
}
|
|
10356
|
+
/** The Yandex reverse-image (CBIR) response. */
|
|
10357
|
+
interface YandexReverseImageResponse {
|
|
10358
|
+
query_image_url: string;
|
|
10359
|
+
domain: string;
|
|
10360
|
+
cbir_id: string | null;
|
|
10361
|
+
is_empty: boolean;
|
|
10362
|
+
result_count: number;
|
|
10363
|
+
sites: YandexReverseSite[];
|
|
10364
|
+
similar_images: YandexSimilarImage[];
|
|
10365
|
+
tags: YandexTag[];
|
|
10366
|
+
other_sizes: YandexOtherSize[];
|
|
10367
|
+
}
|
|
10368
|
+
/** A supported Yandex market. */
|
|
10369
|
+
interface YandexMarket {
|
|
10370
|
+
code: string;
|
|
10371
|
+
name: string;
|
|
10372
|
+
domain: string;
|
|
10373
|
+
country_code: string;
|
|
10374
|
+
default_lr: number | null;
|
|
10375
|
+
lang: string | null;
|
|
10376
|
+
}
|
|
10377
|
+
/** The list of supported markets. */
|
|
10378
|
+
interface YandexMarketsResponse {
|
|
10379
|
+
result_count: number;
|
|
10380
|
+
markets: YandexMarket[];
|
|
10381
|
+
}
|
|
10382
|
+
/** Options for the web-search endpoint. */
|
|
10383
|
+
interface YandexSearchParams {
|
|
10384
|
+
/** Market domain: `"tr"` (default), `"com"`, `"ru"`, `"by"`, `"kz"`, `"uz"`. */
|
|
10385
|
+
domain?: string;
|
|
10386
|
+
/** Page number (1-25). */
|
|
10387
|
+
page?: number;
|
|
10388
|
+
/** Yandex region id (`lr`), e.g. `213` for Moscow. */
|
|
10389
|
+
lr?: number;
|
|
10390
|
+
/** UI/results language code, e.g. `"en"`. */
|
|
10391
|
+
lang?: string;
|
|
10392
|
+
}
|
|
10393
|
+
/** Options for the image-search endpoint. */
|
|
10394
|
+
interface YandexImagesParams {
|
|
10395
|
+
/** Market domain: `"tr"` (default), `"com"`, `"ru"`, `"by"`, `"kz"`, `"uz"`. */
|
|
10396
|
+
domain?: string;
|
|
10397
|
+
/** Page number (1-25). */
|
|
10398
|
+
page?: number;
|
|
10399
|
+
}
|
|
10400
|
+
/** Options for the reverse-image endpoint. */
|
|
10401
|
+
interface YandexReverseParams {
|
|
10402
|
+
/** Market domain: `"tr"` (default), `"com"`, `"ru"`, `"by"`, `"kz"`, `"uz"`. */
|
|
10403
|
+
domain?: string;
|
|
10404
|
+
}
|
|
10405
|
+
|
|
10287
10406
|
/**
|
|
10288
|
-
*
|
|
10407
|
+
* Yandex Search API client.
|
|
10408
|
+
*
|
|
10409
|
+
* Web search — organic results, ads, sitelinks, inline media, related
|
|
10410
|
+
* searches, and pagination.
|
|
10289
10411
|
*/
|
|
10290
|
-
|
|
10291
|
-
expires_in_seconds: number | null;
|
|
10292
|
-
hls_manifest_url: string | null;
|
|
10293
|
-
dash_manifest_url: string | null;
|
|
10294
|
-
formats: Format[];
|
|
10295
|
-
adaptive_formats: Format[];
|
|
10296
|
-
}
|
|
10412
|
+
|
|
10297
10413
|
/**
|
|
10298
|
-
*
|
|
10414
|
+
* Client for the Yandex web-search endpoint.
|
|
10415
|
+
*
|
|
10416
|
+
* @example
|
|
10417
|
+
* ```typescript
|
|
10418
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
10419
|
+
*
|
|
10420
|
+
* const results = await client.yandex.search.search("python asyncio", { domain: "com" });
|
|
10421
|
+
* for (const item of results.organic_results) {
|
|
10422
|
+
* console.log(`${item.position}. ${item.title} — ${item.url}`);
|
|
10423
|
+
* }
|
|
10424
|
+
* ```
|
|
10299
10425
|
*/
|
|
10300
|
-
|
|
10301
|
-
|
|
10302
|
-
|
|
10303
|
-
|
|
10304
|
-
|
|
10305
|
-
|
|
10426
|
+
declare class SearchClient$5 {
|
|
10427
|
+
private readonly client;
|
|
10428
|
+
constructor(client: BaseClient);
|
|
10429
|
+
/**
|
|
10430
|
+
* Search yandex.<domain>.
|
|
10431
|
+
*
|
|
10432
|
+
* @param query - Search keywords, e.g. `"python asyncio"`.
|
|
10433
|
+
* @param params - Optional domain, page, lr (region id) and lang.
|
|
10434
|
+
* @returns A page of web results with organic results, ads and pagination.
|
|
10435
|
+
*/
|
|
10436
|
+
search(query: string, params?: YandexSearchParams): Promise<YandexSearchResponse>;
|
|
10306
10437
|
}
|
|
10438
|
+
|
|
10307
10439
|
/**
|
|
10308
|
-
*
|
|
10440
|
+
* Yandex Images API client.
|
|
10441
|
+
*
|
|
10442
|
+
* Forward image search and reverse-image (CBIR) search.
|
|
10309
10443
|
*/
|
|
10310
|
-
|
|
10311
|
-
|
|
10312
|
-
|
|
10313
|
-
|
|
10314
|
-
|
|
10315
|
-
|
|
10316
|
-
|
|
10317
|
-
|
|
10318
|
-
|
|
10319
|
-
|
|
10320
|
-
|
|
10444
|
+
|
|
10445
|
+
/**
|
|
10446
|
+
* Client for the Yandex image search and reverse-image endpoints.
|
|
10447
|
+
*
|
|
10448
|
+
* @example
|
|
10449
|
+
* ```typescript
|
|
10450
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
10451
|
+
*
|
|
10452
|
+
* const images = await client.yandex.images.search("golden retriever");
|
|
10453
|
+
* const reverse = await client.yandex.images.reverse("https://example.com/photo.jpg");
|
|
10454
|
+
* ```
|
|
10455
|
+
*/
|
|
10456
|
+
declare class ImagesClient {
|
|
10457
|
+
private readonly client;
|
|
10458
|
+
constructor(client: BaseClient);
|
|
10459
|
+
/**
|
|
10460
|
+
* Search Yandex Images.
|
|
10461
|
+
*
|
|
10462
|
+
* @param query - Search keywords.
|
|
10463
|
+
* @param params - Optional domain and page.
|
|
10464
|
+
*/
|
|
10465
|
+
search(query: string, params?: YandexImagesParams): Promise<YandexImagesResponse>;
|
|
10466
|
+
/**
|
|
10467
|
+
* Reverse-image (CBIR) search for a given image URL.
|
|
10468
|
+
*
|
|
10469
|
+
* @param imageUrl - The publicly reachable URL of the query image.
|
|
10470
|
+
* @param params - Optional domain.
|
|
10471
|
+
*/
|
|
10472
|
+
reverse(imageUrl: string, params?: YandexReverseParams): Promise<YandexReverseImageResponse>;
|
|
10321
10473
|
}
|
|
10474
|
+
|
|
10322
10475
|
/**
|
|
10323
|
-
*
|
|
10476
|
+
* Yandex Reference API client.
|
|
10477
|
+
*
|
|
10478
|
+
* The list of supported Yandex markets.
|
|
10324
10479
|
*/
|
|
10325
|
-
|
|
10326
|
-
|
|
10327
|
-
|
|
10480
|
+
|
|
10481
|
+
/**
|
|
10482
|
+
* Client for the Yandex markets endpoint.
|
|
10483
|
+
*
|
|
10484
|
+
* @example
|
|
10485
|
+
* ```typescript
|
|
10486
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
10487
|
+
*
|
|
10488
|
+
* const markets = await client.yandex.reference.markets();
|
|
10489
|
+
* for (const m of markets.markets) {
|
|
10490
|
+
* console.log(`${m.code}: ${m.domain} (lr ${m.default_lr})`);
|
|
10491
|
+
* }
|
|
10492
|
+
* ```
|
|
10493
|
+
*/
|
|
10494
|
+
declare class ReferenceClient$6 {
|
|
10495
|
+
private readonly client;
|
|
10496
|
+
constructor(client: BaseClient);
|
|
10497
|
+
/**
|
|
10498
|
+
* Get the supported Yandex markets.
|
|
10499
|
+
*/
|
|
10500
|
+
markets(): Promise<YandexMarketsResponse>;
|
|
10328
10501
|
}
|
|
10502
|
+
|
|
10329
10503
|
/**
|
|
10330
|
-
*
|
|
10504
|
+
* Yandex API client.
|
|
10505
|
+
*
|
|
10506
|
+
* Provides access to all Yandex API endpoints through specialized
|
|
10507
|
+
* sub-clients.
|
|
10331
10508
|
*/
|
|
10332
|
-
|
|
10333
|
-
|
|
10334
|
-
|
|
10335
|
-
|
|
10336
|
-
|
|
10337
|
-
|
|
10338
|
-
|
|
10339
|
-
|
|
10340
|
-
|
|
10341
|
-
|
|
10342
|
-
|
|
10343
|
-
|
|
10344
|
-
|
|
10345
|
-
|
|
10346
|
-
|
|
10347
|
-
|
|
10348
|
-
|
|
10349
|
-
|
|
10350
|
-
|
|
10351
|
-
|
|
10352
|
-
|
|
10353
|
-
|
|
10354
|
-
|
|
10355
|
-
|
|
10356
|
-
|
|
10357
|
-
|
|
10358
|
-
|
|
10359
|
-
|
|
10360
|
-
|
|
10361
|
-
|
|
10509
|
+
|
|
10510
|
+
/**
|
|
10511
|
+
* Yandex API client with access to all Yandex endpoints.
|
|
10512
|
+
*
|
|
10513
|
+
* Sub-clients:
|
|
10514
|
+
* - `search` - Web search (organic + ads + sitelinks + inline media)
|
|
10515
|
+
* - `images` - Image search and reverse-image (CBIR) search
|
|
10516
|
+
* - `reference` - The supported-markets list
|
|
10517
|
+
*
|
|
10518
|
+
* @example
|
|
10519
|
+
* ```typescript
|
|
10520
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
10521
|
+
*
|
|
10522
|
+
* const results = await client.yandex.search.search("privacy");
|
|
10523
|
+
* const images = await client.yandex.images.search("puppies");
|
|
10524
|
+
* const reverse = await client.yandex.images.reverse("https://example.com/photo.jpg");
|
|
10525
|
+
* const markets = await client.yandex.reference.markets();
|
|
10526
|
+
* ```
|
|
10527
|
+
*/
|
|
10528
|
+
declare class YandexClient {
|
|
10529
|
+
/** Client for web search (organic + ads + sitelinks + inline media) */
|
|
10530
|
+
readonly search: SearchClient$5;
|
|
10531
|
+
/** Client for image search and reverse-image (CBIR) search */
|
|
10532
|
+
readonly images: ImagesClient;
|
|
10533
|
+
/** Client for the supported-markets list */
|
|
10534
|
+
readonly reference: ReferenceClient$6;
|
|
10535
|
+
/**
|
|
10536
|
+
* Create a new Yandex client.
|
|
10537
|
+
*
|
|
10538
|
+
* @param client - The base HTTP client for making requests.
|
|
10539
|
+
*/
|
|
10540
|
+
constructor(client: BaseClient);
|
|
10541
|
+
}
|
|
10542
|
+
|
|
10543
|
+
/**
|
|
10544
|
+
* TypeScript types for YouTube API responses.
|
|
10545
|
+
*
|
|
10546
|
+
* These interfaces mirror the backend `youtube_scraper` response schema
|
|
10547
|
+
* field-for-field (see `scrapers/youtube/src/youtube_scraper/models/*.py`).
|
|
10548
|
+
* Optional / nullable backend fields are typed as `Type | null`; backend list
|
|
10549
|
+
* fields default to `[]` and are typed as arrays. Every datetime field ships in
|
|
10550
|
+
* BOTH `*_utc` (number) and `*_at` (string) form.
|
|
10551
|
+
*
|
|
10552
|
+
* All list endpoints paginate via an opaque `continuation` token (no page
|
|
10553
|
+
* numbers). Region is controlled by `gl` (content region) + `hl` (UI language).
|
|
10554
|
+
*/
|
|
10555
|
+
/**
|
|
10556
|
+
* A single image variant.
|
|
10557
|
+
*/
|
|
10558
|
+
interface Thumbnail {
|
|
10559
|
+
url: string;
|
|
10560
|
+
width: number | null;
|
|
10561
|
+
height: number | null;
|
|
10562
|
+
}
|
|
10563
|
+
/**
|
|
10564
|
+
* Result of resolving a handle / custom URL to canonical ids.
|
|
10565
|
+
*/
|
|
10566
|
+
interface ResolveResult {
|
|
10567
|
+
input: string;
|
|
10568
|
+
/** "channel" | "video" | "playlist" */
|
|
10569
|
+
type: string | null;
|
|
10570
|
+
channel_id: string | null;
|
|
10571
|
+
channel_username: string | null;
|
|
10572
|
+
video_id: string | null;
|
|
10573
|
+
playlist_id: string | null;
|
|
10574
|
+
canonical_url: string | null;
|
|
10575
|
+
}
|
|
10576
|
+
/**
|
|
10577
|
+
* A reference lookup row (category / language / region).
|
|
10578
|
+
*/
|
|
10579
|
+
interface ReferenceRow {
|
|
10580
|
+
id: string;
|
|
10581
|
+
title: string;
|
|
10582
|
+
}
|
|
10583
|
+
/**
|
|
10584
|
+
* YouTube public oEmbed response (https://www.youtube.com/oembed).
|
|
10585
|
+
*/
|
|
10586
|
+
interface OEmbed {
|
|
10587
|
+
type: string | null;
|
|
10588
|
+
version: string | null;
|
|
10589
|
+
title: string | null;
|
|
10590
|
+
author_name: string | null;
|
|
10591
|
+
author_url: string | null;
|
|
10592
|
+
provider_name: string | null;
|
|
10593
|
+
provider_url: string | null;
|
|
10594
|
+
thumbnail_url: string | null;
|
|
10595
|
+
thumbnail_width: number | null;
|
|
10596
|
+
thumbnail_height: number | null;
|
|
10597
|
+
width: number | null;
|
|
10598
|
+
height: number | null;
|
|
10599
|
+
html: string | null;
|
|
10600
|
+
}
|
|
10601
|
+
/**
|
|
10602
|
+
* A video chapter (manual or auto).
|
|
10603
|
+
*/
|
|
10604
|
+
interface Chapter {
|
|
10605
|
+
title: string | null;
|
|
10606
|
+
start_seconds: number | null;
|
|
10607
|
+
start_time_text: string | null;
|
|
10608
|
+
thumbnail: string | null;
|
|
10609
|
+
}
|
|
10610
|
+
/**
|
|
10611
|
+
* A most-replayed graph point.
|
|
10612
|
+
*/
|
|
10613
|
+
interface HeatMarker {
|
|
10614
|
+
start_seconds: number | null;
|
|
10615
|
+
duration_seconds: number | null;
|
|
10616
|
+
/** 0.0-1.0 normalized score */
|
|
10617
|
+
intensity: number | null;
|
|
10618
|
+
}
|
|
10619
|
+
/**
|
|
10620
|
+
* A multi-language audio track (auto-dubbing / original).
|
|
10621
|
+
*/
|
|
10622
|
+
interface AudioTrack {
|
|
10623
|
+
id: string | null;
|
|
10624
|
+
display_name: string | null;
|
|
10625
|
+
language: string | null;
|
|
10626
|
+
is_default: boolean | null;
|
|
10627
|
+
is_original: boolean | null;
|
|
10628
|
+
}
|
|
10629
|
+
/**
|
|
10630
|
+
* A single streaming format (muxed or adaptive).
|
|
10631
|
+
*/
|
|
10632
|
+
interface Format {
|
|
10633
|
+
itag: number | null;
|
|
10634
|
+
mime_type: string | null;
|
|
10635
|
+
codecs: string | null;
|
|
10636
|
+
bitrate: number | null;
|
|
10637
|
+
average_bitrate: number | null;
|
|
10638
|
+
width: number | null;
|
|
10639
|
+
height: number | null;
|
|
10640
|
+
fps: number | null;
|
|
10641
|
+
quality: string | null;
|
|
10642
|
+
quality_label: string | null;
|
|
10643
|
+
audio_quality: string | null;
|
|
10644
|
+
audio_sample_rate: number | null;
|
|
10645
|
+
audio_channels: number | null;
|
|
10646
|
+
/** stable-volume (dynamic range compression) audio */
|
|
10647
|
+
is_drc: boolean | null;
|
|
10648
|
+
loudness_db: number | null;
|
|
10649
|
+
audio_track: AudioTrack | null;
|
|
10650
|
+
content_length: number | null;
|
|
10651
|
+
approx_duration_ms: number | null;
|
|
10652
|
+
/** may require a PO token (best-effort) */
|
|
10653
|
+
url: string | null;
|
|
10654
|
+
signature_cipher: string | null;
|
|
10655
|
+
projection_type: string | null;
|
|
10656
|
+
}
|
|
10657
|
+
/**
|
|
10658
|
+
* Streaming metadata from `player.streamingData` (best-effort URLs).
|
|
10659
|
+
*/
|
|
10660
|
+
interface StreamingData {
|
|
10661
|
+
expires_in_seconds: number | null;
|
|
10662
|
+
hls_manifest_url: string | null;
|
|
10663
|
+
dash_manifest_url: string | null;
|
|
10664
|
+
formats: Format[];
|
|
10665
|
+
adaptive_formats: Format[];
|
|
10666
|
+
}
|
|
10667
|
+
/**
|
|
10668
|
+
* A product shelf entry attached to a video.
|
|
10669
|
+
*/
|
|
10670
|
+
interface ShoppingResult {
|
|
10671
|
+
title: string | null;
|
|
10672
|
+
price: string | null;
|
|
10673
|
+
vendor: string | null;
|
|
10674
|
+
thumbnail: string | null;
|
|
10675
|
+
link: string | null;
|
|
10676
|
+
}
|
|
10677
|
+
/**
|
|
10678
|
+
* Live/premiere timing details.
|
|
10679
|
+
*/
|
|
10680
|
+
interface LiveStreamingDetails {
|
|
10681
|
+
actual_start_at: string | null;
|
|
10682
|
+
actual_start_utc: number | null;
|
|
10683
|
+
actual_end_at: string | null;
|
|
10684
|
+
actual_end_utc: number | null;
|
|
10685
|
+
scheduled_start_at: string | null;
|
|
10686
|
+
scheduled_start_utc: number | null;
|
|
10687
|
+
scheduled_end_at: string | null;
|
|
10688
|
+
scheduled_end_utc: number | null;
|
|
10689
|
+
concurrent_viewers: number | null;
|
|
10690
|
+
active_live_chat_id: string | null;
|
|
10691
|
+
}
|
|
10692
|
+
/**
|
|
10693
|
+
* Region availability restrictions.
|
|
10694
|
+
*/
|
|
10695
|
+
interface RegionRestriction {
|
|
10696
|
+
allowed: string[];
|
|
10697
|
+
blocked: string[];
|
|
10698
|
+
}
|
|
10699
|
+
/**
|
|
10700
|
+
* Full video detail — merged `player` + `next` (the flagship entity).
|
|
10701
|
+
*/
|
|
10702
|
+
interface Video {
|
|
10703
|
+
video_id: string;
|
|
10704
|
+
title: string | null;
|
|
10705
|
+
url: string | null;
|
|
10706
|
+
description: string | null;
|
|
10707
|
+
description_links: Record<string, unknown>[];
|
|
10708
|
+
length_seconds: number | null;
|
|
10709
|
+
/** HH:MM:SS */
|
|
10710
|
+
duration: string | null;
|
|
10711
|
+
view_count: number | null;
|
|
10712
|
+
view_count_text: string | null;
|
|
10713
|
+
like_count: number | null;
|
|
10714
|
+
like_count_text: string | null;
|
|
10715
|
+
comment_count: number | null;
|
|
10716
|
+
/** private platform-wide since 2021 (null) */
|
|
10717
|
+
dislike_count: number | null;
|
|
10718
|
+
channel_id: string | null;
|
|
10719
|
+
channel_name: string | null;
|
|
10720
|
+
channel_username: string | null;
|
|
10721
|
+
channel_url: string | null;
|
|
10722
|
+
channel_thumbnail: string | null;
|
|
10723
|
+
channel_is_verified: boolean | null;
|
|
10724
|
+
is_official_artist: boolean | null;
|
|
10725
|
+
number_of_subscribers: number | null;
|
|
10726
|
+
subscriber_count_text: string | null;
|
|
10727
|
+
published_at: string | null;
|
|
10728
|
+
published_utc: number | null;
|
|
10729
|
+
upload_at: string | null;
|
|
10730
|
+
upload_utc: number | null;
|
|
10731
|
+
published_time_text: string | null;
|
|
10362
10732
|
keywords: string[];
|
|
10363
10733
|
tags: string[];
|
|
10364
10734
|
hashtags: string[];
|
|
@@ -14837,183 +15207,599 @@ interface LinkedInJobsSearchParams {
|
|
|
14837
15207
|
/** Residential proxy country. Default: "us". */
|
|
14838
15208
|
country?: string;
|
|
14839
15209
|
}
|
|
14840
|
-
/** Options for the /companies/{companyId}/jobs endpoint. */
|
|
14841
|
-
interface LinkedInCompanyJobsParams {
|
|
14842
|
-
/** Pagination offset (0, 25, 50, ...). Default: 0. */
|
|
14843
|
-
start?: number;
|
|
14844
|
-
/** Residential proxy country. Default: "us". */
|
|
14845
|
-
country?: string;
|
|
15210
|
+
/** Options for the /companies/{companyId}/jobs endpoint. */
|
|
15211
|
+
interface LinkedInCompanyJobsParams {
|
|
15212
|
+
/** Pagination offset (0, 25, 50, ...). Default: 0. */
|
|
15213
|
+
start?: number;
|
|
15214
|
+
/** Residential proxy country. Default: "us". */
|
|
15215
|
+
country?: string;
|
|
15216
|
+
}
|
|
15217
|
+
/** Options for the single-resource endpoints (job, company, school, profile,
|
|
15218
|
+
* post, article, course). */
|
|
15219
|
+
interface LinkedInCountryParams {
|
|
15220
|
+
/** Residential proxy country. Default: "us". */
|
|
15221
|
+
country?: string;
|
|
15222
|
+
}
|
|
15223
|
+
|
|
15224
|
+
/**
|
|
15225
|
+
* LinkedIn API client.
|
|
15226
|
+
*
|
|
15227
|
+
* LinkedIn endpoints cover the public, logged-out surface: guest job search +
|
|
15228
|
+
* detail + company jobs, public company / school / profile pages, public
|
|
15229
|
+
* posts / articles, LinkedIn Learning courses, and a geo/company typeahead.
|
|
15230
|
+
* Requests are localised by a `country` residential-proxy param.
|
|
15231
|
+
*
|
|
15232
|
+
* Company/school/profile/post/course data is SSR-rendered, so those calls take
|
|
15233
|
+
* a few seconds to return; the guest job APIs are faster HTML fragments.
|
|
15234
|
+
*/
|
|
15235
|
+
|
|
15236
|
+
/**
|
|
15237
|
+
* Client for all LinkedIn API operations.
|
|
15238
|
+
*
|
|
15239
|
+
* @example
|
|
15240
|
+
* ```typescript
|
|
15241
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
15242
|
+
*
|
|
15243
|
+
* // Search jobs
|
|
15244
|
+
* const results = await client.linkedin.jobsSearch({ keywords: "python", location: "New York" });
|
|
15245
|
+
* for (const job of results.jobs) {
|
|
15246
|
+
* console.log(`${job.title} — ${job.company}`);
|
|
15247
|
+
* }
|
|
15248
|
+
*
|
|
15249
|
+
* // Single job detail
|
|
15250
|
+
* const job = await client.linkedin.getJob("3901234567");
|
|
15251
|
+
*
|
|
15252
|
+
* // Company / school / profile
|
|
15253
|
+
* const company = await client.linkedin.getCompany("microsoft");
|
|
15254
|
+
* const school = await client.linkedin.getSchool("stanford-university");
|
|
15255
|
+
* const profile = await client.linkedin.getProfile("williamhgates");
|
|
15256
|
+
*
|
|
15257
|
+
* // Posts, articles, courses
|
|
15258
|
+
* const post = await client.linkedin.getPost("some-post-slug");
|
|
15259
|
+
* const course = await client.linkedin.getCourse("learning-python");
|
|
15260
|
+
*
|
|
15261
|
+
* // Geo / company typeahead
|
|
15262
|
+
* const geo = await client.linkedin.geoSuggest("London");
|
|
15263
|
+
* ```
|
|
15264
|
+
*/
|
|
15265
|
+
declare class LinkedInClient {
|
|
15266
|
+
private readonly client;
|
|
15267
|
+
constructor(client: BaseClient);
|
|
15268
|
+
/**
|
|
15269
|
+
* Search LinkedIn jobs (guest search API).
|
|
15270
|
+
*
|
|
15271
|
+
* @param options - Optional parameters (keywords, location, geoId, companyId,
|
|
15272
|
+
* datePosted, experience, jobType, workplace, sort, start, country).
|
|
15273
|
+
* @returns Jobs search response with matching job cards and pagination meta.
|
|
15274
|
+
* @throws AuthenticationError - If the API key is invalid.
|
|
15275
|
+
* @throws ValidationError - If the parameters are invalid.
|
|
15276
|
+
*/
|
|
15277
|
+
jobsSearch(options?: LinkedInJobsSearchParams): Promise<LinkedInJobsSearchResponse>;
|
|
15278
|
+
/**
|
|
15279
|
+
* Get full detail for one LinkedIn job posting.
|
|
15280
|
+
*
|
|
15281
|
+
* @param jobId - The numeric LinkedIn job id.
|
|
15282
|
+
* @param options - Optional parameters (country).
|
|
15283
|
+
* @returns Full job detail.
|
|
15284
|
+
* @throws NotFoundError - If the job doesn't exist.
|
|
15285
|
+
*/
|
|
15286
|
+
getJob(jobId: string, options?: LinkedInCountryParams): Promise<JobDetail>;
|
|
15287
|
+
/**
|
|
15288
|
+
* Get a company's job postings.
|
|
15289
|
+
*
|
|
15290
|
+
* @param companyId - The numeric LinkedIn company id.
|
|
15291
|
+
* @param options - Optional parameters (start, country).
|
|
15292
|
+
* @returns Jobs search response with the company's job cards and pagination meta.
|
|
15293
|
+
* @throws NotFoundError - If the company doesn't exist.
|
|
15294
|
+
*/
|
|
15295
|
+
companyJobs(companyId: string, options?: LinkedInCompanyJobsParams): Promise<LinkedInJobsSearchResponse>;
|
|
15296
|
+
/**
|
|
15297
|
+
* Get a public LinkedIn company page.
|
|
15298
|
+
*
|
|
15299
|
+
* @param universalName - The company's universal name (URL slug).
|
|
15300
|
+
* @param options - Optional parameters (country).
|
|
15301
|
+
* @returns Company profile.
|
|
15302
|
+
* @throws NotFoundError - If the company doesn't exist.
|
|
15303
|
+
*/
|
|
15304
|
+
getCompany(universalName: string, options?: LinkedInCountryParams): Promise<Company>;
|
|
15305
|
+
/**
|
|
15306
|
+
* Get a public LinkedIn school page.
|
|
15307
|
+
*
|
|
15308
|
+
* @param universalName - The school's universal name (URL slug).
|
|
15309
|
+
* @param options - Optional parameters (country).
|
|
15310
|
+
* @returns School profile.
|
|
15311
|
+
* @throws NotFoundError - If the school doesn't exist.
|
|
15312
|
+
*/
|
|
15313
|
+
getSchool(universalName: string, options?: LinkedInCountryParams): Promise<School>;
|
|
15314
|
+
/**
|
|
15315
|
+
* Get a public LinkedIn profile.
|
|
15316
|
+
*
|
|
15317
|
+
* @param publicId - The profile's public id (URL slug).
|
|
15318
|
+
* @param options - Optional parameters (country).
|
|
15319
|
+
* @returns Public profile.
|
|
15320
|
+
* @throws NotFoundError - If the profile doesn't exist.
|
|
15321
|
+
*/
|
|
15322
|
+
getProfile(publicId: string, options?: LinkedInCountryParams): Promise<Profile>;
|
|
15323
|
+
/**
|
|
15324
|
+
* Get a public LinkedIn post (activity share).
|
|
15325
|
+
*
|
|
15326
|
+
* @param postSlug - The post slug (last URL segment).
|
|
15327
|
+
* @param options - Optional parameters (country).
|
|
15328
|
+
* @returns Post detail.
|
|
15329
|
+
* @throws NotFoundError - If the post doesn't exist.
|
|
15330
|
+
*/
|
|
15331
|
+
getPost(postSlug: string, options?: LinkedInCountryParams): Promise<Post>;
|
|
15332
|
+
/**
|
|
15333
|
+
* Get a public LinkedIn article (`/pulse/`).
|
|
15334
|
+
*
|
|
15335
|
+
* @param articleSlug - The article slug (last URL segment).
|
|
15336
|
+
* @param options - Optional parameters (country).
|
|
15337
|
+
* @returns Article detail (Post shape).
|
|
15338
|
+
* @throws NotFoundError - If the article doesn't exist.
|
|
15339
|
+
*/
|
|
15340
|
+
getArticle(articleSlug: string, options?: LinkedInCountryParams): Promise<Post>;
|
|
15341
|
+
/**
|
|
15342
|
+
* Get a public LinkedIn Learning course.
|
|
15343
|
+
*
|
|
15344
|
+
* @param courseSlug - The course slug (last URL segment).
|
|
15345
|
+
* @param options - Optional parameters (country).
|
|
15346
|
+
* @returns Course detail.
|
|
15347
|
+
* @throws NotFoundError - If the course doesn't exist.
|
|
15348
|
+
*/
|
|
15349
|
+
getCourse(courseSlug: string, options?: LinkedInCountryParams): Promise<LearningCourse>;
|
|
15350
|
+
/**
|
|
15351
|
+
* Suggest geo / company ids for a query (typeahead).
|
|
15352
|
+
*
|
|
15353
|
+
* @param query - Location or company name, e.g. "London".
|
|
15354
|
+
* @param type - "geo" | "company" (default: "geo").
|
|
15355
|
+
* @returns Geo-suggest response with matching suggestions.
|
|
15356
|
+
*/
|
|
15357
|
+
geoSuggest(query: string, type?: string): Promise<LinkedInGeoSuggestResponse>;
|
|
15358
|
+
/**
|
|
15359
|
+
* LinkedIn scraper health check.
|
|
15360
|
+
*
|
|
15361
|
+
* Free — this endpoint costs no credits.
|
|
15362
|
+
*
|
|
15363
|
+
* @returns Health payload (status, service, version, products).
|
|
15364
|
+
*/
|
|
15365
|
+
health(): Promise<LinkedInHealthResponse>;
|
|
15366
|
+
}
|
|
15367
|
+
|
|
15368
|
+
/**
|
|
15369
|
+
* TypeScript types for the ChatGPT API.
|
|
15370
|
+
*
|
|
15371
|
+
* Answers come from the real chatgpt.com web surface (not the OpenAI API),
|
|
15372
|
+
* anonymously — no OpenAI account or API key is involved.
|
|
15373
|
+
*/
|
|
15374
|
+
/** Whether ChatGPT should browse the web for the answer. */
|
|
15375
|
+
type ChatGPTWebSearchMode = "auto" | "force" | "off";
|
|
15376
|
+
/** Parameters for the ask endpoint. */
|
|
15377
|
+
interface ChatGPTAskParams {
|
|
15378
|
+
/** The prompt to send. Maximum 4096 characters. */
|
|
15379
|
+
prompt: string;
|
|
15380
|
+
/** ISO-3166 alpha-2 egress country (default: "US") */
|
|
15381
|
+
country?: string;
|
|
15382
|
+
/** Whether ChatGPT should browse (default: "auto") */
|
|
15383
|
+
web_search?: ChatGPTWebSearchMode;
|
|
15384
|
+
}
|
|
15385
|
+
/** Parameters for the brand-visibility endpoint. */
|
|
15386
|
+
interface ChatGPTBrandVisibilityParams {
|
|
15387
|
+
/** The prompt to send. Maximum 4096 characters. */
|
|
15388
|
+
prompt: string;
|
|
15389
|
+
/** The brand name to look for in the answer. */
|
|
15390
|
+
brand: string;
|
|
15391
|
+
/** The brand's domain, used to detect brand citations. */
|
|
15392
|
+
domain?: string;
|
|
15393
|
+
/** Other spellings of the brand that should count as mentions. */
|
|
15394
|
+
aliases?: string[];
|
|
15395
|
+
/** Competitor names to measure share of voice against. */
|
|
15396
|
+
competitors?: string[];
|
|
15397
|
+
/** ISO-3166 alpha-2 egress country (default: "US") */
|
|
15398
|
+
country?: string;
|
|
15399
|
+
/** Whether ChatGPT should browse (default: "force") */
|
|
15400
|
+
web_search?: ChatGPTWebSearchMode;
|
|
15401
|
+
}
|
|
15402
|
+
/** Parameters for the models endpoint. */
|
|
15403
|
+
interface ChatGPTModelsParams {
|
|
15404
|
+
/** ISO-3166 alpha-2 egress country (default: "US") */
|
|
15405
|
+
country?: string;
|
|
15406
|
+
}
|
|
15407
|
+
/**
|
|
15408
|
+
* A web source ChatGPT actually referenced in its answer.
|
|
15409
|
+
*
|
|
15410
|
+
* `start_index` / `end_index` are character offsets into the answer, so a
|
|
15411
|
+
* citation can be anchored to the exact span of text it supports.
|
|
15412
|
+
*/
|
|
15413
|
+
interface ChatGPTCitation {
|
|
15414
|
+
/** Source URL */
|
|
15415
|
+
url: string | null;
|
|
15416
|
+
/** Page title */
|
|
15417
|
+
title: string | null;
|
|
15418
|
+
/** Snippet of the source text */
|
|
15419
|
+
snippet: string | null;
|
|
15420
|
+
/** Bare domain of the source (e.g. "reuters.com") */
|
|
15421
|
+
domain: string | null;
|
|
15422
|
+
/** Publisher attribution string, when ChatGPT provides one */
|
|
15423
|
+
attribution: string | null;
|
|
15424
|
+
/** Publication time as a Unix timestamp */
|
|
15425
|
+
pub_date_utc: number | null;
|
|
15426
|
+
/** Publication time as an ISO-8601 Z string */
|
|
15427
|
+
published_at: string | null;
|
|
15428
|
+
/** Character offset into the answer where the supported span begins */
|
|
15429
|
+
start_index: number | null;
|
|
15430
|
+
/** Character offset into the answer where the supported span ends */
|
|
15431
|
+
end_index: number | null;
|
|
15432
|
+
/** The answer substring this source supports */
|
|
15433
|
+
matched_text: string | null;
|
|
15434
|
+
}
|
|
15435
|
+
/** One entry of the FULL set ChatGPT retrieved — cited or not. */
|
|
15436
|
+
interface ChatGPTSearchResult {
|
|
15437
|
+
/** Result URL */
|
|
15438
|
+
url: string | null;
|
|
15439
|
+
/** Page title */
|
|
15440
|
+
title: string | null;
|
|
15441
|
+
/** Snippet of the result text */
|
|
15442
|
+
snippet: string | null;
|
|
15443
|
+
/** Bare domain of the result */
|
|
15444
|
+
domain: string | null;
|
|
15445
|
+
/** Publisher attribution string, when present */
|
|
15446
|
+
attribution: string | null;
|
|
15447
|
+
/** Publication time as a Unix timestamp */
|
|
15448
|
+
pub_date_utc: number | null;
|
|
15449
|
+
/** Publication time as an ISO-8601 Z string */
|
|
15450
|
+
published_at: string | null;
|
|
15451
|
+
/** Index of this result in the retrieved set */
|
|
15452
|
+
ref_index: number | null;
|
|
15453
|
+
/** Whether this result was actually referenced in the answer */
|
|
15454
|
+
cited: boolean;
|
|
15455
|
+
}
|
|
15456
|
+
/** A ChatGPT answer with its sources. */
|
|
15457
|
+
interface ChatGPTAskResponse {
|
|
15458
|
+
/** The prompt that was sent */
|
|
15459
|
+
prompt: string;
|
|
15460
|
+
/** The answer as plain text */
|
|
15461
|
+
answer: string;
|
|
15462
|
+
/** The answer as markdown, when available */
|
|
15463
|
+
answer_markdown: string | null;
|
|
15464
|
+
/** Sources ChatGPT actually referenced */
|
|
15465
|
+
citations: ChatGPTCitation[];
|
|
15466
|
+
/** The full retrieved set, cited or not */
|
|
15467
|
+
search_results: ChatGPTSearchResult[];
|
|
15468
|
+
/** Distinct domains across the sources */
|
|
15469
|
+
source_domains: string[];
|
|
15470
|
+
/** Whether ChatGPT ACTUALLY browsed the web */
|
|
15471
|
+
/** True when the render budget expired mid-answer; `answer` is partial. */
|
|
15472
|
+
truncated: boolean;
|
|
15473
|
+
web_search_triggered: boolean;
|
|
15474
|
+
/** Raw reference markers (e.g. "turn0search1") */
|
|
15475
|
+
/** Actual sub-queries ChatGPT issued to the search engine. */
|
|
15476
|
+
search_queries: string[];
|
|
15477
|
+
reference_tokens: string[];
|
|
15478
|
+
/** Model slug that answered (e.g. "gpt-5-5") */
|
|
15479
|
+
model: string | null;
|
|
15480
|
+
/** ChatGPT conversation identifier */
|
|
15481
|
+
conversation_id: string | null;
|
|
15482
|
+
/** ChatGPT message identifier */
|
|
15483
|
+
message_id: string | null;
|
|
15484
|
+
/** ISO-3166 alpha-2 egress country used */
|
|
15485
|
+
country: string;
|
|
15486
|
+
/** Length of the answer in characters */
|
|
15487
|
+
answer_length: number;
|
|
15488
|
+
/** Number of citations */
|
|
15489
|
+
citation_count: number;
|
|
15490
|
+
/** End-to-end latency in milliseconds */
|
|
15491
|
+
latency_ms: number;
|
|
15492
|
+
/** Creation time as a Unix timestamp */
|
|
15493
|
+
created_utc: number | null;
|
|
15494
|
+
/** Creation time as an ISO-8601 Z string */
|
|
15495
|
+
created_at: string | null;
|
|
15496
|
+
}
|
|
15497
|
+
/** How one competitor fared in the same answer. */
|
|
15498
|
+
interface ChatGPTCompetitorMention {
|
|
15499
|
+
/** Competitor name as supplied in the request */
|
|
15500
|
+
name: string;
|
|
15501
|
+
/** Whether the competitor appears in the answer */
|
|
15502
|
+
mentioned: boolean;
|
|
15503
|
+
/** Number of mentions */
|
|
15504
|
+
mention_count: number;
|
|
15505
|
+
/** Character offset of the first mention */
|
|
15506
|
+
first_position: number | null;
|
|
15507
|
+
/** Whether a competitor URL is cited as a source */
|
|
15508
|
+
cited: boolean;
|
|
15509
|
+
/** Cited URLs attributed to this competitor */
|
|
15510
|
+
cited_urls: string[];
|
|
15511
|
+
}
|
|
15512
|
+
/** AEO/GEO brand analysis of a ChatGPT answer. */
|
|
15513
|
+
interface ChatGPTBrandVisibilityResponse {
|
|
15514
|
+
/** The prompt that was sent */
|
|
15515
|
+
prompt: string;
|
|
15516
|
+
/** The brand that was analysed */
|
|
15517
|
+
brand: string;
|
|
15518
|
+
/** The brand's domain, when supplied */
|
|
15519
|
+
domain: string | null;
|
|
15520
|
+
/** Whether the brand appears in the answer */
|
|
15521
|
+
mentioned: boolean;
|
|
15522
|
+
/** Number of brand mentions */
|
|
15523
|
+
mention_count: number;
|
|
15524
|
+
/** Character offset of the first brand mention */
|
|
15525
|
+
first_position: number | null;
|
|
15526
|
+
/** 1.0 = named at the very start, 0.0 = absent */
|
|
15527
|
+
position_score: number;
|
|
15528
|
+
/** Brand mentions / (brand + competitor mentions) */
|
|
15529
|
+
share_of_voice_pct: number;
|
|
15530
|
+
/** Whether the brand's domain is cited as a source */
|
|
15531
|
+
cited: boolean;
|
|
15532
|
+
/** Cited URLs on the brand's domain */
|
|
15533
|
+
cited_urls: string[];
|
|
15534
|
+
/** 1-based rank of the first cited brand URL */
|
|
15535
|
+
citation_rank: number | null;
|
|
15536
|
+
/** Per-competitor breakdown */
|
|
15537
|
+
competitors: ChatGPTCompetitorMention[];
|
|
15538
|
+
/** Answer text around the first brand mention */
|
|
15539
|
+
excerpt: string | null;
|
|
15540
|
+
/** The answer as plain text */
|
|
15541
|
+
answer: string;
|
|
15542
|
+
/** Sources ChatGPT actually referenced */
|
|
15543
|
+
citations: ChatGPTCitation[];
|
|
15544
|
+
/** Whether ChatGPT ACTUALLY browsed the web */
|
|
15545
|
+
web_search_triggered: boolean;
|
|
15546
|
+
/** Model slug that answered */
|
|
15547
|
+
model: string | null;
|
|
15548
|
+
/** ISO-3166 alpha-2 egress country used */
|
|
15549
|
+
country: string;
|
|
15550
|
+
/** End-to-end latency in milliseconds */
|
|
15551
|
+
latency_ms: number;
|
|
15552
|
+
/** Creation time as a Unix timestamp */
|
|
15553
|
+
created_utc: number | null;
|
|
15554
|
+
/** Creation time as an ISO-8601 Z string */
|
|
15555
|
+
created_at: string | null;
|
|
14846
15556
|
}
|
|
14847
|
-
/**
|
|
14848
|
-
|
|
14849
|
-
|
|
14850
|
-
|
|
14851
|
-
|
|
15557
|
+
/** One model offered by chatgpt.com. */
|
|
15558
|
+
interface ChatGPTModel {
|
|
15559
|
+
/** Model slug (e.g. "gpt-5-5") */
|
|
15560
|
+
slug: string;
|
|
15561
|
+
/** Human-readable name */
|
|
15562
|
+
title: string | null;
|
|
15563
|
+
/** Short description */
|
|
15564
|
+
description: string | null;
|
|
15565
|
+
/** Maximum context length, when advertised */
|
|
15566
|
+
max_tokens: number | null;
|
|
15567
|
+
/** Model tags */
|
|
15568
|
+
tags: string[];
|
|
15569
|
+
}
|
|
15570
|
+
/** The models chatgpt.com currently offers. */
|
|
15571
|
+
interface ChatGPTModelsResponse {
|
|
15572
|
+
/** Available models */
|
|
15573
|
+
models: ChatGPTModel[];
|
|
15574
|
+
/** Number of models */
|
|
15575
|
+
count: number;
|
|
14852
15576
|
}
|
|
14853
15577
|
|
|
14854
15578
|
/**
|
|
14855
|
-
*
|
|
14856
|
-
*
|
|
14857
|
-
* LinkedIn endpoints cover the public, logged-out surface: guest job search +
|
|
14858
|
-
* detail + company jobs, public company / school / profile pages, public
|
|
14859
|
-
* posts / articles, LinkedIn Learning courses, and a geo/company typeahead.
|
|
14860
|
-
* Requests are localised by a `country` residential-proxy param.
|
|
15579
|
+
* ChatGPT Ask API client.
|
|
14861
15580
|
*
|
|
14862
|
-
*
|
|
14863
|
-
*
|
|
15581
|
+
* Sends a prompt to the real chatgpt.com and returns the answer as structured
|
|
15582
|
+
* JSON, including the web sources ChatGPT cited.
|
|
14864
15583
|
*/
|
|
14865
15584
|
|
|
14866
15585
|
/**
|
|
14867
|
-
* Client for
|
|
15586
|
+
* Client for the ChatGPT ask endpoint.
|
|
14868
15587
|
*
|
|
14869
15588
|
* @example
|
|
14870
15589
|
* ```typescript
|
|
14871
15590
|
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
14872
15591
|
*
|
|
14873
|
-
*
|
|
14874
|
-
*
|
|
14875
|
-
*
|
|
14876
|
-
*
|
|
15592
|
+
* const result = await client.chatgpt.ask.ask({
|
|
15593
|
+
* prompt: "best running shoes 2026",
|
|
15594
|
+
* });
|
|
15595
|
+
* console.log(result.answer);
|
|
15596
|
+
* for (const citation of result.citations) {
|
|
15597
|
+
* console.log(`${citation.domain}: ${citation.url}`);
|
|
14877
15598
|
* }
|
|
14878
|
-
*
|
|
14879
|
-
* // Single job detail
|
|
14880
|
-
* const job = await client.linkedin.getJob("3901234567");
|
|
14881
|
-
*
|
|
14882
|
-
* // Company / school / profile
|
|
14883
|
-
* const company = await client.linkedin.getCompany("microsoft");
|
|
14884
|
-
* const school = await client.linkedin.getSchool("stanford-university");
|
|
14885
|
-
* const profile = await client.linkedin.getProfile("williamhgates");
|
|
14886
|
-
*
|
|
14887
|
-
* // Posts, articles, courses
|
|
14888
|
-
* const post = await client.linkedin.getPost("some-post-slug");
|
|
14889
|
-
* const course = await client.linkedin.getCourse("learning-python");
|
|
14890
|
-
*
|
|
14891
|
-
* // Geo / company typeahead
|
|
14892
|
-
* const geo = await client.linkedin.geoSuggest("London");
|
|
14893
15599
|
* ```
|
|
14894
15600
|
*/
|
|
14895
|
-
declare class
|
|
15601
|
+
declare class AskClient$1 {
|
|
14896
15602
|
private readonly client;
|
|
14897
15603
|
constructor(client: BaseClient);
|
|
14898
15604
|
/**
|
|
14899
|
-
*
|
|
14900
|
-
*
|
|
14901
|
-
* @param options - Optional parameters (keywords, location, geoId, companyId,
|
|
14902
|
-
* datePosted, experience, jobType, workplace, sort, start, country).
|
|
14903
|
-
* @returns Jobs search response with matching job cards and pagination meta.
|
|
14904
|
-
* @throws AuthenticationError - If the API key is invalid.
|
|
14905
|
-
* @throws ValidationError - If the parameters are invalid.
|
|
14906
|
-
*/
|
|
14907
|
-
jobsSearch(options?: LinkedInJobsSearchParams): Promise<LinkedInJobsSearchResponse>;
|
|
14908
|
-
/**
|
|
14909
|
-
* Get full detail for one LinkedIn job posting.
|
|
14910
|
-
*
|
|
14911
|
-
* @param jobId - The numeric LinkedIn job id.
|
|
14912
|
-
* @param options - Optional parameters (country).
|
|
14913
|
-
* @returns Full job detail.
|
|
14914
|
-
* @throws NotFoundError - If the job doesn't exist.
|
|
14915
|
-
*/
|
|
14916
|
-
getJob(jobId: string, options?: LinkedInCountryParams): Promise<JobDetail>;
|
|
14917
|
-
/**
|
|
14918
|
-
* Get a company's job postings.
|
|
15605
|
+
* Ask ChatGPT a question and get the answer with its sources.
|
|
14919
15606
|
*
|
|
14920
|
-
*
|
|
14921
|
-
* @param options - Optional parameters (start, country).
|
|
14922
|
-
* @returns Jobs search response with the company's job cards and pagination meta.
|
|
14923
|
-
* @throws NotFoundError - If the company doesn't exist.
|
|
14924
|
-
*/
|
|
14925
|
-
companyJobs(companyId: string, options?: LinkedInCompanyJobsParams): Promise<LinkedInJobsSearchResponse>;
|
|
14926
|
-
/**
|
|
14927
|
-
* Get a public LinkedIn company page.
|
|
15607
|
+
* Costs 20 credits. Typical latency is 20-25s ungrounded, 30-70s with web search.
|
|
14928
15608
|
*
|
|
14929
|
-
* @param
|
|
14930
|
-
* @param
|
|
14931
|
-
* @
|
|
14932
|
-
* @
|
|
14933
|
-
|
|
14934
|
-
getCompany(universalName: string, options?: LinkedInCountryParams): Promise<Company>;
|
|
14935
|
-
/**
|
|
14936
|
-
* Get a public LinkedIn school page.
|
|
15609
|
+
* @param params - Ask parameters.
|
|
15610
|
+
* @param params.prompt - The prompt to send (max 4096 characters).
|
|
15611
|
+
* @param params.country - ISO-3166 alpha-2 egress country (default: "US").
|
|
15612
|
+
* @param params.web_search - "auto", "force", or "off" (default: "auto").
|
|
15613
|
+
* @returns The answer, its citations, and the full retrieved search set.
|
|
14937
15614
|
*
|
|
14938
|
-
* @
|
|
14939
|
-
*
|
|
14940
|
-
*
|
|
14941
|
-
*
|
|
15615
|
+
* @example
|
|
15616
|
+
* ```typescript
|
|
15617
|
+
* const result = await client.chatgpt.ask.ask({
|
|
15618
|
+
* prompt: "what is the best CRM for a 10-person startup?",
|
|
15619
|
+
* country: "GB",
|
|
15620
|
+
* web_search: "force",
|
|
15621
|
+
* });
|
|
15622
|
+
* console.log(result.web_search_triggered, result.model);
|
|
15623
|
+
* for (const source of result.search_results) {
|
|
15624
|
+
* console.log(`${source.cited ? "*" : " "} ${source.url}`);
|
|
15625
|
+
* }
|
|
15626
|
+
* ```
|
|
14942
15627
|
*/
|
|
14943
|
-
|
|
15628
|
+
ask(params: ChatGPTAskParams): Promise<ChatGPTAskResponse>;
|
|
15629
|
+
}
|
|
15630
|
+
|
|
15631
|
+
/**
|
|
15632
|
+
* ChatGPT Brand Visibility API client.
|
|
15633
|
+
*
|
|
15634
|
+
* Answer-engine-optimisation (AEO/GEO) analysis: ask ChatGPT a prompt and get
|
|
15635
|
+
* back how a brand fares in the answer, next to its competitors.
|
|
15636
|
+
*/
|
|
15637
|
+
|
|
15638
|
+
/**
|
|
15639
|
+
* Client for the ChatGPT brand-visibility endpoint.
|
|
15640
|
+
*
|
|
15641
|
+
* @example
|
|
15642
|
+
* ```typescript
|
|
15643
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
15644
|
+
*
|
|
15645
|
+
* const result = await client.chatgpt.brand.visibility({
|
|
15646
|
+
* prompt: "best web scraping API",
|
|
15647
|
+
* brand: "ScrapeBadger",
|
|
15648
|
+
* domain: "scrapebadger.com",
|
|
15649
|
+
* competitors: ["Bright Data", "Apify"],
|
|
15650
|
+
* });
|
|
15651
|
+
* console.log(result.mentioned, result.share_of_voice_pct);
|
|
15652
|
+
* ```
|
|
15653
|
+
*/
|
|
15654
|
+
declare class BrandClient$1 {
|
|
15655
|
+
private readonly client;
|
|
15656
|
+
constructor(client: BaseClient);
|
|
14944
15657
|
/**
|
|
14945
|
-
*
|
|
15658
|
+
* Analyse how a brand shows up in ChatGPT's answer to a prompt.
|
|
14946
15659
|
*
|
|
14947
|
-
*
|
|
14948
|
-
* @param options - Optional parameters (country).
|
|
14949
|
-
* @returns Public profile.
|
|
14950
|
-
* @throws NotFoundError - If the profile doesn't exist.
|
|
14951
|
-
*/
|
|
14952
|
-
getProfile(publicId: string, options?: LinkedInCountryParams): Promise<Profile>;
|
|
14953
|
-
/**
|
|
14954
|
-
* Get a public LinkedIn post (activity share).
|
|
15660
|
+
* Costs 25 credits.
|
|
14955
15661
|
*
|
|
14956
|
-
* @param
|
|
14957
|
-
* @param
|
|
14958
|
-
* @
|
|
14959
|
-
* @
|
|
14960
|
-
|
|
14961
|
-
|
|
14962
|
-
|
|
14963
|
-
*
|
|
15662
|
+
* @param params - Brand-visibility parameters.
|
|
15663
|
+
* @param params.prompt - The prompt to send (max 4096 characters).
|
|
15664
|
+
* @param params.brand - The brand name to look for in the answer.
|
|
15665
|
+
* @param params.domain - The brand's domain, used to detect brand citations.
|
|
15666
|
+
* @param params.aliases - Other spellings that should count as mentions.
|
|
15667
|
+
* @param params.competitors - Competitors to measure share of voice against.
|
|
15668
|
+
* @param params.country - ISO-3166 alpha-2 egress country (default: "US").
|
|
15669
|
+
* @param params.web_search - "auto", "force", or "off" (default: "force").
|
|
15670
|
+
* @returns The brand analysis plus the answer and its citations.
|
|
14964
15671
|
*
|
|
14965
|
-
* @
|
|
14966
|
-
*
|
|
14967
|
-
*
|
|
14968
|
-
*
|
|
15672
|
+
* @example
|
|
15673
|
+
* ```typescript
|
|
15674
|
+
* const result = await client.chatgpt.brand.visibility({
|
|
15675
|
+
* prompt: "which proxy provider should I use?",
|
|
15676
|
+
* brand: "ScrapeBadger",
|
|
15677
|
+
* domain: "scrapebadger.com",
|
|
15678
|
+
* aliases: ["Scrape Badger"],
|
|
15679
|
+
* competitors: ["Bright Data", "Oxylabs"],
|
|
15680
|
+
* country: "DE",
|
|
15681
|
+
* });
|
|
15682
|
+
* console.log(`position score: ${result.position_score}`);
|
|
15683
|
+
* for (const competitor of result.competitors) {
|
|
15684
|
+
* console.log(`${competitor.name}: ${competitor.mention_count}`);
|
|
15685
|
+
* }
|
|
15686
|
+
* ```
|
|
14969
15687
|
*/
|
|
14970
|
-
|
|
15688
|
+
visibility(params: ChatGPTBrandVisibilityParams): Promise<ChatGPTBrandVisibilityResponse>;
|
|
15689
|
+
}
|
|
15690
|
+
|
|
15691
|
+
/**
|
|
15692
|
+
* ChatGPT Reference Data API client.
|
|
15693
|
+
*
|
|
15694
|
+
* Provides the list of models chatgpt.com currently offers.
|
|
15695
|
+
*/
|
|
15696
|
+
|
|
15697
|
+
/**
|
|
15698
|
+
* Client for ChatGPT reference data endpoints.
|
|
15699
|
+
*
|
|
15700
|
+
* @example
|
|
15701
|
+
* ```typescript
|
|
15702
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
15703
|
+
*
|
|
15704
|
+
* const result = await client.chatgpt.reference.models();
|
|
15705
|
+
* for (const model of result.models) {
|
|
15706
|
+
* console.log(`${model.slug}: ${model.title}`);
|
|
15707
|
+
* }
|
|
15708
|
+
* ```
|
|
15709
|
+
*/
|
|
15710
|
+
declare class ReferenceClient {
|
|
15711
|
+
private readonly client;
|
|
15712
|
+
constructor(client: BaseClient);
|
|
14971
15713
|
/**
|
|
14972
|
-
* Get
|
|
15714
|
+
* Get the models chatgpt.com currently offers.
|
|
14973
15715
|
*
|
|
14974
|
-
*
|
|
14975
|
-
* @param options - Optional parameters (country).
|
|
14976
|
-
* @returns Course detail.
|
|
14977
|
-
* @throws NotFoundError - If the course doesn't exist.
|
|
14978
|
-
*/
|
|
14979
|
-
getCourse(courseSlug: string, options?: LinkedInCountryParams): Promise<LearningCourse>;
|
|
14980
|
-
/**
|
|
14981
|
-
* Suggest geo / company ids for a query (typeahead).
|
|
15716
|
+
* Costs 1 credit.
|
|
14982
15717
|
*
|
|
14983
|
-
* @param
|
|
14984
|
-
* @param
|
|
14985
|
-
* @returns
|
|
15718
|
+
* @param params - Optional parameters.
|
|
15719
|
+
* @param params.country - ISO-3166 alpha-2 egress country (default: "US").
|
|
15720
|
+
* @returns The available models.
|
|
15721
|
+
*
|
|
15722
|
+
* @example
|
|
15723
|
+
* ```typescript
|
|
15724
|
+
* const result = await client.chatgpt.reference.models({ country: "GB" });
|
|
15725
|
+
* console.log(`${result.count} models`);
|
|
15726
|
+
* for (const model of result.models) {
|
|
15727
|
+
* console.log(`${model.slug}: ${model.max_tokens} tokens`);
|
|
15728
|
+
* }
|
|
15729
|
+
* ```
|
|
14986
15730
|
*/
|
|
14987
|
-
|
|
15731
|
+
models(params?: ChatGPTModelsParams): Promise<ChatGPTModelsResponse>;
|
|
15732
|
+
}
|
|
15733
|
+
|
|
15734
|
+
/**
|
|
15735
|
+
* ChatGPT API client.
|
|
15736
|
+
*
|
|
15737
|
+
* Provides access to all ChatGPT API endpoints through specialized sub-clients.
|
|
15738
|
+
*/
|
|
15739
|
+
|
|
15740
|
+
/**
|
|
15741
|
+
* ChatGPT API client with access to all ChatGPT endpoints.
|
|
15742
|
+
*
|
|
15743
|
+
* Prompts the real chatgpt.com — not the OpenAI API — anonymously, and returns
|
|
15744
|
+
* the answer as structured JSON including the web sources ChatGPT cited.
|
|
15745
|
+
*
|
|
15746
|
+
* Sub-clients:
|
|
15747
|
+
* - `ask` - Send a prompt and get the answer with its sources
|
|
15748
|
+
* - `brand` - AEO/GEO brand-visibility analysis
|
|
15749
|
+
* - `reference` - Reference data (available models)
|
|
15750
|
+
*
|
|
15751
|
+
* @example
|
|
15752
|
+
* ```typescript
|
|
15753
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
15754
|
+
*
|
|
15755
|
+
* // Ask a question
|
|
15756
|
+
* const result = await client.chatgpt.ask.ask({ prompt: "best running shoes 2026" });
|
|
15757
|
+
*
|
|
15758
|
+
* // Brand visibility
|
|
15759
|
+
* const brand = await client.chatgpt.brand.visibility({
|
|
15760
|
+
* prompt: "best web scraping API",
|
|
15761
|
+
* brand: "ScrapeBadger",
|
|
15762
|
+
* competitors: ["Bright Data"],
|
|
15763
|
+
* });
|
|
15764
|
+
*
|
|
15765
|
+
* // Available models
|
|
15766
|
+
* const models = await client.chatgpt.reference.models();
|
|
15767
|
+
* ```
|
|
15768
|
+
*/
|
|
15769
|
+
declare class ChatGPTClient {
|
|
15770
|
+
/** Client for asking ChatGPT a question */
|
|
15771
|
+
readonly ask: AskClient$1;
|
|
15772
|
+
/** Client for AEO/GEO brand-visibility analysis */
|
|
15773
|
+
readonly brand: BrandClient$1;
|
|
15774
|
+
/** Client for reference data (available models) */
|
|
15775
|
+
readonly reference: ReferenceClient;
|
|
14988
15776
|
/**
|
|
14989
|
-
*
|
|
14990
|
-
*
|
|
14991
|
-
* Free — this endpoint costs no credits.
|
|
15777
|
+
* Create a new ChatGPT client.
|
|
14992
15778
|
*
|
|
14993
|
-
* @
|
|
15779
|
+
* @param client - The base HTTP client for making requests.
|
|
14994
15780
|
*/
|
|
14995
|
-
|
|
15781
|
+
constructor(client: BaseClient);
|
|
14996
15782
|
}
|
|
14997
15783
|
|
|
14998
15784
|
/**
|
|
14999
|
-
* TypeScript types for the
|
|
15785
|
+
* TypeScript types for the Gemini API.
|
|
15000
15786
|
*
|
|
15001
|
-
* Answers come from the real
|
|
15002
|
-
* anonymously — no
|
|
15787
|
+
* Answers come from the real gemini.google.com web surface (not the Gemini
|
|
15788
|
+
* API), anonymously — no Google account or API key is involved.
|
|
15003
15789
|
*/
|
|
15004
|
-
/** Whether
|
|
15005
|
-
type
|
|
15790
|
+
/** Whether Gemini should ground the answer with a web search. */
|
|
15791
|
+
type GeminiWebSearchMode = "auto" | "force" | "off";
|
|
15006
15792
|
/** Parameters for the ask endpoint. */
|
|
15007
|
-
interface
|
|
15793
|
+
interface GeminiAskParams {
|
|
15008
15794
|
/** The prompt to send. Maximum 4096 characters. */
|
|
15009
15795
|
prompt: string;
|
|
15010
15796
|
/** ISO-3166 alpha-2 egress country (default: "US") */
|
|
15011
15797
|
country?: string;
|
|
15012
|
-
/** Whether
|
|
15013
|
-
web_search?:
|
|
15798
|
+
/** Whether Gemini should ground with web search (default: "auto") */
|
|
15799
|
+
web_search?: GeminiWebSearchMode;
|
|
15014
15800
|
}
|
|
15015
15801
|
/** Parameters for the brand-visibility endpoint. */
|
|
15016
|
-
interface
|
|
15802
|
+
interface GeminiBrandVisibilityParams {
|
|
15017
15803
|
/** The prompt to send. Maximum 4096 characters. */
|
|
15018
15804
|
prompt: string;
|
|
15019
15805
|
/** The brand name to look for in the answer. */
|
|
@@ -15026,21 +15812,16 @@ interface ChatGPTBrandVisibilityParams {
|
|
|
15026
15812
|
competitors?: string[];
|
|
15027
15813
|
/** ISO-3166 alpha-2 egress country (default: "US") */
|
|
15028
15814
|
country?: string;
|
|
15029
|
-
/** Whether
|
|
15030
|
-
web_search?:
|
|
15031
|
-
}
|
|
15032
|
-
/** Parameters for the models endpoint. */
|
|
15033
|
-
interface ChatGPTModelsParams {
|
|
15034
|
-
/** ISO-3166 alpha-2 egress country (default: "US") */
|
|
15035
|
-
country?: string;
|
|
15815
|
+
/** Whether Gemini should ground with web search (default: "force") */
|
|
15816
|
+
web_search?: GeminiWebSearchMode;
|
|
15036
15817
|
}
|
|
15037
15818
|
/**
|
|
15038
|
-
* A web source
|
|
15819
|
+
* A web source Gemini actually referenced in its answer.
|
|
15039
15820
|
*
|
|
15040
15821
|
* `start_index` / `end_index` are character offsets into the answer, so a
|
|
15041
15822
|
* citation can be anchored to the exact span of text it supports.
|
|
15042
15823
|
*/
|
|
15043
|
-
interface
|
|
15824
|
+
interface GeminiCitation {
|
|
15044
15825
|
/** Source URL */
|
|
15045
15826
|
url: string | null;
|
|
15046
15827
|
/** Page title */
|
|
@@ -15049,12 +15830,8 @@ interface ChatGPTCitation {
|
|
|
15049
15830
|
snippet: string | null;
|
|
15050
15831
|
/** Bare domain of the source (e.g. "reuters.com") */
|
|
15051
15832
|
domain: string | null;
|
|
15052
|
-
/** Publisher attribution string, when
|
|
15833
|
+
/** Publisher attribution string, when Gemini provides one */
|
|
15053
15834
|
attribution: string | null;
|
|
15054
|
-
/** Publication time as a Unix timestamp */
|
|
15055
|
-
pub_date_utc: number | null;
|
|
15056
|
-
/** Publication time as an ISO-8601 Z string */
|
|
15057
|
-
published_at: string | null;
|
|
15058
15835
|
/** Character offset into the answer where the supported span begins */
|
|
15059
15836
|
start_index: number | null;
|
|
15060
15837
|
/** Character offset into the answer where the supported span ends */
|
|
@@ -15062,8 +15839,8 @@ interface ChatGPTCitation {
|
|
|
15062
15839
|
/** The answer substring this source supports */
|
|
15063
15840
|
matched_text: string | null;
|
|
15064
15841
|
}
|
|
15065
|
-
/** One entry of the FULL set
|
|
15066
|
-
interface
|
|
15842
|
+
/** One entry of the FULL set Gemini retrieved — cited or not. */
|
|
15843
|
+
interface GeminiSearchResult {
|
|
15067
15844
|
/** Result URL */
|
|
15068
15845
|
url: string | null;
|
|
15069
15846
|
/** Page title */
|
|
@@ -15074,42 +15851,32 @@ interface ChatGPTSearchResult {
|
|
|
15074
15851
|
domain: string | null;
|
|
15075
15852
|
/** Publisher attribution string, when present */
|
|
15076
15853
|
attribution: string | null;
|
|
15077
|
-
/** Publication time as a Unix timestamp */
|
|
15078
|
-
pub_date_utc: number | null;
|
|
15079
|
-
/** Publication time as an ISO-8601 Z string */
|
|
15080
|
-
published_at: string | null;
|
|
15081
|
-
/** Index of this result in the retrieved set */
|
|
15082
|
-
ref_index: number | null;
|
|
15083
15854
|
/** Whether this result was actually referenced in the answer */
|
|
15084
15855
|
cited: boolean;
|
|
15085
15856
|
}
|
|
15086
|
-
/** A
|
|
15087
|
-
interface
|
|
15857
|
+
/** A Gemini answer with its sources. */
|
|
15858
|
+
interface GeminiAskResponse {
|
|
15088
15859
|
/** The prompt that was sent */
|
|
15089
15860
|
prompt: string;
|
|
15090
15861
|
/** The answer as plain text */
|
|
15091
15862
|
answer: string;
|
|
15092
15863
|
/** The answer as markdown, when available */
|
|
15093
15864
|
answer_markdown: string | null;
|
|
15094
|
-
/** Sources
|
|
15095
|
-
citations:
|
|
15865
|
+
/** Sources Gemini actually referenced */
|
|
15866
|
+
citations: GeminiCitation[];
|
|
15096
15867
|
/** The full retrieved set, cited or not */
|
|
15097
|
-
search_results:
|
|
15868
|
+
search_results: GeminiSearchResult[];
|
|
15098
15869
|
/** Distinct domains across the sources */
|
|
15099
15870
|
source_domains: string[];
|
|
15100
|
-
/** Whether ChatGPT ACTUALLY browsed the web */
|
|
15101
15871
|
/** True when the render budget expired mid-answer; `answer` is partial. */
|
|
15102
15872
|
truncated: boolean;
|
|
15873
|
+
/** Whether Gemini ACTUALLY grounded the answer with a web search */
|
|
15103
15874
|
web_search_triggered: boolean;
|
|
15104
|
-
/**
|
|
15105
|
-
/** Actual sub-queries ChatGPT issued to the search engine. */
|
|
15106
|
-
search_queries: string[];
|
|
15107
|
-
reference_tokens: string[];
|
|
15108
|
-
/** Model slug that answered (e.g. "gpt-5-5") */
|
|
15875
|
+
/** Model slug that answered (e.g. a Gemini Flash-Lite build) */
|
|
15109
15876
|
model: string | null;
|
|
15110
|
-
/**
|
|
15877
|
+
/** Gemini conversation identifier */
|
|
15111
15878
|
conversation_id: string | null;
|
|
15112
|
-
/**
|
|
15879
|
+
/** Gemini message identifier */
|
|
15113
15880
|
message_id: string | null;
|
|
15114
15881
|
/** ISO-3166 alpha-2 egress country used */
|
|
15115
15882
|
country: string;
|
|
@@ -15125,7 +15892,7 @@ interface ChatGPTAskResponse {
|
|
|
15125
15892
|
created_at: string | null;
|
|
15126
15893
|
}
|
|
15127
15894
|
/** How one competitor fared in the same answer. */
|
|
15128
|
-
interface
|
|
15895
|
+
interface GeminiCompetitorMention {
|
|
15129
15896
|
/** Competitor name as supplied in the request */
|
|
15130
15897
|
name: string;
|
|
15131
15898
|
/** Whether the competitor appears in the answer */
|
|
@@ -15139,8 +15906,8 @@ interface ChatGPTCompetitorMention {
|
|
|
15139
15906
|
/** Cited URLs attributed to this competitor */
|
|
15140
15907
|
cited_urls: string[];
|
|
15141
15908
|
}
|
|
15142
|
-
/** AEO/GEO brand analysis of a
|
|
15143
|
-
interface
|
|
15909
|
+
/** AEO/GEO brand analysis of a Gemini answer. */
|
|
15910
|
+
interface GeminiBrandVisibilityResponse {
|
|
15144
15911
|
/** The prompt that was sent */
|
|
15145
15912
|
prompt: string;
|
|
15146
15913
|
/** The brand that was analysed */
|
|
@@ -15164,14 +15931,14 @@ interface ChatGPTBrandVisibilityResponse {
|
|
|
15164
15931
|
/** 1-based rank of the first cited brand URL */
|
|
15165
15932
|
citation_rank: number | null;
|
|
15166
15933
|
/** Per-competitor breakdown */
|
|
15167
|
-
competitors:
|
|
15934
|
+
competitors: GeminiCompetitorMention[];
|
|
15168
15935
|
/** Answer text around the first brand mention */
|
|
15169
15936
|
excerpt: string | null;
|
|
15170
15937
|
/** The answer as plain text */
|
|
15171
15938
|
answer: string;
|
|
15172
|
-
/** Sources
|
|
15173
|
-
citations:
|
|
15174
|
-
/** Whether
|
|
15939
|
+
/** Sources Gemini actually referenced */
|
|
15940
|
+
citations: GeminiCitation[];
|
|
15941
|
+
/** Whether Gemini ACTUALLY grounded the answer with a web search */
|
|
15175
15942
|
web_search_triggered: boolean;
|
|
15176
15943
|
/** Model slug that answered */
|
|
15177
15944
|
model: string | null;
|
|
@@ -15184,42 +15951,22 @@ interface ChatGPTBrandVisibilityResponse {
|
|
|
15184
15951
|
/** Creation time as an ISO-8601 Z string */
|
|
15185
15952
|
created_at: string | null;
|
|
15186
15953
|
}
|
|
15187
|
-
/** One model offered by chatgpt.com. */
|
|
15188
|
-
interface ChatGPTModel {
|
|
15189
|
-
/** Model slug (e.g. "gpt-5-5") */
|
|
15190
|
-
slug: string;
|
|
15191
|
-
/** Human-readable name */
|
|
15192
|
-
title: string | null;
|
|
15193
|
-
/** Short description */
|
|
15194
|
-
description: string | null;
|
|
15195
|
-
/** Maximum context length, when advertised */
|
|
15196
|
-
max_tokens: number | null;
|
|
15197
|
-
/** Model tags */
|
|
15198
|
-
tags: string[];
|
|
15199
|
-
}
|
|
15200
|
-
/** The models chatgpt.com currently offers. */
|
|
15201
|
-
interface ChatGPTModelsResponse {
|
|
15202
|
-
/** Available models */
|
|
15203
|
-
models: ChatGPTModel[];
|
|
15204
|
-
/** Number of models */
|
|
15205
|
-
count: number;
|
|
15206
|
-
}
|
|
15207
15954
|
|
|
15208
15955
|
/**
|
|
15209
|
-
*
|
|
15956
|
+
* Gemini Ask API client.
|
|
15210
15957
|
*
|
|
15211
|
-
* Sends a prompt to the real
|
|
15212
|
-
* JSON, including the web sources
|
|
15958
|
+
* Sends a prompt to the real gemini.google.com and returns the answer as
|
|
15959
|
+
* structured JSON, including the web sources Gemini cited.
|
|
15213
15960
|
*/
|
|
15214
15961
|
|
|
15215
15962
|
/**
|
|
15216
|
-
* Client for the
|
|
15963
|
+
* Client for the Gemini ask endpoint.
|
|
15217
15964
|
*
|
|
15218
15965
|
* @example
|
|
15219
15966
|
* ```typescript
|
|
15220
15967
|
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
15221
15968
|
*
|
|
15222
|
-
* const result = await client.
|
|
15969
|
+
* const result = await client.gemini.ask.ask({
|
|
15223
15970
|
* prompt: "best running shoes 2026",
|
|
15224
15971
|
* });
|
|
15225
15972
|
* console.log(result.answer);
|
|
@@ -15232,9 +15979,7 @@ declare class AskClient {
|
|
|
15232
15979
|
private readonly client;
|
|
15233
15980
|
constructor(client: BaseClient);
|
|
15234
15981
|
/**
|
|
15235
|
-
* Ask
|
|
15236
|
-
*
|
|
15237
|
-
* Costs 20 credits. Typical latency is 20-25s ungrounded, 30-70s with web search.
|
|
15982
|
+
* Ask Gemini a question and get the answer with its sources.
|
|
15238
15983
|
*
|
|
15239
15984
|
* @param params - Ask parameters.
|
|
15240
15985
|
* @param params.prompt - The prompt to send (max 4096 characters).
|
|
@@ -15244,7 +15989,7 @@ declare class AskClient {
|
|
|
15244
15989
|
*
|
|
15245
15990
|
* @example
|
|
15246
15991
|
* ```typescript
|
|
15247
|
-
* const result = await client.
|
|
15992
|
+
* const result = await client.gemini.ask.ask({
|
|
15248
15993
|
* prompt: "what is the best CRM for a 10-person startup?",
|
|
15249
15994
|
* country: "GB",
|
|
15250
15995
|
* web_search: "force",
|
|
@@ -15255,24 +16000,24 @@ declare class AskClient {
|
|
|
15255
16000
|
* }
|
|
15256
16001
|
* ```
|
|
15257
16002
|
*/
|
|
15258
|
-
ask(params:
|
|
16003
|
+
ask(params: GeminiAskParams): Promise<GeminiAskResponse>;
|
|
15259
16004
|
}
|
|
15260
16005
|
|
|
15261
16006
|
/**
|
|
15262
|
-
*
|
|
16007
|
+
* Gemini Brand Visibility API client.
|
|
15263
16008
|
*
|
|
15264
|
-
* Answer-engine-optimisation (AEO/GEO) analysis: ask
|
|
16009
|
+
* Answer-engine-optimisation (AEO/GEO) analysis: ask Gemini a prompt and get
|
|
15265
16010
|
* back how a brand fares in the answer, next to its competitors.
|
|
15266
16011
|
*/
|
|
15267
16012
|
|
|
15268
16013
|
/**
|
|
15269
|
-
* Client for the
|
|
16014
|
+
* Client for the Gemini brand-visibility endpoint.
|
|
15270
16015
|
*
|
|
15271
16016
|
* @example
|
|
15272
16017
|
* ```typescript
|
|
15273
16018
|
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
15274
16019
|
*
|
|
15275
|
-
* const result = await client.
|
|
16020
|
+
* const result = await client.gemini.brand.visibility({
|
|
15276
16021
|
* prompt: "best web scraping API",
|
|
15277
16022
|
* brand: "ScrapeBadger",
|
|
15278
16023
|
* domain: "scrapebadger.com",
|
|
@@ -15285,9 +16030,7 @@ declare class BrandClient {
|
|
|
15285
16030
|
private readonly client;
|
|
15286
16031
|
constructor(client: BaseClient);
|
|
15287
16032
|
/**
|
|
15288
|
-
* Analyse how a brand shows up in
|
|
15289
|
-
*
|
|
15290
|
-
* Costs 25 credits.
|
|
16033
|
+
* Analyse how a brand shows up in Gemini's answer to a prompt.
|
|
15291
16034
|
*
|
|
15292
16035
|
* @param params - Brand-visibility parameters.
|
|
15293
16036
|
* @param params.prompt - The prompt to send (max 4096 characters).
|
|
@@ -15301,7 +16044,7 @@ declare class BrandClient {
|
|
|
15301
16044
|
*
|
|
15302
16045
|
* @example
|
|
15303
16046
|
* ```typescript
|
|
15304
|
-
* const result = await client.
|
|
16047
|
+
* const result = await client.gemini.brand.visibility({
|
|
15305
16048
|
* prompt: "which proxy provider should I use?",
|
|
15306
16049
|
* brand: "ScrapeBadger",
|
|
15307
16050
|
* domain: "scrapebadger.com",
|
|
@@ -15315,96 +16058,48 @@ declare class BrandClient {
|
|
|
15315
16058
|
* }
|
|
15316
16059
|
* ```
|
|
15317
16060
|
*/
|
|
15318
|
-
visibility(params:
|
|
15319
|
-
}
|
|
15320
|
-
|
|
15321
|
-
/**
|
|
15322
|
-
* ChatGPT Reference Data API client.
|
|
15323
|
-
*
|
|
15324
|
-
* Provides the list of models chatgpt.com currently offers.
|
|
15325
|
-
*/
|
|
15326
|
-
|
|
15327
|
-
/**
|
|
15328
|
-
* Client for ChatGPT reference data endpoints.
|
|
15329
|
-
*
|
|
15330
|
-
* @example
|
|
15331
|
-
* ```typescript
|
|
15332
|
-
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
15333
|
-
*
|
|
15334
|
-
* const result = await client.chatgpt.reference.models();
|
|
15335
|
-
* for (const model of result.models) {
|
|
15336
|
-
* console.log(`${model.slug}: ${model.title}`);
|
|
15337
|
-
* }
|
|
15338
|
-
* ```
|
|
15339
|
-
*/
|
|
15340
|
-
declare class ReferenceClient {
|
|
15341
|
-
private readonly client;
|
|
15342
|
-
constructor(client: BaseClient);
|
|
15343
|
-
/**
|
|
15344
|
-
* Get the models chatgpt.com currently offers.
|
|
15345
|
-
*
|
|
15346
|
-
* Costs 1 credit.
|
|
15347
|
-
*
|
|
15348
|
-
* @param params - Optional parameters.
|
|
15349
|
-
* @param params.country - ISO-3166 alpha-2 egress country (default: "US").
|
|
15350
|
-
* @returns The available models.
|
|
15351
|
-
*
|
|
15352
|
-
* @example
|
|
15353
|
-
* ```typescript
|
|
15354
|
-
* const result = await client.chatgpt.reference.models({ country: "GB" });
|
|
15355
|
-
* console.log(`${result.count} models`);
|
|
15356
|
-
* for (const model of result.models) {
|
|
15357
|
-
* console.log(`${model.slug}: ${model.max_tokens} tokens`);
|
|
15358
|
-
* }
|
|
15359
|
-
* ```
|
|
15360
|
-
*/
|
|
15361
|
-
models(params?: ChatGPTModelsParams): Promise<ChatGPTModelsResponse>;
|
|
16061
|
+
visibility(params: GeminiBrandVisibilityParams): Promise<GeminiBrandVisibilityResponse>;
|
|
15362
16062
|
}
|
|
15363
16063
|
|
|
15364
16064
|
/**
|
|
15365
|
-
*
|
|
16065
|
+
* Gemini API client.
|
|
15366
16066
|
*
|
|
15367
|
-
* Provides access to all
|
|
16067
|
+
* Provides access to all Gemini API endpoints through specialized sub-clients.
|
|
15368
16068
|
*/
|
|
15369
16069
|
|
|
15370
16070
|
/**
|
|
15371
|
-
*
|
|
16071
|
+
* Gemini API client with access to all Gemini endpoints.
|
|
15372
16072
|
*
|
|
15373
|
-
* Prompts the real
|
|
15374
|
-
* the answer as structured JSON including the web sources
|
|
16073
|
+
* Prompts the real gemini.google.com — not the Gemini API — anonymously, and
|
|
16074
|
+
* returns the answer as structured JSON including the web sources Gemini
|
|
16075
|
+
* cited.
|
|
15375
16076
|
*
|
|
15376
16077
|
* Sub-clients:
|
|
15377
16078
|
* - `ask` - Send a prompt and get the answer with its sources
|
|
15378
16079
|
* - `brand` - AEO/GEO brand-visibility analysis
|
|
15379
|
-
* - `reference` - Reference data (available models)
|
|
15380
16080
|
*
|
|
15381
16081
|
* @example
|
|
15382
16082
|
* ```typescript
|
|
15383
16083
|
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
15384
16084
|
*
|
|
15385
16085
|
* // Ask a question
|
|
15386
|
-
* const result = await client.
|
|
16086
|
+
* const result = await client.gemini.ask.ask({ prompt: "best running shoes 2026" });
|
|
15387
16087
|
*
|
|
15388
16088
|
* // Brand visibility
|
|
15389
|
-
* const brand = await client.
|
|
16089
|
+
* const brand = await client.gemini.brand.visibility({
|
|
15390
16090
|
* prompt: "best web scraping API",
|
|
15391
16091
|
* brand: "ScrapeBadger",
|
|
15392
16092
|
* competitors: ["Bright Data"],
|
|
15393
16093
|
* });
|
|
15394
|
-
*
|
|
15395
|
-
* // Available models
|
|
15396
|
-
* const models = await client.chatgpt.reference.models();
|
|
15397
16094
|
* ```
|
|
15398
16095
|
*/
|
|
15399
|
-
declare class
|
|
15400
|
-
/** Client for asking
|
|
16096
|
+
declare class GeminiClient {
|
|
16097
|
+
/** Client for asking Gemini a question */
|
|
15401
16098
|
readonly ask: AskClient;
|
|
15402
16099
|
/** Client for AEO/GEO brand-visibility analysis */
|
|
15403
16100
|
readonly brand: BrandClient;
|
|
15404
|
-
/** Client for reference data (available models) */
|
|
15405
|
-
readonly reference: ReferenceClient;
|
|
15406
16101
|
/**
|
|
15407
|
-
* Create a new
|
|
16102
|
+
* Create a new Gemini client.
|
|
15408
16103
|
*
|
|
15409
16104
|
* @param client - The base HTTP client for making requests.
|
|
15410
16105
|
*/
|
|
@@ -15483,6 +16178,8 @@ declare class ScrapeBadger {
|
|
|
15483
16178
|
readonly bing: BingClient;
|
|
15484
16179
|
/** Baidu scraper API client — search, news, images, autocomplete (baidu.com, China's #1 search engine) */
|
|
15485
16180
|
readonly baidu: BaiduClient;
|
|
16181
|
+
/** Yahoo scraper API client — 6 endpoints (search, images, videos, news, autocomplete, markets) across 35 markets */
|
|
16182
|
+
readonly yahoo: YahooClient;
|
|
15486
16183
|
/** Yandex scraper API client — web search, image search, reverse-image (CBIR), markets (tr/com/ru/by/kz/uz) */
|
|
15487
16184
|
readonly yandex: YandexClient;
|
|
15488
16185
|
/** YouTube scraper API client — 39 endpoints */
|
|
@@ -15503,6 +16200,8 @@ declare class ScrapeBadger {
|
|
|
15503
16200
|
readonly linkedin: LinkedInClient;
|
|
15504
16201
|
/** ChatGPT scraper API client — ask, brand visibility, models (the real chatgpt.com, anonymous) */
|
|
15505
16202
|
readonly chatgpt: ChatGPTClient;
|
|
16203
|
+
/** Gemini scraper API client — ask, brand visibility (the real gemini.google.com, anonymous) */
|
|
16204
|
+
readonly gemini: GeminiClient;
|
|
15506
16205
|
/**
|
|
15507
16206
|
* Create a new ScrapeBadger client.
|
|
15508
16207
|
*
|
|
@@ -15531,4 +16230,4 @@ declare class ScrapeBadger {
|
|
|
15531
16230
|
constructor(config?: Partial<ScrapeBadgerConfig>);
|
|
15532
16231
|
}
|
|
15533
16232
|
|
|
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 };
|
|
16233
|
+
export { type AiListItem, type AiModeResponse, type AiModeSearchParams, type AiReference, type AiTableRow, type AiTextBlock, type AmazonAutocompleteParams, type AutocompleteResponse$4 as AmazonAutocompleteResponse, type AutocompleteSuggestion$1 as AmazonAutocompleteSuggestion, type Bestseller as AmazonBestseller, type BestsellersRankEntry as AmazonBestsellersRankEntry, type BestsellersResponse as AmazonBestsellersResponse, type Buybox as AmazonBuybox, type CategoriesResponse$3 as AmazonCategoriesResponse, type CategoryInfo$1 as AmazonCategoryInfo, type AmazonCategoryParams, type CategoryResponse$1 as AmazonCategoryResponse, AmazonClient, type Coupon as AmazonCoupon, type Deal as AmazonDeal, type AmazonDealsParams, type DealsResponse as AmazonDealsResponse, type Delivery as AmazonDelivery, type FeedbackWindow as AmazonFeedbackWindow, ListingsClient$1 as AmazonListingsClient, type AmazonListingsParams, type MarketInfo$5 as AmazonMarketInfo, type MarketsResponse$8 as AmazonMarketsResponse, type NewReleasesResponse as AmazonNewReleasesResponse, type Offer as AmazonOffer, type OfferCondition as AmazonOfferCondition, type OfferDelivery as AmazonOfferDelivery, type OfferSeller as AmazonOfferSeller, type AmazonOffersParams, type OffersResponse as AmazonOffersResponse, type Pagination$3 as AmazonPagination, type AmazonPrice, type Product as AmazonProduct, type ProductBadges as AmazonProductBadges, type ProductDeal as AmazonProductDeal, type ProductDetailResponse as AmazonProductDetailResponse, type AmazonProductParams, type ProductVariant as AmazonProductVariant, ProductsClient$2 as AmazonProductsClient, type RatingBreakdown$1 as AmazonRatingBreakdown, ReferenceClient$e as AmazonReferenceClient, type RelatedProduct as AmazonRelatedProduct, type Review$1 as AmazonReview, type ReviewProfile as AmazonReviewProfile, type AmazonReviewsParams, type ReviewsResponse$1 as AmazonReviewsResponse, SearchClient$d as AmazonSearchClient, type AmazonSearchParams, type SearchResponse$7 as AmazonSearchResponse, type SearchResult$3 as AmazonSearchResult, type Seller$2 as AmazonSeller, type SellerFeedbackEntry as AmazonSellerFeedbackEntry, type SellerFeedbackResponse$1 as AmazonSellerFeedbackResponse, type SellerFeedbackSummary as AmazonSellerFeedbackSummary, type AmazonSellerListParams, type AmazonSellerParams, type SellerProductsResponse as AmazonSellerProductsResponse, type SellerProfileResponse$1 as AmazonSellerProfileResponse, SellersClient$3 as AmazonSellersClient, ApartmentsClient, type FloorPlan as ApartmentsFloorPlan, type Property$3 as ApartmentsProperty, type ApartmentsPropertyParams, type School$4 as ApartmentsSchool, type ApartmentsSearchParams, type SearchResponse$9 as ApartmentsSearchResponse, type SearchResult$4 as ApartmentsSearchResult, type Unit as ApartmentsUnit, type AutocompleteParams, type BaiduAutocompleteResponse, BaiduClient, type BaiduImageResult, type BaiduImagesParams, type BaiduImagesResponse, type BaiduLanguage, type BaiduNewsParams, type BaiduNewsResponse, type BaiduNewsResult, type BaiduNewsSort, type BaiduOrganicResult, type BaiduRelatedSearch, type BaiduSearchParams, type BaiduSearchResponse, type BaiduSuggestion, type BingAd, type BingAutocompleteParams, type BingAutocompleteResponse, BingClient, type BingDeepLink, type BingFreshness, type BingImageResult, type BingImagesParams, type BingImagesResponse, type BingMarket, type BingMarketsResponse, MediaClient$1 as BingMediaClient, type BingNewsArticle, NewsClient$1 as BingNewsClient, type BingNewsParams, type BingNewsResponse, type BingOrganicResult, ReferenceClient$8 as BingReferenceClient, type BingSafeSearch, SearchClient$7 as BingSearchClient, type BingSearchParams, type BingSearchResponse, type BingVideoResult, type BingVideosParams, type BingVideosResponse, AskClient$1 as ChatGPTAskClient, type ChatGPTAskParams, type ChatGPTAskResponse, BrandClient$1 as ChatGPTBrandClient, type ChatGPTBrandVisibilityParams, type ChatGPTBrandVisibilityResponse, type ChatGPTCitation, ChatGPTClient, type ChatGPTCompetitorMention, type ChatGPTModel, type ChatGPTModelsParams, type ChatGPTModelsResponse, ReferenceClient as ChatGPTReferenceClient, type ChatGPTSearchResult, type ChatGPTWebSearchMode, type DepopCard, DepopClient, type DepopMarket, type DepopMarketsResponse, type DepopProductDetail, type DepopProductParams, type SearchMeta as DepopSearchMeta, type DepopSearchParams, type DepopSearchResponse, type DepopShopProfile, type DepopUserParams, type DepopUserProductsParams, type DepopUserProductsResponse, type DetectOptions, type DetectResult, type DomainPostsResponse, type DuckDuckGoAbstract, type DuckDuckGoAutocompleteParams, type DuckDuckGoAutocompleteResponse, DuckDuckGoClient, type DuckDuckGoImageResult, type DuckDuckGoImagesParams, type DuckDuckGoImagesResponse, type DuckDuckGoInstantResponse, MediaClient$2 as DuckDuckGoMediaClient, type DuckDuckGoNewsParams, type DuckDuckGoNewsResponse, type DuckDuckGoNewsResult, type DuckDuckGoRaw, ReferenceClient$9 as DuckDuckGoReferenceClient, type DuckDuckGoRegion, type DuckDuckGoRegionsResponse, type DuckDuckGoRelatedTopic, SearchClient$8 as DuckDuckGoSearchClient, type DuckDuckGoSearchParams, type DuckDuckGoSearchResponse, type DuckDuckGoSearchResult, type DuckDuckGoVideoResult, type DuckDuckGoVideosParams, type DuckDuckGoVideosResponse, type EbayAutocompleteParams, type AutocompleteResponse$3 as EbayAutocompleteResponse, type AutocompleteSuggestion as EbayAutocompleteSuggestion, type EbayBuyingFormat, CategoriesClient as EbayCategoriesClient, type CategoriesResponse$2 as EbayCategoriesResponse, type CategoryInfo as EbayCategoryInfo, type EbayCategoryParams, type CategoryResponse as EbayCategoryResponse, EbayClient, type EbayCompletedParams, type EbayCondition, type FeedbackBreakdown as EbayFeedbackBreakdown, type FeedbackEntry as EbayFeedbackEntry, type Image as EbayImage, type Item as EbayItem, type ItemDetailResponse as EbayItemDetailResponse, type EbayItemParams, type ItemSeller as EbayItemSeller, ItemsClient as EbayItemsClient, type MarketInfo$4 as EbayMarketInfo, type MarketsResponse$6 as EbayMarketsResponse, type Pagination$2 as EbayPagination, type EbayPrice, type RatingHistogram as EbayRatingHistogram, ReferenceClient$b as EbayReferenceClient, type ReturnsPolicy as EbayReturnsPolicy, type Review as EbayReview, type EbayReviewsParams, type ReviewsResponse as EbayReviewsResponse, SearchClient$a as EbaySearchClient, type EbaySearchParams, type SearchResponse$6 as EbaySearchResponse, type SearchResult$1 as EbaySearchResult, type Seller$1 as EbaySeller, type EbaySellerFeedbackParams, type SellerFeedbackResponse as EbaySellerFeedbackResponse, type EbaySellerItemsParams, type SellerItemsResponse as EbaySellerItemsResponse, type EbaySellerParams, type SellerProfileResponse as EbaySellerProfileResponse, SellersClient$2 as EbaySellersClient, type ShippingOption as EbayShippingOption, type EbaySortBy, type FinanceQuoteParams, type FlightsSearchParams, type FlightsSortBy, type FlightsStopsFilter, type FlightsTravelClass, type FlightsTripType, AskClient as GeminiAskClient, type GeminiAskParams, type GeminiAskResponse, BrandClient as GeminiBrandClient, type GeminiBrandVisibilityParams, type GeminiBrandVisibilityResponse, type GeminiCitation, GeminiClient, type GeminiCompetitorMention, type GeminiSearchResult, type GeminiWebSearchMode, AiModeClient as GoogleAiModeClient, AutocompleteClient as GoogleAutocompleteClient, GoogleClient, FinanceClient as GoogleFinanceClient, FlightsClient as GoogleFlightsClient, HotelsClient as GoogleHotelsClient, ImagesClient$1 as GoogleImagesClient, JobsClient as GoogleJobsClient, LensClient as GoogleLensClient, MapsClient as GoogleMapsClient, NewsClient$2 as GoogleNewsClient, PatentsClient as GooglePatentsClient, ProductsClient$3 as GoogleProductsClient, type GoogleResponse, ScholarClient as GoogleScholarClient, SearchClient$g as GoogleSearchClient, type GoogleSearchParams, ShoppingClient as GoogleShoppingClient, ShortsClient$1 as GoogleShortsClient, TrendsClient as GoogleTrendsClient, VideosClient$2 as GoogleVideosClient, type HotelsDetailsParams, type HotelsSearchParams, type ImagesSearchParams, type Agency as ImmobiliareAgency, type AgencyAgent as ImmobiliareAgencyAgent, type ImmobiliareAgencyListingsParams, type AgencyListingsResponse as ImmobiliareAgencyListingsResponse, type ImmobiliareAgencyParams, type AgencyProfile as ImmobiliareAgencyProfile, type Agent as ImmobiliareAgent, type ImmobiliareAutocompleteParams, type ImmobiliareCategory, ImmobiliareClient, type ImmobiliareContract, type Feature as ImmobiliareFeature, type Listing as ImmobiliareListing, type ImmobiliareListingParams, type Location as ImmobiliareLocation, type Market as ImmobiliareMarket, type ImmobiliareMarketCode, type MarketsResponse$1 as ImmobiliareMarketsResponse, type Photo as ImmobiliarePhoto, type Price as ImmobiliarePrice, type ImmobiliarePriceStatsParams, type PriceStatsPoint as ImmobiliarePriceStatsPoint, type PriceStatsResponse as ImmobiliarePriceStatsResponse, type PropertyUnit as ImmobiliarePropertyUnit, type ReferenceResponse as ImmobiliareReferenceResponse, type RelatedSearch as ImmobiliareRelatedSearch, type ImmobiliareSearchParams, type SearchResponse$1 as ImmobiliareSearchResponse, type ImmobiliareSort, type SuggestResponse as ImmobiliareSuggestResponse, type Suggestion as ImmobiliareSuggestion, type Audio as InstagramAudio, AudioClient as InstagramAudioClient, type BioLink as InstagramBioLink, InstagramClient, type Comment$1 as InstagramComment, type Hashtag as InstagramHashtag, HashtagsClient$1 as InstagramHashtagsClient, type Highlight as InstagramHighlight, type Location$2 as InstagramLocation, LocationsClient as InstagramLocationsClient, type Media as InstagramMedia, MediaClient$3 as InstagramMediaClient, type Oembed as InstagramOembed, type Paginated as InstagramPaginated, type Resource as InstagramResource, SearchClient$e as InstagramSearchClient, type SearchTopResponse as InstagramSearchTopResponse, type User as InstagramUser, type UserAbout as InstagramUserAbout, type UserShort as InstagramUserShort, UsersClient$1 as InstagramUsersClient, type JobsSearchParams, type Ad as LeboncoinAd, type AdResponse as LeboncoinAdResponse, type LeboncoinAdType, AdsClient as LeboncoinAdsClient, type Attribute as LeboncoinAttribute, type CategoriesResponse as LeboncoinCategoriesResponse, type Category as LeboncoinCategory, LeboncoinClient, type Department as LeboncoinDepartment, type LeboncoinDepartmentsParams, type DepartmentsResponse as LeboncoinDepartmentsResponse, type FeedbackScores as LeboncoinFeedbackScores, type Images as LeboncoinImages, type Location$1 as LeboncoinLocation, type LocationSearchResponse as LeboncoinLocationSearchResponse, type LocationSuggestion as LeboncoinLocationSuggestion, type MarketsResponse$3 as LeboncoinMarketsResponse, type Owner as LeboncoinOwner, type LeboncoinOwnerType, ReferenceClient$3 as LeboncoinReferenceClient, type Region as LeboncoinRegion, type RegionsResponse as LeboncoinRegionsResponse, SearchClient$2 as LeboncoinSearchClient, type LeboncoinSearchParams, type SearchResponse$3 as LeboncoinSearchResponse, type Seller as LeboncoinSeller, type LeboncoinSellerListingsParams, type SellerListingsResponse as LeboncoinSellerListingsResponse, type SellerResponse as LeboncoinSellerResponse, SellersClient as LeboncoinSellersClient, type LeboncoinSimilarParams, type SimilarResponse as LeboncoinSimilarResponse, type LeboncoinSortBy, type StoreRatingReview as LeboncoinStoreRatingReview, type LensSearchParams, type Address as LinkedInAddress, LinkedInClient, type Company as LinkedInCompany, type LinkedInCompanyJobsParams, type LinkedInCountryParams, type CourseInstructor as LinkedInCourseInstructor, type LinkedInGeoSuggestResponse, type GeoSuggestion as LinkedInGeoSuggestion, type LinkedInHealthResponse, type JobCard as LinkedInJobCard, type JobDetail as LinkedInJobDetail, type JobsSearchMeta as LinkedInJobsSearchMeta, type LinkedInJobsSearchParams, type LinkedInJobsSearchResponse, type LearningCourse as LinkedInLearningCourse, type Post as LinkedInPost, type PostComment as LinkedInPostComment, type Profile as LinkedInProfile, type ProfileEducation as LinkedInProfileEducation, type ProfileExperience as LinkedInProfileExperience, type School as LinkedInSchool, type Broker as LoopNetBroker, type LoopNetBrokerParams, type BrokerProfile as LoopNetBrokerProfile, type BrokerResponse as LoopNetBrokerResponse, BrokersClient as LoopNetBrokersClient, LoopNetClient, type ListingCard as LoopNetListingCard, type ListingDetail as LoopNetListingDetail, type LoopNetListingParams, type ListingResponse as LoopNetListingResponse, type LoopNetListingType, ListingsClient as LoopNetListingsClient, type LoopNetMarket, type MarketInfo as LoopNetMarketInfo, type MarketsResponse as LoopNetMarketsResponse, type Pagination as LoopNetPagination, type LoopNetPriceType, type PropertyTypeInfo as LoopNetPropertyTypeInfo, type PropertyTypesResponse as LoopNetPropertyTypesResponse, ReferenceClient$1 as LoopNetReferenceClient, SearchClient as LoopNetSearchClient, type LoopNetSearchParams, type SearchResponse as LoopNetSearchResponse, type Space as LoopNetSpace, type MapsPhotosParams, type MapsPlaceParams, type MapsPostsParams, type MapsReviewsParams, type MapsSearchParams, type NewsSearchParams, type NewsTopicsParams, type NewsTrendingParams, type PatentsDetailParams, type PatentsSearchParams, type PopularSubredditsResponse, type PostCommentsResponse, type PostDetailResponse, type PostDuplicatesResponse, type ProductsDetailParams, type Address$2 as RealtorAddress, type Agent$2 as RealtorAgent, type RealtorAutocompleteOptions, type AutocompleteResponse$1 as RealtorAutocompleteResponse, RealtorClient, type Coordinate as RealtorCoordinate, type DetailGroup as RealtorDetailGroup, type Estimate as RealtorEstimate, type Flags as RealtorFlags, type RealtorMarket, type MarketInfo$2 as RealtorMarketInfo, type MarketsResponse$4 as RealtorMarketsResponse, type Office as RealtorOffice, type OpenHouse$1 as RealtorOpenHouse, type Phone as RealtorPhone, type Photo$2 as RealtorPhoto, type PriceEvent as RealtorPriceEvent, PropertiesClient$1 as RealtorPropertiesClient, type Property$1 as RealtorProperty, type PropertyDetail as RealtorPropertyDetail, type RealtorPropertyOptions, ReferenceClient$4 as RealtorReferenceClient, type School$2 as RealtorSchool, SearchClient$3 as RealtorSearchClient, type RealtorSearchOptions, type SearchResponse$4 as RealtorSearchResponse, type RealtorSort, type RealtorStatus, type Suggestion$1 as RealtorSuggestion, type TaxRecord as RealtorTaxRecord, type RedditAward, RedditClient, type RedditComment, type RedditModeratedSubreddit, type RedditPagination, type RedditPost, PostsClient as RedditPostsClient, type RedditRule, SearchClient$f as RedditSearchClient, type RedditSubreddit, SubredditsClient as RedditSubredditsClient, type RedditTrophy, type RedditUser, type UserProfileResponse as RedditUserProfileResponse, type RedditUserSubreddit, UsersClient$2 as RedditUsersClient, type RedditWikiPage, type Address$3 as RedfinAddress, type Agent$3 as RedfinAgent, type RedfinAgentParams, type AgentResponse$1 as RedfinAgentResponse, type AgentReview$1 as RedfinAgentReview, type AmenityGroup as RedfinAmenityGroup, type AutocompleteResponse$5 as RedfinAutocompleteResponse, type AutocompleteResult$1 as RedfinAutocompleteResult, RedfinClient, type DataSource as RedfinDataSource, type RedfinHomeType, type LatLong$1 as RedfinLatLong, type Listing$2 as RedfinListing, type MapBounds$1 as RedfinMapBounds, type MarketInfo$6 as RedfinMarketInfo, type MarketsResponse$9 as RedfinMarketsResponse, type Pagination$4 as RedfinPagination, type Photo$3 as RedfinPhoto, type PriceHistoryEvent$1 as RedfinPriceHistoryEvent, type Property$2 as RedfinProperty, type RedfinPropertyParams, type PropertyResponse$1 as RedfinPropertyResponse, type RegionSelection$1 as RedfinRegionSelection, type Sash as RedfinSash, type School$3 as RedfinSchool, type SearchMedian as RedfinSearchMedian, type RedfinSearchParams, type SearchResponse$8 as RedfinSearchResponse, type RedfinSort, type TaxHistoryEvent$1 as RedfinTaxHistoryEvent, type ScholarAuthorCitationParams, type ScholarAuthorParams, type ScholarCiteParams, type ScholarProfilesParams, type ScholarSearchParams, ScrapeBadger, ScrapeBadgerConfig, type ScrapeOptions, type ScrapeResult, type SearchPostsResponse, type SearchSubredditsResponse, type SearchUsersResponse, type ShopeeCategoriesParams, type ShopeeCategoryItemsParams, type CategoryNode as ShopeeCategoryNode, type CategoryTree as ShopeeCategoryTree, ShopeeClient, type ShopeeMarket, type MarketsResponse$7 as ShopeeMarketsResponse, type ShopeeProduct, type ProductAttribute as ShopeeProductAttribute, type ProductImage as ShopeeProductImage, type ProductModel as ShopeeProductModel, type ShopeeProductParams, ProductsClient$1 as ShopeeProductsClient, type RatingBreakdown as ShopeeRatingBreakdown, ReferenceClient$d as ShopeeReferenceClient, type ShopeeReview, type ReviewReply as ShopeeReviewReply, type ReviewSummary as ShopeeReviewSummary, ReviewsClient as ShopeeReviewsClient, type ShopeeReviewsParams, type ReviewsResult as ShopeeReviewsResult, SearchClient$c as ShopeeSearchClient, type ShopeeSearchParams, type SearchResult$2 as ShopeeSearchResult, type ShoppingClickParams, type ShoppingOffersParams, type ShoppingProductParams, type ShoppingSearchParams, type ShortsSearchParams, type SubredditDetailResponse, type SubredditPostsResponse, type SubredditRulesResponse, type SubredditWikiPagesResponse, type TikTokAd, type AdLibraryPage as TikTokAdLibraryPage, type AdLibrarySearchResponse as TikTokAdLibrarySearchResponse, type TikTokAdSearchParams, type TikTokAdVideo, AdsClient$1 as TikTokAdsClient, type TikTokAnchor, type TikTokAuthor, type TikTokChallenge, TikTokClient, type TikTokComment, type CommentListResponse as TikTokCommentListResponse, type TikTokCommentRepliesParams, type TikTokCommentsParams, type TikTokCursorPage, type TikTokEffectSticker, type TikTokHashtag, type TikTokHashtagParams, type HashtagResponse$1 as TikTokHashtagResponse, type HashtagSearchResponse as TikTokHashtagSearchResponse, HashtagsClient as TikTokHashtagsClient, type TikTokListVideosParams, type TikTokMusic, MusicClient$1 as TikTokMusicClient, type TikTokMusicParams, type MusicResponse as TikTokMusicResponse, type TikTokOEmbed, type TikTokOEmbedParams, type ProfileResponse as TikTokProfileResponse, ReferenceClient$c as TikTokReferenceClient, type RegionInfo as TikTokRegionInfo, type RegionsResponse$2 as TikTokRegionsResponse, type TikTokRelatedParams, SearchClient$b as TikTokSearchClient, type TikTokSearchParams, type TikTokStats, type TikTokSubtitle, type TikTokTextExtra, type TikTokTranscriptParams, type TranscriptResponse as TikTokTranscriptResponse, TrendingClient$1 as TikTokTrendingClient, type TikTokTrendingHashtag, type TrendingHashtagsResponse as TikTokTrendingHashtagsResponse, type TikTokTrendingParams, type TikTokTrendingSong, type TrendingSongsResponse as TikTokTrendingSongsResponse, type TikTokTrendingVideosParams, type TikTokUser, type TikTokUserListParams, type UserListResponse as TikTokUserListResponse, type TikTokUserParams, type UserSearchResponse as TikTokUserSearchResponse, type TikTokUserStats, UsersClient as TikTokUsersClient, type TikTokVideo, type TikTokVideoControl, type VideoListResponse as TikTokVideoListResponse, type TikTokVideoMeta, type TikTokVideoParams, type VideoResponse as TikTokVideoResponse, type TikTokVideoStatus, VideosClient$1 as TikTokVideosClient, type TrendingPostsResponse, type TrendsAutocompleteParams, type TrendsInterestParams, type TrendsRegionsParams, type TrendsRelatedParams, type TrendsTrendingParams, TwitterClient, type UserCommentsResponse, type UserModeratedResponse, type UserPostsResponse, type UserTrophiesResponse, type VideosSearchParams, type VintedBrand, type BrandsResponse as VintedBrandsResponse, VintedClient, type VintedColor, type ColorsResponse as VintedColorsResponse, type VintedItemDetail, type ItemDetailResponse$1 as VintedItemDetailResponse, type VintedItemSummary, ItemsClient$1 as VintedItemsClient, type VintedMarket, type MarketsResponse$a as VintedMarketsResponse, type VintedPagination, type VintedPhoto, type VintedPrice, ReferenceClient$f as VintedReferenceClient, SearchClient$h as VintedSearchClient, type VintedSearchParams, type SearchResponse$a as VintedSearchResponse, type VintedSellerSummary, type VintedStatus, type StatusesResponse as VintedStatusesResponse, type UserItemsResponse as VintedUserItemsResponse, type VintedUserProfile, type UserProfileResponse$1 as VintedUserProfileResponse, type VintedUserSummary, UsersClient$3 as VintedUsersClient, type WalmartAutocompleteResponse, type WalmartBadge, type WalmartBreadcrumb, type WalmartCategoryParams, WalmartClient, type WalmartConditionOffer, type WalmartDealsParams, type WalmartEmbeddedSeller, type WalmartFulfillmentOption, type WalmartFulfillmentSummary, type WalmartImage, type WalmartLocationContext, type WalmartMarket, type WalmartMarketsResponse, type WalmartNameValue, type WalmartNutritionFacts, type WalmartPrice, type WalmartPriceInfo, type WalmartPriceRange, type WalmartProduct, ProductsClient as WalmartProductsClient, type WalmartPromotion, type WalmartRatingDistribution, type WalmartRaw, ReferenceClient$a as WalmartReferenceClient, type WalmartReturnPolicy, type WalmartReview, type WalmartReviewSort, type WalmartReviewsParams, type WalmartReviewsResponse, SearchClient$9 as WalmartSearchClient, type WalmartSearchItem, type WalmartSearchParams, type WalmartSearchResponse, type WalmartSeller, type WalmartSellerProductsParams, type WalmartSellerResponse, SellersClient$1 as WalmartSellersClient, type WalmartSortBy, type WalmartSpecificationGroup, type WalmartStore, type WalmartStoreHours, type WalmartStoreResponse, type WalmartStoreService, StoresClient as WalmartStoresClient, type WalmartSuggestion, type WalmartVariant, type WalmartVideo, type WalmartWarranty, WebClient, type WikiPageResponse, type YahooAd, type YahooAutocompleteParams, type YahooAutocompleteResponse, YahooClient, type YahooImageResult, type YahooImagesParams, type YahooImagesResponse, type YahooMarket, type YahooMarketsResponse, MediaClient as YahooMediaClient, type YahooNewsArticle, NewsClient as YahooNewsClient, type YahooNewsParams, type YahooNewsResponse, type YahooOrganicResult, ReferenceClient$7 as YahooReferenceClient, type YahooSafeSearch, SearchClient$6 as YahooSearchClient, type YahooSearchParams, type YahooSearchResponse, type YahooVideoResult, type YahooVideosParams, type YahooVideosResponse, YandexClient, type YandexImage, type YandexImageResult, ImagesClient as YandexImagesClient, type YandexImagesParams, type YandexImagesResponse, type YandexMarket, type YandexMarketsResponse, type YandexOrganicResult, type YandexOtherSize, type YandexPagination, type YandexRaw, ReferenceClient$6 as YandexReferenceClient, type YandexReverseImageResponse, type YandexReverseParams, type YandexReverseSite, SearchClient$5 as YandexSearchClient, type YandexSearchParams, type YandexSearchResponse, type YandexSimilarImage, type YandexSitelink, type YandexTag, type AudioTrack as YoutubeAudioTrack, type YoutubeAutocompleteParams, type AutocompleteResponse$2 as YoutubeAutocompleteResponse, type YoutubeBatchParams, type BatchResponse as YoutubeBatchResponse, type CaptionTrack as YoutubeCaptionTrack, type YoutubeCaptionsParams, type CaptionsResponse as YoutubeCaptionsResponse, type YoutubeCategoriesParams, type CategoriesResponse$1 as YoutubeCategoriesResponse, type Channel as YoutubeChannel, type ChannelAbout as YoutubeChannelAbout, type ChannelLink as YoutubeChannelLink, type YoutubeChannelParams, type YoutubeChannelSearchParams, type YoutubeChannelTabParams, type ChannelTabResponse as YoutubeChannelTabResponse, type ChannelVideosResponse as YoutubeChannelVideosResponse, ChannelsClient as YoutubeChannelsClient, type Chapter as YoutubeChapter, YoutubeClient, type Comment as YoutubeComment, type YoutubeCommentSort, type YoutubeCommentsParams, type CommentsResponse as YoutubeCommentsResponse, CommunityClient as YoutubeCommunityClient, type CommunityPost as YoutubeCommunityPost, type CommunityResponse as YoutubeCommunityResponse, type YoutubeDuration, type Format as YoutubeFormat, type YoutubeHashtagParams, type HashtagResponse as YoutubeHashtagResponse, type HeatMarker as YoutubeHeatMarker, type YoutubeHomeParams, type HomeResponse as YoutubeHomeResponse, type LanguagesResponse as YoutubeLanguagesResponse, type LiveChatMessage as YoutubeLiveChatMessage, type YoutubeLiveChatParams, type LiveChatResponse as YoutubeLiveChatResponse, type LiveStreamingDetails as YoutubeLiveStreamingDetails, type MarketInfo$3 as YoutubeMarketInfo, type MarketsResponse$5 as YoutubeMarketsResponse, MusicClient as YoutubeMusicClient, type YoutubeMusicSearchParams, type OEmbed as YoutubeOEmbed, type YoutubeOEmbedParams, type Playlist as YoutubePlaylist, type PlaylistItem as YoutubePlaylistItem, type YoutubePlaylistItemsParams, type PlaylistItemsResponse as YoutubePlaylistItemsResponse, type YoutubePlaylistParams, PlaylistsClient as YoutubePlaylistsClient, type PollChoice as YoutubePollChoice, type YoutubePostCommentsParams, type YoutubePostParams, ReferenceClient$5 as YoutubeReferenceClient, type ReferenceRow as YoutubeReferenceRow, type YoutubeRegionParams, type RegionRestriction as YoutubeRegionRestriction, type RegionsResponse$1 as YoutubeRegionsResponse, type YoutubeRelatedParams, type RelatedResponse as YoutubeRelatedResponse, type YoutubeRepliesParams, type RepliesResponse as YoutubeRepliesResponse, type YoutubeResolveParams, type ResolveResult as YoutubeResolveResult, type SearchChip as YoutubeSearchChip, SearchClient$4 as YoutubeSearchClient, type YoutubeSearchParams, type SearchResponse$5 as YoutubeSearchResponse, type SearchResult as YoutubeSearchResult, type YoutubeSearchSort, type YoutubeSearchType, type ShoppingResult as YoutubeShoppingResult, type Short as YoutubeShort, type YoutubeShortParams, type YoutubeShortsBySoundParams, ShortsClient as YoutubeShortsClient, type StreamingData as YoutubeStreamingData, type YoutubeStreamsClient, type YoutubeStreamsParams, type SubscriberCount as YoutubeSubscriberCount, type Thumbnail as YoutubeThumbnail, type Transcript as YoutubeTranscript, type YoutubeTranscriptParams, type TranscriptSegment as YoutubeTranscriptSegment, TrendingClient as YoutubeTrendingClient, type TrendingItem as YoutubeTrendingItem, type YoutubeTrendingParams, type TrendingResponse as YoutubeTrendingResponse, type YoutubeTrendingShortsParams, type YoutubeTrendingType, type YoutubeUploadDate, type Video as YoutubeVideo, type YoutubeVideoParams, VideosClient as YoutubeVideosClient, type Address$1 as ZillowAddress, type Agent$1 as ZillowAgent, type AgentAttribution as ZillowAgentAttribution, AgentClient as ZillowAgentClient, type AgentLicense as ZillowAgentLicense, type ZillowAgentOptions, type AgentResponse as ZillowAgentResponse, type AgentReview as ZillowAgentReview, type AutocompleteResponse as ZillowAutocompleteResponse, type AutocompleteResult as ZillowAutocompleteResult, ZillowClient, type HomeFacts as ZillowHomeFacts, type LatLong as ZillowLatLong, type Listing$1 as ZillowListing, type ListingSubType as ZillowListingSubType, type MapBounds as ZillowMapBounds, type MarketInfo$1 as ZillowMarketInfo, type MarketsResponse$2 as ZillowMarketsResponse, type MortgageRate as ZillowMortgageRate, type MortgageRates as ZillowMortgageRates, type NearbyRegion as ZillowNearbyRegion, type OpenHouse as ZillowOpenHouse, type Pagination$1 as ZillowPagination, type PastSale as ZillowPastSale, type Photo$1 as ZillowPhoto, type PriceHistoryEvent as ZillowPriceHistoryEvent, PropertiesClient as ZillowPropertiesClient, type Property as ZillowProperty, type PropertyResponse as ZillowPropertyResponse, ReferenceClient$2 as ZillowReferenceClient, type RegionSelection as ZillowRegionSelection, type School$1 as ZillowSchool, SearchClient$1 as ZillowSearchClient, type ZillowSearchOptions, type SearchResponse$2 as ZillowSearchResponse, type ZillowSort, type ZillowStatus, type TaxHistoryEvent as ZillowTaxHistoryEvent, type ZestimateHistoryPoint as ZillowZestimateHistoryPoint };
|