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/README.md +1 -0
- package/dist/index.d.cts +563 -11
- package/dist/index.d.ts +563 -11
- package/dist/index.js +438 -33
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +421 -23
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4088,6 +4088,401 @@ 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
|
+
/**
|
|
4102
|
+
* Get "About this account" metadata for a user.
|
|
4103
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4104
|
+
*/
|
|
4105
|
+
async about(username) {
|
|
4106
|
+
return this.client.request(
|
|
4107
|
+
`/v1/instagram/users/${username}/about`
|
|
4108
|
+
);
|
|
4109
|
+
}
|
|
4110
|
+
/** Get accounts related/suggested for a user. */
|
|
4111
|
+
async related(username) {
|
|
4112
|
+
return this.client.request(
|
|
4113
|
+
`/v1/instagram/users/${username}/related`
|
|
4114
|
+
);
|
|
4115
|
+
}
|
|
4116
|
+
/** Get a user's timeline posts. */
|
|
4117
|
+
async posts(username, options = {}) {
|
|
4118
|
+
return this.media(`/v1/instagram/users/${username}/posts`, options);
|
|
4119
|
+
}
|
|
4120
|
+
/**
|
|
4121
|
+
* Get a user's video posts (IGTV/feed videos).
|
|
4122
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4123
|
+
*/
|
|
4124
|
+
async videos(username, options = {}) {
|
|
4125
|
+
return this.media(`/v1/instagram/users/${username}/videos`, options);
|
|
4126
|
+
}
|
|
4127
|
+
/**
|
|
4128
|
+
* Get a user's reels.
|
|
4129
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4130
|
+
*/
|
|
4131
|
+
async reels(username, options = {}) {
|
|
4132
|
+
return this.media(`/v1/instagram/users/${username}/reels`, options);
|
|
4133
|
+
}
|
|
4134
|
+
/**
|
|
4135
|
+
* Get media a user is tagged in.
|
|
4136
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4137
|
+
*/
|
|
4138
|
+
async tagged(username, options = {}) {
|
|
4139
|
+
return this.media(`/v1/instagram/users/${username}/tagged`, options);
|
|
4140
|
+
}
|
|
4141
|
+
/**
|
|
4142
|
+
* Get a user's pinned posts.
|
|
4143
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4144
|
+
*/
|
|
4145
|
+
async pinned(username) {
|
|
4146
|
+
return this.client.request(
|
|
4147
|
+
`/v1/instagram/users/${username}/pinned`
|
|
4148
|
+
);
|
|
4149
|
+
}
|
|
4150
|
+
/**
|
|
4151
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4152
|
+
*
|
|
4153
|
+
* Get a user's followers.
|
|
4154
|
+
*
|
|
4155
|
+
* @param username - Instagram username.
|
|
4156
|
+
* @param options.amount - Number of followers to return.
|
|
4157
|
+
* @param options.cursor - Pagination cursor from a previous response.
|
|
4158
|
+
* @param options.order - Ordering hint (e.g. "default", "date_followed_earliest").
|
|
4159
|
+
*/
|
|
4160
|
+
async followers(username, options = {}) {
|
|
4161
|
+
return this.client.request(
|
|
4162
|
+
`/v1/instagram/users/${username}/followers`,
|
|
4163
|
+
{
|
|
4164
|
+
params: {
|
|
4165
|
+
amount: options.amount,
|
|
4166
|
+
cursor: options.cursor,
|
|
4167
|
+
order: options.order
|
|
4168
|
+
}
|
|
4169
|
+
}
|
|
4170
|
+
);
|
|
4171
|
+
}
|
|
4172
|
+
/**
|
|
4173
|
+
* Get the accounts a user follows.
|
|
4174
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4175
|
+
*/
|
|
4176
|
+
async following(username, options = {}) {
|
|
4177
|
+
return this.client.request(
|
|
4178
|
+
`/v1/instagram/users/${username}/following`,
|
|
4179
|
+
{ params: { amount: options.amount, cursor: options.cursor } }
|
|
4180
|
+
);
|
|
4181
|
+
}
|
|
4182
|
+
/**
|
|
4183
|
+
* Search within a user's followers by name/username.
|
|
4184
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4185
|
+
*/
|
|
4186
|
+
async searchFollowers(username, query, options = {}) {
|
|
4187
|
+
return this.client.request(
|
|
4188
|
+
`/v1/instagram/users/${username}/followers/search`,
|
|
4189
|
+
{
|
|
4190
|
+
params: { query, amount: options.amount, cursor: options.cursor }
|
|
4191
|
+
}
|
|
4192
|
+
);
|
|
4193
|
+
}
|
|
4194
|
+
/**
|
|
4195
|
+
* Get a user's currently-live stories.
|
|
4196
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4197
|
+
*/
|
|
4198
|
+
async stories(username) {
|
|
4199
|
+
return this.client.request(
|
|
4200
|
+
`/v1/instagram/users/${username}/stories`
|
|
4201
|
+
);
|
|
4202
|
+
}
|
|
4203
|
+
/**
|
|
4204
|
+
* Get a user's story highlights.
|
|
4205
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4206
|
+
*/
|
|
4207
|
+
async highlights(username) {
|
|
4208
|
+
return this.client.request(
|
|
4209
|
+
`/v1/instagram/users/${username}/highlights`
|
|
4210
|
+
);
|
|
4211
|
+
}
|
|
4212
|
+
async media(path, options) {
|
|
4213
|
+
return this.client.request(path, {
|
|
4214
|
+
params: { amount: options.amount, cursor: options.cursor }
|
|
4215
|
+
});
|
|
4216
|
+
}
|
|
4217
|
+
};
|
|
4218
|
+
|
|
4219
|
+
// src/instagram/media.ts
|
|
4220
|
+
var MediaClient = class {
|
|
4221
|
+
client;
|
|
4222
|
+
constructor(client) {
|
|
4223
|
+
this.client = client;
|
|
4224
|
+
}
|
|
4225
|
+
/**
|
|
4226
|
+
* Get a media's full details.
|
|
4227
|
+
*
|
|
4228
|
+
* @param code - The media shortcode (from the `/p/<code>/` URL).
|
|
4229
|
+
*/
|
|
4230
|
+
async get(code) {
|
|
4231
|
+
return this.client.request(`/v1/instagram/media/${code}`);
|
|
4232
|
+
}
|
|
4233
|
+
/** Get oEmbed metadata for a media permalink. */
|
|
4234
|
+
async oembed(code) {
|
|
4235
|
+
return this.client.request(`/v1/instagram/media/${code}/oembed`);
|
|
4236
|
+
}
|
|
4237
|
+
/** Get top-level comments on a media. */
|
|
4238
|
+
async comments(code, options = {}) {
|
|
4239
|
+
return this.client.request(
|
|
4240
|
+
`/v1/instagram/media/${code}/comments`,
|
|
4241
|
+
{ params: { amount: options.amount, cursor: options.cursor } }
|
|
4242
|
+
);
|
|
4243
|
+
}
|
|
4244
|
+
/**
|
|
4245
|
+
* Get the users who liked a media.
|
|
4246
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4247
|
+
*/
|
|
4248
|
+
async likers(code) {
|
|
4249
|
+
return this.client.request(
|
|
4250
|
+
`/v1/instagram/media/${code}/likers`
|
|
4251
|
+
);
|
|
4252
|
+
}
|
|
4253
|
+
/**
|
|
4254
|
+
* Get replies to a comment.
|
|
4255
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4256
|
+
*/
|
|
4257
|
+
async replies(code, commentId, options = {}) {
|
|
4258
|
+
return this.client.request(
|
|
4259
|
+
`/v1/instagram/media/${code}/comments/${commentId}/replies`,
|
|
4260
|
+
{ params: { amount: options.amount, cursor: options.cursor } }
|
|
4261
|
+
);
|
|
4262
|
+
}
|
|
4263
|
+
/** Get the users who liked a comment. */
|
|
4264
|
+
async commentLikers(code, commentId) {
|
|
4265
|
+
return this.client.request(
|
|
4266
|
+
`/v1/instagram/media/${code}/comments/${commentId}/likers`
|
|
4267
|
+
);
|
|
4268
|
+
}
|
|
4269
|
+
};
|
|
4270
|
+
|
|
4271
|
+
// src/instagram/search.ts
|
|
4272
|
+
var SearchClient4 = class {
|
|
4273
|
+
client;
|
|
4274
|
+
constructor(client) {
|
|
4275
|
+
this.client = client;
|
|
4276
|
+
}
|
|
4277
|
+
/**
|
|
4278
|
+
* Search accounts by name/username.
|
|
4279
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4280
|
+
*/
|
|
4281
|
+
async users(query) {
|
|
4282
|
+
return this.client.request(
|
|
4283
|
+
"/v1/instagram/search/users",
|
|
4284
|
+
{ params: { query } }
|
|
4285
|
+
);
|
|
4286
|
+
}
|
|
4287
|
+
/** Search hashtags. */
|
|
4288
|
+
async hashtags(query) {
|
|
4289
|
+
return this.client.request(
|
|
4290
|
+
"/v1/instagram/search/hashtags",
|
|
4291
|
+
{ params: { query } }
|
|
4292
|
+
);
|
|
4293
|
+
}
|
|
4294
|
+
/**
|
|
4295
|
+
* Search places/locations.
|
|
4296
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4297
|
+
*/
|
|
4298
|
+
async places(query) {
|
|
4299
|
+
return this.client.request(
|
|
4300
|
+
"/v1/instagram/search/places",
|
|
4301
|
+
{ params: { query } }
|
|
4302
|
+
);
|
|
4303
|
+
}
|
|
4304
|
+
/**
|
|
4305
|
+
* Search reels.
|
|
4306
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4307
|
+
*/
|
|
4308
|
+
async reels(query) {
|
|
4309
|
+
return this.client.request(
|
|
4310
|
+
"/v1/instagram/search/reels",
|
|
4311
|
+
{ params: { query } }
|
|
4312
|
+
);
|
|
4313
|
+
}
|
|
4314
|
+
/**
|
|
4315
|
+
* Search music/audio tracks.
|
|
4316
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4317
|
+
*/
|
|
4318
|
+
async music(query) {
|
|
4319
|
+
return this.client.request(
|
|
4320
|
+
"/v1/instagram/search/music",
|
|
4321
|
+
{ params: { query } }
|
|
4322
|
+
);
|
|
4323
|
+
}
|
|
4324
|
+
/** Get blended "top" results (users, hashtags, and places). */
|
|
4325
|
+
async top(query) {
|
|
4326
|
+
return this.client.request("/v1/instagram/search/top", {
|
|
4327
|
+
params: { query }
|
|
4328
|
+
});
|
|
4329
|
+
}
|
|
4330
|
+
/**
|
|
4331
|
+
* Get typeahead/autocomplete suggestions (mixed entity types).
|
|
4332
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4333
|
+
*/
|
|
4334
|
+
async autocomplete(query) {
|
|
4335
|
+
return this.client.request(
|
|
4336
|
+
"/v1/instagram/search/autocomplete",
|
|
4337
|
+
{ params: { query } }
|
|
4338
|
+
);
|
|
4339
|
+
}
|
|
4340
|
+
};
|
|
4341
|
+
|
|
4342
|
+
// src/instagram/reference.ts
|
|
4343
|
+
function mediaFeed(client, path, options) {
|
|
4344
|
+
return client.request(path, {
|
|
4345
|
+
params: { amount: options.amount, cursor: options.cursor }
|
|
4346
|
+
});
|
|
4347
|
+
}
|
|
4348
|
+
var HashtagsClient = class {
|
|
4349
|
+
client;
|
|
4350
|
+
constructor(client) {
|
|
4351
|
+
this.client = client;
|
|
4352
|
+
}
|
|
4353
|
+
/** Get a hashtag's info (media count, cover). */
|
|
4354
|
+
async get(tag) {
|
|
4355
|
+
return this.client.request(`/v1/instagram/hashtags/${tag}`);
|
|
4356
|
+
}
|
|
4357
|
+
/**
|
|
4358
|
+
* Get the top/popular media for a hashtag.
|
|
4359
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4360
|
+
*/
|
|
4361
|
+
async top(tag, options = {}) {
|
|
4362
|
+
return mediaFeed(this.client, `/v1/instagram/hashtags/${tag}/top`, options);
|
|
4363
|
+
}
|
|
4364
|
+
/** Get the most recent media for a hashtag. */
|
|
4365
|
+
async recent(tag, options = {}) {
|
|
4366
|
+
return mediaFeed(
|
|
4367
|
+
this.client,
|
|
4368
|
+
`/v1/instagram/hashtags/${tag}/recent`,
|
|
4369
|
+
options
|
|
4370
|
+
);
|
|
4371
|
+
}
|
|
4372
|
+
/**
|
|
4373
|
+
* Get reels for a hashtag.
|
|
4374
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4375
|
+
*/
|
|
4376
|
+
async reels(tag, options = {}) {
|
|
4377
|
+
return mediaFeed(
|
|
4378
|
+
this.client,
|
|
4379
|
+
`/v1/instagram/hashtags/${tag}/reels`,
|
|
4380
|
+
options
|
|
4381
|
+
);
|
|
4382
|
+
}
|
|
4383
|
+
};
|
|
4384
|
+
var LocationsClient = class {
|
|
4385
|
+
client;
|
|
4386
|
+
constructor(client) {
|
|
4387
|
+
this.client = client;
|
|
4388
|
+
}
|
|
4389
|
+
/**
|
|
4390
|
+
* Get a location's info.
|
|
4391
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4392
|
+
*/
|
|
4393
|
+
async get(pk) {
|
|
4394
|
+
return this.client.request(`/v1/instagram/locations/${pk}`);
|
|
4395
|
+
}
|
|
4396
|
+
/**
|
|
4397
|
+
* Get the top/popular media for a location.
|
|
4398
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4399
|
+
*/
|
|
4400
|
+
async top(pk, options = {}) {
|
|
4401
|
+
return mediaFeed(this.client, `/v1/instagram/locations/${pk}/top`, options);
|
|
4402
|
+
}
|
|
4403
|
+
/**
|
|
4404
|
+
* Get the most recent media for a location.
|
|
4405
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4406
|
+
*/
|
|
4407
|
+
async recent(pk, options = {}) {
|
|
4408
|
+
return mediaFeed(
|
|
4409
|
+
this.client,
|
|
4410
|
+
`/v1/instagram/locations/${pk}/recent`,
|
|
4411
|
+
options
|
|
4412
|
+
);
|
|
4413
|
+
}
|
|
4414
|
+
/**
|
|
4415
|
+
* Search locations by name.
|
|
4416
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4417
|
+
*/
|
|
4418
|
+
async search(query) {
|
|
4419
|
+
return this.client.request(
|
|
4420
|
+
"/v1/instagram/locations/search",
|
|
4421
|
+
{ params: { query } }
|
|
4422
|
+
);
|
|
4423
|
+
}
|
|
4424
|
+
};
|
|
4425
|
+
var AudioClient = class {
|
|
4426
|
+
client;
|
|
4427
|
+
constructor(client) {
|
|
4428
|
+
this.client = client;
|
|
4429
|
+
}
|
|
4430
|
+
/**
|
|
4431
|
+
* Get an audio track's info.
|
|
4432
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4433
|
+
*/
|
|
4434
|
+
async get(audioId) {
|
|
4435
|
+
return this.client.request(`/v1/instagram/audio/${audioId}`);
|
|
4436
|
+
}
|
|
4437
|
+
/**
|
|
4438
|
+
* Get media that use an audio track.
|
|
4439
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4440
|
+
*/
|
|
4441
|
+
async media(audioId, options = {}) {
|
|
4442
|
+
return mediaFeed(
|
|
4443
|
+
this.client,
|
|
4444
|
+
`/v1/instagram/audio/${audioId}/media`,
|
|
4445
|
+
options
|
|
4446
|
+
);
|
|
4447
|
+
}
|
|
4448
|
+
/**
|
|
4449
|
+
* Get currently-trending audio tracks.
|
|
4450
|
+
* @deprecated Temporarily unavailable — authenticated data is temporarily offline.
|
|
4451
|
+
*/
|
|
4452
|
+
async trending() {
|
|
4453
|
+
return this.client.request("/v1/instagram/audio/trending");
|
|
4454
|
+
}
|
|
4455
|
+
};
|
|
4456
|
+
|
|
4457
|
+
// src/instagram/client.ts
|
|
4458
|
+
var InstagramClient = class {
|
|
4459
|
+
/** Client for user operations (profile, posts, followers, stories, highlights) */
|
|
4460
|
+
users;
|
|
4461
|
+
/** Client for media operations (detail, comments, replies, likers, oEmbed) */
|
|
4462
|
+
media;
|
|
4463
|
+
/** Client for search operations (users, hashtags, places, top, reels, music, autocomplete) */
|
|
4464
|
+
search;
|
|
4465
|
+
/** Client for hashtag operations (info, top, recent, reels) */
|
|
4466
|
+
hashtags;
|
|
4467
|
+
/** Client for location operations (info, top, recent, search) */
|
|
4468
|
+
locations;
|
|
4469
|
+
/** Client for audio operations (info, media, trending) */
|
|
4470
|
+
audio;
|
|
4471
|
+
/**
|
|
4472
|
+
* Create a new Instagram client.
|
|
4473
|
+
*
|
|
4474
|
+
* @param client - The base HTTP client for making requests.
|
|
4475
|
+
*/
|
|
4476
|
+
constructor(client) {
|
|
4477
|
+
this.users = new UsersClient4(client);
|
|
4478
|
+
this.media = new MediaClient(client);
|
|
4479
|
+
this.search = new SearchClient4(client);
|
|
4480
|
+
this.hashtags = new HashtagsClient(client);
|
|
4481
|
+
this.locations = new LocationsClient(client);
|
|
4482
|
+
this.audio = new AudioClient(client);
|
|
4483
|
+
}
|
|
4484
|
+
};
|
|
4485
|
+
|
|
4091
4486
|
// src/redfin/client.ts
|
|
4092
4487
|
var RedfinClient = class {
|
|
4093
4488
|
client;
|
|
@@ -4184,7 +4579,7 @@ var RedfinClient = class {
|
|
|
4184
4579
|
};
|
|
4185
4580
|
|
|
4186
4581
|
// src/amazon/search.ts
|
|
4187
|
-
var
|
|
4582
|
+
var SearchClient5 = class {
|
|
4188
4583
|
client;
|
|
4189
4584
|
constructor(client) {
|
|
4190
4585
|
this.client = client;
|
|
@@ -4448,7 +4843,7 @@ var AmazonClient = class {
|
|
|
4448
4843
|
* @param client - The base HTTP client for making requests.
|
|
4449
4844
|
*/
|
|
4450
4845
|
constructor(client) {
|
|
4451
|
-
this.search = new
|
|
4846
|
+
this.search = new SearchClient5(client);
|
|
4452
4847
|
this.products = new ProductsClient2(client);
|
|
4453
4848
|
this.listings = new ListingsClient(client);
|
|
4454
4849
|
this.sellers = new SellersClient(client);
|
|
@@ -4457,7 +4852,7 @@ var AmazonClient = class {
|
|
|
4457
4852
|
};
|
|
4458
4853
|
|
|
4459
4854
|
// src/shopee/search.ts
|
|
4460
|
-
var
|
|
4855
|
+
var SearchClient6 = class {
|
|
4461
4856
|
client;
|
|
4462
4857
|
constructor(client) {
|
|
4463
4858
|
this.client = client;
|
|
@@ -4608,7 +5003,7 @@ var ShopeeClient = class {
|
|
|
4608
5003
|
* @param client - The base HTTP client for making requests.
|
|
4609
5004
|
*/
|
|
4610
5005
|
constructor(client) {
|
|
4611
|
-
this.search = new
|
|
5006
|
+
this.search = new SearchClient6(client);
|
|
4612
5007
|
this.products = new ProductsClient3(client);
|
|
4613
5008
|
this.reviews = new ReviewsClient(client);
|
|
4614
5009
|
this.reference = new ReferenceClient3(client);
|
|
@@ -4616,7 +5011,7 @@ var ShopeeClient = class {
|
|
|
4616
5011
|
};
|
|
4617
5012
|
|
|
4618
5013
|
// src/tiktok/users.ts
|
|
4619
|
-
var
|
|
5014
|
+
var UsersClient5 = class {
|
|
4620
5015
|
client;
|
|
4621
5016
|
constructor(client) {
|
|
4622
5017
|
this.client = client;
|
|
@@ -4795,7 +5190,7 @@ var VideosClient2 = class {
|
|
|
4795
5190
|
};
|
|
4796
5191
|
|
|
4797
5192
|
// src/tiktok/search.ts
|
|
4798
|
-
var
|
|
5193
|
+
var SearchClient7 = class {
|
|
4799
5194
|
client;
|
|
4800
5195
|
constructor(client) {
|
|
4801
5196
|
this.client = client;
|
|
@@ -4900,7 +5295,7 @@ var MusicClient = class {
|
|
|
4900
5295
|
};
|
|
4901
5296
|
|
|
4902
5297
|
// src/tiktok/hashtags.ts
|
|
4903
|
-
var
|
|
5298
|
+
var HashtagsClient2 = class {
|
|
4904
5299
|
client;
|
|
4905
5300
|
constructor(client) {
|
|
4906
5301
|
this.client = client;
|
|
@@ -5051,11 +5446,11 @@ var TikTokClient = class {
|
|
|
5051
5446
|
* @param client - The base HTTP client for making requests.
|
|
5052
5447
|
*/
|
|
5053
5448
|
constructor(client) {
|
|
5054
|
-
this.users = new
|
|
5449
|
+
this.users = new UsersClient5(client);
|
|
5055
5450
|
this.videos = new VideosClient2(client);
|
|
5056
|
-
this.search = new
|
|
5451
|
+
this.search = new SearchClient7(client);
|
|
5057
5452
|
this.music = new MusicClient(client);
|
|
5058
|
-
this.hashtags = new
|
|
5453
|
+
this.hashtags = new HashtagsClient2(client);
|
|
5059
5454
|
this.trending = new TrendingClient(client);
|
|
5060
5455
|
this.ads = new AdsClient(client);
|
|
5061
5456
|
this.reference = new ReferenceClient4(client);
|
|
@@ -5063,7 +5458,7 @@ var TikTokClient = class {
|
|
|
5063
5458
|
};
|
|
5064
5459
|
|
|
5065
5460
|
// src/ebay/search.ts
|
|
5066
|
-
var
|
|
5461
|
+
var SearchClient8 = class {
|
|
5067
5462
|
client;
|
|
5068
5463
|
constructor(client) {
|
|
5069
5464
|
this.client = client;
|
|
@@ -5296,7 +5691,7 @@ var EbayClient = class {
|
|
|
5296
5691
|
* @param client - The base HTTP client for making requests.
|
|
5297
5692
|
*/
|
|
5298
5693
|
constructor(client) {
|
|
5299
|
-
this.search = new
|
|
5694
|
+
this.search = new SearchClient8(client);
|
|
5300
5695
|
this.items = new ItemsClient2(client);
|
|
5301
5696
|
this.sellers = new SellersClient2(client);
|
|
5302
5697
|
this.categories = new CategoriesClient(client);
|
|
@@ -5305,7 +5700,7 @@ var EbayClient = class {
|
|
|
5305
5700
|
};
|
|
5306
5701
|
|
|
5307
5702
|
// src/youtube/search.ts
|
|
5308
|
-
var
|
|
5703
|
+
var SearchClient9 = class {
|
|
5309
5704
|
client;
|
|
5310
5705
|
constructor(client) {
|
|
5311
5706
|
this.client = client;
|
|
@@ -5898,7 +6293,7 @@ var YoutubeClient = class {
|
|
|
5898
6293
|
* @param client - The base HTTP client for making requests.
|
|
5899
6294
|
*/
|
|
5900
6295
|
constructor(client) {
|
|
5901
|
-
this.search = new
|
|
6296
|
+
this.search = new SearchClient9(client);
|
|
5902
6297
|
this.videos = new VideosClient3(client);
|
|
5903
6298
|
this.channels = new ChannelsClient(client);
|
|
5904
6299
|
this.playlists = new PlaylistsClient(client);
|
|
@@ -5911,7 +6306,7 @@ var YoutubeClient = class {
|
|
|
5911
6306
|
};
|
|
5912
6307
|
|
|
5913
6308
|
// src/realtor/search.ts
|
|
5914
|
-
var
|
|
6309
|
+
var SearchClient10 = class {
|
|
5915
6310
|
client;
|
|
5916
6311
|
constructor(client) {
|
|
5917
6312
|
this.client = client;
|
|
@@ -6014,14 +6409,14 @@ var RealtorClient = class {
|
|
|
6014
6409
|
* @param client - The base HTTP client for making requests.
|
|
6015
6410
|
*/
|
|
6016
6411
|
constructor(client) {
|
|
6017
|
-
this.search = new
|
|
6412
|
+
this.search = new SearchClient10(client);
|
|
6018
6413
|
this.properties = new PropertiesClient(client);
|
|
6019
6414
|
this.reference = new ReferenceClient7(client);
|
|
6020
6415
|
}
|
|
6021
6416
|
};
|
|
6022
6417
|
|
|
6023
6418
|
// src/leboncoin/search.ts
|
|
6024
|
-
var
|
|
6419
|
+
var SearchClient11 = class {
|
|
6025
6420
|
client;
|
|
6026
6421
|
constructor(client) {
|
|
6027
6422
|
this.client = client;
|
|
@@ -6194,7 +6589,7 @@ var LeboncoinClient = class {
|
|
|
6194
6589
|
* @param client - The base HTTP client for making requests.
|
|
6195
6590
|
*/
|
|
6196
6591
|
constructor(client) {
|
|
6197
|
-
this.search = new
|
|
6592
|
+
this.search = new SearchClient11(client);
|
|
6198
6593
|
this.ads = new AdsClient2(client);
|
|
6199
6594
|
this.sellers = new SellersClient3(client);
|
|
6200
6595
|
this.reference = new ReferenceClient8(client);
|
|
@@ -6202,7 +6597,7 @@ var LeboncoinClient = class {
|
|
|
6202
6597
|
};
|
|
6203
6598
|
|
|
6204
6599
|
// src/zillow/search.ts
|
|
6205
|
-
var
|
|
6600
|
+
var SearchClient12 = class {
|
|
6206
6601
|
client;
|
|
6207
6602
|
constructor(client) {
|
|
6208
6603
|
this.client = client;
|
|
@@ -6337,7 +6732,7 @@ var ZillowClient = class {
|
|
|
6337
6732
|
* @param client - The base HTTP client for making requests.
|
|
6338
6733
|
*/
|
|
6339
6734
|
constructor(client) {
|
|
6340
|
-
this.search = new
|
|
6735
|
+
this.search = new SearchClient12(client);
|
|
6341
6736
|
this.properties = new PropertiesClient2(client);
|
|
6342
6737
|
this.agent = new AgentClient(client);
|
|
6343
6738
|
this.reference = new ReferenceClient9(client);
|
|
@@ -6475,7 +6870,7 @@ var ImmobiliareClient = class {
|
|
|
6475
6870
|
};
|
|
6476
6871
|
|
|
6477
6872
|
// src/loopnet/search.ts
|
|
6478
|
-
var
|
|
6873
|
+
var SearchClient13 = class {
|
|
6479
6874
|
client;
|
|
6480
6875
|
constructor(client) {
|
|
6481
6876
|
this.client = client;
|
|
@@ -6599,7 +6994,7 @@ var LoopNetClient = class {
|
|
|
6599
6994
|
* @param client - The base HTTP client for making requests.
|
|
6600
6995
|
*/
|
|
6601
6996
|
constructor(client) {
|
|
6602
|
-
this.search = new
|
|
6997
|
+
this.search = new SearchClient13(client);
|
|
6603
6998
|
this.listings = new ListingsClient2(client);
|
|
6604
6999
|
this.brokers = new BrokersClient(client);
|
|
6605
7000
|
this.reference = new ReferenceClient10(client);
|
|
@@ -7028,6 +7423,8 @@ var ScrapeBadger = class {
|
|
|
7028
7423
|
reddit;
|
|
7029
7424
|
/** Apartments.com scraper API client — search + property with unit-level pricing (US) */
|
|
7030
7425
|
apartments;
|
|
7426
|
+
/** Instagram scraper API client — users, media, search, hashtags, locations, audio */
|
|
7427
|
+
instagram;
|
|
7031
7428
|
/** Redfin scraper API client — search, property, agent, autocomplete, markets (redfin.com, US) */
|
|
7032
7429
|
redfin;
|
|
7033
7430
|
/** Amazon scraper API client — 14 endpoints */
|
|
@@ -7096,6 +7493,7 @@ var ScrapeBadger = class {
|
|
|
7096
7493
|
this.google = new GoogleClient(this.baseClient);
|
|
7097
7494
|
this.reddit = new RedditClient(this.baseClient);
|
|
7098
7495
|
this.apartments = new ApartmentsClient(this.baseClient);
|
|
7496
|
+
this.instagram = new InstagramClient(this.baseClient);
|
|
7099
7497
|
this.redfin = new RedfinClient(this.baseClient);
|
|
7100
7498
|
this.amazon = new AmazonClient(this.baseClient);
|
|
7101
7499
|
this.shopee = new ShopeeClient(this.baseClient);
|
|
@@ -7113,6 +7511,6 @@ var ScrapeBadger = class {
|
|
|
7113
7511
|
}
|
|
7114
7512
|
};
|
|
7115
7513
|
|
|
7116
|
-
export { AccountRestrictedError, AmazonClient, ListingsClient as AmazonListingsClient, ProductsClient2 as AmazonProductsClient, ReferenceClient2 as AmazonReferenceClient,
|
|
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 };
|
|
7117
7515
|
//# sourceMappingURL=index.mjs.map
|
|
7118
7516
|
//# sourceMappingURL=index.mjs.map
|