scrapebadger 0.27.1 → 0.28.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
@@ -4088,6 +4088,324 @@ var ApartmentsClient = class {
4088
4088
  }
4089
4089
  };
4090
4090
 
4091
+ // src/instagram/users.ts
4092
+ var UsersClient4 = class {
4093
+ client;
4094
+ constructor(client) {
4095
+ this.client = client;
4096
+ }
4097
+ /** Get a user's full profile. */
4098
+ async get(username) {
4099
+ return this.client.request(`/v1/instagram/users/${username}`);
4100
+ }
4101
+ /** Get "About this account" metadata for a user. */
4102
+ async about(username) {
4103
+ return this.client.request(
4104
+ `/v1/instagram/users/${username}/about`
4105
+ );
4106
+ }
4107
+ /** Get accounts related/suggested for a user. */
4108
+ async related(username) {
4109
+ return this.client.request(
4110
+ `/v1/instagram/users/${username}/related`
4111
+ );
4112
+ }
4113
+ /** Get a user's timeline posts. */
4114
+ async posts(username, options = {}) {
4115
+ return this.media(`/v1/instagram/users/${username}/posts`, options);
4116
+ }
4117
+ /** Get a user's video posts (IGTV/feed videos). */
4118
+ async videos(username, options = {}) {
4119
+ return this.media(`/v1/instagram/users/${username}/videos`, options);
4120
+ }
4121
+ /** Get a user's reels. */
4122
+ async reels(username, options = {}) {
4123
+ return this.media(`/v1/instagram/users/${username}/reels`, options);
4124
+ }
4125
+ /** Get media a user is tagged in. */
4126
+ async tagged(username, options = {}) {
4127
+ return this.media(`/v1/instagram/users/${username}/tagged`, options);
4128
+ }
4129
+ /** Get a user's pinned posts. */
4130
+ async pinned(username) {
4131
+ return this.client.request(
4132
+ `/v1/instagram/users/${username}/pinned`
4133
+ );
4134
+ }
4135
+ /**
4136
+ * Get a user's followers.
4137
+ *
4138
+ * @param username - Instagram username.
4139
+ * @param options.amount - Number of followers to return.
4140
+ * @param options.cursor - Pagination cursor from a previous response.
4141
+ * @param options.order - Ordering hint (e.g. "default", "date_followed_earliest").
4142
+ */
4143
+ async followers(username, options = {}) {
4144
+ return this.client.request(
4145
+ `/v1/instagram/users/${username}/followers`,
4146
+ {
4147
+ params: {
4148
+ amount: options.amount,
4149
+ cursor: options.cursor,
4150
+ order: options.order
4151
+ }
4152
+ }
4153
+ );
4154
+ }
4155
+ /** Get the accounts a user follows. */
4156
+ async following(username, options = {}) {
4157
+ return this.client.request(
4158
+ `/v1/instagram/users/${username}/following`,
4159
+ { params: { amount: options.amount, cursor: options.cursor } }
4160
+ );
4161
+ }
4162
+ /** Search within a user's followers by name/username. */
4163
+ async searchFollowers(username, query, options = {}) {
4164
+ return this.client.request(
4165
+ `/v1/instagram/users/${username}/followers/search`,
4166
+ {
4167
+ params: { query, amount: options.amount, cursor: options.cursor }
4168
+ }
4169
+ );
4170
+ }
4171
+ /** Get a user's currently-live stories. */
4172
+ async stories(username) {
4173
+ return this.client.request(
4174
+ `/v1/instagram/users/${username}/stories`
4175
+ );
4176
+ }
4177
+ /** Get a user's story highlights. */
4178
+ async highlights(username) {
4179
+ return this.client.request(
4180
+ `/v1/instagram/users/${username}/highlights`
4181
+ );
4182
+ }
4183
+ async media(path, options) {
4184
+ return this.client.request(path, {
4185
+ params: { amount: options.amount, cursor: options.cursor }
4186
+ });
4187
+ }
4188
+ };
4189
+
4190
+ // src/instagram/media.ts
4191
+ var MediaClient = class {
4192
+ client;
4193
+ constructor(client) {
4194
+ this.client = client;
4195
+ }
4196
+ /**
4197
+ * Get a media's full details.
4198
+ *
4199
+ * @param code - The media shortcode (from the `/p/<code>/` URL).
4200
+ */
4201
+ async get(code) {
4202
+ return this.client.request(`/v1/instagram/media/${code}`);
4203
+ }
4204
+ /** Get oEmbed metadata for a media permalink. */
4205
+ async oembed(code) {
4206
+ return this.client.request(`/v1/instagram/media/${code}/oembed`);
4207
+ }
4208
+ /** Get top-level comments on a media. */
4209
+ async comments(code, options = {}) {
4210
+ return this.client.request(
4211
+ `/v1/instagram/media/${code}/comments`,
4212
+ { params: { amount: options.amount, cursor: options.cursor } }
4213
+ );
4214
+ }
4215
+ /** Get the users who liked a media. */
4216
+ async likers(code) {
4217
+ return this.client.request(
4218
+ `/v1/instagram/media/${code}/likers`
4219
+ );
4220
+ }
4221
+ /** Get replies to a comment. */
4222
+ async replies(code, commentId, options = {}) {
4223
+ return this.client.request(
4224
+ `/v1/instagram/media/${code}/comments/${commentId}/replies`,
4225
+ { params: { amount: options.amount, cursor: options.cursor } }
4226
+ );
4227
+ }
4228
+ /** Get the users who liked a comment. */
4229
+ async commentLikers(code, commentId) {
4230
+ return this.client.request(
4231
+ `/v1/instagram/media/${code}/comments/${commentId}/likers`
4232
+ );
4233
+ }
4234
+ };
4235
+
4236
+ // src/instagram/search.ts
4237
+ var SearchClient4 = class {
4238
+ client;
4239
+ constructor(client) {
4240
+ this.client = client;
4241
+ }
4242
+ /** Search accounts by name/username. */
4243
+ async users(query) {
4244
+ return this.client.request(
4245
+ "/v1/instagram/search/users",
4246
+ { params: { query } }
4247
+ );
4248
+ }
4249
+ /** Search hashtags. */
4250
+ async hashtags(query) {
4251
+ return this.client.request(
4252
+ "/v1/instagram/search/hashtags",
4253
+ { params: { query } }
4254
+ );
4255
+ }
4256
+ /** Search places/locations. */
4257
+ async places(query) {
4258
+ return this.client.request(
4259
+ "/v1/instagram/search/places",
4260
+ { params: { query } }
4261
+ );
4262
+ }
4263
+ /** Search reels. */
4264
+ async reels(query) {
4265
+ return this.client.request(
4266
+ "/v1/instagram/search/reels",
4267
+ { params: { query } }
4268
+ );
4269
+ }
4270
+ /** Search music/audio tracks. */
4271
+ async music(query) {
4272
+ return this.client.request(
4273
+ "/v1/instagram/search/music",
4274
+ { params: { query } }
4275
+ );
4276
+ }
4277
+ /** Get blended "top" results (users, hashtags, and places). */
4278
+ async top(query) {
4279
+ return this.client.request("/v1/instagram/search/top", {
4280
+ params: { query }
4281
+ });
4282
+ }
4283
+ /** Get typeahead/autocomplete suggestions (mixed entity types). */
4284
+ async autocomplete(query) {
4285
+ return this.client.request(
4286
+ "/v1/instagram/search/autocomplete",
4287
+ { params: { query } }
4288
+ );
4289
+ }
4290
+ };
4291
+
4292
+ // src/instagram/reference.ts
4293
+ function mediaFeed(client, path, options) {
4294
+ return client.request(path, {
4295
+ params: { amount: options.amount, cursor: options.cursor }
4296
+ });
4297
+ }
4298
+ var HashtagsClient = class {
4299
+ client;
4300
+ constructor(client) {
4301
+ this.client = client;
4302
+ }
4303
+ /** Get a hashtag's info (media count, cover). */
4304
+ async get(tag) {
4305
+ return this.client.request(`/v1/instagram/hashtags/${tag}`);
4306
+ }
4307
+ /** Get the top/popular media for a hashtag. */
4308
+ async top(tag, options = {}) {
4309
+ return mediaFeed(this.client, `/v1/instagram/hashtags/${tag}/top`, options);
4310
+ }
4311
+ /** Get the most recent media for a hashtag. */
4312
+ async recent(tag, options = {}) {
4313
+ return mediaFeed(
4314
+ this.client,
4315
+ `/v1/instagram/hashtags/${tag}/recent`,
4316
+ options
4317
+ );
4318
+ }
4319
+ /** Get reels for a hashtag. */
4320
+ async reels(tag, options = {}) {
4321
+ return mediaFeed(
4322
+ this.client,
4323
+ `/v1/instagram/hashtags/${tag}/reels`,
4324
+ options
4325
+ );
4326
+ }
4327
+ };
4328
+ var LocationsClient = class {
4329
+ client;
4330
+ constructor(client) {
4331
+ this.client = client;
4332
+ }
4333
+ /** Get a location's info. */
4334
+ async get(pk) {
4335
+ return this.client.request(`/v1/instagram/locations/${pk}`);
4336
+ }
4337
+ /** Get the top/popular media for a location. */
4338
+ async top(pk, options = {}) {
4339
+ return mediaFeed(this.client, `/v1/instagram/locations/${pk}/top`, options);
4340
+ }
4341
+ /** Get the most recent media for a location. */
4342
+ async recent(pk, options = {}) {
4343
+ return mediaFeed(
4344
+ this.client,
4345
+ `/v1/instagram/locations/${pk}/recent`,
4346
+ options
4347
+ );
4348
+ }
4349
+ /** Search locations by name. */
4350
+ async search(query) {
4351
+ return this.client.request(
4352
+ "/v1/instagram/locations/search",
4353
+ { params: { query } }
4354
+ );
4355
+ }
4356
+ };
4357
+ var AudioClient = class {
4358
+ client;
4359
+ constructor(client) {
4360
+ this.client = client;
4361
+ }
4362
+ /** Get an audio track's info. */
4363
+ async get(audioId) {
4364
+ return this.client.request(`/v1/instagram/audio/${audioId}`);
4365
+ }
4366
+ /** Get media that use an audio track. */
4367
+ async media(audioId, options = {}) {
4368
+ return mediaFeed(
4369
+ this.client,
4370
+ `/v1/instagram/audio/${audioId}/media`,
4371
+ options
4372
+ );
4373
+ }
4374
+ /** Get currently-trending audio tracks. */
4375
+ async trending() {
4376
+ return this.client.request("/v1/instagram/audio/trending");
4377
+ }
4378
+ };
4379
+
4380
+ // src/instagram/client.ts
4381
+ var InstagramClient = class {
4382
+ /** Client for user operations (profile, posts, followers, stories, highlights) */
4383
+ users;
4384
+ /** Client for media operations (detail, comments, replies, likers, oEmbed) */
4385
+ media;
4386
+ /** Client for search operations (users, hashtags, places, top, reels, music, autocomplete) */
4387
+ search;
4388
+ /** Client for hashtag operations (info, top, recent, reels) */
4389
+ hashtags;
4390
+ /** Client for location operations (info, top, recent, search) */
4391
+ locations;
4392
+ /** Client for audio operations (info, media, trending) */
4393
+ audio;
4394
+ /**
4395
+ * Create a new Instagram client.
4396
+ *
4397
+ * @param client - The base HTTP client for making requests.
4398
+ */
4399
+ constructor(client) {
4400
+ this.users = new UsersClient4(client);
4401
+ this.media = new MediaClient(client);
4402
+ this.search = new SearchClient4(client);
4403
+ this.hashtags = new HashtagsClient(client);
4404
+ this.locations = new LocationsClient(client);
4405
+ this.audio = new AudioClient(client);
4406
+ }
4407
+ };
4408
+
4091
4409
  // src/redfin/client.ts
