scrapebadger 0.27.1 → 0.29.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.js CHANGED
@@ -4094,6 +4094,401 @@ var ApartmentsClient = class {
4094
4094
  }
4095
4095
  };
4096
4096
 
4097
+ // src/instagram/users.ts
4098
+ var UsersClient4 = class {
4099
+ client;
4100
+ constructor(client) {
4101
+ this.client = client;
4102
+ }
4103
+ /** Get a user's full profile. */
4104
+ async get(username) {
4105
+ return this.client.request(`/v1/instagram/users/${username}`);
4106
+ }
4107
+ /**
4108
+ * Get "About this account" metadata for a user.
4109
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4110
+ */
4111
+ async about(username) {
4112
+ return this.client.request(
4113
+ `/v1/instagram/users/${username}/about`
4114
+ );
4115
+ }
4116
+ /** Get accounts related/suggested for a user. */
4117
+ async related(username) {
4118
+ return this.client.request(
4119
+ `/v1/instagram/users/${username}/related`
4120
+ );
4121
+ }
4122
+ /** Get a user's timeline posts. */
4123
+ async posts(username, options = {}) {
4124
+ return this.media(`/v1/instagram/users/${username}/posts`, options);
4125
+ }
4126
+ /**
4127
+ * Get a user's video posts (IGTV/feed videos).
4128
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4129
+ */
4130
+ async videos(username, options = {}) {
4131
+ return this.media(`/v1/instagram/users/${username}/videos`, options);
4132
+ }
4133
+ /**
4134
+ * Get a user's reels.
4135
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4136
+ */
4137
+ async reels(username, options = {}) {
4138
+ return this.media(`/v1/instagram/users/${username}/reels`, options);
4139
+ }
4140
+ /**
4141
+ * Get media a user is tagged in.
4142
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4143
+ */
4144
+ async tagged(username, options = {}) {
4145
+ return this.media(`/v1/instagram/users/${username}/tagged`, options);
4146
+ }
4147
+ /**
4148
+ * Get a user's pinned posts.
4149
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4150
+ */
4151
+ async pinned(username) {
4152
+ return this.client.request(
4153
+ `/v1/instagram/users/${username}/pinned`
4154
+ );
4155
+ }
4156
+ /**
4157
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4158
+ *
4159
+ * Get a user's followers.
4160
+ *
4161
+ * @param username - Instagram username.
4162
+ * @param options.amount - Number of followers to return.
4163
+ * @param options.cursor - Pagination cursor from a previous response.
4164
+ * @param options.order - Ordering hint (e.g. "default", "date_followed_earliest").
4165
+ */
4166
+ async followers(username, options = {}) {
4167
+ return this.client.request(
4168
+ `/v1/instagram/users/${username}/followers`,
4169
+ {
4170
+ params: {
4171
+ amount: options.amount,
4172
+ cursor: options.cursor,
4173
+ order: options.order
4174
+ }
4175
+ }
4176
+ );
4177
+ }
4178
+ /**
4179
+ * Get the accounts a user follows.
4180
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4181
+ */
4182
+ async following(username, options = {}) {
4183
+ return this.client.request(
4184
+ `/v1/instagram/users/${username}/following`,
4185
+ { params: { amount: options.amount, cursor: options.cursor } }
4186
+ );
4187
+ }
4188
+ /**
4189
+ * Search within a user's followers by name/username.
4190
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4191
+ */
4192
+ async searchFollowers(username, query, options = {}) {
4193
+ return this.client.request(
4194
+ `/v1/instagram/users/${username}/followers/search`,
4195
+ {
4196
+ params: { query, amount: options.amount, cursor: options.cursor }
4197
+ }
4198
+ );
4199
+ }
4200
+ /**
4201
+ * Get a user's currently-live stories.
4202
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4203
+ */
4204
+ async stories(username) {
4205
+ return this.client.request(
4206
+ `/v1/instagram/users/${username}/stories`
4207
+ );
4208
+ }
4209
+ /**
4210
+ * Get a user's story highlights.
4211
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4212
+ */
4213
+ async highlights(username) {
4214
+ return this.client.request(
4215
+ `/v1/instagram/users/${username}/highlights`
4216
+ );
4217
+ }
4218
+ async media(path, options) {
4219
+ return this.client.request(path, {
4220
+ params: { amount: options.amount, cursor: options.cursor }
4221
+ });
4222
+ }
4223
+ };
4224
+
4225
+ // src/instagram/media.ts
4226
+ var MediaClient = class {
4227
+ client;
4228
+ constructor(client) {
4229
+ this.client = client;
4230
+ }
4231
+ /**
4232
+ * Get a media's full details.
4233
+ *
4234
+ * @param code - The media shortcode (from the `/p/<code>/` URL).
4235
+ */
4236
+ async get(code) {
4237
+ return this.client.request(`/v1/instagram/media/${code}`);
4238
+ }
4239
+ /** Get oEmbed metadata for a media permalink. */
4240
+ async oembed(code) {
4241
+ return this.client.request(`/v1/instagram/media/${code}/oembed`);
4242
+ }
4243
+ /** Get top-level comments on a media. */
4244
+ async comments(code, options = {}) {
4245
+ return this.client.request(
4246
+ `/v1/instagram/media/${code}/comments`,
4247
+ { params: { amount: options.amount, cursor: options.cursor } }
4248
+ );
4249
+ }
4250
+ /**
4251
+ * Get the users who liked a media.
4252
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4253
+ */
4254
+ async likers(code) {
4255
+ return this.client.request(
4256
+ `/v1/instagram/media/${code}/likers`
4257
+ );
4258
+ }
4259
+ /**
4260
+ * Get replies to a comment.
4261
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4262
+ */
4263
+ async replies(code, commentId, options = {}) {
4264
+ return this.client.request(
4265
+ `/v1/instagram/media/${code}/comments/${commentId}/replies`,
4266
+ { params: { amount: options.amount, cursor: options.cursor } }
4267
+ );
4268
+ }
4269
+ /** Get the users who liked a comment. */
4270
+ async commentLikers(code, commentId) {
4271
+ return this.client.request(
4272
+ `/v1/instagram/media/${code}/comments/${commentId}/likers`
4273
+ );
4274
+ }
4275
+ };
4276
+
4277
+ // src/instagram/search.ts
4278
+ var SearchClient4 = class {
4279
+ client;
4280
+ constructor(client) {
4281
+ this.client = client;
4282
+ }
4283
+ /**
4284
+ * Search accounts by name/username.
4285
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4286
+ */
4287
+ async users(query) {
4288
+ return this.client.request(
4289
+ "/v1/instagram/search/users",
4290
+ { params: { query } }
4291
+ );
4292
+ }
4293
+ /** Search hashtags. */
4294
+ async hashtags(query) {
4295
+ return this.client.request(
4296
+ "/v1/instagram/search/hashtags",
4297
+ { params: { query } }
4298
+ );
4299
+ }
4300
+ /**
4301
+ * Search places/locations.
4302
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4303
+ */
4304
+ async places(query) {
4305
+ return this.client.request(
4306
+ "/v1/instagram/search/places",
4307
+ { params: { query } }
4308
+ );
4309
+ }
4310
+ /**
4311
+ * Search reels.
4312
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4313
+ */
4314
+ async reels(query) {
4315
+ return this.client.request(
4316
+ "/v1/instagram/search/reels",
4317
+ { params: { query } }
4318
+ );
4319
+ }
4320
+ /**
4321
+ * Search music/audio tracks.
4322
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4323
+ */
4324
+ async music(query) {
4325
+ return this.client.request(
4326
+ "/v1/instagram/search/music",
4327
+ { params: { query } }
4328
+ );
4329
+ }
4330
+ /** Get blended "top" results (users, hashtags, and places). */
4331
+ async top(query) {
4332
+ return this.client.request("/v1/instagram/search/top", {
4333
+ params: { query }
4334
+ });
4335
+ }
4336
+ /**
4337
+ * Get typeahead/autocomplete suggestions (mixed entity types).
4338
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4339
+ */
4340
+ async autocomplete(query) {
4341
+ return this.client.request(
4342
+ "/v1/instagram/search/autocomplete",
4343
+ { params: { query } }
4344
+ );
4345
+ }
4346
+ };
4347
+
4348
+ // src/instagram/reference.ts
4349
+ function mediaFeed(client, path, options) {
4350
+ return client.request(path, {
4351
+ params: { amount: options.amount, cursor: options.cursor }
4352
+ });
4353
+ }
4354
+ var HashtagsClient = class {
4355
+ client;
4356
+ constructor(client) {
4357
+ this.client = client;
4358
+ }
4359
+ /** Get a hashtag's info (media count, cover). */
4360
+ async get(tag) {
4361
+ return this.client.request(`/v1/instagram/hashtags/${tag}`);
4362
+ }
4363
+ /**
4364
+ * Get the top/popular media for a hashtag.
4365
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4366
+ */
4367
+ async top(tag, options = {}) {
4368
+ return mediaFeed(this.client, `/v1/instagram/hashtags/${tag}/top`, options);
4369
+ }
4370
+ /** Get the most recent media for a hashtag. */
4371
+ async recent(tag, options = {}) {
4372
+ return mediaFeed(
4373
+ this.client,
4374
+ `/v1/instagram/hashtags/${tag}/recent`,
4375
+ options
4376
+ );
4377
+ }
4378
+ /**
4379
+ * Get reels for a hashtag.
4380
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4381
+ */
4382
+ async reels(tag, options = {}) {
4383
+ return mediaFeed(
4384
+ this.client,
4385
+ `/v1/instagram/hashtags/${tag}/reels`,
4386
+ options
4387
+ );
4388
+ }
4389
+ };
4390
+ var LocationsClient = class {
4391
+ client;
4392
+ constructor(client) {
4393
+ this.client = client;
4394
+ }
4395
+ /**
4396
+ * Get a location's info.
4397
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4398
+ */
4399
+ async get(pk) {
4400
+ return this.client.request(`/v1/instagram/locations/${pk}`);
4401
+ }
4402
+ /**
4403
+ * Get the top/popular media for a location.
4404
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4405
+ */
4406
+ async top(pk, options = {}) {
4407
+ return mediaFeed(this.client, `/v1/instagram/locations/${pk}/top`, options);
4408
+ }
4409
+ /**
4410
+ * Get the most recent media for a location.
4411
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4412
+ */
4413
+ async recent(pk, options = {}) {
4414
+ return mediaFeed(
4415
+ this.client,
4416
+ `/v1/instagram/locations/${pk}/recent`,
4417
+ options
4418
+ );
4419
+ }
4420
+ /**
4421
+ * Search locations by name.
4422
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4423
+ */
4424
+ async search(query) {
4425
+ return this.client.request(
4426
+ "/v1/instagram/locations/search",
4427
+ { params: { query } }
4428
+ );
4429
+ }
4430
+ };
4431
+ var AudioClient = class {
4432
+ client;
4433
+ constructor(client) {
4434
+ this.client = client;
4435
+ }
4436
+ /**
4437
+ * Get an audio track's info.
4438
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4439
+ */
4440
+ async get(audioId) {
4441
+ return this.client.request(`/v1/instagram/audio/${audioId}`);
4442
+ }
4443
+ /**
4444
+ * Get media that use an audio track.
4445
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4446
+ */
4447
+ async media(audioId, options = {}) {
4448
+ return mediaFeed(
4449
+ this.client,
4450
+ `/v1/instagram/audio/${audioId}/media`,
4451
+ options
4452
+ );
4453
+ }
4454
+ /**
4455
+ * Get currently-trending audio tracks.
4456
+ * @deprecated Temporarily unavailable — authenticated data is temporarily offline.
4457
+ */
4458
+ async trending() {
4459
+ return this.client.request("/v1/instagram/audio/trending");
4460
+ }
4461
+ };
4462
+
4463
+ // src/instagram/client.ts
4464
+ var InstagramClient = class {
4465
+ /** Client for user operations (profile, posts, followers, stories, highlights) */
4466
+ users;
4467
+ /** Client for media operations (detail, comments, replies, likers, oEmbed) */
4468
+ media;
4469
+ /** Client for search operations (users, hashtags, places, top, reels, music, autocomplete) */
4470
+ search;
4471
+ /** Client for hashtag operations (info, top, recent, reels) */
4472
+ hashtags;
4473
+ /** Client for location operations (info, top, recent, search) */
4474
+ locations;
4475
+ /** Client for audio operations (info, media, trending) */
4476
+ audio;
4477
+ /**
4478
+ * Create a new Instagram client.
4479
+ *
4480
+ * @param client - The base HTTP client for making requests.
4481
+ */
4482
+ constructor(client) {
4483
+ this.users = new UsersClient4(client);
4484
+ this.media = new MediaClient(client);
4485
+ this.search = new SearchClient4(client);
4486
+ this.hashtags = new HashtagsClient(client);
4487
+ this.locations = new LocationsClient(client);
4488
+ this.audio = new AudioClient(client);
4489
+ }
4490
+ };
4491
+
4097
4492
  // src/redfin/client.ts
