scrapebadger 0.29.0 → 0.30.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
@@ -5699,8 +5699,227 @@ var EbayClient = class {
5699
5699
  }
5700
5700
  };
5701
5701
 
5702
- // src/youtube/search.ts
5702
+ // src/walmart/search.ts
5703
5703
  var SearchClient9 = class {
5704
+ constructor(client) {
5705
+ this.client = client;
5706
+ }
5707
+ /**
5708
+ * Search walmart.com.
5709
+ *
5710
+ * @param query - Search keywords, e.g. `"laptop"`.
5711
+ * @param params - Optional page (1-10), sort, price and facet filters.
5712
+ * @returns A page of ~40-60 organic products.
5713
+ *
5714
+ * @remarks
5715
+ * Results dry up after page 10 regardless of `total_results_reported`; bound
5716
+ * a crawl with `max_page`. Sponsored ad tiles are dropped, sponsored
5717
+ * *products* are returned and flagged `is_sponsored`.
5718
+ */
5719
+ async search(query, params = {}) {
5720
+ return this.client.request("/v1/walmart/search", {
5721
+ params: {
5722
+ query,
5723
+ page: params.page,
5724
+ sort: params.sort,
5725
+ min_price: params.min_price,
5726
+ max_price: params.max_price,
5727
+ facet: params.facet
5728
+ }
5729
+ });
5730
+ }
5731
+ /**
5732
+ * Browse a Walmart category. Same result shape as {@link search}.
5733
+ *
5734
+ * @param path - Browse path, e.g. `"electronics/3944"`, or a `/cp/...` path.
5735
+ * @param params - Optional page (1-11), price and facet filters.
5736
+ *
5737
+ * @remarks
5738
+ * No `sort`: Walmart's browse pages ignore it (verified). Sort on
5739
+ * {@link search} instead.
5740
+ */
5741
+ async category(path, params = {}) {
5742
+ return this.client.request("/v1/walmart/category", {
5743
+ params: {
5744
+ path,
5745
+ page: params.page,
5746
+ min_price: params.min_price,
5747
+ max_price: params.max_price,
5748
+ facet: params.facet
5749
+ }
5750
+ });
5751
+ }
5752
+ /**
5753
+ * Walmart's current deals, rollbacks and clearance.
5754
+ *
5755
+ * @param params - Optional page (1-11) and price filters.
5756
+ */
5757
+ async deals(params = {}) {
5758
+ return this.client.request("/v1/walmart/deals", {
5759
+ params: {
5760
+ page: params.page,
5761
+ min_price: params.min_price,
5762
+ max_price: params.max_price
5763
+ }
5764
+ });
5765
+ }
5766
+ /**
5767
+ * Walmart search-box suggestions — the cheapest call in this API.
5768
+ *
5769
+ * @param query - Partial search term, e.g. `"lapt"`.
5770
+ */
5771
+ async autocomplete(query) {
5772
+ return this.client.request("/v1/walmart/autocomplete", {
5773
+ params: { query }
5774
+ });
5775
+ }
5776
+ };
5777
+
5778
+ // src/walmart/products.ts
5779
+ var ProductsClient4 = class {
5780
+ constructor(client) {
5781
+ this.client = client;
5782
+ }
5783
+ /**
5784
+ * Get full product detail.
5785
+ *
5786
+ * @param itemId - Walmart `usItemId`, e.g. `"5689919121"`.
5787
+ * @throws NotFoundError - If the item doesn't exist.
5788
+ *
5789
+ * @remarks
5790
+ * Only the numeric id is needed — the SEO slug is decorative and ignored by
5791
+ * Walmart's router. Prices and availability are store-specific; the resolved
5792
+ * store is on `location`.
5793
+ */
5794
+ async get(itemId) {
5795
+ return this.client.request(`/v1/walmart/products/${itemId}`);
5796
+ }
5797
+ /**
5798
+ * Get paginated customer reviews with the full star histogram.
5799
+ *
5800
+ * @param itemId - Walmart `usItemId`.
5801
+ * @param params - Optional page (1-100) and sort.
5802
+ * @returns Reviews plus the rating breakdown, aspects, and the most-helpful
5803
+ * positive and negative reviews.
5804
+ *
5805
+ * @remarks 10 reviews per page — Walmart's page size, not adjustable.
5806
+ */
5807
+ async reviews(itemId, params = {}) {
5808
+ return this.client.request(
5809
+ `/v1/walmart/products/${itemId}/reviews`,
5810
+ { params: { page: params.page, sort: params.sort } }
5811
+ );
5812
+ }
5813
+ };
5814
+
5815
+ // src/walmart/sellers.ts
5816
+ var SellersClient3 = class {
5817
+ constructor(client) {
5818
+ this.client = client;
5819
+ }
5820
+ /**
5821
+ * Get a marketplace seller's profile — contact details, address, rating,
5822
+ * policies.
5823
+ *
5824
+ * @param sellerId - Numeric catalog seller id, e.g. `"101040442"`. This is
5825
+ * the `seller.catalog_seller_id` on a product — NOT the 32-char hex
5826
+ * `seller_id`, which 404s as a storefront URL.
5827
+ *
5828
+ * @remarks
5829
+ * No page parameter and no product list: adding `?page=` makes Walmart's own
5830
+ * SSR throw. Use {@link products} for the catalogue.
5831
+ */
5832
+ async get(sellerId) {
5833
+ return this.client.request(`/v1/walmart/sellers/${sellerId}`);
5834
+ }
5835
+ /**
5836
+ * List a marketplace seller's catalogue.
5837
+ *
5838
+ * @param sellerId - Numeric catalog seller id.
5839
+ * @param query - Search term scoping the catalogue. REQUIRED — this goes
5840
+ * through search with a `retailer_id` facet, and the facet alone returns
5841
+ * zero results.
5842
+ * @param params - Optional page (1-10) and sort.
5843
+ */
5844
+ async products(sellerId, query, params = {}) {
5845
+ return this.client.request(
5846
+ `/v1/walmart/sellers/${sellerId}/products`,
5847
+ { params: { query, page: params.page, sort: params.sort } }
5848
+ );
5849
+ }
5850
+ };
5851
+
5852
+ // src/walmart/stores.ts
5853
+ var StoresClient = class {
5854
+ constructor(client) {
5855
+ this.client = client;
5856
+ }
5857
+ /**
5858
+ * Get store detail plus every store around it.
5859
+ *
5860
+ * @param storeId - Walmart store number, e.g. `"100"`.
5861
+ * @returns The store's address, geo, phone, opening hours and per-department
5862
+ * services (each with its own hours and phone), plus ~30 nearby stores.
5863
+ */
5864
+ async get(storeId) {
5865
+ return this.client.request(`/v1/walmart/stores/${storeId}`);
5866
+ }
5867
+ };
5868
+
5869
+ // src/walmart/reference.ts
5870
+ var ReferenceClient6 = class {
5871
+ constructor(client) {
5872
+ this.client = client;
5873
+ }
5874
+ /**
5875
+ * Get the supported Walmart markets.
5876
+ *
5877
+ * @remarks
5878
+ * Only walmart.com (US) is supported — walmart.ca and walmart.com.mx run on
5879
+ * different platforms with different payload shapes, so they are not claimed
5880
+ * here rather than shipped broken.
5881
+ */
5882
+ async markets() {
5883
+ return this.client.request("/v1/walmart/markets");
5884
+ }
5885
+ /**
5886
+ * Check the health of the Walmart scraper service.
5887
+ *
5888
+ * @returns The raw health payload from the scraper service.
5889
+ */
5890
+ async health() {
5891
+ return this.client.request("/v1/walmart/health");
5892
+ }
5893
+ };
5894
+
5895
+ // src/walmart/client.ts
5896
+ var WalmartClient = class {
5897
+ /** Client for search, category browse, deals and autocomplete */
5898
+ search;
5899
+ /** Client for product detail and reviews */
5900
+ products;
5901
+ /** Client for marketplace seller profile and catalogue */
5902
+ sellers;
5903
+ /** Client for store detail and nearby stores */
5904
+ stores;
5905
+ /** Client for reference data (markets) and service health */
5906
+ reference;
5907
+ /**
5908
+ * Create a new Walmart client.
5909
+ *
5910
+ * @param client - The base HTTP client for making requests.
5911
+ */
5912
+ constructor(client) {
5913
+ this.search = new SearchClient9(client);
5914
+ this.products = new ProductsClient4(client);
5915
+ this.sellers = new SellersClient3(client);
5916
+ this.stores = new StoresClient(client);
5917
+ this.reference = new ReferenceClient6(client);
5918
+ }
5919
+ };
5920
+
5921
+ // src/youtube/search.ts
5922
+ var SearchClient10 = class {
5704
5923
  client;
5705
5924
  constructor(client) {
5706
5925
  this.client = client;
@@ -6225,7 +6444,7 @@ var MusicClient2 = class {
6225
6444
  };
6226
6445
 
6227
6446
  // src/youtube/reference.ts
6228
- var ReferenceClient6 = class {
6447
+ var ReferenceClient7 = class {
6229
6448
  client;
6230
6449
  constructor(client) {
6231
6450
  this.client = client;
@@ -6293,7 +6512,7 @@ var YoutubeClient = class {
6293
6512
  * @param client - The base HTTP client for making requests.
6294
6513
  */
6295
6514
  constructor(client) {
6296
- this.search = new SearchClient9(client);
6515
+ this.search = new SearchClient10(client);
6297
6516
  this.videos = new VideosClient3(client);
6298
6517
  this.channels = new ChannelsClient(client);
6299
6518
  this.playlists = new PlaylistsClient(client);
@@ -6301,12 +6520,12 @@ var YoutubeClient = class {
6301
6520
  this.shorts = new ShortsClient2(client);
6302
6521
  this.trending = new TrendingClient2(client);
6303
6522
  this.music = new MusicClient2(client);
6304
- this.reference = new ReferenceClient6(client);
6523
+ this.reference = new ReferenceClient7(client);
6305
6524
  }
6306
6525
  };
6307
6526
 
6308
6527
  // src/realtor/search.ts
6309
- var SearchClient10 = class {
6528
+ var SearchClient11 = class {
6310
6529
  client;
6311
6530
  constructor(client) {
6312
6531
  this.client = client;
@@ -6380,7 +6599,7 @@ var PropertiesClient = class {
6380
6599
  };
6381
6600
 
6382
6601
  // src/realtor/reference.ts
6383
- var ReferenceClient7 = class {
6602
+ var ReferenceClient8 = class {
6384
6603
  client;
6385
6604
  constructor(client) {
6386
6605
  this.client = client;
@@ -6409,14 +6628,14 @@ var RealtorClient = class {
6409
6628
  * @param client - The base HTTP client for making requests.
6410
6629
  */
6411
6630
  constructor(client) {
6412
- this.search = new SearchClient10(client);
6631
+ this.search = new SearchClient11(client);
6413
6632
  this.properties = new PropertiesClient(client);
6414
- this.reference = new ReferenceClient7(client);
6633
+ this.reference = new ReferenceClient8(client);
6415
6634
  }
6416
6635
  };
6417
6636
 
6418
6637
  // src/leboncoin/search.ts
6419
- var SearchClient11 = class {
6638
+ var SearchClient12 = class {
6420
6639
  client;
6421
6640
  constructor(client) {
6422
6641
  this.client = client;
@@ -6485,7 +6704,7 @@ var AdsClient2 = class {
6485
6704
  };
6486
6705
 
6487
6706
  // src/leboncoin/sellers.ts
6488
- var SellersClient3 = class {
6707
+ var SellersClient4 = class {
6489
6708
  client;
6490
6709
  constructor(client) {
6491
6710
  this.client = client;
@@ -6518,7 +6737,7 @@ var SellersClient3 = class {
6518
6737
  };
6519
6738
 
6520
6739
  // src/leboncoin/reference.ts
6521
- var ReferenceClient8 = class {
6740
+ var ReferenceClient9 = class {
6522
6741
  client;
6523
6742
  constructor(client) {
6524
6743
  this.client = client;
@@ -6589,15 +6808,15 @@ var LeboncoinClient = class {
6589
6808
  * @param client - The base HTTP client for making requests.
6590
6809
  */
6591
6810
  constructor(client) {
6592
- this.search = new SearchClient11(client);
6811
+ this.search = new SearchClient12(client);
6593
6812
  this.ads = new AdsClient2(client);
6594
- this.sellers = new SellersClient3(client);
6595
- this.reference = new ReferenceClient8(client);
6813
+ this.sellers = new SellersClient4(client);
6814
+ this.reference = new ReferenceClient9(client);
6596
6815
  }
6597
6816
  };
6598
6817
 
6599
6818
  // src/zillow/search.ts
6600
- var SearchClient12 = class {
6819
+ var SearchClient13 = class {
6601
6820
  client;
6602
6821
  constructor(client) {
6603
6822
  this.client = client;
@@ -6701,7 +6920,7 @@ var AgentClient = class {
6701
6920
  };
6702
6921
 
6703
6922
  // src/zillow/reference.ts
6704
- var ReferenceClient9 = class {
6923
+ var ReferenceClient10 = class {
6705
6924
  client;
6706
6925
  constructor(client) {
6707
6926
  this.client = client;
@@ -6732,10 +6951,10 @@ var ZillowClient = class {
6732
6951
  * @param client - The base HTTP client for making requests.
6733
6952
  */
6734
6953
  constructor(client) {
6735
- this.search = new SearchClient12(client);
6954
+ this.search = new SearchClient13(client);
6736
6955
  this.properties = new PropertiesClient2(client);
6737
6956
  this.agent = new AgentClient(client);
6738
- this.reference = new ReferenceClient9(client);
6957
+ this.reference = new ReferenceClient10(client);
6739
6958
  }
6740
6959
  };
6741
6960
 
@@ -6870,7 +7089,7 @@ var ImmobiliareClient = class {
6870
7089
  };
6871
7090
 
6872
7091
  // src/loopnet/search.ts
6873
- var SearchClient13 = class {
7092
+ var SearchClient14 = class {
6874
7093
  client;
6875
7094
  constructor(client) {
6876
7095
  this.client = client;
@@ -6951,7 +7170,7 @@ var BrokersClient = class {
6951
7170
  };
6952
7171
 
6953
7172
  // src/loopnet/reference.ts
6954
- var ReferenceClient10 = class {
7173
+ var ReferenceClient11 = class {
6955
7174
  client;
6956
7175
  constructor(client) {
6957
7176
  this.client = client;
@@ -6994,10 +7213,10 @@ var LoopNetClient = class {
6994
7213
  * @param client - The base HTTP client for making requests.
6995
7214
  */
6996
7215
  constructor(client) {
6997
- this.search = new SearchClient13(client);
7216
+ this.search = new SearchClient14(client);
6998
7217
  this.listings = new ListingsClient2(client);
6999
7218
  this.brokers = new BrokersClient(client);
7000
- this.reference = new ReferenceClient10(client);
7219
+ this.reference = new ReferenceClient11(client);
7001
7220
  }
7002
7221
  };
7003
7222
 
@@ -7358,7 +7577,7 @@ var BrandClient = class {
7358
7577
  };
7359
7578
 
7360
7579
  // src/chatgpt/reference.ts
7361
- var ReferenceClient11 = class {
7580
+ var ReferenceClient12 = class {
7362
7581
  client;
7363
7582
  constructor(client) {
7364
7583
  this.client = client;
@@ -7404,7 +7623,7 @@ var ChatGPTClient = class {
7404
7623
  constructor(client) {
7405
7624
  this.ask = new AskClient(client);
7406
7625
  this.brand = new BrandClient(client);
7407
- this.reference = new ReferenceClient11(client);
7626
+ this.reference = new ReferenceClient12(client);
7408
7627
  }
7409
7628
  };
7410
7629
 
@@ -7435,6 +7654,8 @@ var ScrapeBadger = class {
7435
7654
  tiktok;
7436
7655
  /** eBay scraper API client — 12 endpoints across 18 markets */
7437
7656
  ebay;
7657
+ /** Walmart scraper API client — 11 endpoints (walmart.com, US-only) */
7658
+ walmart;
7438
7659
  /** YouTube scraper API client — 39 endpoints */
7439
7660
  youtube;
7440
7661
  /** Realtor scraper API client — 4 endpoints across 2 markets (us, ca) */
@@ -7499,6 +7720,7 @@ var ScrapeBadger = class {
7499
7720
  this.shopee = new ShopeeClient(this.baseClient);
7500
7721
  this.tiktok = new TikTokClient(this.baseClient);
7501
7722
  this.ebay = new EbayClient(this.baseClient);
7723
+ this.walmart = new WalmartClient(this.baseClient);
7502
7724
  this.youtube = new YoutubeClient(this.baseClient);
7503
7725
  this.realtor = new RealtorClient(this.baseClient);
7504
7726
  this.leboncoin = new LeboncoinClient(this.baseClient);
@@ -7511,6 +7733,6 @@ var ScrapeBadger = class {
7511
7733
  }
7512
7734
  };
7513
7735
 
7514
- export { AccountRestrictedError, AmazonClient, ListingsClient as AmazonListingsClient, ProductsClient2 as AmazonProductsClient, ReferenceClient2 as AmazonReferenceClient, SearchClient5 as AmazonSearchClient, SellersClient as AmazonSellersClient, ApartmentsClient, AuthenticationError, AskClient as ChatGPTAskClient, BrandClient as ChatGPTBrandClient, ChatGPTClient, ReferenceClient11 as ChatGPTReferenceClient, CommunitiesClient, ConflictError, DepopClient, 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, ReferenceClient8 as LeboncoinReferenceClient, SearchClient11 as LeboncoinSearchClient, SellersClient3 as LeboncoinSellersClient, LinkedInClient, ListsClient, BrokersClient as LoopNetBrokersClient, LoopNetClient, ListingsClient2 as LoopNetListingsClient, ReferenceClient10 as LoopNetReferenceClient, SearchClient13 as LoopNetSearchClient, NotFoundError, RateLimitError, RealtorClient, PropertiesClient as RealtorPropertiesClient, ReferenceClient7 as RealtorReferenceClient, SearchClient10 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, WebClient, WebSocketStreamError, ChannelsClient as YoutubeChannelsClient, YoutubeClient, CommunityClient as YoutubeCommunityClient, MusicClient2 as YoutubeMusicClient, PlaylistsClient as YoutubePlaylistsClient, ReferenceClient6 as YoutubeReferenceClient, SearchClient9 as YoutubeSearchClient, ShortsClient2 as YoutubeShortsClient, TrendingClient2 as YoutubeTrendingClient, VideosClient3 as YoutubeVideosClient, AgentClient as ZillowAgentClient, ZillowClient, PropertiesClient2 as ZillowPropertiesClient, ReferenceClient9 as ZillowReferenceClient, SearchClient12 as ZillowSearchClient, collectAll, verifyWebhookSignature };
7736
+ export { AccountRestrictedError, AmazonClient, ListingsClient as AmazonListingsClient, ProductsClient2 as AmazonProductsClient, ReferenceClient2 as AmazonReferenceClient, SearchClient5 as AmazonSearchClient, SellersClient as AmazonSellersClient, ApartmentsClient, AuthenticationError, AskClient as ChatGPTAskClient, BrandClient as ChatGPTBrandClient, ChatGPTClient, ReferenceClient12 as ChatGPTReferenceClient, CommunitiesClient, ConflictError, DepopClient, 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, ReferenceClient9 as LeboncoinReferenceClient, SearchClient12 as LeboncoinSearchClient, SellersClient4 as LeboncoinSellersClient, LinkedInClient, ListsClient, BrokersClient as LoopNetBrokersClient, LoopNetClient, ListingsClient2 as LoopNetListingsClient, ReferenceClient11 as LoopNetReferenceClient, SearchClient14 as LoopNetSearchClient, NotFoundError, RateLimitError, RealtorClient, PropertiesClient as RealtorPropertiesClient, ReferenceClient8 as RealtorReferenceClient, SearchClient11 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, ChannelsClient as YoutubeChannelsClient, YoutubeClient, CommunityClient as YoutubeCommunityClient, MusicClient2 as YoutubeMusicClient, PlaylistsClient as YoutubePlaylistsClient, ReferenceClient7 as YoutubeReferenceClient, SearchClient10 as YoutubeSearchClient, ShortsClient2 as YoutubeShortsClient, TrendingClient2 as YoutubeTrendingClient, VideosClient3 as YoutubeVideosClient, AgentClient as ZillowAgentClient, ZillowClient, PropertiesClient2 as ZillowPropertiesClient, ReferenceClient10 as ZillowReferenceClient, SearchClient13 as ZillowSearchClient, collectAll, verifyWebhookSignature };
7515
7737
  //# sourceMappingURL=index.mjs.map
7516
7738
  //# sourceMappingURL=index.mjs.map