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.js CHANGED
@@ -4094,6 +4094,324 @@ 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
+ /** Get "About this account" metadata for a user. */
4108
+ async about(username) {
4109
+ return this.client.request(
4110
+ `/v1/instagram/users/${username}/about`
4111
+ );
4112
+ }
4113
+ /** Get accounts related/suggested for a user. */
4114
+ async related(username) {
4115
+ return this.client.request(
4116
+ `/v1/instagram/users/${username}/related`
4117
+ );
4118
+ }
4119
+ /** Get a user's timeline posts. */
4120
+ async posts(username, options = {}) {
4121
+ return this.media(`/v1/instagram/users/${username}/posts`, options);
4122
+ }
4123
+ /** Get a user's video posts (IGTV/feed videos). */
4124
+ async videos(username, options = {}) {
4125
+ return this.media(`/v1/instagram/users/${username}/videos`, options);
4126
+ }
4127
+ /** Get a user's reels. */
4128
+ async reels(username, options = {}) {
4129
+ return this.media(`/v1/instagram/users/${username}/reels`, options);
4130
+ }
4131
+ /** Get media a user is tagged in. */
4132
+ async tagged(username, options = {}) {
4133
+ return this.media(`/v1/instagram/users/${username}/tagged`, options);
4134
+ }
4135
+ /** Get a user's pinned posts. */
4136
+ async pinned(username) {
4137
+ return this.client.request(
4138
+ `/v1/instagram/users/${username}/pinned`
4139
+ );
4140
+ }
4141
+ /**
4142
+ * Get a user's followers.
4143
+ *
4144
+ * @param username - Instagram username.
4145
+ * @param options.amount - Number of followers to return.
4146
+ * @param options.cursor - Pagination cursor from a previous response.
4147
+ * @param options.order - Ordering hint (e.g. "default", "date_followed_earliest").
4148
+ */
4149
+ async followers(username, options = {}) {
4150
+ return this.client.request(
4151
+ `/v1/instagram/users/${username}/followers`,
4152
+ {
4153
+ params: {
4154
+ amount: options.amount,
4155
+ cursor: options.cursor,
4156
+ order: options.order
4157
+ }
4158
+ }
4159
+ );
4160
+ }
4161
+ /** Get the accounts a user follows. */
4162
+ async following(username, options = {}) {
4163
+ return this.client.request(
4164
+ `/v1/instagram/users/${username}/following`,
4165
+ { params: { amount: options.amount, cursor: options.cursor } }
4166
+ );
4167
+ }
4168
+ /** Search within a user's followers by name/username. */
4169
+ async searchFollowers(username, query, options = {}) {
4170
+ return this.client.request(
4171
+ `/v1/instagram/users/${username}/followers/search`,
4172
+ {
4173
+ params: { query, amount: options.amount, cursor: options.cursor }
4174
+ }
4175
+ );
4176
+ }
4177
+ /** Get a user's currently-live stories. */
4178
+ async stories(username) {
4179
+ return this.client.request(
4180
+ `/v1/instagram/users/${username}/stories`
4181
+ );
4182
+ }
4183
+ /** Get a user's story highlights. */
4184
+ async highlights(username) {
4185
+ return this.client.request(
4186
+ `/v1/instagram/users/${username}/highlights`
4187
+ );
4188
+ }
4189
+ async media(path, options) {
4190
+ return this.client.request(path, {
4191
+ params: { amount: options.amount, cursor: options.cursor }
4192
+ });
4193
+ }
4194
+ };
4195
+
4196
+ // src/instagram/media.ts
4197
+ var MediaClient = class {
4198
+ client;
4199
+ constructor(client) {
4200
+ this.client = client;
4201
+ }
4202
+ /**
4203
+ * Get a media's full details.
4204
+ *
4205
+ * @param code - The media shortcode (from the `/p/<code>/` URL).
4206
+ */
4207
+ async get(code) {
4208
+ return this.client.request(`/v1/instagram/media/${code}`);
4209
+ }
4210
+ /** Get oEmbed metadata for a media permalink. */
4211
+ async oembed(code) {
4212
+ return this.client.request(`/v1/instagram/media/${code}/oembed`);
4213
+ }
4214
+ /** Get top-level comments on a media. */
4215
+ async comments(code, options = {}) {
4216
+ return this.client.request(
4217
+ `/v1/instagram/media/${code}/comments`,
4218
+ { params: { amount: options.amount, cursor: options.cursor } }
4219
+ );
4220
+ }
4221
+ /** Get the users who liked a media. */
4222
+ async likers(code) {
4223
+ return this.client.request(
4224
+ `/v1/instagram/media/${code}/likers`
4225
+ );
4226
+ }
4227
+ /** Get replies to a comment. */
4228
+ async replies(code, commentId, options = {}) {
4229
+ return this.client.request(
4230
+ `/v1/instagram/media/${code}/comments/${commentId}/replies`,
4231
+ { params: { amount: options.amount, cursor: options.cursor } }
4232
+ );
4233
+ }
4234
+ /** Get the users who liked a comment. */
4235
+ async commentLikers(code, commentId) {
4236
+ return this.client.request(
4237
+ `/v1/instagram/media/${code}/comments/${commentId}/likers`
4238
+ );
4239
+ }
4240
+ };
4241
+
4242
+ // src/instagram/search.ts
4243
+ var SearchClient4 = class {
4244
+ client;
4245
+ constructor(client) {
4246
+ this.client = client;
4247
+ }
4248
+ /** Search accounts by name/username. */
4249
+ async users(query) {
4250
+ return this.client.request(
4251
+ "/v1/instagram/search/users",
4252
+ { params: { query } }
4253
+ );
4254
+ }
4255
+ /** Search hashtags. */
4256
+ async hashtags(query) {
4257
+ return this.client.request(
4258
+ "/v1/instagram/search/hashtags",
4259
+ { params: { query } }
4260
+ );
4261
+ }
4262
+ /** Search places/locations. */
4263
+ async places(query) {
4264
+ return this.client.request(
4265
+ "/v1/instagram/search/places",
4266
+ { params: { query } }
4267
+ );
4268
+ }
4269
+ /** Search reels. */
4270
+ async reels(query) {
4271
+ return this.client.request(
4272
+ "/v1/instagram/search/reels",
4273
+ { params: { query } }
4274
+ );
4275
+ }
4276
+ /** Search music/audio tracks. */
4277
+ async music(query) {
4278
+ return this.client.request(
4279
+ "/v1/instagram/search/music",
4280
+ { params: { query } }
4281
+ );
4282
+ }
4283
+ /** Get blended "top" results (users, hashtags, and places). */
4284
+ async top(query) {
4285
+ return this.client.request("/v1/instagram/search/top", {
4286
+ params: { query }
4287
+ });
4288
+ }
4289
+ /** Get typeahead/autocomplete suggestions (mixed entity types). */
4290
+ async autocomplete(query) {
4291
+ return this.client.request(
4292
+ "/v1/instagram/search/autocomplete",
4293
+ { params: { query } }
4294
+ );
4295
+ }
4296
+ };
4297
+
4298
+ // src/instagram/reference.ts
4299
+ function mediaFeed(client, path, options) {
4300
+ return client.request(path, {
4301
+ params: { amount: options.amount, cursor: options.cursor }
4302
+ });
4303
+ }
4304
+ var HashtagsClient = class {
4305
+ client;
4306
+ constructor(client) {
4307
+ this.client = client;
4308
+ }
4309
+ /** Get a hashtag's info (media count, cover). */
4310
+ async get(tag) {
4311
+ return this.client.request(`/v1/instagram/hashtags/${tag}`);
4312
+ }
4313
+ /** Get the top/popular media for a hashtag. */
4314
+ async top(tag, options = {}) {
4315
+ return mediaFeed(this.client, `/v1/instagram/hashtags/${tag}/top`, options);
4316
+ }
4317
+ /** Get the most recent media for a hashtag. */
4318
+ async recent(tag, options = {}) {
4319
+ return mediaFeed(
4320
+ this.client,
4321
+ `/v1/instagram/hashtags/${tag}/recent`,
4322
+ options
4323
+ );
4324
+ }
4325
+ /** Get reels for a hashtag. */
4326
+ async reels(tag, options = {}) {
4327
+ return mediaFeed(
4328
+ this.client,
4329
+ `/v1/instagram/hashtags/${tag}/reels`,
4330
+ options
4331
+ );
4332
+ }
4333
+ };
4334
+ var LocationsClient = class {
4335
+ client;
4336
+ constructor(client) {
4337
+ this.client = client;
4338
+ }
4339
+ /** Get a location's info. */
4340
+ async get(pk) {
4341
+ return this.client.request(`/v1/instagram/locations/${pk}`);
4342
+ }
4343
+ /** Get the top/popular media for a location. */
4344
+ async top(pk, options = {}) {
4345
+ return mediaFeed(this.client, `/v1/instagram/locations/${pk}/top`, options);
4346
+ }
4347
+ /** Get the most recent media for a location. */
4348
+ async recent(pk, options = {}) {
4349
+ return mediaFeed(
4350
+ this.client,
4351
+ `/v1/instagram/locations/${pk}/recent`,
4352
+ options
4353
+ );
4354
+ }
4355
+ /** Search locations by name. */
4356
+ async search(query) {
4357
+ return this.client.request(
4358
+ "/v1/instagram/locations/search",
4359
+ { params: { query } }
4360
+ );
4361
+ }
4362
+ };
4363
+ var AudioClient = class {
4364
+ client;
4365
+ constructor(client) {
4366
+ this.client = client;
4367
+ }
4368
+ /** Get an audio track's info. */
4369
+ async get(audioId) {
4370
+ return this.client.request(`/v1/instagram/audio/${audioId}`);
4371
+ }
4372
+ /** Get media that use an audio track. */
4373
+ async media(audioId, options = {}) {
4374
+ return mediaFeed(
4375
+ this.client,
4376
+ `/v1/instagram/audio/${audioId}/media`,
4377
+ options
4378
+ );
4379
+ }
4380
+ /** Get currently-trending audio tracks. */
4381
+ async trending() {
4382
+ return this.client.request("/v1/instagram/audio/trending");
4383
+ }
4384
+ };
4385
+
4386
+ // src/instagram/client.ts
4387
+ var InstagramClient = class {
4388
+ /** Client for user operations (profile, posts, followers, stories, highlights) */
4389
+ users;
4390
+ /** Client for media operations (detail, comments, replies, likers, oEmbed) */
4391
+ media;
4392
+ /** Client for search operations (users, hashtags, places, top, reels, music, autocomplete) */
4393
+ search;
4394
+ /** Client for hashtag operations (info, top, recent, reels) */
4395
+ hashtags;
4396
+ /** Client for location operations (info, top, recent, search) */
4397
+ locations;
4398
+ /** Client for audio operations (info, media, trending) */
4399
+ audio;
4400
+ /**
4401
+ * Create a new Instagram client.
4402
+ *
4403
+ * @param client - The base HTTP client for making requests.
4404
+ */
4405
+ constructor(client) {
4406
+ this.users = new UsersClient4(client);
4407
+ this.media = new MediaClient(client);
4408
+ this.search = new SearchClient4(client);
4409
+ this.hashtags = new HashtagsClient(client);
4410
+ this.locations = new LocationsClient(client);
4411
+ this.audio = new AudioClient(client);
4412
+ }
4413
+ };
4414
+
4097
4415
  // src/redfin/client.ts
