@getanyapi/sdk 0.14.0 → 0.15.1
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.cjs +45 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +288 -78
- package/dist/index.d.ts +288 -78
- package/dist/index.js +45 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3453,9 +3453,9 @@ interface DouyinSearchVideosData {
|
|
|
3453
3453
|
*/
|
|
3454
3454
|
hasMore: boolean;
|
|
3455
3455
|
/**
|
|
3456
|
-
*
|
|
3456
|
+
* Opaque cursor for the next page of videos, or null when this lane has no more. Pass it back as cursor to continue.
|
|
3457
3457
|
*/
|
|
3458
|
-
nextCursor: string;
|
|
3458
|
+
nextCursor: string | null;
|
|
3459
3459
|
/**
|
|
3460
3460
|
* Search ID required for the next page.
|
|
3461
3461
|
*/
|
|
@@ -3560,9 +3560,9 @@ interface DouyinUserPostsData {
|
|
|
3560
3560
|
*/
|
|
3561
3561
|
hasMore: boolean;
|
|
3562
3562
|
/**
|
|
3563
|
-
*
|
|
3563
|
+
* Opaque cursor for the next page of posts, or null when this lane has no more. Pass it back as cursor to continue.
|
|
3564
3564
|
*/
|
|
3565
|
-
nextCursor: string;
|
|
3565
|
+
nextCursor: string | null;
|
|
3566
3566
|
/**
|
|
3567
3567
|
* Normalized Douyin posts. Populated whenever the provider has data for the entity.
|
|
3568
3568
|
*/
|
|
@@ -3732,9 +3732,9 @@ interface DouyinVideoCommentsData {
|
|
|
3732
3732
|
*/
|
|
3733
3733
|
hasMore: boolean;
|
|
3734
3734
|
/**
|
|
3735
|
-
*
|
|
3735
|
+
* Opaque cursor for the next page of comments, or null when this lane has no more. Pass it back as cursor to continue.
|
|
3736
3736
|
*/
|
|
3737
|
-
nextCursor: string;
|
|
3737
|
+
nextCursor: string | null;
|
|
3738
3738
|
/**
|
|
3739
3739
|
* Total comment count reported by Douyin.
|
|
3740
3740
|
*/
|
|
@@ -4359,7 +4359,10 @@ interface FacebookAdsSearchAd {
|
|
|
4359
4359
|
*/
|
|
4360
4360
|
interface FacebookAdsSearchData {
|
|
4361
4361
|
ads: FacebookAdsSearchAd[];
|
|
4362
|
-
|
|
4362
|
+
/**
|
|
4363
|
+
* Opaque cursor for the next page of ads, or null when this lane has no more. Pass it back as cursor to continue.
|
|
4364
|
+
*/
|
|
4365
|
+
nextCursor: string | null;
|
|
4363
4366
|
totalResults: number;
|
|
4364
4367
|
}
|
|
4365
4368
|
/**
|
|
@@ -4431,9 +4434,9 @@ interface FacebookCommentRepliesData {
|
|
|
4431
4434
|
*/
|
|
4432
4435
|
hasNextPage: boolean;
|
|
4433
4436
|
/**
|
|
4434
|
-
*
|
|
4437
|
+
* Opaque cursor for the next page of replies, or null when this lane has no more. Pass it back as cursor to continue.
|
|
4435
4438
|
*/
|
|
4436
|
-
nextCursor: string;
|
|
4439
|
+
nextCursor: string | null;
|
|
4437
4440
|
/**
|
|
4438
4441
|
* Replies to the comment. Populated whenever the provider has data for the entity.
|
|
4439
4442
|
*/
|
|
@@ -4533,7 +4536,10 @@ interface FacebookCompanyAdsAd {
|
|
|
4533
4536
|
*/
|
|
4534
4537
|
interface FacebookCompanyAdsData {
|
|
4535
4538
|
ads: FacebookCompanyAdsAd[];
|
|
4536
|
-
|
|
4539
|
+
/**
|
|
4540
|
+
* Opaque cursor for the next page of ads, or null when this lane has no more. Pass it back as cursor to continue.
|
|
4541
|
+
*/
|
|
4542
|
+
nextCursor: string | null;
|
|
4537
4543
|
}
|
|
4538
4544
|
/**
|
|
4539
4545
|
* Input for Facebook Event Details (facebook.event_details).
|
|
@@ -4645,7 +4651,10 @@ interface FacebookEventsEvent {
|
|
|
4645
4651
|
*/
|
|
4646
4652
|
interface FacebookEventsData {
|
|
4647
4653
|
events: FacebookEventsEvent[];
|
|
4648
|
-
|
|
4654
|
+
/**
|
|
4655
|
+
* Opaque cursor for the next page of events, or null when this lane has no more. Pass it back as cursor to continue.
|
|
4656
|
+
*/
|
|
4657
|
+
nextCursor: string | null;
|
|
4649
4658
|
}
|
|
4650
4659
|
/**
|
|
4651
4660
|
* Input for Facebook Events Search (facebook.events_search).
|
|
@@ -4701,7 +4710,10 @@ interface FacebookEventsSearchEvent {
|
|
|
4701
4710
|
*/
|
|
4702
4711
|
interface FacebookEventsSearchData {
|
|
4703
4712
|
events: FacebookEventsSearchEvent[];
|
|
4704
|
-
|
|
4713
|
+
/**
|
|
4714
|
+
* Opaque cursor for the next page of events, or null when this lane has no more. Pass it back as cursor to continue.
|
|
4715
|
+
*/
|
|
4716
|
+
nextCursor: string | null;
|
|
4705
4717
|
}
|
|
4706
4718
|
/**
|
|
4707
4719
|
* Input for Facebook Followers (facebook.followers).
|
|
@@ -4802,7 +4814,10 @@ interface FacebookGroupPostsPost {
|
|
|
4802
4814
|
* The `data` payload of Facebook Group Posts (facebook.group_posts).
|
|
4803
4815
|
*/
|
|
4804
4816
|
interface FacebookGroupPostsData {
|
|
4805
|
-
|
|
4817
|
+
/**
|
|
4818
|
+
* Opaque cursor for the next page of posts, or null when this lane has no more. Pass it back as cursor to continue.
|
|
4819
|
+
*/
|
|
4820
|
+
nextCursor: string | null;
|
|
4806
4821
|
/**
|
|
4807
4822
|
* Populated whenever the provider has data for the entity.
|
|
4808
4823
|
*/
|
|
@@ -4902,7 +4917,10 @@ interface FacebookMarketplaceListing {
|
|
|
4902
4917
|
interface FacebookMarketplaceData {
|
|
4903
4918
|
hasNextPage: boolean;
|
|
4904
4919
|
listings: FacebookMarketplaceListing[];
|
|
4905
|
-
|
|
4920
|
+
/**
|
|
4921
|
+
* Opaque cursor for the next page of listings, or null when this lane has no more. Pass it back as cursor to continue.
|
|
4922
|
+
*/
|
|
4923
|
+
nextCursor: string | null;
|
|
4906
4924
|
}
|
|
4907
4925
|
/**
|
|
4908
4926
|
* Input for Facebook Marketplace Item (facebook.marketplace_item).
|
|
@@ -5120,7 +5138,10 @@ interface FacebookPhotosPhoto {
|
|
|
5120
5138
|
* The `data` payload of Facebook Page Photos (facebook.photos).
|
|
5121
5139
|
*/
|
|
5122
5140
|
interface FacebookPhotosData {
|
|
5123
|
-
|
|
5141
|
+
/**
|
|
5142
|
+
* Opaque cursor for the next page of photos, or null when this lane has no more. Pass it back as cursor to continue.
|
|
5143
|
+
*/
|
|
5144
|
+
nextCursor: string | null;
|
|
5124
5145
|
nextPageId: string;
|
|
5125
5146
|
/**
|
|
5126
5147
|
* Populated whenever the provider has data for the entity.
|
|
@@ -5207,9 +5228,9 @@ interface FacebookPostCommentsData {
|
|
|
5207
5228
|
*/
|
|
5208
5229
|
comments: FacebookPostCommentsComment[];
|
|
5209
5230
|
/**
|
|
5210
|
-
*
|
|
5231
|
+
* Opaque cursor for the next page of comments, or null when this lane has no more. Pass it back as cursor to continue.
|
|
5211
5232
|
*/
|
|
5212
|
-
nextCursor: string;
|
|
5233
|
+
nextCursor: string | null;
|
|
5213
5234
|
}
|
|
5214
5235
|
/**
|
|
5215
5236
|
* Input for Facebook Post Transcript (facebook.post_transcript).
|
|
@@ -5309,7 +5330,10 @@ interface FacebookProfileEventsData {
|
|
|
5309
5330
|
*/
|
|
5310
5331
|
events: FacebookProfileEventsEvent[];
|
|
5311
5332
|
hasNextPage: boolean;
|
|
5312
|
-
|
|
5333
|
+
/**
|
|
5334
|
+
* Opaque cursor for the next page of events, or null when this lane has no more. Pass it back as cursor to continue.
|
|
5335
|
+
*/
|
|
5336
|
+
nextCursor: string | null;
|
|
5313
5337
|
totalCount: number;
|
|
5314
5338
|
}
|
|
5315
5339
|
/**
|
|
@@ -6350,7 +6374,10 @@ interface GithubUserActivityData {
|
|
|
6350
6374
|
* Populated whenever the provider has data for the entity.
|
|
6351
6375
|
*/
|
|
6352
6376
|
month: string;
|
|
6353
|
-
|
|
6377
|
+
/**
|
|
6378
|
+
* Opaque cursor for the next page of activity, or null when this lane has no more. Pass it back as cursor to continue.
|
|
6379
|
+
*/
|
|
6380
|
+
nextCursor: string | null;
|
|
6354
6381
|
noActivity: boolean;
|
|
6355
6382
|
/**
|
|
6356
6383
|
* Populated whenever the provider has data for the entity.
|
|
@@ -6449,7 +6476,10 @@ interface GithubUserFollowersData {
|
|
|
6449
6476
|
* Populated whenever the provider has data for the entity.
|
|
6450
6477
|
*/
|
|
6451
6478
|
followers: GithubUserFollowersFollower[];
|
|
6452
|
-
|
|
6479
|
+
/**
|
|
6480
|
+
* Opaque cursor for the next page of followers, or null when this lane has no more. Pass it back as cursor to continue.
|
|
6481
|
+
*/
|
|
6482
|
+
nextCursor: string | null;
|
|
6453
6483
|
}
|
|
6454
6484
|
/**
|
|
6455
6485
|
* Input for GitHub User Following (github.user_following).
|
|
@@ -6493,7 +6523,10 @@ interface GithubUserFollowingData {
|
|
|
6493
6523
|
* Populated whenever the provider has data for the entity.
|
|
6494
6524
|
*/
|
|
6495
6525
|
following: GithubUserFollowingFollowing[];
|
|
6496
|
-
|
|
6526
|
+
/**
|
|
6527
|
+
* Opaque cursor for the next page of followed accounts, or null when this lane has no more. Pass it back as cursor to continue.
|
|
6528
|
+
*/
|
|
6529
|
+
nextCursor: string | null;
|
|
6497
6530
|
}
|
|
6498
6531
|
/**
|
|
6499
6532
|
* Input for GitHub User Pull Requests (github.user_pull_requests).
|
|
@@ -6548,9 +6581,9 @@ interface GithubUserPullRequestsData {
|
|
|
6548
6581
|
*/
|
|
6549
6582
|
hasMore: boolean;
|
|
6550
6583
|
/**
|
|
6551
|
-
* Opaque cursor for the next page, or
|
|
6584
|
+
* Opaque cursor for the next page of pull requests, or null when this lane has no more. Pass it back as cursor to continue.
|
|
6552
6585
|
*/
|
|
6553
|
-
nextCursor: string;
|
|
6586
|
+
nextCursor: string | null;
|
|
6554
6587
|
/**
|
|
6555
6588
|
* The user's public pull requests for this page. Populated whenever the provider has data for the entity.
|
|
6556
6589
|
*/
|
|
@@ -6561,11 +6594,9 @@ interface GithubUserPullRequestsData {
|
|
|
6561
6594
|
*/
|
|
6562
6595
|
interface GithubUserRepositoriesInput {
|
|
6563
6596
|
/**
|
|
6564
|
-
*
|
|
6565
|
-
* Range: minimum 1.
|
|
6566
|
-
* Default: 1.
|
|
6597
|
+
* Opaque pagination cursor from a previous response's nextCursor. Omit for the first page; pass it back to fetch the next page.
|
|
6567
6598
|
*/
|
|
6568
|
-
cursor?:
|
|
6599
|
+
cursor?: string;
|
|
6569
6600
|
/**
|
|
6570
6601
|
* Sort direction, ascending or descending, paired with sort.
|
|
6571
6602
|
* One of: asc, desc.
|
|
@@ -6615,7 +6646,10 @@ interface GithubUserRepositoriesRepo {
|
|
|
6615
6646
|
*/
|
|
6616
6647
|
interface GithubUserRepositoriesData {
|
|
6617
6648
|
hasMore: boolean;
|
|
6618
|
-
|
|
6649
|
+
/**
|
|
6650
|
+
* Opaque cursor for the next page of repositories, or null when this lane has no more. Pass it back as cursor to continue.
|
|
6651
|
+
*/
|
|
6652
|
+
nextCursor: string | null;
|
|
6619
6653
|
/**
|
|
6620
6654
|
* Populated whenever the provider has data for the entity.
|
|
6621
6655
|
*/
|
|
@@ -6766,6 +6800,13 @@ declare class GithubNamespace {
|
|
|
6766
6800
|
* const res = await client.github.userRepositories({ handle: "torvalds" });
|
|
6767
6801
|
*/
|
|
6768
6802
|
userRepositories(input: GithubUserRepositoriesInput, options?: RequestOptions): Promise<RunResult<GithubUserRepositoriesData>>;
|
|
6803
|
+
/**
|
|
6804
|
+
* Iterate every result of GitHub User Repositories across pages.
|
|
6805
|
+
*
|
|
6806
|
+
* Yields items directly; call `.pages()` on the return value to walk whole
|
|
6807
|
+
* result pages instead (each carries its own costUsd).
|
|
6808
|
+
*/
|
|
6809
|
+
iterUserRepositories(input: GithubUserRepositoriesInput, options?: RequestOptions): Paginator<GithubUserRepositoriesRepo, RunResult<GithubUserRepositoriesData>>;
|
|
6769
6810
|
}
|
|
6770
6811
|
|
|
6771
6812
|
/**
|
|
@@ -7681,7 +7722,10 @@ interface GoogleAdsCompanyAdsData {
|
|
|
7681
7722
|
* Estimated total number of ads.
|
|
7682
7723
|
*/
|
|
7683
7724
|
adsEstimate: number;
|
|
7684
|
-
|
|
7725
|
+
/**
|
|
7726
|
+
* Opaque cursor for the next page of ads, or null when this lane has no more. Pass it back as cursor to continue.
|
|
7727
|
+
*/
|
|
7728
|
+
nextCursor: string | null;
|
|
7685
7729
|
}
|
|
7686
7730
|
/**
|
|
7687
7731
|
* Input for Google Ads Transparency (google_ads.search).
|
|
@@ -8413,7 +8457,10 @@ interface InstagramAudioReelsReel {
|
|
|
8413
8457
|
*/
|
|
8414
8458
|
interface InstagramAudioReelsData {
|
|
8415
8459
|
hasMore: boolean;
|
|
8416
|
-
|
|
8460
|
+
/**
|
|
8461
|
+
* Opaque cursor for the next page of reels, or null when this lane has no more. Pass it back as cursor to continue.
|
|
8462
|
+
*/
|
|
8463
|
+
nextCursor: string | null;
|
|
8417
8464
|
/**
|
|
8418
8465
|
* Populated whenever the provider has data for the entity.
|
|
8419
8466
|
*/
|
|
@@ -8509,9 +8556,9 @@ interface InstagramCommentRepliesData {
|
|
|
8509
8556
|
*/
|
|
8510
8557
|
comments: InstagramCommentRepliesComment[];
|
|
8511
8558
|
/**
|
|
8512
|
-
*
|
|
8559
|
+
* Opaque cursor for the next page of replies, or null when this lane has no more. Pass it back as cursor to continue.
|
|
8513
8560
|
*/
|
|
8514
|
-
nextCursor: string;
|
|
8561
|
+
nextCursor: string | null;
|
|
8515
8562
|
}
|
|
8516
8563
|
/**
|
|
8517
8564
|
* Input for Instagram Profile Embed (instagram.embed).
|
|
@@ -8859,9 +8906,9 @@ interface InstagramPostCommentsData {
|
|
|
8859
8906
|
*/
|
|
8860
8907
|
comments: InstagramPostCommentsComment[];
|
|
8861
8908
|
/**
|
|
8862
|
-
*
|
|
8909
|
+
* Opaque cursor for the next page of comments, or null when this lane has no more. Pass it back as cursor to continue.
|
|
8863
8910
|
*/
|
|
8864
|
-
nextCursor: string;
|
|
8911
|
+
nextCursor: string | null;
|
|
8865
8912
|
}
|
|
8866
8913
|
/**
|
|
8867
8914
|
* Input for Instagram Profile (instagram.profile).
|
|
@@ -9244,7 +9291,10 @@ interface InstagramSearchProfilesProfile {
|
|
|
9244
9291
|
* The `data` payload of Instagram Profile Search (instagram.search_profiles).
|
|
9245
9292
|
*/
|
|
9246
9293
|
interface InstagramSearchProfilesData {
|
|
9247
|
-
|
|
9294
|
+
/**
|
|
9295
|
+
* Opaque cursor for the next page of profiles, or null when this lane has no more. Pass it back as cursor to continue.
|
|
9296
|
+
*/
|
|
9297
|
+
nextCursor: string | null;
|
|
9248
9298
|
/**
|
|
9249
9299
|
* Populated whenever the provider has data for the entity.
|
|
9250
9300
|
*/
|
|
@@ -9414,9 +9464,9 @@ interface InstagramTaggedPostsPost {
|
|
|
9414
9464
|
*/
|
|
9415
9465
|
interface InstagramTaggedPostsData {
|
|
9416
9466
|
/**
|
|
9417
|
-
*
|
|
9467
|
+
* Opaque cursor for the next page of tagged posts, or null when this lane has no more. Pass it back as cursor to continue.
|
|
9418
9468
|
*/
|
|
9419
|
-
nextCursor: string;
|
|
9469
|
+
nextCursor: string | null;
|
|
9420
9470
|
/**
|
|
9421
9471
|
* Posts that tag the requested account, newest first. Populated whenever the provider has data for the entity.
|
|
9422
9472
|
*/
|
|
@@ -9538,7 +9588,10 @@ interface InstagramUserPostsPost {
|
|
|
9538
9588
|
* The `data` payload of Instagram User Posts (instagram.user_posts).
|
|
9539
9589
|
*/
|
|
9540
9590
|
interface InstagramUserPostsData {
|
|
9541
|
-
|
|
9591
|
+
/**
|
|
9592
|
+
* Opaque cursor for the next page of posts, or null when this lane has no more. Pass it back as cursor to continue.
|
|
9593
|
+
*/
|
|
9594
|
+
nextCursor: string | null;
|
|
9542
9595
|
/**
|
|
9543
9596
|
* Populated whenever the provider has data for the entity.
|
|
9544
9597
|
*/
|
|
@@ -9587,7 +9640,10 @@ interface InstagramUserReelsReel {
|
|
|
9587
9640
|
* The `data` payload of Instagram User Reels (instagram.user_reels).
|
|
9588
9641
|
*/
|
|
9589
9642
|
interface InstagramUserReelsData {
|
|
9590
|
-
|
|
9643
|
+
/**
|
|
9644
|
+
* Opaque cursor for the next page of reels, or null when this lane has no more. Pass it back as cursor to continue.
|
|
9645
|
+
*/
|
|
9646
|
+
nextCursor: string | null;
|
|
9591
9647
|
/**
|
|
9592
9648
|
* Populated whenever the provider has data for the entity.
|
|
9593
9649
|
*/
|
|
@@ -13769,9 +13825,9 @@ interface RedditPostCommentsData {
|
|
|
13769
13825
|
*/
|
|
13770
13826
|
comments: RedditPostCommentsComment[];
|
|
13771
13827
|
/**
|
|
13772
|
-
*
|
|
13828
|
+
* Opaque cursor for the next page of comments, or null when this lane has no more. Pass it back as cursor to continue.
|
|
13773
13829
|
*/
|
|
13774
|
-
nextCursor: string;
|
|
13830
|
+
nextCursor: string | null;
|
|
13775
13831
|
}
|
|
13776
13832
|
/**
|
|
13777
13833
|
* Input for Reddit Post Transcript (reddit.post_transcript).
|
|
@@ -13965,9 +14021,9 @@ interface RedditSearchPost {
|
|
|
13965
14021
|
*/
|
|
13966
14022
|
interface RedditSearchData {
|
|
13967
14023
|
/**
|
|
13968
|
-
*
|
|
14024
|
+
* Opaque cursor for the next page of posts, or null when this lane has no more. Pass it back as cursor to continue.
|
|
13969
14025
|
*/
|
|
13970
|
-
nextCursor: string;
|
|
14026
|
+
nextCursor: string | null;
|
|
13971
14027
|
/**
|
|
13972
14028
|
* Populated whenever the provider has data for the entity.
|
|
13973
14029
|
*/
|
|
@@ -14021,11 +14077,15 @@ interface RedditSubredditDetailsData {
|
|
|
14021
14077
|
*/
|
|
14022
14078
|
interface RedditSubredditPostsInput {
|
|
14023
14079
|
/**
|
|
14024
|
-
*
|
|
14080
|
+
* Legacy pagination alias. Prefer `cursor`; omit both fields for the first page.
|
|
14025
14081
|
*/
|
|
14026
14082
|
after?: string;
|
|
14027
14083
|
/**
|
|
14028
|
-
*
|
|
14084
|
+
* Opaque pagination cursor from a previous response's `nextCursor`; omit for the first page.
|
|
14085
|
+
*/
|
|
14086
|
+
cursor?: string;
|
|
14087
|
+
/**
|
|
14088
|
+
* Requested number of posts. Note: the upstream returns one page (about 25 posts) per call; values larger than a page are not delivered in a single response. To fetch more, pass `nextCursor` back as `cursor`.
|
|
14029
14089
|
* Range: minimum 1, maximum 100.
|
|
14030
14090
|
* Default: 25.
|
|
14031
14091
|
*/
|
|
@@ -14090,9 +14150,9 @@ interface RedditSubredditPostsPost {
|
|
|
14090
14150
|
*/
|
|
14091
14151
|
interface RedditSubredditPostsData {
|
|
14092
14152
|
/**
|
|
14093
|
-
* Cursor for the next page of results; pass it back as the `
|
|
14153
|
+
* Cursor for the next page of results; pass it back as the `cursor` input to fetch the following page. Null when there are no more results.
|
|
14094
14154
|
*/
|
|
14095
|
-
nextCursor: string;
|
|
14155
|
+
nextCursor: string | null;
|
|
14096
14156
|
/**
|
|
14097
14157
|
* Populated whenever the provider has data for the entity.
|
|
14098
14158
|
*/
|
|
@@ -14170,12 +14230,82 @@ interface RedditSubredditSearchPost {
|
|
|
14170
14230
|
* The `data` payload of Reddit Subreddit Search (reddit.subreddit_search).
|
|
14171
14231
|
*/
|
|
14172
14232
|
interface RedditSubredditSearchData {
|
|
14173
|
-
|
|
14233
|
+
/**
|
|
14234
|
+
* Opaque cursor for the next page of posts, or null when this lane has no more. Pass it back as cursor to continue.
|
|
14235
|
+
*/
|
|
14236
|
+
nextCursor: string | null;
|
|
14174
14237
|
/**
|
|
14175
14238
|
* Populated whenever the provider has data for the entity.
|
|
14176
14239
|
*/
|
|
14177
14240
|
posts: RedditSubredditSearchPost[];
|
|
14178
14241
|
}
|
|
14242
|
+
/**
|
|
14243
|
+
* Input for Reddit Trending Posts (reddit.trending_posts).
|
|
14244
|
+
*/
|
|
14245
|
+
interface RedditTrendingPostsInput {
|
|
14246
|
+
/**
|
|
14247
|
+
* Pagination cursor from a previous response's nextCursor. Omit for the first page.
|
|
14248
|
+
*/
|
|
14249
|
+
after?: string;
|
|
14250
|
+
/**
|
|
14251
|
+
* Maximum number of trending posts to return (1-100, default 25).
|
|
14252
|
+
* Range: minimum 1, maximum 100.
|
|
14253
|
+
* Default: 25.
|
|
14254
|
+
*/
|
|
14255
|
+
limit?: number;
|
|
14256
|
+
}
|
|
14257
|
+
interface RedditTrendingPostsPost {
|
|
14258
|
+
/**
|
|
14259
|
+
* Author username, without the u/ prefix. Populated whenever the provider has data for the entity.
|
|
14260
|
+
*/
|
|
14261
|
+
author: string;
|
|
14262
|
+
/**
|
|
14263
|
+
* UTC epoch timestamp in seconds (Unix time). Populated whenever the provider has data for the entity.
|
|
14264
|
+
*/
|
|
14265
|
+
createdUtc: number;
|
|
14266
|
+
/**
|
|
14267
|
+
* Reddit post ID (base-36, without the t3_ prefix). Populated whenever the provider has data for the entity.
|
|
14268
|
+
*/
|
|
14269
|
+
id: string;
|
|
14270
|
+
/**
|
|
14271
|
+
* Total number of comments on the post.
|
|
14272
|
+
*/
|
|
14273
|
+
numComments: number;
|
|
14274
|
+
/**
|
|
14275
|
+
* Canonical reddit.com thread path for the post. Populated whenever the provider has data for the entity.
|
|
14276
|
+
*/
|
|
14277
|
+
permalink: string;
|
|
14278
|
+
/**
|
|
14279
|
+
* Net score (upvotes minus downvotes) at fetch time.
|
|
14280
|
+
*/
|
|
14281
|
+
score: number;
|
|
14282
|
+
/**
|
|
14283
|
+
* Subreddit name, without the r/ prefix. Populated whenever the provider has data for the entity.
|
|
14284
|
+
*/
|
|
14285
|
+
subreddit: string;
|
|
14286
|
+
/**
|
|
14287
|
+
* Post title. Populated whenever the provider has data for the entity.
|
|
14288
|
+
*/
|
|
14289
|
+
title: string;
|
|
14290
|
+
/**
|
|
14291
|
+
* The post's destination link. Populated whenever the provider has data for the entity.
|
|
14292
|
+
*/
|
|
14293
|
+
url: string;
|
|
14294
|
+
[extra: string]: unknown;
|
|
14295
|
+
}
|
|
14296
|
+
/**
|
|
14297
|
+
* The `data` payload of Reddit Trending Posts (reddit.trending_posts).
|
|
14298
|
+
*/
|
|
14299
|
+
interface RedditTrendingPostsData {
|
|
14300
|
+
/**
|
|
14301
|
+
* Cursor for the next page; pass it back as after. Null when no more results exist.
|
|
14302
|
+
*/
|
|
14303
|
+
nextCursor: string | null;
|
|
14304
|
+
/**
|
|
14305
|
+
* Populated whenever the provider has data for the entity.
|
|
14306
|
+
*/
|
|
14307
|
+
posts: RedditTrendingPostsPost[];
|
|
14308
|
+
}
|
|
14179
14309
|
/**
|
|
14180
14310
|
* Input for Reddit User Comments (reddit.user_comments).
|
|
14181
14311
|
*/
|
|
@@ -14420,6 +14550,13 @@ declare class RedditNamespace {
|
|
|
14420
14550
|
* const res = await client.reddit.subredditPosts({ subreddit: "programming", limit: 5 });
|
|
14421
14551
|
*/
|
|
14422
14552
|
subredditPosts(input: RedditSubredditPostsInput, options?: RequestOptions): Promise<RunResult<RedditSubredditPostsData>>;
|
|
14553
|
+
/**
|
|
14554
|
+
* Iterate every result of Reddit Subreddit Posts across pages.
|
|
14555
|
+
*
|
|
14556
|
+
* Yields items directly; call `.pages()` on the return value to walk whole
|
|
14557
|
+
* result pages instead (each carries its own costUsd).
|
|
14558
|
+
*/
|
|
14559
|
+
iterSubredditPosts(input: RedditSubredditPostsInput, options?: RequestOptions): Paginator<RedditSubredditPostsPost, RunResult<RedditSubredditPostsData>>;
|
|
14423
14560
|
/**
|
|
14424
14561
|
* Reddit Subreddit Search
|
|
14425
14562
|
*
|
|
@@ -14438,6 +14575,17 @@ declare class RedditNamespace {
|
|
|
14438
14575
|
* result pages instead (each carries its own costUsd).
|
|
14439
14576
|
*/
|
|
14440
14577
|
iterSubredditSearch(input: RedditSubredditSearchInput, options?: RequestOptions): Paginator<RedditSubredditSearchPost, RunResult<RedditSubredditSearchData>>;
|
|
14578
|
+
/**
|
|
14579
|
+
* Reddit Trending Posts
|
|
14580
|
+
*
|
|
14581
|
+
* Get currently trending Reddit posts across all subreddits with stable cursor pagination.
|
|
14582
|
+
*
|
|
14583
|
+
* Price: $0.00036 per request.
|
|
14584
|
+
*
|
|
14585
|
+
* @example
|
|
14586
|
+
* const res = await client.reddit.trendingPosts({ limit: 25 });
|
|
14587
|
+
*/
|
|
14588
|
+
trendingPosts(input: RedditTrendingPostsInput, options?: RequestOptions): Promise<RunResult<RedditTrendingPostsData>>;
|
|
14441
14589
|
/**
|
|
14442
14590
|
* Reddit User Comments
|
|
14443
14591
|
*
|
|
@@ -14774,9 +14922,9 @@ interface RednoteNoteCommentsData {
|
|
|
14774
14922
|
*/
|
|
14775
14923
|
comments: RednoteNoteCommentsComment[];
|
|
14776
14924
|
/**
|
|
14777
|
-
*
|
|
14925
|
+
* Opaque cursor for the next page of comments, or null when this lane has no more. Pass it back as cursor to continue.
|
|
14778
14926
|
*/
|
|
14779
|
-
nextCursor: string;
|
|
14927
|
+
nextCursor: string | null;
|
|
14780
14928
|
[extra: string]: unknown;
|
|
14781
14929
|
}
|
|
14782
14930
|
/**
|
|
@@ -14932,9 +15080,9 @@ interface RednoteSearchNote {
|
|
|
14932
15080
|
*/
|
|
14933
15081
|
interface RednoteSearchData {
|
|
14934
15082
|
/**
|
|
14935
|
-
*
|
|
15083
|
+
* Opaque cursor for the next page of notes, or null when this lane has no more. Pass it back as cursor to continue.
|
|
14936
15084
|
*/
|
|
14937
|
-
nextCursor: string;
|
|
15085
|
+
nextCursor: string | null;
|
|
14938
15086
|
/**
|
|
14939
15087
|
* Notes matching the search. Populated whenever the provider has data for the entity.
|
|
14940
15088
|
*/
|
|
@@ -14997,7 +15145,10 @@ interface RednoteSearchUsersUser {
|
|
|
14997
15145
|
* The `data` payload of RedNote (Xiaohongshu) User Search (rednote.search_users).
|
|
14998
15146
|
*/
|
|
14999
15147
|
interface RednoteSearchUsersData {
|
|
15000
|
-
|
|
15148
|
+
/**
|
|
15149
|
+
* Opaque cursor for the next page of users, or null when this lane has no more. Pass it back as cursor to continue.
|
|
15150
|
+
*/
|
|
15151
|
+
nextCursor: string | null;
|
|
15001
15152
|
/**
|
|
15002
15153
|
* Populated whenever the provider has data for the entity.
|
|
15003
15154
|
*/
|
|
@@ -15084,9 +15235,9 @@ interface RednoteUserNotesNote {
|
|
|
15084
15235
|
*/
|
|
15085
15236
|
interface RednoteUserNotesData {
|
|
15086
15237
|
/**
|
|
15087
|
-
*
|
|
15238
|
+
* Opaque cursor for the next page of notes, or null when this lane has no more. Pass it back as cursor to continue.
|
|
15088
15239
|
*/
|
|
15089
|
-
nextCursor: string;
|
|
15240
|
+
nextCursor: string | null;
|
|
15090
15241
|
/**
|
|
15091
15242
|
* The user's notes. Populated whenever the provider has data for the entity.
|
|
15092
15243
|
*/
|
|
@@ -17053,7 +17204,10 @@ interface SpotifyPodcastEpisodesData {
|
|
|
17053
17204
|
* Populated whenever the provider has data for the entity.
|
|
17054
17205
|
*/
|
|
17055
17206
|
episodes: SpotifyPodcastEpisodesEpisode[];
|
|
17056
|
-
|
|
17207
|
+
/**
|
|
17208
|
+
* Opaque cursor for the next page of episodes, or null when this lane has no more. Pass it back as cursor to continue.
|
|
17209
|
+
*/
|
|
17210
|
+
nextCursor: string | null;
|
|
17057
17211
|
totalCount: number;
|
|
17058
17212
|
}
|
|
17059
17213
|
/**
|
|
@@ -17862,7 +18016,10 @@ interface TiktokAdLibrarySearchData {
|
|
|
17862
18016
|
*/
|
|
17863
18017
|
ads: TiktokAdLibrarySearchAd[];
|
|
17864
18018
|
hasMore: boolean;
|
|
17865
|
-
|
|
18019
|
+
/**
|
|
18020
|
+
* Opaque cursor for the next page of ads, or null when this lane has no more. Pass it back as cursor to continue.
|
|
18021
|
+
*/
|
|
18022
|
+
nextCursor: string | null;
|
|
17866
18023
|
total: number;
|
|
17867
18024
|
}
|
|
17868
18025
|
/**
|
|
@@ -17938,7 +18095,10 @@ interface TiktokCommentRepliesComment {
|
|
|
17938
18095
|
*/
|
|
17939
18096
|
interface TiktokCommentRepliesData {
|
|
17940
18097
|
comments: TiktokCommentRepliesComment[];
|
|
17941
|
-
|
|
18098
|
+
/**
|
|
18099
|
+
* Opaque cursor for the next page of comments, or null when this lane has no more. Pass it back as cursor to continue.
|
|
18100
|
+
*/
|
|
18101
|
+
nextCursor: string | null;
|
|
17942
18102
|
}
|
|
17943
18103
|
/**
|
|
17944
18104
|
* Input for TikTok Followers (tiktok.followers).
|
|
@@ -17980,7 +18140,10 @@ interface TiktokFollowersFollower {
|
|
|
17980
18140
|
*/
|
|
17981
18141
|
interface TiktokFollowersData {
|
|
17982
18142
|
followers: TiktokFollowersFollower[];
|
|
17983
|
-
|
|
18143
|
+
/**
|
|
18144
|
+
* Opaque cursor for the next page of followers, or null when this lane has no more. Pass it back as cursor to continue.
|
|
18145
|
+
*/
|
|
18146
|
+
nextCursor: string | null;
|
|
17984
18147
|
total: number;
|
|
17985
18148
|
}
|
|
17986
18149
|
/**
|
|
@@ -18235,7 +18398,10 @@ interface TiktokProfileVideosVideo {
|
|
|
18235
18398
|
* The `data` payload of TikTok Profile Videos (tiktok.profile_videos).
|
|
18236
18399
|
*/
|
|
18237
18400
|
interface TiktokProfileVideosData {
|
|
18238
|
-
|
|
18401
|
+
/**
|
|
18402
|
+
* Opaque cursor for the next page of videos, or null when this lane has no more. Pass it back as cursor to continue.
|
|
18403
|
+
*/
|
|
18404
|
+
nextCursor: string | null;
|
|
18239
18405
|
videos: TiktokProfileVideosVideo[];
|
|
18240
18406
|
}
|
|
18241
18407
|
/**
|
|
@@ -18386,7 +18552,10 @@ interface TiktokSearchTopData {
|
|
|
18386
18552
|
* Populated whenever the provider has data for the entity.
|
|
18387
18553
|
*/
|
|
18388
18554
|
items: TiktokSearchTopItem[];
|
|
18389
|
-
|
|
18555
|
+
/**
|
|
18556
|
+
* Opaque cursor for the next page of results, or null when this lane has no more. Pass it back as cursor to continue.
|
|
18557
|
+
*/
|
|
18558
|
+
nextCursor: string | null;
|
|
18390
18559
|
}
|
|
18391
18560
|
/**
|
|
18392
18561
|
* Input for TikTok User Search (tiktok.search_users).
|
|
@@ -18422,7 +18591,10 @@ interface TiktokSearchUsersUser {
|
|
|
18422
18591
|
* The `data` payload of TikTok User Search (tiktok.search_users).
|
|
18423
18592
|
*/
|
|
18424
18593
|
interface TiktokSearchUsersData {
|
|
18425
|
-
|
|
18594
|
+
/**
|
|
18595
|
+
* Opaque cursor for the next page of users, or null when this lane has no more. Pass it back as cursor to continue.
|
|
18596
|
+
*/
|
|
18597
|
+
nextCursor: string | null;
|
|
18426
18598
|
/**
|
|
18427
18599
|
* Populated whenever the provider has data for the entity.
|
|
18428
18600
|
*/
|
|
@@ -18512,7 +18684,10 @@ interface TiktokSongVideosVideo {
|
|
|
18512
18684
|
*/
|
|
18513
18685
|
interface TiktokSongVideosData {
|
|
18514
18686
|
hasMore: number;
|
|
18515
|
-
|
|
18687
|
+
/**
|
|
18688
|
+
* Opaque cursor for the next page of videos, or null when this lane has no more. Pass it back as cursor to continue.
|
|
18689
|
+
*/
|
|
18690
|
+
nextCursor: string | null;
|
|
18516
18691
|
/**
|
|
18517
18692
|
* Populated whenever the provider has data for the entity.
|
|
18518
18693
|
*/
|
|
@@ -18640,7 +18815,10 @@ interface TiktokVideoCommentsComment {
|
|
|
18640
18815
|
*/
|
|
18641
18816
|
interface TiktokVideoCommentsData {
|
|
18642
18817
|
comments: TiktokVideoCommentsComment[];
|
|
18643
|
-
|
|
18818
|
+
/**
|
|
18819
|
+
* Opaque cursor for the next page of comments, or null when this lane has no more. Pass it back as cursor to continue.
|
|
18820
|
+
*/
|
|
18821
|
+
nextCursor: string | null;
|
|
18644
18822
|
}
|
|
18645
18823
|
/**
|
|
18646
18824
|
* Input for TikTok Video Transcript (tiktok.video_transcript).
|
|
@@ -19198,7 +19376,10 @@ interface TiktokShopShopProductsProduct {
|
|
|
19198
19376
|
*/
|
|
19199
19377
|
interface TiktokShopShopProductsData {
|
|
19200
19378
|
hasMore: boolean;
|
|
19201
|
-
|
|
19379
|
+
/**
|
|
19380
|
+
* Opaque cursor for the next page of products, or null when this lane has no more. Pass it back as cursor to continue.
|
|
19381
|
+
*/
|
|
19382
|
+
nextCursor: string | null;
|
|
19202
19383
|
productCount: number;
|
|
19203
19384
|
/**
|
|
19204
19385
|
* Populated whenever the provider has data for the entity.
|
|
@@ -19257,7 +19438,10 @@ interface TiktokShopUserShowcaseProduct {
|
|
|
19257
19438
|
* The `data` payload of TikTok Shop User Showcase (tiktok_shop.user_showcase).
|
|
19258
19439
|
*/
|
|
19259
19440
|
interface TiktokShopUserShowcaseData {
|
|
19260
|
-
|
|
19441
|
+
/**
|
|
19442
|
+
* Opaque cursor for the next page of products, or null when this lane has no more. Pass it back as cursor to continue.
|
|
19443
|
+
*/
|
|
19444
|
+
nextCursor: string | null;
|
|
19261
19445
|
/**
|
|
19262
19446
|
* Populated whenever the provider has data for the entity.
|
|
19263
19447
|
*/
|
|
@@ -21567,9 +21751,9 @@ interface WeiboPostCommentsData {
|
|
|
21567
21751
|
*/
|
|
21568
21752
|
comments: WeiboPostCommentsComment[];
|
|
21569
21753
|
/**
|
|
21570
|
-
*
|
|
21754
|
+
* Opaque cursor for the next page of comments, or null when this lane has no more. Pass it back as cursor to continue.
|
|
21571
21755
|
*/
|
|
21572
|
-
nextCursor: string;
|
|
21756
|
+
nextCursor: string | null;
|
|
21573
21757
|
/**
|
|
21574
21758
|
* Total comments reported by Weibo.
|
|
21575
21759
|
*/
|
|
@@ -21832,9 +22016,9 @@ interface WeiboUserPostsPost {
|
|
|
21832
22016
|
*/
|
|
21833
22017
|
interface WeiboUserPostsData {
|
|
21834
22018
|
/**
|
|
21835
|
-
*
|
|
22019
|
+
* Opaque cursor for the next page of posts, or null when this lane has no more. Pass it back as cursor to continue.
|
|
21836
22020
|
*/
|
|
21837
|
-
nextCursor: string;
|
|
22021
|
+
nextCursor: string | null;
|
|
21838
22022
|
/**
|
|
21839
22023
|
* Normalized Weibo posts. Populated whenever the provider has data for the entity.
|
|
21840
22024
|
*/
|
|
@@ -22243,7 +22427,10 @@ interface YoutubeChannelCommunityPostsPost {
|
|
|
22243
22427
|
* The `data` payload of YouTube Channel Community Posts (youtube.channel_community_posts).
|
|
22244
22428
|
*/
|
|
22245
22429
|
interface YoutubeChannelCommunityPostsData {
|
|
22246
|
-
|
|
22430
|
+
/**
|
|
22431
|
+
* Opaque cursor for the next page of posts, or null when this lane has no more. Pass it back as cursor to continue.
|
|
22432
|
+
*/
|
|
22433
|
+
nextCursor: string | null;
|
|
22247
22434
|
/**
|
|
22248
22435
|
* Populated whenever the provider has data for the entity.
|
|
22249
22436
|
*/
|
|
@@ -22295,7 +22482,10 @@ interface YoutubeChannelLivesData {
|
|
|
22295
22482
|
* Populated whenever the provider has data for the entity.
|
|
22296
22483
|
*/
|
|
22297
22484
|
lives: YoutubeChannelLivesLive[];
|
|
22298
|
-
|
|
22485
|
+
/**
|
|
22486
|
+
* Opaque cursor for the next page of live streams, or null when this lane has no more. Pass it back as cursor to continue.
|
|
22487
|
+
*/
|
|
22488
|
+
nextCursor: string | null;
|
|
22299
22489
|
}
|
|
22300
22490
|
/**
|
|
22301
22491
|
* Input for YouTube Channel Playlists (youtube.channel_playlists).
|
|
@@ -22335,7 +22525,10 @@ interface YoutubeChannelPlaylistsPlaylist {
|
|
|
22335
22525
|
* The `data` payload of YouTube Channel Playlists (youtube.channel_playlists).
|
|
22336
22526
|
*/
|
|
22337
22527
|
interface YoutubeChannelPlaylistsData {
|
|
22338
|
-
|
|
22528
|
+
/**
|
|
22529
|
+
* Opaque cursor for the next page of playlists, or null when this lane has no more. Pass it back as cursor to continue.
|
|
22530
|
+
*/
|
|
22531
|
+
nextCursor: string | null;
|
|
22339
22532
|
/**
|
|
22340
22533
|
* Populated whenever the provider has data for the entity.
|
|
22341
22534
|
*/
|
|
@@ -22385,7 +22578,10 @@ interface YoutubeChannelShortsShort {
|
|
|
22385
22578
|
* The `data` payload of YouTube Channel Shorts (youtube.channel_shorts).
|
|
22386
22579
|
*/
|
|
22387
22580
|
interface YoutubeChannelShortsData {
|
|
22388
|
-
|
|
22581
|
+
/**
|
|
22582
|
+
* Opaque cursor for the next page of shorts, or null when this lane has no more. Pass it back as cursor to continue.
|
|
22583
|
+
*/
|
|
22584
|
+
nextCursor: string | null;
|
|
22389
22585
|
/**
|
|
22390
22586
|
* Populated whenever the provider has data for the entity.
|
|
22391
22587
|
*/
|
|
@@ -22438,7 +22634,10 @@ interface YoutubeChannelVideosVideo {
|
|
|
22438
22634
|
* The `data` payload of YouTube Channel Videos (youtube.channel_videos).
|
|
22439
22635
|
*/
|
|
22440
22636
|
interface YoutubeChannelVideosData {
|
|
22441
|
-
|
|
22637
|
+
/**
|
|
22638
|
+
* Opaque cursor for the next page of videos, or null when this lane has no more. Pass it back as cursor to continue.
|
|
22639
|
+
*/
|
|
22640
|
+
nextCursor: string | null;
|
|
22442
22641
|
/**
|
|
22443
22642
|
* Populated whenever the provider has data for the entity.
|
|
22444
22643
|
*/
|
|
@@ -22675,7 +22874,10 @@ interface YoutubeSearchHashtagVideo {
|
|
|
22675
22874
|
* The `data` payload of YouTube Hashtag Search (youtube.search_hashtag).
|
|
22676
22875
|
*/
|
|
22677
22876
|
interface YoutubeSearchHashtagData {
|
|
22678
|
-
|
|
22877
|
+
/**
|
|
22878
|
+
* Opaque cursor for the next page of videos, or null when this lane has no more. Pass it back as cursor to continue.
|
|
22879
|
+
*/
|
|
22880
|
+
nextCursor: string | null;
|
|
22679
22881
|
/**
|
|
22680
22882
|
* Populated whenever the provider has data for the entity.
|
|
22681
22883
|
*/
|
|
@@ -22817,7 +23019,10 @@ interface YoutubeVideoCommentsData {
|
|
|
22817
23019
|
* Populated whenever the provider has data for the entity.
|
|
22818
23020
|
*/
|
|
22819
23021
|
comments: YoutubeVideoCommentsComment[];
|
|
22820
|
-
|
|
23022
|
+
/**
|
|
23023
|
+
* Opaque cursor for the next page of comments, or null when this lane has no more. Pass it back as cursor to continue.
|
|
23024
|
+
*/
|
|
23025
|
+
nextCursor: string | null;
|
|
22821
23026
|
}
|
|
22822
23027
|
/**
|
|
22823
23028
|
* Input for YouTube Video Sponsors (youtube.video_sponsors).
|
|
@@ -24722,6 +24927,11 @@ interface SkuMap {
|
|
|
24722
24927
|
data: RedditSubredditSearchData;
|
|
24723
24928
|
result: RunResult<RedditSubredditSearchData>;
|
|
24724
24929
|
};
|
|
24930
|
+
"reddit.trending_posts": {
|
|
24931
|
+
input: RedditTrendingPostsInput;
|
|
24932
|
+
data: RedditTrendingPostsData;
|
|
24933
|
+
result: RunResult<RedditTrendingPostsData>;
|
|
24934
|
+
};
|
|
24725
24935
|
"reddit.user_comments": {
|
|
24726
24936
|
input: RedditUserCommentsInput;
|
|
24727
24937
|
data: RedditUserCommentsData;
|
|
@@ -25581,4 +25791,4 @@ declare class AnyAPI extends AnyAPI$1 {
|
|
|
25581
25791
|
get zillow(): ZillowNamespace;
|
|
25582
25792
|
}
|
|
25583
25793
|
|
|
25584
|
-
export { type AccountProfile, type AgentSignupOptions, type AgentSignupResult, type AhrefsBacklinksData, type AhrefsBacklinksInput, type AhrefsBacklinksItem, type AhrefsKeywordIdeasData, type AhrefsKeywordIdeasIdea, type AhrefsKeywordIdeasInput, type AhrefsKeywordIdeasItem, type AhrefsKeywordsData, type AhrefsKeywordsInput, type AhrefsKeywordsItem, AhrefsNamespace, type AhrefsOverviewData, type AhrefsOverviewInput, type AhrefsOverviewItem, AirbnbNamespace, type AirbnbSearchData, type AirbnbSearchInput, type AirbnbSearchItem, AlibabaNamespace, type AlibabaSearchData, type AlibabaSearchInput, type AlibabaSearchItem, type AmazonAsinsData, type AmazonAsinsInput, type AmazonAsinsItem, type AmazonBestsellersData, type AmazonBestsellersInput, type AmazonBestsellersItem, AmazonNamespace, type AmazonProductData, type AmazonProductInput, type AmazonProductItem, type AmazonReviewsData, type AmazonReviewsInput, type AmazonReviewsItem, type AmazonSearchData, type AmazonSearchInput, type AmazonSearchItem, AnyAPI, AnyAPIError, ApolloNamespace, type ApolloOrganizationData, type ApolloOrganizationEnrichData, type ApolloOrganizationEnrichInput, type ApolloOrganizationInput, type ApolloOrganizationJobsData, type ApolloOrganizationJobsInput, type ApolloOrganizationJobsJob, type ApolloOrganizationNewsArticle, type ApolloOrganizationNewsData, type ApolloOrganizationNewsInput, type ApolloOrganizationsBulkEnrichData, type ApolloOrganizationsBulkEnrichInput, type ApolloOrganizationsBulkEnrichOrganization, type ApolloOrganizationsSearchData, type ApolloOrganizationsSearchInput, type ApolloOrganizationsSearchOrganization, type ApolloPeopleSearchData, type ApolloPeopleSearchInput, type ApolloPeopleSearchPeople, type ApolloPersonEnrichData, type ApolloPersonEnrichEmploymentHistory, type ApolloPersonEnrichInput, AppstoreNamespace, type AppstoreReviewsData, type AppstoreReviewsInput, type AppstoreReviewsItem, AuthenticationError, BadRequestError, type BareRunResult, BlueskyNamespace, type BlueskyPostData, type BlueskyPostInput, type BlueskyProfileData, type BlueskyProfileInput, type BlueskyUserPostsData, type BlueskyUserPostsInput, type BlueskyUserPostsPost, BookingNamespace, type BookingSearchData, type BookingSearchInput, type BookingSearchItem, type CatalogEntry, type CatalogOptions, type CatalogSearchResult, type CatalogSearchResults, type ClientCore, type ClientOptions, type CoinmarketcapListingsData, type CoinmarketcapListingsInput, type CoinmarketcapListingsItem, CoinmarketcapNamespace, CongressNamespace, type CongressTradesData, type CongressTradesInput, type CongressTradesItem, ConnectionError, DexscreenerNamespace, type DexscreenerTokensData, type DexscreenerTokensInput, type DexscreenerTokensItem, type DiscoveryLane, type DiscoveryPricing, DouyinNamespace, type DouyinProfileData, type DouyinProfileInput, type DouyinSearchVideosData, type DouyinSearchVideosInput, type DouyinSearchVideosVideo, type DouyinUserPostsData, type DouyinUserPostsInput, type DouyinUserPostsPost, type DouyinVideoCommentsComment, type DouyinVideoCommentsData, type DouyinVideoCommentsInput, type DouyinVideoData, type DouyinVideoInput, EbayNamespace, type EbaySearchData, type EbaySearchInput, type EbaySearchItem, type EbaySoldListingsData, type EbaySoldListingsInput, type EbaySoldListingsItem, type EmailFindData, type EmailFindInput, type EmailFindItem, EmailNamespace, type EmailVerifyData, type EmailVerifyInput, type EmailVerifyItem, type FacebookAdDetailsData, type FacebookAdDetailsInput, type FacebookAdTranscriptData, type FacebookAdTranscriptInput, type FacebookAdsSearchAd, type FacebookAdsSearchData, type FacebookAdsSearchInput, type FacebookCommentRepliesData, type FacebookCommentRepliesInput, type FacebookCommentRepliesReplie, type FacebookCompanyAdsAd, type FacebookCompanyAdsData, type FacebookCompanyAdsInput, type FacebookEventDetailsData, type FacebookEventDetailsInput, type FacebookEventsData, type FacebookEventsEvent, type FacebookEventsInput, type FacebookEventsSearchData, type FacebookEventsSearchEvent, type FacebookEventsSearchInput, type FacebookFollowersData, type FacebookFollowersInput, type FacebookFollowersItem, type FacebookGroupPostsData, type FacebookGroupPostsInput, type FacebookGroupPostsPost, type FacebookMarketplaceData, type FacebookMarketplaceInput, type FacebookMarketplaceItemData, type FacebookMarketplaceItemInput, type FacebookMarketplaceListing, type FacebookMarketplaceLocationSearchData, type FacebookMarketplaceLocationSearchInput, type FacebookMarketplaceLocationSearchLocation, FacebookNamespace, type FacebookPageContactData, type FacebookPageContactInput, type FacebookPageContactItem, type FacebookPhotosData, type FacebookPhotosInput, type FacebookPhotosPhoto, type FacebookPostCommentsComment, type FacebookPostCommentsData, type FacebookPostCommentsInput, type FacebookPostData, type FacebookPostInput, type FacebookPostTranscriptData, type FacebookPostTranscriptInput, type FacebookProfileData, type FacebookProfileEventsData, type FacebookProfileEventsEvent, type FacebookProfileEventsInput, type FacebookProfileInput, type FacebookProfilePostsData, type FacebookProfilePostsInput, type FacebookProfilePostsPost, type FacebookProfileReelsData, type FacebookProfileReelsInput, type FacebookProfileReelsReel, type FacebookSearchCompaniesCompanie, type FacebookSearchCompaniesData, type FacebookSearchCompaniesInput, type FacebookSearchPagesData, type FacebookSearchPagesInput, type FacebookSearchPagesItem, type FacebookSearchPostsData, type FacebookSearchPostsInput, type FacebookSearchPostsItem, FiverrNamespace, type FiverrSearchData, type FiverrSearchInput, type FiverrSearchItem, type FlatPricingOffer, GithubNamespace, type GithubRepositoryData, type GithubRepositoryInput, type GithubTrendingDevelopersData, type GithubTrendingDevelopersDeveloper, type GithubTrendingDevelopersInput, type GithubTrendingRepositoriesData, type GithubTrendingRepositoriesInput, type GithubTrendingRepositoriesRepo, type GithubUserActivityActivity, type GithubUserActivityData, type GithubUserActivityInput, type GithubUserContributionsData, type GithubUserContributionsDay, type GithubUserContributionsInput, type GithubUserData, type GithubUserFollowersData, type GithubUserFollowersFollower, type GithubUserFollowersInput, type GithubUserFollowingData, type GithubUserFollowingFollowing, type GithubUserFollowingInput, type GithubUserInput, type GithubUserPullRequestsData, type GithubUserPullRequestsInput, type GithubUserPullRequestsPullRequest, type GithubUserRepositoriesData, type GithubUserRepositoriesInput, type GithubUserRepositoriesRepo, type GlassdoorJobsData, type GlassdoorJobsInput, type GlassdoorJobsItem, GlassdoorNamespace, type GoogleAdsAdDetailsData, type GoogleAdsAdDetailsInput, type GoogleAdsAdDetailsVariation, type GoogleAdsAdvertiserSearchAdvertiser, type GoogleAdsAdvertiserSearchData, type GoogleAdsAdvertiserSearchInput, type GoogleAdsCompanyAdsAd, type GoogleAdsCompanyAdsData, type GoogleAdsCompanyAdsInput, GoogleAdsNamespace, type GoogleAdsSearchData, type GoogleAdsSearchInput, type GoogleAdsSearchItem, type GoogleAdsSearchVariation, type GoogleAutocompleteData, type GoogleAutocompleteInput, type GoogleAutocompleteSuggestion, GoogleFinanceNamespace, type GoogleFinanceQuoteData, type GoogleFinanceQuoteInput, type GoogleFinanceQuoteItem, type GoogleImagesData, type GoogleImagesInput, type GoogleImagesItem, type GoogleLensData, type GoogleLensInput, type GoogleLensResult, GoogleNamespace, type GoogleNewsData, type GoogleNewsInput, type GoogleNewsItem, type GooglePatentsData, type GooglePatentsInput, type GooglePatentsResult, type GoogleScholarData, type GoogleScholarInput, type GoogleScholarResult, type GoogleSearchData, type GoogleSearchInput, type GoogleSearchResult, GoogleShoppingNamespace, type GoogleShoppingSearchData, type GoogleShoppingSearchInput, type GoogleShoppingSearchItem, type GoogleVideosData, type GoogleVideosInput, type GoogleVideosResult, HackernewsNamespace, type HackernewsProfileData, type HackernewsProfileInput, type HackernewsSearchData, type HackernewsSearchInput, type HackernewsSearchResult, type HackernewsStoryCommentsComment, type HackernewsStoryCommentsData, type HackernewsStoryCommentsInput, type HackernewsStoryData, type HackernewsStoryInput, type HighlightField, type IndeedJobsData, type IndeedJobsInput, type IndeedJobsItem, IndeedNamespace, type InstagramAudioReelsData, type InstagramAudioReelsInput, type InstagramAudioReelsReel, type InstagramBasicProfileData, type InstagramBasicProfileInput, type InstagramCommentRepliesComment, type InstagramCommentRepliesData, type InstagramCommentRepliesInput, type InstagramEmbedData, type InstagramEmbedInput, type InstagramFollowersData, type InstagramFollowersInput, type InstagramFollowersItem, type InstagramFollowingData, type InstagramFollowingInput, type InstagramFollowingItem, type InstagramHashtagAnalyticsData, type InstagramHashtagAnalyticsInput, type InstagramHashtagAnalyticsItem, type InstagramHighlightDetailData, type InstagramHighlightDetailInput, type InstagramMediaTranscriptData, type InstagramMediaTranscriptInput, type InstagramMediaTranscriptTranscript, InstagramNamespace, type InstagramPostCommentsComment, type InstagramPostCommentsData, type InstagramPostCommentsInput, type InstagramPostData, type InstagramPostInput, type InstagramProfileData, type InstagramProfileInput, type InstagramReelTranscriptData, type InstagramReelTranscriptInput, type InstagramReelTranscriptItem, type InstagramReelTranscriptSegment, type InstagramReelsSearchData, type InstagramReelsSearchInput, type InstagramReelsSearchReel, type InstagramSearchData, type InstagramSearchHashtagData, type InstagramSearchHashtagInput, type InstagramSearchHashtagPost, type InstagramSearchInput, type InstagramSearchItem, type InstagramSearchProfilesData, type InstagramSearchProfilesInput, type InstagramSearchProfilesProfile, type InstagramStoriesFullData, type InstagramStoriesFullInput, type InstagramStoriesFullItem, type InstagramStoriesThinData, type InstagramStoriesThinInput, type InstagramStoriesThinItem, type InstagramTaggedPostsData, type InstagramTaggedPostsInput, type InstagramTaggedPostsPost, type InstagramTrendingReelsData, type InstagramTrendingReelsInput, type InstagramTrendingReelsReel, type InstagramUserHighlightsData, type InstagramUserHighlightsHighlight, type InstagramUserHighlightsInput, type InstagramUserPostsData, type InstagramUserPostsInput, type InstagramUserPostsPost, type InstagramUserReelsData, type InstagramUserReelsInput, type InstagramUserReelsReel, InsufficientBalanceError, type LaneHealth, type LinearPricingOffer, type LinkedinAdData, type LinkedinAdInput, type LinkedinAdsData, type LinkedinAdsInput, type LinkedinAdsItem, type LinkedinAdsSearchAd, type LinkedinAdsSearchData, type LinkedinAdsSearchInput, type LinkedinCompanyData, type LinkedinCompanyEmployeesData, type LinkedinCompanyEmployeesInput, type LinkedinCompanyEmployeesItem, type LinkedinCompanyInput, type LinkedinCompanyLocation, type LinkedinCompanyPostsContentAttribute, type LinkedinCompanyPostsData, type LinkedinCompanyPostsInput, type LinkedinCompanyPostsItem, type LinkedinCompanyPostsPostImage, type LinkedinCompanyPostsReaction, type LinkedinCompanyPostsThinData, type LinkedinCompanyPostsThinInput, type LinkedinCompanyPostsThinItem, type LinkedinCompanyThinData, type LinkedinCompanyThinInput, type LinkedinEmailData, type LinkedinEmailEmail, type LinkedinEmailInput, type LinkedinJobsData, type LinkedinJobsInput, type LinkedinJobsItem, type LinkedinJobsThinData, type LinkedinJobsThinInput, type LinkedinJobsThinItem, LinkedinNamespace, type LinkedinPostCommentsData, type LinkedinPostCommentsInput, type LinkedinPostCommentsItem, type LinkedinPostData, type LinkedinPostInput, type LinkedinPostReactionsData, type LinkedinPostReactionsInput, type LinkedinPostReactionsItem, type LinkedinPostTranscriptData, type LinkedinPostTranscriptInput, type LinkedinProfileCertification, type LinkedinProfileCurrentPosition, type LinkedinProfileData, type LinkedinProfileEducation, type LinkedinProfileExperience, type LinkedinProfileHonorsAndAward, type LinkedinProfileInput, type LinkedinProfilePublication, type LinkedinProfileThinArticle, type LinkedinProfileThinData, type LinkedinProfileThinEducation, type LinkedinProfileThinExperience, type LinkedinProfileThinInput, type LinkedinProfileThinRecentPost, type LinkedinSearchCompaniesData, type LinkedinSearchCompaniesInput, type LinkedinSearchCompaniesItem, type LinkedinSearchPostsData, type LinkedinSearchPostsInput, type LinkedinSearchPostsPost, type LinkedinSearchProfilesCurrentPosition, type LinkedinSearchProfilesData, type LinkedinSearchProfilesEducation, type LinkedinSearchProfilesEmailCurrentPosition, type LinkedinSearchProfilesEmailData, type LinkedinSearchProfilesEmailEducation, type LinkedinSearchProfilesEmailEmail, type LinkedinSearchProfilesEmailExperience, type LinkedinSearchProfilesEmailInput, type LinkedinSearchProfilesEmailItem, type LinkedinSearchProfilesExperience, type LinkedinSearchProfilesInput, type LinkedinSearchProfilesItem, type LinkedinSearchProfilesThinData, type LinkedinSearchProfilesThinInput, type LinkedinSearchProfilesThinItem, type MapsContactsData, type MapsContactsInput, type MapsContactsItem, MapsNamespace, type MapsPlaceData, type MapsPlaceHour, type MapsPlaceInput, type MapsPlaceItem, type MapsReviewsData, type MapsReviewsInput, type MapsReviewsItem, type MapsSearchData, type MapsSearchInput, type MapsSearchItem, NotFoundError, type Output, type Paginator, type PandaexpressLocationsData, type PandaexpressLocationsInput, type PandaexpressLocationsRestaurant, type PandaexpressMenuCategorie, type PandaexpressMenuData, type PandaexpressMenuInput, type PandaexpressMenuItem, PandaexpressNamespace, type PandaexpressNutritionData, type PandaexpressNutritionInput, type PandaexpressNutritionItem, PersonNamespace, type PersonSkipTraceAssociate, type PersonSkipTraceData, type PersonSkipTraceInput, type PersonSkipTraceItem, type PersonSkipTracePreviousAddresse, type PersonSkipTraceRelative, PinterestNamespace, type PinterestSearchData, type PinterestSearchInput, type PinterestSearchItem, PlaystoreNamespace, type PlaystoreReviewsData, type PlaystoreReviewsInput, type PlaystoreReviewsItem, type PolymarketMarketsData, type PolymarketMarketsInput, type PolymarketMarketsItem, type PolymarketMarketsOutcome, PolymarketNamespace, type PricingOffer, RateLimitedError, RealtorNamespace, type RealtorSearchData, type RealtorSearchInput, type RealtorSearchItem, RedditNamespace, type RedditPostCommentsComment, type RedditPostCommentsData, type RedditPostCommentsInput, type RedditPostData, type RedditPostInput, type RedditPostTranscriptData, type RedditPostTranscriptInput, type RedditProfileData, type RedditProfileInput, type RedditSearchData, type RedditSearchInput, type RedditSearchPost, type RedditSubredditDetailsData, type RedditSubredditDetailsInput, type RedditSubredditPostsData, type RedditSubredditPostsInput, type RedditSubredditPostsPost, type RedditSubredditSearchData, type RedditSubredditSearchInput, type RedditSubredditSearchPost, type RedditUserCommentsComment, type RedditUserCommentsData, type RedditUserCommentsInput, type RedditUserPostsData, type RedditUserPostsInput, type RedditUserPostsPost, RedfinNamespace, type RedfinSearchData, type RedfinSearchInput, type RedfinSearchItem, RednoteNamespace, type RednoteNoteCommentsComment, type RednoteNoteCommentsData, type RednoteNoteCommentsInput, type RednoteNoteData, type RednoteNoteInput, type RednoteProfileData, type RednoteProfileInput, type RednoteSearchData, type RednoteSearchInput, type RednoteSearchNote, type RednoteSearchUsersData, type RednoteSearchUsersInput, type RednoteSearchUsersUser, type RednoteUserNotesData, type RednoteUserNotesInput, type RednoteUserNotesNote, type RequestOptions, ResultNotFoundError, type RunResult, type SearchOptions, type SecFilingsData, type SecFilingsInput, type SecFilingsItem, SecNamespace, type SemrushKeywordsData, type SemrushKeywordsInput, type SemrushKeywordsItem, type SemrushKeywordsQuestion, type SemrushKeywordsRelatedKeyword, SemrushNamespace, type SemrushOverviewData, type SemrushOverviewInput, type SemrushOverviewItem, type SemrushOverviewTopKeyword, type SeoCompetitorsDomainCompetitor, type SeoCompetitorsDomainData, type SeoCompetitorsDomainInput, type SeoDomainIntersectionData, type SeoDomainIntersectionInput, type SeoDomainIntersectionKeyword, type SeoDomainRankOverviewData, type SeoDomainRankOverviewInput, type SeoKeywordDifficultyData, type SeoKeywordDifficultyDifficultie, type SeoKeywordDifficultyInput, type SeoKeywordIdeasData, type SeoKeywordIdeasIdea, type SeoKeywordIdeasInput, type SeoKeywordOverviewData, type SeoKeywordOverviewInput, type SeoKeywordOverviewKeyword, type SeoKeywordOverviewMonthlySearche, type SeoKeywordSuggestionsData, type SeoKeywordSuggestionsInput, type SeoKeywordSuggestionsSuggestion, type SeoLocalPackData, type SeoLocalPackInput, type SeoLocalPackPlace, SeoNamespace, type SeoRankedKeywordsData, type SeoRankedKeywordsInput, type SeoRankedKeywordsRankedKeyword, type SeoRelatedKeywordsData, type SeoRelatedKeywordsInput, type SeoRelatedKeywordsRelatedKeyword, type SeoSearchIntentData, type SeoSearchIntentInput, type SeoSearchIntentIntent, type SeoSearchVolumeData, type SeoSearchVolumeInput, type SeoSearchVolumeKeyword, type SeoSearchVolumeMonthlySearche, type SkuMap, SnapchatNamespace, type SnapchatProfileData, type SnapchatProfileInput, type SnapchatProfileItem, type SnapchatProfileStorie, type SocialFinderData, type SocialFinderInput, type SocialFinderItem, SocialNamespace, type SpotifyAlbumData, type SpotifyAlbumInput, type SpotifyAlbumTrack, type SpotifyArtistAlbum, type SpotifyArtistData, type SpotifyArtistInput, type SpotifyArtistTopTrack, SpotifyNamespace, type SpotifyPlayCountData, type SpotifyPlayCountInput, type SpotifyPlayCountItem, type SpotifyPodcastData, type SpotifyPodcastEpisodesData, type SpotifyPodcastEpisodesEpisode, type SpotifyPodcastEpisodesInput, type SpotifyPodcastInput, type SpotifySearchAlbum, type SpotifySearchArtist, type SpotifySearchData, type SpotifySearchInput, type SpotifySearchPodcast, type SpotifySearchTrack, type SpotifyTrackData, type SpotifyTrackInput, SubstackNamespace, type SubstackPostsData, type SubstackPostsInput, type SubstackPostsItem, ThreadsNamespace, type ThreadsPostData, type ThreadsPostInput, type ThreadsProfileData, type ThreadsProfileInput, type ThreadsSearchData, type ThreadsSearchInput, type ThreadsSearchPost, type ThreadsSearchUsersData, type ThreadsSearchUsersInput, type ThreadsSearchUsersUser, type ThreadsUserPostsData, type ThreadsUserPostsInput, type ThreadsUserPostsPost, type TiktokAdLibraryAdData, type TiktokAdLibraryAdInput, type TiktokAdLibrarySearchAd, type TiktokAdLibrarySearchData, type TiktokAdLibrarySearchInput, type TiktokAudienceDemographicsAudienceLocation, type TiktokAudienceDemographicsData, type TiktokAudienceDemographicsInput, type TiktokCommentRepliesComment, type TiktokCommentRepliesData, type TiktokCommentRepliesInput, type TiktokFollowersData, type TiktokFollowersFollower, type TiktokFollowersInput, type TiktokFollowingData, type TiktokFollowingFollowing, type TiktokFollowingInput, type TiktokHashtagVideosData, type TiktokHashtagVideosInput, type TiktokHashtagVideosItem, type TiktokLiveData, type TiktokLiveInput, TiktokNamespace, type TiktokProfileData, type TiktokProfileInput, type TiktokProfileRegionData, type TiktokProfileRegionInput, type TiktokProfileVideosData, type TiktokProfileVideosInput, type TiktokProfileVideosVideo, type TiktokSearchHashtagData, type TiktokSearchHashtagInput, type TiktokSearchHashtagVideo, type TiktokSearchKeywordData, type TiktokSearchKeywordInput, type TiktokSearchKeywordVideo, type TiktokSearchTopData, type TiktokSearchTopInput, type TiktokSearchTopItem, type TiktokSearchUsersData, type TiktokSearchUsersInput, type TiktokSearchUsersUser, TiktokShopNamespace, type TiktokShopProductData, type TiktokShopProductInput, type TiktokShopProductReviewsData, type TiktokShopProductReviewsInput, type TiktokShopProductReviewsReview, type TiktokShopSearchData, type TiktokShopSearchInput, type TiktokShopSearchItem, type TiktokShopShopProductsData, type TiktokShopShopProductsInput, type TiktokShopShopProductsProduct, type TiktokShopUserShowcaseData, type TiktokShopUserShowcaseInput, type TiktokShopUserShowcaseProduct, type TiktokSongData, type TiktokSongInput, type TiktokSongVideosData, type TiktokSongVideosInput, type TiktokSongVideosVideo, type TiktokTrendingFeedData, type TiktokTrendingFeedInput, type TiktokTrendingFeedVideo, type TiktokVideoCommentsComment, type TiktokVideoCommentsData, type TiktokVideoCommentsInput, type TiktokVideoData, type TiktokVideoInput, type TiktokVideoTranscriptData, type TiktokVideoTranscriptInput, TimeoutError, TripadvisorNamespace, type TripadvisorReviewsData, type TripadvisorReviewsInput, type TripadvisorReviewsItem, type TripadvisorSearchData, type TripadvisorSearchInput, type TripadvisorSearchItem, TrustpilotNamespace, type TrustpilotReviewsData, type TrustpilotReviewsInput, type TrustpilotReviewsItem, TruthsocialNamespace, type TruthsocialPostData, type TruthsocialPostInput, type TruthsocialProfileData, type TruthsocialProfileInput, type TruthsocialUserPostsData, type TruthsocialUserPostsInput, type TruthsocialUserPostsPost, type TwitterArticleContentBlock, type TwitterArticleData, type TwitterArticleEntitie, type TwitterArticleInlineStyle, type TwitterArticleInput, type TwitterCommunityData, type TwitterCommunityInput, type TwitterCommunityTweetsData, type TwitterCommunityTweetsInput, type TwitterCommunityTweetsTweet, type TwitterFollowersData, type TwitterFollowersInput, type TwitterFollowersItem, type TwitterFollowingData, type TwitterFollowingInput, type TwitterFollowingItem, TwitterNamespace, type TwitterProfileData, type TwitterProfileInput, type TwitterRepliesData, type TwitterRepliesInput, type TwitterRepliesItem, type TwitterSearchData, type TwitterSearchInput, type TwitterSearchItem, type TwitterTrendsData, type TwitterTrendsInput, type TwitterTrendsItem, type TwitterTweetData, type TwitterTweetInput, type TwitterTweetTranscriptData, type TwitterTweetTranscriptInput, type TwitterUserPostsData, type TwitterUserPostsInput, type TwitterUserPostsTweet, type TwitterUserTweetsData, type TwitterUserTweetsInput, type TwitterUserTweetsTweet, UpstreamError, type UpworkJobsData, type UpworkJobsInput, type UpworkJobsItem, UpworkNamespace, WalmartNamespace, type WalmartProductData, type WalmartProductInput, type WalmartProductItem, type WebCrawlData, type WebCrawlInput, type WebCrawlItem, type WebMapData, type WebMapInput, type WebMapResult, WebNamespace, type WebScrapeData, type WebScrapeInput, type WebScreenshotData, type WebScreenshotInput, type WebScreenshotItem, type WeiboHotSearchData, type WeiboHotSearchInput, type WeiboHotSearchTopic, WeiboNamespace, type WeiboPostCommentsComment, type WeiboPostCommentsData, type WeiboPostCommentsInput, type WeiboPostData, type WeiboPostInput, type WeiboProfileData, type WeiboProfileInput, type WeiboSearchData, type WeiboSearchInput, type WeiboSearchPost, type WeiboUserPostsData, type WeiboUserPostsInput, type WeiboUserPostsPost, YahooFinanceNamespace, type YahooFinanceQuoteData, type YahooFinanceQuoteInput, type YahooFinanceQuoteItem, YelpNamespace, type YelpSearchCategorie, type YelpSearchData, type YelpSearchInput, type YelpSearchItem, type YoutubeChannelCommunityPostsData, type YoutubeChannelCommunityPostsInput, type YoutubeChannelCommunityPostsPost, type YoutubeChannelData, type YoutubeChannelInput, type YoutubeChannelLivesData, type YoutubeChannelLivesInput, type YoutubeChannelLivesLive, type YoutubeChannelPlaylistsData, type YoutubeChannelPlaylistsInput, type YoutubeChannelPlaylistsPlaylist, type YoutubeChannelShortsData, type YoutubeChannelShortsInput, type YoutubeChannelShortsShort, type YoutubeChannelVideosData, type YoutubeChannelVideosInput, type YoutubeChannelVideosVideo, type YoutubeCommentRepliesComment, type YoutubeCommentRepliesData, type YoutubeCommentRepliesInput, type YoutubeCommunityPostData, type YoutubeCommunityPostInput, YoutubeNamespace, type YoutubePlaylistData, type YoutubePlaylistInput, type YoutubePlaylistVideo, type YoutubeSearchData, type YoutubeSearchHashtagData, type YoutubeSearchHashtagInput, type YoutubeSearchHashtagVideo, type YoutubeSearchInput, type YoutubeSearchVideo, type YoutubeTrendingShortsData, type YoutubeTrendingShortsInput, type YoutubeTrendingShortsShort, type YoutubeVideoCommentsComment, type YoutubeVideoCommentsData, type YoutubeVideoCommentsInput, type YoutubeVideoData, type YoutubeVideoInput, type YoutubeVideoSponsorsData, type YoutubeVideoSponsorsInput, type YoutubeVideoSponsorsSuspectedSponsor, type YoutubeVideoTranscriptData, type YoutubeVideoTranscriptInput, type ZhihuAnswerData, type ZhihuAnswerInput, ZhihuNamespace, type ZhihuProfileData, type ZhihuProfileInput, type ZhihuQuestionAnswersAnswer, type ZhihuQuestionAnswersData, type ZhihuQuestionAnswersInput, type ZhihuQuestionData, type ZhihuQuestionInput, type ZhihuSearchArticlesArticle, type ZhihuSearchArticlesData, type ZhihuSearchArticlesInput, ZillowNamespace, type ZillowPropertyData, type ZillowPropertyInput, type ZillowPropertyItem, type ZillowSearchData, type ZillowSearchInput, type ZillowSearchItem, agentSignup, paginate, unwrap };
|
|
25794
|
+
export { type AccountProfile, type AgentSignupOptions, type AgentSignupResult, type AhrefsBacklinksData, type AhrefsBacklinksInput, type AhrefsBacklinksItem, type AhrefsKeywordIdeasData, type AhrefsKeywordIdeasIdea, type AhrefsKeywordIdeasInput, type AhrefsKeywordIdeasItem, type AhrefsKeywordsData, type AhrefsKeywordsInput, type AhrefsKeywordsItem, AhrefsNamespace, type AhrefsOverviewData, type AhrefsOverviewInput, type AhrefsOverviewItem, AirbnbNamespace, type AirbnbSearchData, type AirbnbSearchInput, type AirbnbSearchItem, AlibabaNamespace, type AlibabaSearchData, type AlibabaSearchInput, type AlibabaSearchItem, type AmazonAsinsData, type AmazonAsinsInput, type AmazonAsinsItem, type AmazonBestsellersData, type AmazonBestsellersInput, type AmazonBestsellersItem, AmazonNamespace, type AmazonProductData, type AmazonProductInput, type AmazonProductItem, type AmazonReviewsData, type AmazonReviewsInput, type AmazonReviewsItem, type AmazonSearchData, type AmazonSearchInput, type AmazonSearchItem, AnyAPI, AnyAPIError, ApolloNamespace, type ApolloOrganizationData, type ApolloOrganizationEnrichData, type ApolloOrganizationEnrichInput, type ApolloOrganizationInput, type ApolloOrganizationJobsData, type ApolloOrganizationJobsInput, type ApolloOrganizationJobsJob, type ApolloOrganizationNewsArticle, type ApolloOrganizationNewsData, type ApolloOrganizationNewsInput, type ApolloOrganizationsBulkEnrichData, type ApolloOrganizationsBulkEnrichInput, type ApolloOrganizationsBulkEnrichOrganization, type ApolloOrganizationsSearchData, type ApolloOrganizationsSearchInput, type ApolloOrganizationsSearchOrganization, type ApolloPeopleSearchData, type ApolloPeopleSearchInput, type ApolloPeopleSearchPeople, type ApolloPersonEnrichData, type ApolloPersonEnrichEmploymentHistory, type ApolloPersonEnrichInput, AppstoreNamespace, type AppstoreReviewsData, type AppstoreReviewsInput, type AppstoreReviewsItem, AuthenticationError, BadRequestError, type BareRunResult, BlueskyNamespace, type BlueskyPostData, type BlueskyPostInput, type BlueskyProfileData, type BlueskyProfileInput, type BlueskyUserPostsData, type BlueskyUserPostsInput, type BlueskyUserPostsPost, BookingNamespace, type BookingSearchData, type BookingSearchInput, type BookingSearchItem, type CatalogEntry, type CatalogOptions, type CatalogSearchResult, type CatalogSearchResults, type ClientCore, type ClientOptions, type CoinmarketcapListingsData, type CoinmarketcapListingsInput, type CoinmarketcapListingsItem, CoinmarketcapNamespace, CongressNamespace, type CongressTradesData, type CongressTradesInput, type CongressTradesItem, ConnectionError, DexscreenerNamespace, type DexscreenerTokensData, type DexscreenerTokensInput, type DexscreenerTokensItem, type DiscoveryLane, type DiscoveryPricing, DouyinNamespace, type DouyinProfileData, type DouyinProfileInput, type DouyinSearchVideosData, type DouyinSearchVideosInput, type DouyinSearchVideosVideo, type DouyinUserPostsData, type DouyinUserPostsInput, type DouyinUserPostsPost, type DouyinVideoCommentsComment, type DouyinVideoCommentsData, type DouyinVideoCommentsInput, type DouyinVideoData, type DouyinVideoInput, EbayNamespace, type EbaySearchData, type EbaySearchInput, type EbaySearchItem, type EbaySoldListingsData, type EbaySoldListingsInput, type EbaySoldListingsItem, type EmailFindData, type EmailFindInput, type EmailFindItem, EmailNamespace, type EmailVerifyData, type EmailVerifyInput, type EmailVerifyItem, type FacebookAdDetailsData, type FacebookAdDetailsInput, type FacebookAdTranscriptData, type FacebookAdTranscriptInput, type FacebookAdsSearchAd, type FacebookAdsSearchData, type FacebookAdsSearchInput, type FacebookCommentRepliesData, type FacebookCommentRepliesInput, type FacebookCommentRepliesReplie, type FacebookCompanyAdsAd, type FacebookCompanyAdsData, type FacebookCompanyAdsInput, type FacebookEventDetailsData, type FacebookEventDetailsInput, type FacebookEventsData, type FacebookEventsEvent, type FacebookEventsInput, type FacebookEventsSearchData, type FacebookEventsSearchEvent, type FacebookEventsSearchInput, type FacebookFollowersData, type FacebookFollowersInput, type FacebookFollowersItem, type FacebookGroupPostsData, type FacebookGroupPostsInput, type FacebookGroupPostsPost, type FacebookMarketplaceData, type FacebookMarketplaceInput, type FacebookMarketplaceItemData, type FacebookMarketplaceItemInput, type FacebookMarketplaceListing, type FacebookMarketplaceLocationSearchData, type FacebookMarketplaceLocationSearchInput, type FacebookMarketplaceLocationSearchLocation, FacebookNamespace, type FacebookPageContactData, type FacebookPageContactInput, type FacebookPageContactItem, type FacebookPhotosData, type FacebookPhotosInput, type FacebookPhotosPhoto, type FacebookPostCommentsComment, type FacebookPostCommentsData, type FacebookPostCommentsInput, type FacebookPostData, type FacebookPostInput, type FacebookPostTranscriptData, type FacebookPostTranscriptInput, type FacebookProfileData, type FacebookProfileEventsData, type FacebookProfileEventsEvent, type FacebookProfileEventsInput, type FacebookProfileInput, type FacebookProfilePostsData, type FacebookProfilePostsInput, type FacebookProfilePostsPost, type FacebookProfileReelsData, type FacebookProfileReelsInput, type FacebookProfileReelsReel, type FacebookSearchCompaniesCompanie, type FacebookSearchCompaniesData, type FacebookSearchCompaniesInput, type FacebookSearchPagesData, type FacebookSearchPagesInput, type FacebookSearchPagesItem, type FacebookSearchPostsData, type FacebookSearchPostsInput, type FacebookSearchPostsItem, FiverrNamespace, type FiverrSearchData, type FiverrSearchInput, type FiverrSearchItem, type FlatPricingOffer, GithubNamespace, type GithubRepositoryData, type GithubRepositoryInput, type GithubTrendingDevelopersData, type GithubTrendingDevelopersDeveloper, type GithubTrendingDevelopersInput, type GithubTrendingRepositoriesData, type GithubTrendingRepositoriesInput, type GithubTrendingRepositoriesRepo, type GithubUserActivityActivity, type GithubUserActivityData, type GithubUserActivityInput, type GithubUserContributionsData, type GithubUserContributionsDay, type GithubUserContributionsInput, type GithubUserData, type GithubUserFollowersData, type GithubUserFollowersFollower, type GithubUserFollowersInput, type GithubUserFollowingData, type GithubUserFollowingFollowing, type GithubUserFollowingInput, type GithubUserInput, type GithubUserPullRequestsData, type GithubUserPullRequestsInput, type GithubUserPullRequestsPullRequest, type GithubUserRepositoriesData, type GithubUserRepositoriesInput, type GithubUserRepositoriesRepo, type GlassdoorJobsData, type GlassdoorJobsInput, type GlassdoorJobsItem, GlassdoorNamespace, type GoogleAdsAdDetailsData, type GoogleAdsAdDetailsInput, type GoogleAdsAdDetailsVariation, type GoogleAdsAdvertiserSearchAdvertiser, type GoogleAdsAdvertiserSearchData, type GoogleAdsAdvertiserSearchInput, type GoogleAdsCompanyAdsAd, type GoogleAdsCompanyAdsData, type GoogleAdsCompanyAdsInput, GoogleAdsNamespace, type GoogleAdsSearchData, type GoogleAdsSearchInput, type GoogleAdsSearchItem, type GoogleAdsSearchVariation, type GoogleAutocompleteData, type GoogleAutocompleteInput, type GoogleAutocompleteSuggestion, GoogleFinanceNamespace, type GoogleFinanceQuoteData, type GoogleFinanceQuoteInput, type GoogleFinanceQuoteItem, type GoogleImagesData, type GoogleImagesInput, type GoogleImagesItem, type GoogleLensData, type GoogleLensInput, type GoogleLensResult, GoogleNamespace, type GoogleNewsData, type GoogleNewsInput, type GoogleNewsItem, type GooglePatentsData, type GooglePatentsInput, type GooglePatentsResult, type GoogleScholarData, type GoogleScholarInput, type GoogleScholarResult, type GoogleSearchData, type GoogleSearchInput, type GoogleSearchResult, GoogleShoppingNamespace, type GoogleShoppingSearchData, type GoogleShoppingSearchInput, type GoogleShoppingSearchItem, type GoogleVideosData, type GoogleVideosInput, type GoogleVideosResult, HackernewsNamespace, type HackernewsProfileData, type HackernewsProfileInput, type HackernewsSearchData, type HackernewsSearchInput, type HackernewsSearchResult, type HackernewsStoryCommentsComment, type HackernewsStoryCommentsData, type HackernewsStoryCommentsInput, type HackernewsStoryData, type HackernewsStoryInput, type HighlightField, type IndeedJobsData, type IndeedJobsInput, type IndeedJobsItem, IndeedNamespace, type InstagramAudioReelsData, type InstagramAudioReelsInput, type InstagramAudioReelsReel, type InstagramBasicProfileData, type InstagramBasicProfileInput, type InstagramCommentRepliesComment, type InstagramCommentRepliesData, type InstagramCommentRepliesInput, type InstagramEmbedData, type InstagramEmbedInput, type InstagramFollowersData, type InstagramFollowersInput, type InstagramFollowersItem, type InstagramFollowingData, type InstagramFollowingInput, type InstagramFollowingItem, type InstagramHashtagAnalyticsData, type InstagramHashtagAnalyticsInput, type InstagramHashtagAnalyticsItem, type InstagramHighlightDetailData, type InstagramHighlightDetailInput, type InstagramMediaTranscriptData, type InstagramMediaTranscriptInput, type InstagramMediaTranscriptTranscript, InstagramNamespace, type InstagramPostCommentsComment, type InstagramPostCommentsData, type InstagramPostCommentsInput, type InstagramPostData, type InstagramPostInput, type InstagramProfileData, type InstagramProfileInput, type InstagramReelTranscriptData, type InstagramReelTranscriptInput, type InstagramReelTranscriptItem, type InstagramReelTranscriptSegment, type InstagramReelsSearchData, type InstagramReelsSearchInput, type InstagramReelsSearchReel, type InstagramSearchData, type InstagramSearchHashtagData, type InstagramSearchHashtagInput, type InstagramSearchHashtagPost, type InstagramSearchInput, type InstagramSearchItem, type InstagramSearchProfilesData, type InstagramSearchProfilesInput, type InstagramSearchProfilesProfile, type InstagramStoriesFullData, type InstagramStoriesFullInput, type InstagramStoriesFullItem, type InstagramStoriesThinData, type InstagramStoriesThinInput, type InstagramStoriesThinItem, type InstagramTaggedPostsData, type InstagramTaggedPostsInput, type InstagramTaggedPostsPost, type InstagramTrendingReelsData, type InstagramTrendingReelsInput, type InstagramTrendingReelsReel, type InstagramUserHighlightsData, type InstagramUserHighlightsHighlight, type InstagramUserHighlightsInput, type InstagramUserPostsData, type InstagramUserPostsInput, type InstagramUserPostsPost, type InstagramUserReelsData, type InstagramUserReelsInput, type InstagramUserReelsReel, InsufficientBalanceError, type LaneHealth, type LinearPricingOffer, type LinkedinAdData, type LinkedinAdInput, type LinkedinAdsData, type LinkedinAdsInput, type LinkedinAdsItem, type LinkedinAdsSearchAd, type LinkedinAdsSearchData, type LinkedinAdsSearchInput, type LinkedinCompanyData, type LinkedinCompanyEmployeesData, type LinkedinCompanyEmployeesInput, type LinkedinCompanyEmployeesItem, type LinkedinCompanyInput, type LinkedinCompanyLocation, type LinkedinCompanyPostsContentAttribute, type LinkedinCompanyPostsData, type LinkedinCompanyPostsInput, type LinkedinCompanyPostsItem, type LinkedinCompanyPostsPostImage, type LinkedinCompanyPostsReaction, type LinkedinCompanyPostsThinData, type LinkedinCompanyPostsThinInput, type LinkedinCompanyPostsThinItem, type LinkedinCompanyThinData, type LinkedinCompanyThinInput, type LinkedinEmailData, type LinkedinEmailEmail, type LinkedinEmailInput, type LinkedinJobsData, type LinkedinJobsInput, type LinkedinJobsItem, type LinkedinJobsThinData, type LinkedinJobsThinInput, type LinkedinJobsThinItem, LinkedinNamespace, type LinkedinPostCommentsData, type LinkedinPostCommentsInput, type LinkedinPostCommentsItem, type LinkedinPostData, type LinkedinPostInput, type LinkedinPostReactionsData, type LinkedinPostReactionsInput, type LinkedinPostReactionsItem, type LinkedinPostTranscriptData, type LinkedinPostTranscriptInput, type LinkedinProfileCertification, type LinkedinProfileCurrentPosition, type LinkedinProfileData, type LinkedinProfileEducation, type LinkedinProfileExperience, type LinkedinProfileHonorsAndAward, type LinkedinProfileInput, type LinkedinProfilePublication, type LinkedinProfileThinArticle, type LinkedinProfileThinData, type LinkedinProfileThinEducation, type LinkedinProfileThinExperience, type LinkedinProfileThinInput, type LinkedinProfileThinRecentPost, type LinkedinSearchCompaniesData, type LinkedinSearchCompaniesInput, type LinkedinSearchCompaniesItem, type LinkedinSearchPostsData, type LinkedinSearchPostsInput, type LinkedinSearchPostsPost, type LinkedinSearchProfilesCurrentPosition, type LinkedinSearchProfilesData, type LinkedinSearchProfilesEducation, type LinkedinSearchProfilesEmailCurrentPosition, type LinkedinSearchProfilesEmailData, type LinkedinSearchProfilesEmailEducation, type LinkedinSearchProfilesEmailEmail, type LinkedinSearchProfilesEmailExperience, type LinkedinSearchProfilesEmailInput, type LinkedinSearchProfilesEmailItem, type LinkedinSearchProfilesExperience, type LinkedinSearchProfilesInput, type LinkedinSearchProfilesItem, type LinkedinSearchProfilesThinData, type LinkedinSearchProfilesThinInput, type LinkedinSearchProfilesThinItem, type MapsContactsData, type MapsContactsInput, type MapsContactsItem, MapsNamespace, type MapsPlaceData, type MapsPlaceHour, type MapsPlaceInput, type MapsPlaceItem, type MapsReviewsData, type MapsReviewsInput, type MapsReviewsItem, type MapsSearchData, type MapsSearchInput, type MapsSearchItem, NotFoundError, type Output, type Paginator, type PandaexpressLocationsData, type PandaexpressLocationsInput, type PandaexpressLocationsRestaurant, type PandaexpressMenuCategorie, type PandaexpressMenuData, type PandaexpressMenuInput, type PandaexpressMenuItem, PandaexpressNamespace, type PandaexpressNutritionData, type PandaexpressNutritionInput, type PandaexpressNutritionItem, PersonNamespace, type PersonSkipTraceAssociate, type PersonSkipTraceData, type PersonSkipTraceInput, type PersonSkipTraceItem, type PersonSkipTracePreviousAddresse, type PersonSkipTraceRelative, PinterestNamespace, type PinterestSearchData, type PinterestSearchInput, type PinterestSearchItem, PlaystoreNamespace, type PlaystoreReviewsData, type PlaystoreReviewsInput, type PlaystoreReviewsItem, type PolymarketMarketsData, type PolymarketMarketsInput, type PolymarketMarketsItem, type PolymarketMarketsOutcome, PolymarketNamespace, type PricingOffer, RateLimitedError, RealtorNamespace, type RealtorSearchData, type RealtorSearchInput, type RealtorSearchItem, RedditNamespace, type RedditPostCommentsComment, type RedditPostCommentsData, type RedditPostCommentsInput, type RedditPostData, type RedditPostInput, type RedditPostTranscriptData, type RedditPostTranscriptInput, type RedditProfileData, type RedditProfileInput, type RedditSearchData, type RedditSearchInput, type RedditSearchPost, type RedditSubredditDetailsData, type RedditSubredditDetailsInput, type RedditSubredditPostsData, type RedditSubredditPostsInput, type RedditSubredditPostsPost, type RedditSubredditSearchData, type RedditSubredditSearchInput, type RedditSubredditSearchPost, type RedditTrendingPostsData, type RedditTrendingPostsInput, type RedditTrendingPostsPost, type RedditUserCommentsComment, type RedditUserCommentsData, type RedditUserCommentsInput, type RedditUserPostsData, type RedditUserPostsInput, type RedditUserPostsPost, RedfinNamespace, type RedfinSearchData, type RedfinSearchInput, type RedfinSearchItem, RednoteNamespace, type RednoteNoteCommentsComment, type RednoteNoteCommentsData, type RednoteNoteCommentsInput, type RednoteNoteData, type RednoteNoteInput, type RednoteProfileData, type RednoteProfileInput, type RednoteSearchData, type RednoteSearchInput, type RednoteSearchNote, type RednoteSearchUsersData, type RednoteSearchUsersInput, type RednoteSearchUsersUser, type RednoteUserNotesData, type RednoteUserNotesInput, type RednoteUserNotesNote, type RequestOptions, ResultNotFoundError, type RunResult, type SearchOptions, type SecFilingsData, type SecFilingsInput, type SecFilingsItem, SecNamespace, type SemrushKeywordsData, type SemrushKeywordsInput, type SemrushKeywordsItem, type SemrushKeywordsQuestion, type SemrushKeywordsRelatedKeyword, SemrushNamespace, type SemrushOverviewData, type SemrushOverviewInput, type SemrushOverviewItem, type SemrushOverviewTopKeyword, type SeoCompetitorsDomainCompetitor, type SeoCompetitorsDomainData, type SeoCompetitorsDomainInput, type SeoDomainIntersectionData, type SeoDomainIntersectionInput, type SeoDomainIntersectionKeyword, type SeoDomainRankOverviewData, type SeoDomainRankOverviewInput, type SeoKeywordDifficultyData, type SeoKeywordDifficultyDifficultie, type SeoKeywordDifficultyInput, type SeoKeywordIdeasData, type SeoKeywordIdeasIdea, type SeoKeywordIdeasInput, type SeoKeywordOverviewData, type SeoKeywordOverviewInput, type SeoKeywordOverviewKeyword, type SeoKeywordOverviewMonthlySearche, type SeoKeywordSuggestionsData, type SeoKeywordSuggestionsInput, type SeoKeywordSuggestionsSuggestion, type SeoLocalPackData, type SeoLocalPackInput, type SeoLocalPackPlace, SeoNamespace, type SeoRankedKeywordsData, type SeoRankedKeywordsInput, type SeoRankedKeywordsRankedKeyword, type SeoRelatedKeywordsData, type SeoRelatedKeywordsInput, type SeoRelatedKeywordsRelatedKeyword, type SeoSearchIntentData, type SeoSearchIntentInput, type SeoSearchIntentIntent, type SeoSearchVolumeData, type SeoSearchVolumeInput, type SeoSearchVolumeKeyword, type SeoSearchVolumeMonthlySearche, type SkuMap, SnapchatNamespace, type SnapchatProfileData, type SnapchatProfileInput, type SnapchatProfileItem, type SnapchatProfileStorie, type SocialFinderData, type SocialFinderInput, type SocialFinderItem, SocialNamespace, type SpotifyAlbumData, type SpotifyAlbumInput, type SpotifyAlbumTrack, type SpotifyArtistAlbum, type SpotifyArtistData, type SpotifyArtistInput, type SpotifyArtistTopTrack, SpotifyNamespace, type SpotifyPlayCountData, type SpotifyPlayCountInput, type SpotifyPlayCountItem, type SpotifyPodcastData, type SpotifyPodcastEpisodesData, type SpotifyPodcastEpisodesEpisode, type SpotifyPodcastEpisodesInput, type SpotifyPodcastInput, type SpotifySearchAlbum, type SpotifySearchArtist, type SpotifySearchData, type SpotifySearchInput, type SpotifySearchPodcast, type SpotifySearchTrack, type SpotifyTrackData, type SpotifyTrackInput, SubstackNamespace, type SubstackPostsData, type SubstackPostsInput, type SubstackPostsItem, ThreadsNamespace, type ThreadsPostData, type ThreadsPostInput, type ThreadsProfileData, type ThreadsProfileInput, type ThreadsSearchData, type ThreadsSearchInput, type ThreadsSearchPost, type ThreadsSearchUsersData, type ThreadsSearchUsersInput, type ThreadsSearchUsersUser, type ThreadsUserPostsData, type ThreadsUserPostsInput, type ThreadsUserPostsPost, type TiktokAdLibraryAdData, type TiktokAdLibraryAdInput, type TiktokAdLibrarySearchAd, type TiktokAdLibrarySearchData, type TiktokAdLibrarySearchInput, type TiktokAudienceDemographicsAudienceLocation, type TiktokAudienceDemographicsData, type TiktokAudienceDemographicsInput, type TiktokCommentRepliesComment, type TiktokCommentRepliesData, type TiktokCommentRepliesInput, type TiktokFollowersData, type TiktokFollowersFollower, type TiktokFollowersInput, type TiktokFollowingData, type TiktokFollowingFollowing, type TiktokFollowingInput, type TiktokHashtagVideosData, type TiktokHashtagVideosInput, type TiktokHashtagVideosItem, type TiktokLiveData, type TiktokLiveInput, TiktokNamespace, type TiktokProfileData, type TiktokProfileInput, type TiktokProfileRegionData, type TiktokProfileRegionInput, type TiktokProfileVideosData, type TiktokProfileVideosInput, type TiktokProfileVideosVideo, type TiktokSearchHashtagData, type TiktokSearchHashtagInput, type TiktokSearchHashtagVideo, type TiktokSearchKeywordData, type TiktokSearchKeywordInput, type TiktokSearchKeywordVideo, type TiktokSearchTopData, type TiktokSearchTopInput, type TiktokSearchTopItem, type TiktokSearchUsersData, type TiktokSearchUsersInput, type TiktokSearchUsersUser, TiktokShopNamespace, type TiktokShopProductData, type TiktokShopProductInput, type TiktokShopProductReviewsData, type TiktokShopProductReviewsInput, type TiktokShopProductReviewsReview, type TiktokShopSearchData, type TiktokShopSearchInput, type TiktokShopSearchItem, type TiktokShopShopProductsData, type TiktokShopShopProductsInput, type TiktokShopShopProductsProduct, type TiktokShopUserShowcaseData, type TiktokShopUserShowcaseInput, type TiktokShopUserShowcaseProduct, type TiktokSongData, type TiktokSongInput, type TiktokSongVideosData, type TiktokSongVideosInput, type TiktokSongVideosVideo, type TiktokTrendingFeedData, type TiktokTrendingFeedInput, type TiktokTrendingFeedVideo, type TiktokVideoCommentsComment, type TiktokVideoCommentsData, type TiktokVideoCommentsInput, type TiktokVideoData, type TiktokVideoInput, type TiktokVideoTranscriptData, type TiktokVideoTranscriptInput, TimeoutError, TripadvisorNamespace, type TripadvisorReviewsData, type TripadvisorReviewsInput, type TripadvisorReviewsItem, type TripadvisorSearchData, type TripadvisorSearchInput, type TripadvisorSearchItem, TrustpilotNamespace, type TrustpilotReviewsData, type TrustpilotReviewsInput, type TrustpilotReviewsItem, TruthsocialNamespace, type TruthsocialPostData, type TruthsocialPostInput, type TruthsocialProfileData, type TruthsocialProfileInput, type TruthsocialUserPostsData, type TruthsocialUserPostsInput, type TruthsocialUserPostsPost, type TwitterArticleContentBlock, type TwitterArticleData, type TwitterArticleEntitie, type TwitterArticleInlineStyle, type TwitterArticleInput, type TwitterCommunityData, type TwitterCommunityInput, type TwitterCommunityTweetsData, type TwitterCommunityTweetsInput, type TwitterCommunityTweetsTweet, type TwitterFollowersData, type TwitterFollowersInput, type TwitterFollowersItem, type TwitterFollowingData, type TwitterFollowingInput, type TwitterFollowingItem, TwitterNamespace, type TwitterProfileData, type TwitterProfileInput, type TwitterRepliesData, type TwitterRepliesInput, type TwitterRepliesItem, type TwitterSearchData, type TwitterSearchInput, type TwitterSearchItem, type TwitterTrendsData, type TwitterTrendsInput, type TwitterTrendsItem, type TwitterTweetData, type TwitterTweetInput, type TwitterTweetTranscriptData, type TwitterTweetTranscriptInput, type TwitterUserPostsData, type TwitterUserPostsInput, type TwitterUserPostsTweet, type TwitterUserTweetsData, type TwitterUserTweetsInput, type TwitterUserTweetsTweet, UpstreamError, type UpworkJobsData, type UpworkJobsInput, type UpworkJobsItem, UpworkNamespace, WalmartNamespace, type WalmartProductData, type WalmartProductInput, type WalmartProductItem, type WebCrawlData, type WebCrawlInput, type WebCrawlItem, type WebMapData, type WebMapInput, type WebMapResult, WebNamespace, type WebScrapeData, type WebScrapeInput, type WebScreenshotData, type WebScreenshotInput, type WebScreenshotItem, type WeiboHotSearchData, type WeiboHotSearchInput, type WeiboHotSearchTopic, WeiboNamespace, type WeiboPostCommentsComment, type WeiboPostCommentsData, type WeiboPostCommentsInput, type WeiboPostData, type WeiboPostInput, type WeiboProfileData, type WeiboProfileInput, type WeiboSearchData, type WeiboSearchInput, type WeiboSearchPost, type WeiboUserPostsData, type WeiboUserPostsInput, type WeiboUserPostsPost, YahooFinanceNamespace, type YahooFinanceQuoteData, type YahooFinanceQuoteInput, type YahooFinanceQuoteItem, YelpNamespace, type YelpSearchCategorie, type YelpSearchData, type YelpSearchInput, type YelpSearchItem, type YoutubeChannelCommunityPostsData, type YoutubeChannelCommunityPostsInput, type YoutubeChannelCommunityPostsPost, type YoutubeChannelData, type YoutubeChannelInput, type YoutubeChannelLivesData, type YoutubeChannelLivesInput, type YoutubeChannelLivesLive, type YoutubeChannelPlaylistsData, type YoutubeChannelPlaylistsInput, type YoutubeChannelPlaylistsPlaylist, type YoutubeChannelShortsData, type YoutubeChannelShortsInput, type YoutubeChannelShortsShort, type YoutubeChannelVideosData, type YoutubeChannelVideosInput, type YoutubeChannelVideosVideo, type YoutubeCommentRepliesComment, type YoutubeCommentRepliesData, type YoutubeCommentRepliesInput, type YoutubeCommunityPostData, type YoutubeCommunityPostInput, YoutubeNamespace, type YoutubePlaylistData, type YoutubePlaylistInput, type YoutubePlaylistVideo, type YoutubeSearchData, type YoutubeSearchHashtagData, type YoutubeSearchHashtagInput, type YoutubeSearchHashtagVideo, type YoutubeSearchInput, type YoutubeSearchVideo, type YoutubeTrendingShortsData, type YoutubeTrendingShortsInput, type YoutubeTrendingShortsShort, type YoutubeVideoCommentsComment, type YoutubeVideoCommentsData, type YoutubeVideoCommentsInput, type YoutubeVideoData, type YoutubeVideoInput, type YoutubeVideoSponsorsData, type YoutubeVideoSponsorsInput, type YoutubeVideoSponsorsSuspectedSponsor, type YoutubeVideoTranscriptData, type YoutubeVideoTranscriptInput, type ZhihuAnswerData, type ZhihuAnswerInput, ZhihuNamespace, type ZhihuProfileData, type ZhihuProfileInput, type ZhihuQuestionAnswersAnswer, type ZhihuQuestionAnswersData, type ZhihuQuestionAnswersInput, type ZhihuQuestionData, type ZhihuQuestionInput, type ZhihuSearchArticlesArticle, type ZhihuSearchArticlesData, type ZhihuSearchArticlesInput, ZillowNamespace, type ZillowPropertyData, type ZillowPropertyInput, type ZillowPropertyItem, type ZillowSearchData, type ZillowSearchInput, type ZillowSearchItem, agentSignup, paginate, unwrap };
|