4092
4410
  var RedfinClient = class {
4093
4411
  client;
@@ -4184,7 +4502,7 @@ var RedfinClient = class {
4184
4502
  };
4185
4503
 
4186
4504
  // src/amazon/search.ts
4187
- var SearchClient4 = class {
4505
+ var SearchClient5 = class {
4188
4506
  client;
4189
4507
  constructor(client) {
4190
4508
  this.client = client;
@@ -4448,7 +4766,7 @@ var AmazonClient = class {
4448
4766
  * @param client - The base HTTP client for making requests.
4449
4767
  */
4450
4768
  constructor(client) {
4451
- this.search = new SearchClient4(client);
4769
+ this.search = new SearchClient5(client);
4452
4770
  this.products = new ProductsClient2(client);
4453
4771
  this.listings = new ListingsClient(client);
4454
4772
  this.sellers = new SellersClient(client);
@@ -4457,7 +4775,7 @@ var AmazonClient = class {
4457
4775
  };
4458
4776
 
4459
4777
  // src/shopee/search.ts
4460
- var SearchClient5 = class {
4778
+ var SearchClient6 = class {
4461
4779
  client;
4462
4780
  constructor(client) {
4463
4781
  this.client = client;
@@ -4608,7 +4926,7 @@ var ShopeeClient = class {
4608
4926
  * @param client - The base HTTP client for making requests.
4609
4927
  */
4610
4928
  constructor(client) {
4611
- this.search = new SearchClient5(client);
4929
+ this.search = new SearchClient6(client);
4612
4930
  this.products = new ProductsClient3(client);
4613
4931
  this.reviews = new ReviewsClient(client);
4614
4932
  this.reference = new ReferenceClient3(client);
@@ -4616,7 +4934,7 @@ var ShopeeClient = class {
4616
4934
  };
4617
4935
 
4618
4936
  // src/tiktok/users.ts
4619
- var UsersClient4 = class {
4937
+ var UsersClient5 = class {
4620
4938
  client;
4621
4939
  constructor(client) {
4622
4940
  this.client = client;
@@ -4795,7 +5113,7 @@ var VideosClient2 = class {
4795
5113
  };
4796
5114
 
4797
5115
  // src/tiktok/search.ts
4798
- var SearchClient6 = class {
5116
+ var SearchClient7 = class {
4799
5117
  client;
4800
5118
  constructor(client) {
4801
5119
  this.client = client;
@@ -4900,7 +5218,7 @@ var MusicClient = class {
4900
5218
  };
4901
5219
 
4902
5220
  // src/tiktok/hashtags.ts
4903
- var HashtagsClient = class {
5221
+ var HashtagsClient2 = class {
4904
5222
  client;
4905
5223
  constructor(client) {
4906
5224
  this.client = client;
@@ -5051,11 +5369,11 @@ var TikTokClient = class {
5051
5369
  * @param client - The base HTTP client for making requests.
5052
5370
  */
5053
5371
  constructor(client) {
5054
- this.users = new UsersClient4(client);
5372
+ this.users = new UsersClient5(client);
5055
5373
  this.videos = new VideosClient2(client);
5056
- this.search = new SearchClient6(client);
5374
+ this.search = new SearchClient7(client);
5057
5375
  this.music = new MusicClient(client);
5058
- this.hashtags = new HashtagsClient(client);
5376
+ this.hashtags = new HashtagsClient2(client);
5059
5377
  this.trending = new TrendingClient(client);
5060
5378
  this.ads = new AdsClient(client);
5061
5379
  this.reference = new ReferenceClient4(client);
@@ -5063,7 +5381,7 @@ var TikTokClient = class {
5063
5381
  };
5064
5382
 
5065
5383
  // src/ebay/search.ts
5066
- var SearchClient7 = class {
5384
+ var SearchClient8 = class {
5067
5385
  client;
5068
5386
  constructor(client) {
5069
5387
  this.client = client;
@@ -5296,7 +5614,7 @@ var EbayClient = class {
5296
5614
  * @param client - The base HTTP client for making requests.
5297
5615
  */
5298
5616
  constructor(client) {
5299
- this.search = new SearchClient7(client);
5617
+ this.search = new SearchClient8(client);
5300
5618
  this.items = new ItemsClient2(client);
5301
5619
  this.sellers = new SellersClient2(client);
5302
5620
  this.categories = new CategoriesClient(client);
@@ -5305,7 +5623,7 @@ var EbayClient = class {
5305
5623
  };
5306
5624
 
5307
5625
  // src/youtube/search.ts
5308
- var SearchClient8 = class {
5626
+ var SearchClient9 = class {
5309
5627
  client;
5310
5628
  constructor(client) {
5311
5629
  this.client = client;
@@ -5898,7 +6216,7 @@ var YoutubeClient = class {
5898
6216
  * @param client - The base HTTP client for making requests.
5899
6217
  */
5900
6218
  constructor(client) {
5901
- this.search = new SearchClient8(client);
6219
+ this.search = new SearchClient9(client);
5902
6220
  this.videos = new VideosClient3(client);
5903
6221
  this.channels = new ChannelsClient(client);
5904
6222
  this.playlists = new PlaylistsClient(client);
@@ -5911,7 +6229,7 @@ var YoutubeClient = class {
5911
6229
  };
5912
6230
 
5913
6231
  // src/realtor/search.ts
5914
- var SearchClient9 = class {
6232
+ var SearchClient10 = class {
5915
6233
  client;
5916
6234
  constructor(client) {
5917
6235
  this.client = client;
@@ -6014,14 +6332,14 @@ var RealtorClient = class {
6014
6332
  * @param client - The base HTTP client for making requests.
6015
6333
  */
6016
6334
  constructor(client) {
6017
- this.search = new SearchClient9(client);
6335
+ this.search = new SearchClient10(client);
6018
6336
  this.properties = new PropertiesClient(client);
6019
6337
  this.reference = new ReferenceClient7(client);
6020
6338
  }
6021
6339
  };
6022
6340
 
6023
6341
  // src/leboncoin/search.ts
6024
- var SearchClient10 = class {
6342
+ var SearchClient11 = class {
6025
6343
  client;
6026
6344
  constructor(client) {
6027
6345
  this.client = client;
@@ -6194,7 +6512,7 @@ var LeboncoinClient = class {
6194
6512
  * @param client - The base HTTP client for making requests.
6195
6513
  */
6196
6514
  constructor(client) {
6197
- this.search = new SearchClient10(client);
6515
+ this.search = new SearchClient11(client);
6198
6516
  this.ads = new AdsClient2(client);
6199
6517
  this.sellers = new SellersClient3(client);
6200
6518
  this.reference = new ReferenceClient8(client);
@@ -6202,7 +6520,7 @@ var LeboncoinClient = class {
6202
6520
  };
6203
6521
 
6204
6522
  // src/zillow/search.ts
6205
- var SearchClient11 = class {
6523
+ var SearchClient12 = class {
6206
6524
  client;
6207
6525
  constructor(client) {
6208
6526
  this.client = client;
@@ -6337,7 +6655,7 @@ var ZillowClient = class {
6337
6655
  * @param client - The base HTTP client for making requests.
6338
6656
  */
6339
6657
  constructor(client) {
6340
- this.search = new SearchClient11(client);
6658
+ this.search = new SearchClient12(client);
6341
6659
  this.properties = new PropertiesClient2(client);
6342
6660
  this.agent = new AgentClient(client);
6343
6661
  this.reference = new ReferenceClient9(client);
@@ -6475,7 +6793,7 @@ var ImmobiliareClient = class {
6475
6793
  };
6476
6794
 
6477
6795
  // src/loopnet/search.ts
6478
- var SearchClient12 = class {
6796
+ var SearchClient13 = class {
6479
6797
  client;
6480
6798
  constructor(client) {
6481
6799
  this.client = client;
@@ -6599,7 +6917,7 @@ var LoopNetClient = class {
6599
6917
  * @param client - The base HTTP client for making requests.
6600
6918
  */
6601
6919
  constructor(client) {
6602
- this.search = new SearchClient12(client);
6920
+ this.search = new SearchClient13(client);
6603
6921
  this.listings = new ListingsClient2(client);
6604
6922
  this.brokers = new BrokersClient(client);
6605
6923
  this.reference = new ReferenceClient10(client);
@@ -7028,6 +7346,8 @@ var ScrapeBadger = class {
7028
7346
  reddit;
7029
7347
  /** Apartments.com scraper API client — search + property with unit-level pricing (US) */
7030
7348
  apartments;
7349
+ /** Instagram scraper API client — users, media, search, hashtags, locations, audio */
7350
+ instagram;
7031
7351
  /** Redfin scraper API client — search, property, agent, autocomplete, markets (redfin.com, US) */
7032
7352
  redfin;
7033
7353
  /** Amazon scraper API client — 14 endpoints */
@@ -7096,6 +7416,7 @@ var ScrapeBadger = class {
7096
7416
  this.google = new GoogleClient(this.baseClient);
7097
7417
  this.reddit = new RedditClient(this.baseClient);
7098
7418
  this.apartments = new ApartmentsClient(this.baseClient);
7419
+ this.instagram = new InstagramClient(this.baseClient);
7099
7420
  this.redfin = new RedfinClient(this.baseClient);
7100
7421
  this.amazon = new AmazonClient(this.baseClient);
7101
7422
  this.shopee = new ShopeeClient(this.baseClient);
@@ -7113,6 +7434,6 @@ var ScrapeBadger = class {
7113
7434
  }
7114
7435
  };
7115
7436
 
7116
- export { AccountRestrictedError, AmazonClient, ListingsClient as AmazonListingsClient, ProductsClient2 as AmazonProductsClient, ReferenceClient2 as AmazonReferenceClient, SearchClient4 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, SearchClient7 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, InsufficientCreditsError, AdsClient2 as LeboncoinAdsClient, LeboncoinClient, ReferenceClient8 as LeboncoinReferenceClient, SearchClient10 as LeboncoinSearchClient, SellersClient3 as LeboncoinSellersClient, LinkedInClient, ListsClient, BrokersClient as LoopNetBrokersClient, LoopNetClient, ListingsClient2 as LoopNetListingsClient, ReferenceClient10 as LoopNetReferenceClient, SearchClient12 as LoopNetSearchClient, NotFoundError, RateLimitError, RealtorClient, PropertiesClient as RealtorPropertiesClient, ReferenceClient7 as RealtorReferenceClient, SearchClient9 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, SearchClient5 as ShopeeSearchClient, SpacesClient, StreamClient, AdsClient as TikTokAdsClient, TikTokClient, HashtagsClient as TikTokHashtagsClient, MusicClient as TikTokMusicClient, ReferenceClient4 as TikTokReferenceClient, SearchClient6 as TikTokSearchClient, TrendingClient as TikTokTrendingClient, UsersClient4 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, SearchClient8 as YoutubeSearchClient, ShortsClient2 as YoutubeShortsClient, TrendingClient2 as YoutubeTrendingClient, VideosClient3 as YoutubeVideosClient, AgentClient as ZillowAgentClient, ZillowClient, PropertiesClient2 as ZillowPropertiesClient, ReferenceClient9 as ZillowReferenceClient, SearchClient11 as ZillowSearchClient, collectAll, verifyWebhookSignature };
7437
+ 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 };
7117
7438
  //# sourceMappingURL=index.mjs.map
7118
7439
  //# sourceMappingURL=index.mjs.map