4098
4493
  var RedfinClient = class {
4099
4494
  client;
@@ -4190,7 +4585,7 @@ var RedfinClient = class {
4190
4585
  };
4191
4586
 
4192
4587
  // src/amazon/search.ts
4193
- var SearchClient4 = class {
4588
+ var SearchClient5 = class {
4194
4589
  client;
4195
4590
  constructor(client) {
4196
4591
  this.client = client;
@@ -4454,7 +4849,7 @@ var AmazonClient = class {
4454
4849
  * @param client - The base HTTP client for making requests.
4455
4850
  */
4456
4851
  constructor(client) {
4457
- this.search = new SearchClient4(client);
4852
+ this.search = new SearchClient5(client);
4458
4853
  this.products = new ProductsClient2(client);
4459
4854
  this.listings = new ListingsClient(client);
4460
4855
  this.sellers = new SellersClient(client);
@@ -4463,7 +4858,7 @@ var AmazonClient = class {
4463
4858
  };
4464
4859
 
4465
4860
  // src/shopee/search.ts
4466
- var SearchClient5 = class {
4861
+ var SearchClient6 = class {
4467
4862
  client;
4468
4863
  constructor(client) {
4469
4864
  this.client = client;
@@ -4614,7 +5009,7 @@ var ShopeeClient = class {
4614
5009
  * @param client - The base HTTP client for making requests.
4615
5010
  */
4616
5011
  constructor(client) {
4617
- this.search = new SearchClient5(client);
5012
+ this.search = new SearchClient6(client);
4618
5013
  this.products = new ProductsClient3(client);
4619
5014
  this.reviews = new ReviewsClient(client);
4620
5015
  this.reference = new ReferenceClient3(client);
@@ -4622,7 +5017,7 @@ var ShopeeClient = class {
4622
5017
  };
4623
5018
 
4624
5019
  // src/tiktok/users.ts
4625
- var UsersClient4 = class {
5020
+ var UsersClient5 = class {
4626
5021
  client;
4627
5022
  constructor(client) {
4628
5023
  this.client = client;
@@ -4801,7 +5196,7 @@ var VideosClient2 = class {
4801
5196
  };
4802
5197
 
4803
5198
  // src/tiktok/search.ts
4804
- var SearchClient6 = class {
5199
+ var SearchClient7 = class {
4805
5200
  client;
4806
5201
  constructor(client) {
4807
5202
  this.client = client;
@@ -4906,7 +5301,7 @@ var MusicClient = class {
4906
5301
  };
4907
5302
 
4908
5303
  // src/tiktok/hashtags.ts
4909
- var HashtagsClient = class {
5304
+ var HashtagsClient2 = class {
4910
5305
  client;
4911
5306
  constructor(client) {
4912
5307
  this.client = client;
@@ -5057,11 +5452,11 @@ var TikTokClient = class {
5057
5452
  * @param client - The base HTTP client for making requests.
5058
5453
  */
5059
5454
  constructor(client) {
5060
- this.users = new UsersClient4(client);
5455
+ this.users = new UsersClient5(client);
5061
5456
  this.videos = new VideosClient2(client);
5062
- this.search = new SearchClient6(client);
5457
+ this.search = new SearchClient7(client);
5063
5458
  this.music = new MusicClient(client);
5064
- this.hashtags = new HashtagsClient(client);
5459
+ this.hashtags = new HashtagsClient2(client);
5065
5460
  this.trending = new TrendingClient(client);
5066
5461
  this.ads = new AdsClient(client);
5067
5462
  this.reference = new ReferenceClient4(client);
@@ -5069,7 +5464,7 @@ var TikTokClient = class {
5069
5464
  };
5070
5465
 
5071
5466
  // src/ebay/search.ts
5072
- var SearchClient7 = class {
5467
+ var SearchClient8 = class {
5073
5468
  client;
5074
5469
  constructor(client) {
5075
5470
  this.client = client;
@@ -5302,7 +5697,7 @@ var EbayClient = class {
5302
5697
  * @param client - The base HTTP client for making requests.
5303
5698
  */
5304
5699
  constructor(client) {
5305
- this.search = new SearchClient7(client);
5700
+ this.search = new SearchClient8(client);
5306
5701
  this.items = new ItemsClient2(client);
5307
5702
  this.sellers = new SellersClient2(client);
5308
5703
  this.categories = new CategoriesClient(client);
@@ -5311,7 +5706,7 @@ var EbayClient = class {
5311
5706
  };
5312
5707
 
5313
5708
  // src/youtube/search.ts
5314
- var SearchClient8 = class {
5709
+ var SearchClient9 = class {
5315
5710
  client;
5316
5711
  constructor(client) {
5317
5712
  this.client = client;
@@ -5904,7 +6299,7 @@ var YoutubeClient = class {
5904
6299
  * @param client - The base HTTP client for making requests.
5905
6300
  */
5906
6301
  constructor(client) {
5907
- this.search = new SearchClient8(client);
6302
+ this.search = new SearchClient9(client);
5908
6303
  this.videos = new VideosClient3(client);
5909
6304
  this.channels = new ChannelsClient(client);
5910
6305
  this.playlists = new PlaylistsClient(client);
@@ -5917,7 +6312,7 @@ var YoutubeClient = class {
5917
6312
  };
5918
6313
 
5919
6314
  // src/realtor/search.ts
5920
- var SearchClient9 = class {
6315
+ var SearchClient10 = class {
5921
6316
  client;
5922
6317
  constructor(client) {
5923
6318
  this.client = client;
@@ -6020,14 +6415,14 @@ var RealtorClient = class {
6020
6415
  * @param client - The base HTTP client for making requests.
6021
6416
  */
6022
6417
  constructor(client) {
6023
- this.search = new SearchClient9(client);
6418
+ this.search = new SearchClient10(client);
6024
6419
  this.properties = new PropertiesClient(client);
6025
6420
  this.reference = new ReferenceClient7(client);
6026
6421
  }
6027
6422
  };
6028
6423
 
6029
6424
  // src/leboncoin/search.ts
6030
- var SearchClient10 = class {
6425
+ var SearchClient11 = class {
6031
6426
  client;
6032
6427
  constructor(client) {
6033
6428
  this.client = client;
@@ -6200,7 +6595,7 @@ var LeboncoinClient = class {
6200
6595
  * @param client - The base HTTP client for making requests.
6201
6596
  */
6202
6597
  constructor(client) {
6203
- this.search = new SearchClient10(client);
6598
+ this.search = new SearchClient11(client);
6204
6599
  this.ads = new AdsClient2(client);
6205
6600
  this.sellers = new SellersClient3(client);
6206
6601
  this.reference = new ReferenceClient8(client);
@@ -6208,7 +6603,7 @@ var LeboncoinClient = class {
6208
6603
  };
6209
6604
 
6210
6605
  // src/zillow/search.ts
6211
- var SearchClient11 = class {
6606
+ var SearchClient12 = class {
6212
6607
  client;
6213
6608
  constructor(client) {
6214
6609
  this.client = client;
@@ -6343,7 +6738,7 @@ var ZillowClient = class {
6343
6738
  * @param client - The base HTTP client for making requests.
6344
6739
  */
6345
6740
  constructor(client) {
6346
- this.search = new SearchClient11(client);
6741
+ this.search = new SearchClient12(client);
6347
6742
  this.properties = new PropertiesClient2(client);
6348
6743
  this.agent = new AgentClient(client);
6349
6744
  this.reference = new ReferenceClient9(client);
@@ -6481,7 +6876,7 @@ var ImmobiliareClient = class {
6481
6876
  };
6482
6877
 
6483
6878
  // src/loopnet/search.ts
6484
- var SearchClient12 = class {
6879
+ var SearchClient13 = class {
6485
6880
  client;
6486
6881
  constructor(client) {
6487
6882
  this.client = client;
@@ -6605,7 +7000,7 @@ var LoopNetClient = class {
6605
7000
  * @param client - The base HTTP client for making requests.
6606
7001
  */
6607
7002
  constructor(client) {
6608
- this.search = new SearchClient12(client);
7003
+ this.search = new SearchClient13(client);
6609
7004
  this.listings = new ListingsClient2(client);
6610
7005
  this.brokers = new BrokersClient(client);
6611
7006
  this.reference = new ReferenceClient10(client);
@@ -7034,6 +7429,8 @@ var ScrapeBadger = class {
7034
7429
  reddit;
7035
7430
  /** Apartments.com scraper API client — search + property with unit-level pricing (US) */
7036
7431
  apartments;
7432
+ /** Instagram scraper API client — users, media, search, hashtags, locations, audio */
7433
+ instagram;
7037
7434
  /** Redfin scraper API client — search, property, agent, autocomplete, markets (redfin.com, US) */
7038
7435
  redfin;
7039
7436
  /** Amazon scraper API client — 14 endpoints */
@@ -7102,6 +7499,7 @@ var ScrapeBadger = class {
7102
7499
  this.google = new GoogleClient(this.baseClient);
7103
7500
  this.reddit = new RedditClient(this.baseClient);
7104
7501
  this.apartments = new ApartmentsClient(this.baseClient);
7502
+ this.instagram = new InstagramClient(this.baseClient);
7105
7503
  this.redfin = new RedfinClient(this.baseClient);
7106
7504
  this.amazon = new AmazonClient(this.baseClient);
7107
7505
  this.shopee = new ShopeeClient(this.baseClient);
@@ -7124,7 +7522,7 @@ exports.AmazonClient = AmazonClient;
7124
7522
  exports.AmazonListingsClient = ListingsClient;
7125
7523
  exports.AmazonProductsClient = ProductsClient2;
7126
7524
  exports.AmazonReferenceClient = ReferenceClient2;
7127
- exports.AmazonSearchClient = SearchClient4;
7525
+ exports.AmazonSearchClient = SearchClient5;
7128
7526
  exports.AmazonSellersClient = SellersClient;
7129
7527
  exports.ApartmentsClient = ApartmentsClient;
7130
7528
  exports.AuthenticationError = AuthenticationError;
@@ -7139,7 +7537,7 @@ exports.EbayCategoriesClient = CategoriesClient;
7139
7537
  exports.EbayClient = EbayClient;
7140
7538
  exports.EbayItemsClient = ItemsClient2;
7141
7539
  exports.EbayReferenceClient = ReferenceClient5;
7142
- exports.EbaySearchClient = SearchClient7;
7540
+ exports.EbaySearchClient = SearchClient8;
7143
7541
  exports.EbaySellersClient = SellersClient2;
7144
7542
  exports.GeoClient = GeoClient;
7145
7543
  exports.GoogleAiModeClient = AiModeClient;
@@ -7162,11 +7560,18 @@ exports.GoogleShortsClient = ShortsClient;
7162
7560
  exports.GoogleTrendsClient = TrendsClient2;
7163
7561
  exports.GoogleVideosClient = VideosClient;
7164
7562
  exports.ImmobiliareClient = ImmobiliareClient;
7563
+ exports.InstagramAudioClient = AudioClient;
7564
+ exports.InstagramClient = InstagramClient;
7565
+ exports.InstagramHashtagsClient = HashtagsClient;
7566
+ exports.InstagramLocationsClient = LocationsClient;
7567
+ exports.InstagramMediaClient = MediaClient;
7568
+ exports.InstagramSearchClient = SearchClient4;
7569
+ exports.InstagramUsersClient = UsersClient4;
7165
7570
  exports.InsufficientCreditsError = InsufficientCreditsError;
7166
7571
  exports.LeboncoinAdsClient = AdsClient2;
7167
7572
  exports.LeboncoinClient = LeboncoinClient;
7168
7573
  exports.LeboncoinReferenceClient = ReferenceClient8;
7169
- exports.LeboncoinSearchClient = SearchClient10;
7574
+ exports.LeboncoinSearchClient = SearchClient11;
7170
7575
  exports.LeboncoinSellersClient = SellersClient3;
7171
7576
  exports.LinkedInClient = LinkedInClient;
7172
7577
  exports.ListsClient = ListsClient;
@@ -7174,13 +7579,13 @@ exports.LoopNetBrokersClient = BrokersClient;
7174
7579
  exports.LoopNetClient = LoopNetClient;
7175
7580
  exports.LoopNetListingsClient = ListingsClient2;
7176
7581
  exports.LoopNetReferenceClient = ReferenceClient10;
7177
- exports.LoopNetSearchClient = SearchClient12;
7582
+ exports.LoopNetSearchClient = SearchClient13;
7178
7583
  exports.NotFoundError = NotFoundError;
7179
7584
  exports.RateLimitError = RateLimitError;
7180
7585
  exports.RealtorClient = RealtorClient;
7181
7586
  exports.RealtorPropertiesClient = PropertiesClient;
7182
7587
  exports.RealtorReferenceClient = ReferenceClient7;
7183
- exports.RealtorSearchClient = SearchClient9;
7588
+ exports.RealtorSearchClient = SearchClient10;
7184
7589
  exports.RedditClient = RedditClient;
7185
7590
  exports.RedditPostsClient = PostsClient;
7186
7591
  exports.RedditSearchClient = SearchClient3;
@@ -7194,17 +7599,17 @@ exports.ShopeeClient = ShopeeClient;
7194
7599
  exports.ShopeeProductsClient = ProductsClient3;
7195
7600
  exports.ShopeeReferenceClient = ReferenceClient3;
7196
7601
  exports.ShopeeReviewsClient = ReviewsClient;
7197
- exports.ShopeeSearchClient = SearchClient5;
7602
+ exports.ShopeeSearchClient = SearchClient6;
7198
7603
  exports.SpacesClient = SpacesClient;
7199
7604
  exports.StreamClient = StreamClient;
7200
7605
  exports.TikTokAdsClient = AdsClient;
7201
7606
  exports.TikTokClient = TikTokClient;
7202
- exports.TikTokHashtagsClient = HashtagsClient;
7607
+ exports.TikTokHashtagsClient = HashtagsClient2;
7203
7608
  exports.TikTokMusicClient = MusicClient;
7204
7609
  exports.TikTokReferenceClient = ReferenceClient4;
7205
- exports.TikTokSearchClient = SearchClient6;
7610
+ exports.TikTokSearchClient = SearchClient7;
7206
7611
  exports.TikTokTrendingClient = TrendingClient;
7207
- exports.TikTokUsersClient = UsersClient4;
7612
+ exports.TikTokUsersClient = UsersClient5;
7208
7613
  exports.TikTokVideosClient = VideosClient2;
7209
7614
  exports.TimeoutError = TimeoutError;
7210
7615
  exports.TrendsClient = TrendsClient;
@@ -7225,7 +7630,7 @@ exports.YoutubeCommunityClient = CommunityClient;
7225
7630
  exports.YoutubeMusicClient = MusicClient2;
7226
7631
  exports.YoutubePlaylistsClient = PlaylistsClient;
7227
7632
  exports.YoutubeReferenceClient = ReferenceClient6;
7228
- exports.YoutubeSearchClient = SearchClient8;
7633
+ exports.YoutubeSearchClient = SearchClient9;
7229
7634
  exports.YoutubeShortsClient = ShortsClient2;
7230
7635
  exports.YoutubeTrendingClient = TrendingClient2;
7231
7636
  exports.YoutubeVideosClient = VideosClient3;
@@ -7233,7 +7638,7 @@ exports.ZillowAgentClient = AgentClient;
7233
7638
  exports.ZillowClient = ZillowClient;
7234
7639
  exports.ZillowPropertiesClient = PropertiesClient2;
7235
7640
  exports.ZillowReferenceClient = ReferenceClient9;
7236
- exports.ZillowSearchClient = SearchClient11;
7641
+ exports.ZillowSearchClient = SearchClient12;
7237
7642
  exports.collectAll = collectAll;
7238
7643
  exports.verifyWebhookSignature = verifyWebhookSignature;
7239
7644
  //# sourceMappingURL=index.js.map