4098
4416
  var RedfinClient = class {
4099
4417
  client;
@@ -4190,7 +4508,7 @@ var RedfinClient = class {
4190
4508
  };
4191
4509
 
4192
4510
  // src/amazon/search.ts
4193
- var SearchClient4 = class {
4511
+ var SearchClient5 = class {
4194
4512
  client;
4195
4513
  constructor(client) {
4196
4514
  this.client = client;
@@ -4454,7 +4772,7 @@ var AmazonClient = class {
4454
4772
  * @param client - The base HTTP client for making requests.
4455
4773
  */
4456
4774
  constructor(client) {
4457
- this.search = new SearchClient4(client);
4775
+ this.search = new SearchClient5(client);
4458
4776
  this.products = new ProductsClient2(client);
4459
4777
  this.listings = new ListingsClient(client);
4460
4778
  this.sellers = new SellersClient(client);
@@ -4463,7 +4781,7 @@ var AmazonClient = class {
4463
4781
  };
4464
4782
 
4465
4783
  // src/shopee/search.ts
4466
- var SearchClient5 = class {
4784
+ var SearchClient6 = class {
4467
4785
  client;
4468
4786
  constructor(client) {
4469
4787
  this.client = client;
@@ -4614,7 +4932,7 @@ var ShopeeClient = class {
4614
4932
  * @param client - The base HTTP client for making requests.
4615
4933
  */
4616
4934
  constructor(client) {
4617
- this.search = new SearchClient5(client);
4935
+ this.search = new SearchClient6(client);
4618
4936
  this.products = new ProductsClient3(client);
4619
4937
  this.reviews = new ReviewsClient(client);
4620
4938
  this.reference = new ReferenceClient3(client);
@@ -4622,7 +4940,7 @@ var ShopeeClient = class {
4622
4940
  };
4623
4941
 
4624
4942
  // src/tiktok/users.ts
4625
- var UsersClient4 = class {
4943
+ var UsersClient5 = class {
4626
4944
  client;
4627
4945
  constructor(client) {
4628
4946
  this.client = client;
@@ -4801,7 +5119,7 @@ var VideosClient2 = class {
4801
5119
  };
4802
5120
 
4803
5121
  // src/tiktok/search.ts
4804
- var SearchClient6 = class {
5122
+ var SearchClient7 = class {
4805
5123
  client;
4806
5124
  constructor(client) {
4807
5125
  this.client = client;
@@ -4906,7 +5224,7 @@ var MusicClient = class {
4906
5224
  };
4907
5225
 
4908
5226
  // src/tiktok/hashtags.ts
4909
- var HashtagsClient = class {
5227
+ var HashtagsClient2 = class {
4910
5228
  client;
4911
5229
  constructor(client) {
4912
5230
  this.client = client;
@@ -5057,11 +5375,11 @@ var TikTokClient = class {
5057
5375
  * @param client - The base HTTP client for making requests.
5058
5376
  */
5059
5377
  constructor(client) {
5060
- this.users = new UsersClient4(client);
5378
+ this.users = new UsersClient5(client);
5061
5379
  this.videos = new VideosClient2(client);
5062
- this.search = new SearchClient6(client);
5380
+ this.search = new SearchClient7(client);
5063
5381
  this.music = new MusicClient(client);
5064
- this.hashtags = new HashtagsClient(client);
5382
+ this.hashtags = new HashtagsClient2(client);
5065
5383
  this.trending = new TrendingClient(client);
5066
5384
  this.ads = new AdsClient(client);
5067
5385
  this.reference = new ReferenceClient4(client);
@@ -5069,7 +5387,7 @@ var TikTokClient = class {
5069
5387
  };
5070
5388
 
5071
5389
  // src/ebay/search.ts
5072
- var SearchClient7 = class {
5390
+ var SearchClient8 = class {
5073
5391
  client;
5074
5392
  constructor(client) {
5075
5393
  this.client = client;
@@ -5302,7 +5620,7 @@ var EbayClient = class {
5302
5620
  * @param client - The base HTTP client for making requests.
5303
5621
  */
5304
5622
  constructor(client) {
5305
- this.search = new SearchClient7(client);
5623
+ this.search = new SearchClient8(client);
5306
5624
  this.items = new ItemsClient2(client);
5307
5625
  this.sellers = new SellersClient2(client);
5308
5626
  this.categories = new CategoriesClient(client);
@@ -5311,7 +5629,7 @@ var EbayClient = class {
5311
5629
  };
5312
5630
 
5313
5631
  // src/youtube/search.ts
5314
- var SearchClient8 = class {
5632
+ var SearchClient9 = class {
5315
5633
  client;
5316
5634
  constructor(client) {
5317
5635
  this.client = client;
@@ -5904,7 +6222,7 @@ var YoutubeClient = class {
5904
6222
  * @param client - The base HTTP client for making requests.
5905
6223
  */
5906
6224
  constructor(client) {
5907
- this.search = new SearchClient8(client);
6225
+ this.search = new SearchClient9(client);
5908
6226
  this.videos = new VideosClient3(client);
5909
6227
  this.channels = new ChannelsClient(client);
5910
6228
  this.playlists = new PlaylistsClient(client);
@@ -5917,7 +6235,7 @@ var YoutubeClient = class {
5917
6235
  };
5918
6236
 
5919
6237
  // src/realtor/search.ts
5920
- var SearchClient9 = class {
6238
+ var SearchClient10 = class {
5921
6239
  client;
5922
6240
  constructor(client) {
5923
6241
  this.client = client;
@@ -6020,14 +6338,14 @@ var RealtorClient = class {
6020
6338
  * @param client - The base HTTP client for making requests.
6021
6339
  */
6022
6340
  constructor(client) {
6023
- this.search = new SearchClient9(client);
6341
+ this.search = new SearchClient10(client);
6024
6342
  this.properties = new PropertiesClient(client);
6025
6343
  this.reference = new ReferenceClient7(client);
6026
6344
  }
6027
6345
  };
6028
6346
 
6029
6347
  // src/leboncoin/search.ts
6030
- var SearchClient10 = class {
6348
+ var SearchClient11 = class {
6031
6349
  client;
6032
6350
  constructor(client) {
6033
6351
  this.client = client;
@@ -6200,7 +6518,7 @@ var LeboncoinClient = class {
6200
6518
  * @param client - The base HTTP client for making requests.
6201
6519
  */
6202
6520
  constructor(client) {
6203
- this.search = new SearchClient10(client);
6521
+ this.search = new SearchClient11(client);
6204
6522
  this.ads = new AdsClient2(client);
6205
6523
  this.sellers = new SellersClient3(client);
6206
6524
  this.reference = new ReferenceClient8(client);
@@ -6208,7 +6526,7 @@ var LeboncoinClient = class {
6208
6526
  };
6209
6527
 
6210
6528
  // src/zillow/search.ts
6211
- var SearchClient11 = class {
6529
+ var SearchClient12 = class {
6212
6530
  client;
6213
6531
  constructor(client) {
6214
6532
  this.client = client;
@@ -6343,7 +6661,7 @@ var ZillowClient = class {
6343
6661
  * @param client - The base HTTP client for making requests.
6344
6662
  */
6345
6663
  constructor(client) {
6346
- this.search = new SearchClient11(client);
6664
+ this.search = new SearchClient12(client);
6347
6665
  this.properties = new PropertiesClient2(client);
6348
6666
  this.agent = new AgentClient(client);
6349
6667
  this.reference = new ReferenceClient9(client);
@@ -6481,7 +6799,7 @@ var ImmobiliareClient = class {
6481
6799
  };
6482
6800
 
6483
6801
  // src/loopnet/search.ts
6484
- var SearchClient12 = class {
6802
+ var SearchClient13 = class {
6485
6803
  client;
6486
6804
  constructor(client) {
6487
6805
  this.client = client;
@@ -6605,7 +6923,7 @@ var LoopNetClient = class {
6605
6923
  * @param client - The base HTTP client for making requests.
6606
6924
  */
6607
6925
  constructor(client) {
6608
- this.search = new SearchClient12(client);
6926
+ this.search = new SearchClient13(client);
6609
6927
  this.listings = new ListingsClient2(client);
6610
6928
  this.brokers = new BrokersClient(client);
6611
6929
  this.reference = new ReferenceClient10(client);
@@ -7034,6 +7352,8 @@ var ScrapeBadger = class {
7034
7352
  reddit;
7035
7353
  /** Apartments.com scraper API client — search + property with unit-level pricing (US) */
7036
7354
  apartments;
7355
+ /** Instagram scraper API client — users, media, search, hashtags, locations, audio */
7356
+ instagram;
7037
7357
  /** Redfin scraper API client — search, property, agent, autocomplete, markets (redfin.com, US) */
7038
7358
  redfin;
7039
7359
  /** Amazon scraper API client — 14 endpoints */
@@ -7102,6 +7422,7 @@ var ScrapeBadger = class {
7102
7422
  this.google = new GoogleClient(this.baseClient);
7103
7423
  this.reddit = new RedditClient(this.baseClient);
7104
7424
  this.apartments = new ApartmentsClient(this.baseClient);
7425
+ this.instagram = new InstagramClient(this.baseClient);
7105
7426
  this.redfin = new RedfinClient(this.baseClient);
7106
7427
  this.amazon = new AmazonClient(this.baseClient);
7107
7428
  this.shopee = new ShopeeClient(this.baseClient);
@@ -7124,7 +7445,7 @@ exports.AmazonClient = AmazonClient;
7124
7445
  exports.AmazonListingsClient = ListingsClient;
7125
7446
  exports.AmazonProductsClient = ProductsClient2;
7126
7447
  exports.AmazonReferenceClient = ReferenceClient2;
7127
- exports.AmazonSearchClient = SearchClient4;
7448
+ exports.AmazonSearchClient = SearchClient5;
7128
7449
  exports.AmazonSellersClient = SellersClient;
7129
7450
  exports.ApartmentsClient = ApartmentsClient;
7130
7451
  exports.AuthenticationError = AuthenticationError;
@@ -7139,7 +7460,7 @@ exports.EbayCategoriesClient = CategoriesClient;
7139
7460
  exports.EbayClient = EbayClient;
7140
7461
  exports.EbayItemsClient = ItemsClient2;
7141
7462
  exports.EbayReferenceClient = ReferenceClient5;
7142
- exports.EbaySearchClient = SearchClient7;
7463
+ exports.EbaySearchClient = SearchClient8;
7143
7464
  exports.EbaySellersClient = SellersClient2;
7144
7465
  exports.GeoClient = GeoClient;
7145
7466
  exports.GoogleAiModeClient = AiModeClient;
@@ -7162,11 +7483,18 @@ exports.GoogleShortsClient = ShortsClient;
7162
7483
  exports.GoogleTrendsClient = TrendsClient2;
7163
7484
  exports.GoogleVideosClient = VideosClient;
7164
7485
  exports.ImmobiliareClient = ImmobiliareClient;
7486
+ exports.InstagramAudioClient = AudioClient;
7487
+ exports.InstagramClient = InstagramClient;
7488
+ exports.InstagramHashtagsClient = HashtagsClient;
7489
+ exports.InstagramLocationsClient = LocationsClient;
7490
+ exports.InstagramMediaClient = MediaClient;
7491
+ exports.InstagramSearchClient = SearchClient4;
7492
+ exports.InstagramUsersClient = UsersClient4;
7165
7493
  exports.InsufficientCreditsError = InsufficientCreditsError;
7166
7494
  exports.LeboncoinAdsClient = AdsClient2;
7167
7495
  exports.LeboncoinClient = LeboncoinClient;
7168
7496
  exports.LeboncoinReferenceClient = ReferenceClient8;
7169
- exports.LeboncoinSearchClient = SearchClient10;
7497
+ exports.LeboncoinSearchClient = SearchClient11;
7170
7498
  exports.LeboncoinSellersClient = SellersClient3;
7171
7499
  exports.LinkedInClient = LinkedInClient;
7172
7500
  exports.ListsClient = ListsClient;
@@ -7174,13 +7502,13 @@ exports.LoopNetBrokersClient = BrokersClient;
7174
7502
  exports.LoopNetClient = LoopNetClient;
7175
7503
  exports.LoopNetListingsClient = ListingsClient2;
7176
7504
  exports.LoopNetReferenceClient = ReferenceClient10;
7177
- exports.LoopNetSearchClient = SearchClient12;
7505
+ exports.LoopNetSearchClient = SearchClient13;
7178
7506
  exports.NotFoundError = NotFoundError;
7179
7507
  exports.RateLimitError = RateLimitError;
7180
7508
  exports.RealtorClient = RealtorClient;
7181
7509
  exports.RealtorPropertiesClient = PropertiesClient;
7182
7510
  exports.RealtorReferenceClient = ReferenceClient7;
7183
- exports.RealtorSearchClient = SearchClient9;
7511
+ exports.RealtorSearchClient = SearchClient10;
7184
7512
  exports.RedditClient = RedditClient;
7185
7513
  exports.RedditPostsClient = PostsClient;
7186
7514
  exports.RedditSearchClient = SearchClient3;
@@ -7194,17 +7522,17 @@ exports.ShopeeClient = ShopeeClient;
7194
7522
  exports.ShopeeProductsClient = ProductsClient3;
7195
7523
  exports.ShopeeReferenceClient = ReferenceClient3;
7196
7524
  exports.ShopeeReviewsClient = ReviewsClient;
7197
- exports.ShopeeSearchClient = SearchClient5;
7525
+ exports.ShopeeSearchClient = SearchClient6;
7198
7526
  exports.SpacesClient = SpacesClient;
7199
7527
  exports.StreamClient = StreamClient;
7200
7528
  exports.TikTokAdsClient = AdsClient;
7201
7529
  exports.TikTokClient = TikTokClient;
7202
- exports.TikTokHashtagsClient = HashtagsClient;
7530
+ exports.TikTokHashtagsClient = HashtagsClient2;
7203
7531
  exports.TikTokMusicClient = MusicClient;
7204
7532
  exports.TikTokReferenceClient = ReferenceClient4;
7205
- exports.TikTokSearchClient = SearchClient6;
7533
+ exports.TikTokSearchClient = SearchClient7;
7206
7534
  exports.TikTokTrendingClient = TrendingClient;
7207
- exports.TikTokUsersClient = UsersClient4;
7535
+ exports.TikTokUsersClient = UsersClient5;
7208
7536
  exports.TikTokVideosClient = VideosClient2;
7209
7537
  exports.TimeoutError = TimeoutError;
7210
7538
  exports.TrendsClient = TrendsClient;
@@ -7225,7 +7553,7 @@ exports.YoutubeCommunityClient = CommunityClient;
7225
7553
  exports.YoutubeMusicClient = MusicClient2;
7226
7554
  exports.YoutubePlaylistsClient = PlaylistsClient;
7227
7555
  exports.YoutubeReferenceClient = ReferenceClient6;
7228
- exports.YoutubeSearchClient = SearchClient8;
7556
+ exports.YoutubeSearchClient = SearchClient9;
7229
7557
  exports.YoutubeShortsClient = ShortsClient2;
7230
7558
  exports.YoutubeTrendingClient = TrendingClient2;
7231
7559
  exports.YoutubeVideosClient = VideosClient3;
@@ -7233,7 +7561,7 @@ exports.ZillowAgentClient = AgentClient;
7233
7561
  exports.ZillowClient = ZillowClient;
7234
7562
  exports.ZillowPropertiesClient = PropertiesClient2;
7235
7563
  exports.ZillowReferenceClient = ReferenceClient9;
7236
- exports.ZillowSearchClient = SearchClient11;
7564
+ exports.ZillowSearchClient = SearchClient12;
7237
7565
  exports.collectAll = collectAll;
7238
7566
  exports.verifyWebhookSignature = verifyWebhookSignature;
7239
7567
  //# sourceMappingURL=index.js.map