scrapebadger 0.33.0 → 0.34.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -3,7 +3,7 @@ import { EventEmitter } from 'events';
3
3
  import WebSocket from 'ws';
4
4
 
5
5
  // src/internal/version.ts
6
- var SDK_VERSION = "0.24.2";
6
+ var SDK_VERSION = "0.33.1";
7
7
 
8
8
  // src/internal/exceptions.ts
9
9
  var ScrapeBadgerError = class _ScrapeBadgerError extends Error {
@@ -6285,8 +6285,160 @@ var BaiduClient = class {
6285
6285
  }
6286
6286
  };
6287
6287
 
6288
- // src/yandex/search.ts
6288
+ // src/yahoo/search.ts
6289
6289
  var SearchClient12 = class {
6290
+ constructor(client) {
6291
+ this.client = client;
6292
+ }
6293
+ /**
6294
+ * Search yahoo.com — the web SERP.
6295
+ *
6296
+ * Yahoo serves 7 organic results per page, so `offset` moves in steps of 7
6297
+ * (page 2 is `offset: 7`). There is no page-size parameter.
6298
+ *
6299
+ * @param query - Search keywords, e.g. `"coffee machine"`.
6300
+ * @param params - Optional market, offset and safe-search filter.
6301
+ * @returns A page of organic results, ads and related searches.
6302
+ */
6303
+ async search(query, params = {}) {
6304
+ return this.client.request("/v1/yahoo/search", {
6305
+ params: {
6306
+ query,
6307
+ market: params.market,
6308
+ offset: params.offset,
6309
+ safe_search: params.safe_search
6310
+ }
6311
+ });
6312
+ }
6313
+ /**
6314
+ * Yahoo search-box suggestions — the cheapest call in this API.
6315
+ *
6316
+ * @param query - Partial search term, e.g. `"coff"`.
6317
+ * @param params - Optional market.
6318
+ */
6319
+ async autocomplete(query, params = {}) {
6320
+ return this.client.request("/v1/yahoo/autocomplete", {
6321
+ params: {
6322
+ query,
6323
+ market: params.market
6324
+ }
6325
+ });
6326
+ }
6327
+ };
6328
+
6329
+ // src/yahoo/media.ts
6330
+ var MediaClient4 = class {
6331
+ constructor(client) {
6332
+ this.client = client;
6333
+ }
6334
+ /**
6335
+ * Search Yahoo images.
6336
+ *
6337
+ * Yahoo renders ~60 tiles server-side with no native page-size parameter,
6338
+ * so `count` trims the list rather than paginating.
6339
+ *
6340
+ * @param query - Search keywords, e.g. `"cats"`.
6341
+ * @param params - Optional market and count.
6342
+ * @returns Full-size image URLs, thumbnails, pixel dimensions and the
6343
+ * source page each image came from.
6344
+ */
6345
+ async images(query, params = {}) {
6346
+ return this.client.request("/v1/yahoo/images", {
6347
+ params: {
6348
+ query,
6349
+ market: params.market,
6350
+ count: params.count
6351
+ }
6352
+ });
6353
+ }
6354
+ /**
6355
+ * Search Yahoo videos.
6356
+ *
6357
+ * Like images, Yahoo has no native page-size parameter here, so `count`
6358
+ * trims the returned list.
6359
+ *
6360
+ * @param query - Search keywords, e.g. `"cats"`.
6361
+ * @param params - Optional market and count.
6362
+ * @returns Video URLs, thumbnails, duration, host platform and view counts.
6363
+ */
6364
+ async videos(query, params = {}) {
6365
+ return this.client.request("/v1/yahoo/videos", {
6366
+ params: {
6367
+ query,
6368
+ market: params.market,
6369
+ count: params.count
6370
+ }
6371
+ });
6372
+ }
6373
+ };
6374
+
6375
+ // src/yahoo/news.ts
6376
+ var NewsClient3 = class {
6377
+ constructor(client) {
6378
+ this.client = client;
6379
+ }
6380
+ /**
6381
+ * Search the Yahoo news vertical.
6382
+ *
6383
+ * @param query - Search keywords, e.g. `"artificial intelligence"`.
6384
+ * @param params - Optional market.
6385
+ * @returns Articles carrying publisher, syndication source and real URLs.
6386
+ * `published` is a relative age string (`"26 minutes ago"`) — Yahoo
6387
+ * renders no absolute date.
6388
+ */
6389
+ async news(query, params = {}) {
6390
+ return this.client.request("/v1/yahoo/news", {
6391
+ params: {
6392
+ query,
6393
+ market: params.market
6394
+ }
6395
+ });
6396
+ }
6397
+ };
6398
+
6399
+ // src/yahoo/reference.ts
6400
+ var ReferenceClient9 = class {
6401
+ constructor(client) {
6402
+ this.client = client;
6403
+ }
6404
+ /**
6405
+ * Get the supported Yahoo markets.
6406
+ *
6407
+ * Yahoo Japan (`search.yahoo.co.jp`) is a separate engine and is not
6408
+ * covered by this API.
6409
+ *
6410
+ * @returns Every Yahoo market code, name, country and regional search host.
6411
+ */
6412
+ async markets() {
6413
+ return this.client.request("/v1/yahoo/markets");
6414
+ }
6415
+ };
6416
+
6417
+ // src/yahoo/client.ts
6418
+ var YahooClient = class {
6419
+ /** Client for web search and search-box autocomplete */
6420
+ search;
6421
+ /** Client for image search and video search */
6422
+ media;
6423
+ /** Client for the news vertical */
6424
+ news;
6425
+ /** Client for reference data (markets) */
6426
+ reference;
6427
+ /**
6428
+ * Create a new Yahoo client.
6429
+ *
6430
+ * @param client - The base HTTP client for making requests.
6431
+ */
6432
+ constructor(client) {
6433
+ this.search = new SearchClient12(client);
6434
+ this.media = new MediaClient4(client);
6435
+ this.news = new NewsClient3(client);
6436
+ this.reference = new ReferenceClient9(client);
6437
+ }
6438
+ };
6439
+
6440
+ // src/yandex/search.ts
6441
+ var SearchClient13 = class {
6290
6442
  constructor(client) {
6291
6443
  this.client = client;
6292
6444
  }
@@ -6347,7 +6499,7 @@ var ImagesClient2 = class {
6347
6499
  };
6348
6500
 
6349
6501
  // src/yandex/reference.ts
6350
- var ReferenceClient9 = class {
6502
+ var ReferenceClient10 = class {
6351
6503
  constructor(client) {
6352
6504
  this.client = client;
6353
6505
  }
@@ -6373,14 +6525,14 @@ var YandexClient = class {
6373
6525
  * @param client - The base HTTP client for making requests.
6374
6526
  */
6375
6527
  constructor(client) {
6376
- this.search = new SearchClient12(client);
6528
+ this.search = new SearchClient13(client);
6377
6529
  this.images = new ImagesClient2(client);
6378
- this.reference = new ReferenceClient9(client);
6530
+ this.reference = new ReferenceClient10(client);
6379
6531
  }
6380
6532
  };
6381
6533
 
6382
6534
  // src/youtube/search.ts
6383
- var SearchClient13 = class {
6535
+ var SearchClient14 = class {
6384
6536
  client;
6385
6537
  constructor(client) {
6386
6538
  this.client = client;
@@ -6905,7 +7057,7 @@ var MusicClient2 = class {
6905
7057
  };
6906
7058
 
6907
7059
  // src/youtube/reference.ts
6908
- var ReferenceClient10 = class {
7060
+ var ReferenceClient11 = class {
6909
7061
  client;
6910
7062
  constructor(client) {
6911
7063
  this.client = client;
@@ -6973,7 +7125,7 @@ var YoutubeClient = class {
6973
7125
  * @param client - The base HTTP client for making requests.
6974
7126
  */
6975
7127
  constructor(client) {
6976
- this.search = new SearchClient13(client);
7128
+ this.search = new SearchClient14(client);
6977
7129
  this.videos = new VideosClient3(client);
6978
7130
  this.channels = new ChannelsClient(client);
6979
7131
  this.playlists = new PlaylistsClient(client);
@@ -6981,12 +7133,12 @@ var YoutubeClient = class {
6981
7133
  this.shorts = new ShortsClient2(client);
6982
7134
  this.trending = new TrendingClient2(client);
6983
7135
  this.music = new MusicClient2(client);
6984
- this.reference = new ReferenceClient10(client);
7136
+ this.reference = new ReferenceClient11(client);
6985
7137
  }
6986
7138
  };
6987
7139
 
6988
7140
  // src/realtor/search.ts
6989
- var SearchClient14 = class {
7141
+ var SearchClient15 = class {
6990
7142
  client;
6991
7143
  constructor(client) {
6992
7144
  this.client = client;
@@ -7060,7 +7212,7 @@ var PropertiesClient = class {
7060
7212
  };
7061
7213
 
7062
7214
  // src/realtor/reference.ts
7063
- var ReferenceClient11 = class {
7215
+ var ReferenceClient12 = class {
7064
7216
  client;
7065
7217
  constructor(client) {
7066
7218
  this.client = client;
@@ -7089,14 +7241,14 @@ var RealtorClient = class {
7089
7241
  * @param client - The base HTTP client for making requests.
7090
7242
  */
7091
7243
  constructor(client) {
7092
- this.search = new SearchClient14(client);
7244
+ this.search = new SearchClient15(client);
7093
7245
  this.properties = new PropertiesClient(client);
7094
- this.reference = new ReferenceClient11(client);
7246
+ this.reference = new ReferenceClient12(client);
7095
7247
  }
7096
7248
  };
7097
7249
 
7098
7250
  // src/leboncoin/search.ts
7099
- var SearchClient15 = class {
7251
+ var SearchClient16 = class {
7100
7252
  client;
7101
7253
  constructor(client) {
7102
7254
  this.client = client;
@@ -7198,7 +7350,7 @@ var SellersClient4 = class {
7198
7350
  };
7199
7351
 
7200
7352
  // src/leboncoin/reference.ts
7201
- var ReferenceClient12 = class {
7353
+ var ReferenceClient13 = class {
7202
7354
  client;
7203
7355
  constructor(client) {
7204
7356
  this.client = client;
@@ -7269,15 +7421,15 @@ var LeboncoinClient = class {
7269
7421
  * @param client - The base HTTP client for making requests.
7270
7422
  */
7271
7423
  constructor(client) {
7272
- this.search = new SearchClient15(client);
7424
+ this.search = new SearchClient16(client);
7273
7425
  this.ads = new AdsClient2(client);
7274
7426
  this.sellers = new SellersClient4(client);
7275
- this.reference = new ReferenceClient12(client);
7427
+ this.reference = new ReferenceClient13(client);
7276
7428
  }
7277
7429
  };
7278
7430
 
7279
7431
  // src/zillow/search.ts
7280
- var SearchClient16 = class {
7432
+ var SearchClient17 = class {
7281
7433
  client;
7282
7434
  constructor(client) {
7283
7435
  this.client = client;
@@ -7381,7 +7533,7 @@ var AgentClient = class {
7381
7533
  };
7382
7534
 
7383
7535
  // src/zillow/reference.ts
7384
- var ReferenceClient13 = class {
7536
+ var ReferenceClient14 = class {
7385
7537
  client;
7386
7538
  constructor(client) {
7387
7539
  this.client = client;
@@ -7412,10 +7564,10 @@ var ZillowClient = class {
7412
7564
  * @param client - The base HTTP client for making requests.
7413
7565
  */
7414
7566
  constructor(client) {
7415
- this.search = new SearchClient16(client);
7567
+ this.search = new SearchClient17(client);
7416
7568
  this.properties = new PropertiesClient2(client);
7417
7569
  this.agent = new AgentClient(client);
7418
- this.reference = new ReferenceClient13(client);
7570
+ this.reference = new ReferenceClient14(client);
7419
7571
  }
7420
7572
  };
7421
7573
 
@@ -7550,7 +7702,7 @@ var ImmobiliareClient = class {
7550
7702
  };
7551
7703
 
7552
7704
  // src/loopnet/search.ts
7553
- var SearchClient17 = class {
7705
+ var SearchClient18 = class {
7554
7706
  client;
7555
7707
  constructor(client) {
7556
7708
  this.client = client;
@@ -7631,7 +7783,7 @@ var BrokersClient = class {
7631
7783
  };
7632
7784
 
7633
7785
  // src/loopnet/reference.ts
7634
- var ReferenceClient14 = class {
7786
+ var ReferenceClient15 = class {
7635
7787
  client;
7636
7788
  constructor(client) {
7637
7789
  this.client = client;
@@ -7674,10 +7826,10 @@ var LoopNetClient = class {
7674
7826
  * @param client - The base HTTP client for making requests.
7675
7827
  */
7676
7828
  constructor(client) {
7677
- this.search = new SearchClient17(client);
7829
+ this.search = new SearchClient18(client);
7678
7830
  this.listings = new ListingsClient2(client);
7679
7831
  this.brokers = new BrokersClient(client);
7680
- this.reference = new ReferenceClient14(client);
7832
+ this.reference = new ReferenceClient15(client);
7681
7833
  }
7682
7834
  };
7683
7835
 
@@ -8038,7 +8190,7 @@ var BrandClient = class {
8038
8190
  };
8039
8191
 
8040
8192
  // src/chatgpt/reference.ts
8041
- var ReferenceClient15 = class {
8193
+ var ReferenceClient16 = class {
8042
8194
  client;
8043
8195
  constructor(client) {
8044
8196
  this.client = client;
@@ -8084,7 +8236,7 @@ var ChatGPTClient = class {
8084
8236
  constructor(client) {
8085
8237
  this.ask = new AskClient(client);
8086
8238
  this.brand = new BrandClient(client);
8087
- this.reference = new ReferenceClient15(client);
8239
+ this.reference = new ReferenceClient16(client);
8088
8240
  }
8089
8241
  };
8090
8242
 
@@ -8123,6 +8275,8 @@ var ScrapeBadger = class {
8123
8275
  bing;
8124
8276
  /** Baidu scraper API client — search, news, images, autocomplete (baidu.com, China's #1 search engine) */
8125
8277
  baidu;
8278
+ /** Yahoo scraper API client — 6 endpoints (search, images, videos, news, autocomplete, markets) across 35 markets */
8279
+ yahoo;
8126
8280
  /** Yandex scraper API client — web search, image search, reverse-image (CBIR), markets (tr/com/ru/by/kz/uz) */
8127
8281
  yandex;
8128
8282
  /** YouTube scraper API client — 39 endpoints */
@@ -8193,6 +8347,7 @@ var ScrapeBadger = class {
8193
8347
  this.duckduckgo = new DuckDuckGoClient(this.baseClient);
8194
8348
  this.bing = new BingClient(this.baseClient);
8195
8349
  this.baidu = new BaiduClient(this.baseClient);
8350
+ this.yahoo = new YahooClient(this.baseClient);
8196
8351
  this.yandex = new YandexClient(this.baseClient);
8197
8352
  this.youtube = new YoutubeClient(this.baseClient);
8198
8353
  this.realtor = new RealtorClient(this.baseClient);
@@ -8206,6 +8361,6 @@ var ScrapeBadger = class {
8206
8361
  }
8207
8362
  };
8208
8363
 
8209
- export { AccountRestrictedError, AmazonClient, ListingsClient as AmazonListingsClient, ProductsClient2 as AmazonProductsClient, ReferenceClient2 as AmazonReferenceClient, SearchClient5 as AmazonSearchClient, SellersClient as AmazonSellersClient, ApartmentsClient, AuthenticationError, BaiduClient, BingClient, MediaClient3 as BingMediaClient, NewsClient2 as BingNewsClient, ReferenceClient8 as BingReferenceClient, SearchClient11 as BingSearchClient, AskClient as ChatGPTAskClient, BrandClient as ChatGPTBrandClient, ChatGPTClient, ReferenceClient15 as ChatGPTReferenceClient, CommunitiesClient, ConflictError, DepopClient, DuckDuckGoClient, MediaClient2 as DuckDuckGoMediaClient, ReferenceClient7 as DuckDuckGoReferenceClient, SearchClient10 as DuckDuckGoSearchClient, CategoriesClient as EbayCategoriesClient, EbayClient, ItemsClient2 as EbayItemsClient, ReferenceClient5 as EbayReferenceClient, SearchClient8 as EbaySearchClient, SellersClient2 as EbaySellersClient, GeoClient, AiModeClient as GoogleAiModeClient, AutocompleteClient as GoogleAutocompleteClient, GoogleClient, FinanceClient as GoogleFinanceClient, FlightsClient as GoogleFlightsClient, HotelsClient as GoogleHotelsClient, ImagesClient as GoogleImagesClient, JobsClient as GoogleJobsClient, LensClient as GoogleLensClient, MapsClient as GoogleMapsClient, NewsClient as GoogleNewsClient, PatentsClient as GooglePatentsClient, ProductsClient as GoogleProductsClient, ScholarClient as GoogleScholarClient, SearchClient2 as GoogleSearchClient, ShoppingClient as GoogleShoppingClient, ShortsClient as GoogleShortsClient, TrendsClient2 as GoogleTrendsClient, VideosClient as GoogleVideosClient, ImmobiliareClient, AudioClient as InstagramAudioClient, InstagramClient, HashtagsClient as InstagramHashtagsClient, LocationsClient as InstagramLocationsClient, MediaClient as InstagramMediaClient, SearchClient4 as InstagramSearchClient, UsersClient4 as InstagramUsersClient, InsufficientCreditsError, AdsClient2 as LeboncoinAdsClient, LeboncoinClient, ReferenceClient12 as LeboncoinReferenceClient, SearchClient15 as LeboncoinSearchClient, SellersClient4 as LeboncoinSellersClient, LinkedInClient, ListsClient, BrokersClient as LoopNetBrokersClient, LoopNetClient, ListingsClient2 as LoopNetListingsClient, ReferenceClient14 as LoopNetReferenceClient, SearchClient17 as LoopNetSearchClient, NotFoundError, RateLimitError, RealtorClient, PropertiesClient as RealtorPropertiesClient, ReferenceClient11 as RealtorReferenceClient, SearchClient14 as RealtorSearchClient, RedditClient, PostsClient as RedditPostsClient, SearchClient3 as RedditSearchClient, SubredditsClient as RedditSubredditsClient, UsersClient3 as RedditUsersClient, RedfinClient, ScrapeBadger, ScrapeBadgerError, ServerError, ShopeeClient, ProductsClient3 as ShopeeProductsClient, ReferenceClient3 as ShopeeReferenceClient, ReviewsClient as ShopeeReviewsClient, SearchClient6 as ShopeeSearchClient, SpacesClient, StreamClient, AdsClient as TikTokAdsClient, TikTokClient, HashtagsClient2 as TikTokHashtagsClient, MusicClient as TikTokMusicClient, ReferenceClient4 as TikTokReferenceClient, SearchClient7 as TikTokSearchClient, TrendingClient as TikTokTrendingClient, UsersClient5 as TikTokUsersClient, VideosClient2 as TikTokVideosClient, TimeoutError, TrendsClient, TweetsClient, TwitterClient, UsersClient, ValidationError, VintedClient, ItemsClient as VintedItemsClient, ReferenceClient as VintedReferenceClient, SearchClient as VintedSearchClient, UsersClient2 as VintedUsersClient, WalmartClient, ProductsClient4 as WalmartProductsClient, ReferenceClient6 as WalmartReferenceClient, SearchClient9 as WalmartSearchClient, SellersClient3 as WalmartSellersClient, StoresClient as WalmartStoresClient, WebClient, WebSocketStreamError, YandexClient, ImagesClient2 as YandexImagesClient, ReferenceClient9 as YandexReferenceClient, SearchClient12 as YandexSearchClient, ChannelsClient as YoutubeChannelsClient, YoutubeClient, CommunityClient as YoutubeCommunityClient, MusicClient2 as YoutubeMusicClient, PlaylistsClient as YoutubePlaylistsClient, ReferenceClient10 as YoutubeReferenceClient, SearchClient13 as YoutubeSearchClient, ShortsClient2 as YoutubeShortsClient, TrendingClient2 as YoutubeTrendingClient, VideosClient3 as YoutubeVideosClient, AgentClient as ZillowAgentClient, ZillowClient, PropertiesClient2 as ZillowPropertiesClient, ReferenceClient13 as ZillowReferenceClient, SearchClient16 as ZillowSearchClient, collectAll, verifyWebhookSignature };
8364
+ export { AccountRestrictedError, AmazonClient, ListingsClient as AmazonListingsClient, ProductsClient2 as AmazonProductsClient, ReferenceClient2 as AmazonReferenceClient, SearchClient5 as AmazonSearchClient, SellersClient as AmazonSellersClient, ApartmentsClient, AuthenticationError, BaiduClient, BingClient, MediaClient3 as BingMediaClient, NewsClient2 as BingNewsClient, ReferenceClient8 as BingReferenceClient, SearchClient11 as BingSearchClient, AskClient as ChatGPTAskClient, BrandClient as ChatGPTBrandClient, ChatGPTClient, ReferenceClient16 as ChatGPTReferenceClient, CommunitiesClient, ConflictError, DepopClient, DuckDuckGoClient, MediaClient2 as DuckDuckGoMediaClient, ReferenceClient7 as DuckDuckGoReferenceClient, SearchClient10 as DuckDuckGoSearchClient, CategoriesClient as EbayCategoriesClient, EbayClient, ItemsClient2 as EbayItemsClient, ReferenceClient5 as EbayReferenceClient, SearchClient8 as EbaySearchClient, SellersClient2 as EbaySellersClient, GeoClient, AiModeClient as GoogleAiModeClient, AutocompleteClient as GoogleAutocompleteClient, GoogleClient, FinanceClient as GoogleFinanceClient, FlightsClient as GoogleFlightsClient, HotelsClient as GoogleHotelsClient, ImagesClient as GoogleImagesClient, JobsClient as GoogleJobsClient, LensClient as GoogleLensClient, MapsClient as GoogleMapsClient, NewsClient as GoogleNewsClient, PatentsClient as GooglePatentsClient, ProductsClient as GoogleProductsClient, ScholarClient as GoogleScholarClient, SearchClient2 as GoogleSearchClient, ShoppingClient as GoogleShoppingClient, ShortsClient as GoogleShortsClient, TrendsClient2 as GoogleTrendsClient, VideosClient as GoogleVideosClient, ImmobiliareClient, AudioClient as InstagramAudioClient, InstagramClient, HashtagsClient as InstagramHashtagsClient, LocationsClient as InstagramLocationsClient, MediaClient as InstagramMediaClient, SearchClient4 as InstagramSearchClient, UsersClient4 as InstagramUsersClient, InsufficientCreditsError, AdsClient2 as LeboncoinAdsClient, LeboncoinClient, ReferenceClient13 as LeboncoinReferenceClient, SearchClient16 as LeboncoinSearchClient, SellersClient4 as LeboncoinSellersClient, LinkedInClient, ListsClient, BrokersClient as LoopNetBrokersClient, LoopNetClient, ListingsClient2 as LoopNetListingsClient, ReferenceClient15 as LoopNetReferenceClient, SearchClient18 as LoopNetSearchClient, NotFoundError, RateLimitError, RealtorClient, PropertiesClient as RealtorPropertiesClient, ReferenceClient12 as RealtorReferenceClient, SearchClient15 as RealtorSearchClient, RedditClient, PostsClient as RedditPostsClient, SearchClient3 as RedditSearchClient, SubredditsClient as RedditSubredditsClient, UsersClient3 as RedditUsersClient, RedfinClient, ScrapeBadger, ScrapeBadgerError, ServerError, ShopeeClient, ProductsClient3 as ShopeeProductsClient, ReferenceClient3 as ShopeeReferenceClient, ReviewsClient as ShopeeReviewsClient, SearchClient6 as ShopeeSearchClient, SpacesClient, StreamClient, AdsClient as TikTokAdsClient, TikTokClient, HashtagsClient2 as TikTokHashtagsClient, MusicClient as TikTokMusicClient, ReferenceClient4 as TikTokReferenceClient, SearchClient7 as TikTokSearchClient, TrendingClient as TikTokTrendingClient, UsersClient5 as TikTokUsersClient, VideosClient2 as TikTokVideosClient, TimeoutError, TrendsClient, TweetsClient, TwitterClient, UsersClient, ValidationError, VintedClient, ItemsClient as VintedItemsClient, ReferenceClient as VintedReferenceClient, SearchClient as VintedSearchClient, UsersClient2 as VintedUsersClient, WalmartClient, ProductsClient4 as WalmartProductsClient, ReferenceClient6 as WalmartReferenceClient, SearchClient9 as WalmartSearchClient, SellersClient3 as WalmartSellersClient, StoresClient as WalmartStoresClient, WebClient, WebSocketStreamError, YahooClient, MediaClient4 as YahooMediaClient, NewsClient3 as YahooNewsClient, ReferenceClient9 as YahooReferenceClient, SearchClient12 as YahooSearchClient, YandexClient, ImagesClient2 as YandexImagesClient, ReferenceClient10 as YandexReferenceClient, SearchClient13 as YandexSearchClient, ChannelsClient as YoutubeChannelsClient, YoutubeClient, CommunityClient as YoutubeCommunityClient, MusicClient2 as YoutubeMusicClient, PlaylistsClient as YoutubePlaylistsClient, ReferenceClient11 as YoutubeReferenceClient, SearchClient14 as YoutubeSearchClient, ShortsClient2 as YoutubeShortsClient, TrendingClient2 as YoutubeTrendingClient, VideosClient3 as YoutubeVideosClient, AgentClient as ZillowAgentClient, ZillowClient, PropertiesClient2 as ZillowPropertiesClient, ReferenceClient14 as ZillowReferenceClient, SearchClient17 as ZillowSearchClient, collectAll, verifyWebhookSignature };
8210
8365
  //# sourceMappingURL=index.mjs.map
8211
8366
  //# sourceMappingURL=index.mjs.map