@getanyapi/sdk 0.9.11 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +100 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +405 -1
- package/dist/index.d.ts +405 -1
- package/dist/index.js +100 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -13504,6 +13504,74 @@ declare class RealtorNamespace {
|
|
|
13504
13504
|
search(input: RealtorSearchInput, options?: RequestOptions): Promise<RunResult<RealtorSearchData>>;
|
|
13505
13505
|
}
|
|
13506
13506
|
|
|
13507
|
+
/**
|
|
13508
|
+
* Input for Reddit Post (reddit.post).
|
|
13509
|
+
*/
|
|
13510
|
+
interface RedditPostInput {
|
|
13511
|
+
/**
|
|
13512
|
+
* Full Reddit post URL in the /r/<subreddit>/comments/<id>/<slug>/ form, e.g. "https://www.reddit.com/r/IAmA/comments/z1c9z/i_am_barack_obama_president_of_the_united_states/". The short "reddit.com/comments/<id>" form is not accepted.
|
|
13513
|
+
*/
|
|
13514
|
+
url: string;
|
|
13515
|
+
}
|
|
13516
|
+
/**
|
|
13517
|
+
* The `data` payload of Reddit Post (reddit.post).
|
|
13518
|
+
*/
|
|
13519
|
+
interface RedditPostData {
|
|
13520
|
+
/**
|
|
13521
|
+
* Author username, without the u/ prefix. Populated whenever the provider has data for the entity.
|
|
13522
|
+
*/
|
|
13523
|
+
author: string;
|
|
13524
|
+
/**
|
|
13525
|
+
* The post's own body text (selftext), as Markdown. Empty for link posts, which carry no body. Populated whenever the provider has data for the entity.
|
|
13526
|
+
* Present whenever the upstream returns this record.
|
|
13527
|
+
*/
|
|
13528
|
+
body?: string;
|
|
13529
|
+
/**
|
|
13530
|
+
* UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
|
|
13531
|
+
*/
|
|
13532
|
+
createdUtc: number;
|
|
13533
|
+
/**
|
|
13534
|
+
* Reddit post ID (base-36, without the t3_ prefix). Populated whenever the provider has data for the entity.
|
|
13535
|
+
*/
|
|
13536
|
+
id: string;
|
|
13537
|
+
/**
|
|
13538
|
+
* Preview image for the post, when Reddit generated one. Reddit signs this URL and it is time-limited, so fetch it promptly rather than storing it; the query string carries the signature and must be kept intact. Empty when the post has no preview image.
|
|
13539
|
+
*/
|
|
13540
|
+
image?: string;
|
|
13541
|
+
/**
|
|
13542
|
+
* True when the post is marked NSFW (over 18).
|
|
13543
|
+
*/
|
|
13544
|
+
isNsfw?: boolean;
|
|
13545
|
+
/**
|
|
13546
|
+
* Total number of comments on the post.
|
|
13547
|
+
*/
|
|
13548
|
+
numComments: number;
|
|
13549
|
+
/**
|
|
13550
|
+
* Canonical reddit.com thread path for the post (e.g. "/r/golang/comments/abc123/..."). Differs from url, which is the destination link. Empty if the upstream omits it. Populated whenever the provider has data for the entity.
|
|
13551
|
+
*/
|
|
13552
|
+
permalink: string;
|
|
13553
|
+
/**
|
|
13554
|
+
* Net score (upvotes minus downvotes) at fetch time.
|
|
13555
|
+
*/
|
|
13556
|
+
score: number;
|
|
13557
|
+
/**
|
|
13558
|
+
* Subreddit name, without the r/ prefix. Populated whenever the provider has data for the entity.
|
|
13559
|
+
*/
|
|
13560
|
+
subreddit: string;
|
|
13561
|
+
/**
|
|
13562
|
+
* Post title. Populated whenever the provider has data for the entity.
|
|
13563
|
+
*/
|
|
13564
|
+
title: string;
|
|
13565
|
+
/**
|
|
13566
|
+
* Fraction of votes that are upvotes, between 0 and 1. Zero when the upstream does not report it.
|
|
13567
|
+
*/
|
|
13568
|
+
upvoteRatio?: number;
|
|
13569
|
+
/**
|
|
13570
|
+
* The post's destination link (the external URL for link posts, or the thread URL for self posts). Populated whenever the provider has data for the entity.
|
|
13571
|
+
*/
|
|
13572
|
+
url: string;
|
|
13573
|
+
[extra: string]: unknown;
|
|
13574
|
+
}
|
|
13507
13575
|
/**
|
|
13508
13576
|
* Input for Reddit Post Comments (reddit.post_comments).
|
|
13509
13577
|
*/
|
|
@@ -13548,6 +13616,10 @@ interface RedditPostCommentsData {
|
|
|
13548
13616
|
* Populated whenever the provider has data for the entity.
|
|
13549
13617
|
*/
|
|
13550
13618
|
comments: RedditPostCommentsComment[];
|
|
13619
|
+
/**
|
|
13620
|
+
* Cursor for the next page of comments; pass it back as the `cursor` input to fetch the following page. Empty string when there are no more comments.
|
|
13621
|
+
*/
|
|
13622
|
+
nextCursor: string;
|
|
13551
13623
|
}
|
|
13552
13624
|
/**
|
|
13553
13625
|
* Input for Reddit Post Transcript (reddit.post_transcript).
|
|
@@ -13578,6 +13650,102 @@ interface RedditPostTranscriptData {
|
|
|
13578
13650
|
transcriptNotAvailable: boolean;
|
|
13579
13651
|
[extra: string]: unknown;
|
|
13580
13652
|
}
|
|
13653
|
+
/**
|
|
13654
|
+
* Input for Reddit Profile (reddit.profile).
|
|
13655
|
+
*/
|
|
13656
|
+
interface RedditProfileInput {
|
|
13657
|
+
/**
|
|
13658
|
+
* Reddit username, without the u/ prefix. Example: "spez".
|
|
13659
|
+
*/
|
|
13660
|
+
username: string;
|
|
13661
|
+
}
|
|
13662
|
+
/**
|
|
13663
|
+
* The `data` payload of Reddit Profile (reddit.profile).
|
|
13664
|
+
*/
|
|
13665
|
+
interface RedditProfileData {
|
|
13666
|
+
/**
|
|
13667
|
+
* URL of the profile avatar image, with sizing and signing query params stripped. Populated whenever the provider has data for the entity.
|
|
13668
|
+
* Format: uri.
|
|
13669
|
+
* Present whenever the upstream returns this record.
|
|
13670
|
+
*/
|
|
13671
|
+
avatarUrl?: string;
|
|
13672
|
+
/**
|
|
13673
|
+
* Public profile description text. Populated whenever the provider has data for the entity.
|
|
13674
|
+
* Present whenever the upstream returns this record.
|
|
13675
|
+
*/
|
|
13676
|
+
bio?: string;
|
|
13677
|
+
/**
|
|
13678
|
+
* Karma earned from comments. Populated whenever the provider has data for the entity.
|
|
13679
|
+
* Present whenever the upstream returns this record.
|
|
13680
|
+
*/
|
|
13681
|
+
commentKarma?: number;
|
|
13682
|
+
/**
|
|
13683
|
+
* Number of comments the account has contributed. Populated whenever the provider has data for the entity.
|
|
13684
|
+
* Present whenever the upstream returns this record.
|
|
13685
|
+
*/
|
|
13686
|
+
comments?: number;
|
|
13687
|
+
/**
|
|
13688
|
+
* UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. Populated whenever the provider has data for the entity.
|
|
13689
|
+
* Present whenever the upstream returns this record.
|
|
13690
|
+
*/
|
|
13691
|
+
createdUtc?: number;
|
|
13692
|
+
/**
|
|
13693
|
+
* Profile display title. Reddit defaults it to the username when the account has not set one. Populated whenever the provider has data for the entity.
|
|
13694
|
+
* Present whenever the upstream returns this record.
|
|
13695
|
+
*/
|
|
13696
|
+
displayName?: string;
|
|
13697
|
+
/**
|
|
13698
|
+
* True when the account belongs to a Reddit employee.
|
|
13699
|
+
*/
|
|
13700
|
+
employee?: boolean;
|
|
13701
|
+
/**
|
|
13702
|
+
* Number of profile subscribers. Reddit reports 0 for accounts that do not expose a follower count.
|
|
13703
|
+
*/
|
|
13704
|
+
followers?: number;
|
|
13705
|
+
/**
|
|
13706
|
+
* Reddit account ID (base-36, without the t2_ prefix). Populated whenever the provider has data for the entity.
|
|
13707
|
+
*/
|
|
13708
|
+
id: string;
|
|
13709
|
+
/**
|
|
13710
|
+
* Total karma across the account, as Reddit reports it. The postKarma and commentKarma fields below are the split it is composed of. Populated whenever the provider has data for the entity.
|
|
13711
|
+
* Present whenever the upstream returns this record.
|
|
13712
|
+
*/
|
|
13713
|
+
karma?: number;
|
|
13714
|
+
/**
|
|
13715
|
+
* True when the profile is marked NSFW (over 18).
|
|
13716
|
+
*/
|
|
13717
|
+
nsfw?: boolean;
|
|
13718
|
+
/**
|
|
13719
|
+
* Karma earned from posts. Populated whenever the provider has data for the entity.
|
|
13720
|
+
* Present whenever the upstream returns this record.
|
|
13721
|
+
*/
|
|
13722
|
+
postKarma?: number;
|
|
13723
|
+
/**
|
|
13724
|
+
* Number of posts the account has contributed. Populated whenever the provider has data for the entity.
|
|
13725
|
+
* Present whenever the upstream returns this record.
|
|
13726
|
+
*/
|
|
13727
|
+
posts?: number;
|
|
13728
|
+
/**
|
|
13729
|
+
* Absolute reddit.com URL of the profile page. Populated whenever the provider has data for the entity.
|
|
13730
|
+
* Format: uri.
|
|
13731
|
+
* Present whenever the upstream returns this record.
|
|
13732
|
+
*/
|
|
13733
|
+
profileUrl?: string;
|
|
13734
|
+
/**
|
|
13735
|
+
* Number of trophies unlocked in the account's trophy case. Populated whenever the provider has data for the entity.
|
|
13736
|
+
* Present whenever the upstream returns this record.
|
|
13737
|
+
*/
|
|
13738
|
+
trophies?: number;
|
|
13739
|
+
/**
|
|
13740
|
+
* Account username, without the u/ prefix. Populated whenever the provider has data for the entity.
|
|
13741
|
+
*/
|
|
13742
|
+
username: string;
|
|
13743
|
+
/**
|
|
13744
|
+
* True when the account is verified by Reddit.
|
|
13745
|
+
*/
|
|
13746
|
+
verified?: boolean;
|
|
13747
|
+
[extra: string]: unknown;
|
|
13748
|
+
}
|
|
13581
13749
|
/**
|
|
13582
13750
|
* Input for Reddit Search (reddit.search).
|
|
13583
13751
|
*/
|
|
@@ -13856,6 +14024,152 @@ interface RedditSubredditSearchData {
|
|
|
13856
14024
|
*/
|
|
13857
14025
|
posts: RedditSubredditSearchPost[];
|
|
13858
14026
|
}
|
|
14027
|
+
/**
|
|
14028
|
+
* Input for Reddit User Comments (reddit.user_comments).
|
|
14029
|
+
*/
|
|
14030
|
+
interface RedditUserCommentsInput {
|
|
14031
|
+
/**
|
|
14032
|
+
* Opaque pagination cursor from a previous response's nextCursor. Omit for the first page; pass it back to fetch the next page.
|
|
14033
|
+
*/
|
|
14034
|
+
cursor?: string;
|
|
14035
|
+
/**
|
|
14036
|
+
* Maximum number of comments to return in this response (a page cap, not a total). Defaults to 25.
|
|
14037
|
+
* Range: minimum 1, maximum 100.
|
|
14038
|
+
* Default: 25.
|
|
14039
|
+
*/
|
|
14040
|
+
limit?: number;
|
|
14041
|
+
/**
|
|
14042
|
+
* Sort order for the user's comments. Defaults to new (most recent first).
|
|
14043
|
+
* One of: new, top, hot, controversial.
|
|
14044
|
+
*/
|
|
14045
|
+
sort?: "new" | "top" | "hot" | "controversial";
|
|
14046
|
+
/**
|
|
14047
|
+
* Reddit username, without the u/ prefix. Example: "spez".
|
|
14048
|
+
*/
|
|
14049
|
+
username: string;
|
|
14050
|
+
}
|
|
14051
|
+
interface RedditUserCommentsComment {
|
|
14052
|
+
/**
|
|
14053
|
+
* Commenter username, without the u/ prefix. Populated whenever the provider has data for the entity.
|
|
14054
|
+
*/
|
|
14055
|
+
author: string;
|
|
14056
|
+
/**
|
|
14057
|
+
* A preview of the comment text, not the full comment body: the upstream truncates it to roughly 300 characters and cuts mid-word. It is plain text rather than Markdown, and it is empty on the occasional comment for which the upstream returns no preview at all. For full comment bodies and comment permalinks, use the reddit.post_comments SKU against the parent post.
|
|
14058
|
+
*/
|
|
14059
|
+
bodyPreview?: string;
|
|
14060
|
+
/**
|
|
14061
|
+
* UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
|
|
14062
|
+
*/
|
|
14063
|
+
createdUtc: number;
|
|
14064
|
+
/**
|
|
14065
|
+
* Reddit comment ID (base-36, without the t1_ prefix). Populated whenever the provider has data for the entity.
|
|
14066
|
+
*/
|
|
14067
|
+
id: string;
|
|
14068
|
+
/**
|
|
14069
|
+
* Reddit post ID of the thread the comment was made on (base-36, without the t3_ prefix). Pass it to reddit.post or reddit.post_comments for the full thread. Populated whenever the provider has data for the entity.
|
|
14070
|
+
* Present whenever the upstream returns this record.
|
|
14071
|
+
*/
|
|
14072
|
+
postId?: string;
|
|
14073
|
+
/**
|
|
14074
|
+
* Title of the thread the comment was made on. Populated whenever the provider has data for the entity.
|
|
14075
|
+
* Present whenever the upstream returns this record.
|
|
14076
|
+
*/
|
|
14077
|
+
postTitle?: string;
|
|
14078
|
+
/**
|
|
14079
|
+
* Net score (upvotes minus downvotes) on the comment at fetch time.
|
|
14080
|
+
*/
|
|
14081
|
+
score?: number;
|
|
14082
|
+
/**
|
|
14083
|
+
* Subreddit name of the parent thread, without the r/ prefix. Empty when the comment is on a post hosted on a user's own profile (r/u_<name>), which has no subreddit.
|
|
14084
|
+
*/
|
|
14085
|
+
subreddit?: string;
|
|
14086
|
+
[extra: string]: unknown;
|
|
14087
|
+
}
|
|
14088
|
+
/**
|
|
14089
|
+
* The `data` payload of Reddit User Comments (reddit.user_comments).
|
|
14090
|
+
*/
|
|
14091
|
+
interface RedditUserCommentsData {
|
|
14092
|
+
/**
|
|
14093
|
+
* The user's comments in feed order (newest first by default). Each item carries a truncated body preview plus the parent post it was made on; there is no per-comment permalink available from this endpoint. Populated whenever the provider has data for the entity.
|
|
14094
|
+
*/
|
|
14095
|
+
comments: RedditUserCommentsComment[];
|
|
14096
|
+
/**
|
|
14097
|
+
* Opaque cursor for the next page of this user's comments; pass it back as the `cursor` input to fetch the following page. Null when there are no more pages.
|
|
14098
|
+
*/
|
|
14099
|
+
nextCursor: string;
|
|
14100
|
+
}
|
|
14101
|
+
/**
|
|
14102
|
+
* Input for Reddit User Posts (reddit.user_posts).
|
|
14103
|
+
*/
|
|
14104
|
+
interface RedditUserPostsInput {
|
|
14105
|
+
/**
|
|
14106
|
+
* Opaque pagination cursor from a previous response's nextCursor. Omit for the first page; pass it back to fetch the next page.
|
|
14107
|
+
*/
|
|
14108
|
+
cursor?: string;
|
|
14109
|
+
/**
|
|
14110
|
+
* Sort order for the user's posts. Defaults to new (most recent first).
|
|
14111
|
+
* One of: new, top, hot, controversial.
|
|
14112
|
+
*/
|
|
14113
|
+
sort?: "new" | "top" | "hot" | "controversial";
|
|
14114
|
+
/**
|
|
14115
|
+
* Reddit username without the leading u/ prefix (e.g. "spez").
|
|
14116
|
+
*/
|
|
14117
|
+
username: string;
|
|
14118
|
+
}
|
|
14119
|
+
interface RedditUserPostsPost {
|
|
14120
|
+
/**
|
|
14121
|
+
* Author username, without the u/ prefix. Populated whenever the provider has data for the entity.
|
|
14122
|
+
*/
|
|
14123
|
+
author: string;
|
|
14124
|
+
/**
|
|
14125
|
+
* UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
|
|
14126
|
+
*/
|
|
14127
|
+
createdUtc: number;
|
|
14128
|
+
/**
|
|
14129
|
+
* Reddit post ID (base-36, without the t3_ prefix). Populated whenever the provider has data for the entity.
|
|
14130
|
+
*/
|
|
14131
|
+
id: string;
|
|
14132
|
+
/**
|
|
14133
|
+
* Total number of comments on the post.
|
|
14134
|
+
*/
|
|
14135
|
+
numComments?: number;
|
|
14136
|
+
/**
|
|
14137
|
+
* Canonical reddit.com thread path for the post (e.g. "/r/golang/comments/abc123/..."). Differs from url, which is the destination link. Empty if the upstream omits it. Populated whenever the provider has data for the entity.
|
|
14138
|
+
*/
|
|
14139
|
+
permalink: string;
|
|
14140
|
+
/**
|
|
14141
|
+
* Net score (upvotes minus downvotes) at fetch time.
|
|
14142
|
+
*/
|
|
14143
|
+
score?: number;
|
|
14144
|
+
/**
|
|
14145
|
+
* Subreddit name, without the r/ prefix. Populated whenever the provider has data for the entity.
|
|
14146
|
+
* Present whenever the upstream returns this record.
|
|
14147
|
+
*/
|
|
14148
|
+
subreddit?: string;
|
|
14149
|
+
/**
|
|
14150
|
+
* Post title. Populated whenever the provider has data for the entity.
|
|
14151
|
+
*/
|
|
14152
|
+
title: string;
|
|
14153
|
+
/**
|
|
14154
|
+
* The post's destination link (the external URL for link posts, or the thread URL for self posts). Populated whenever the provider has data for the entity.
|
|
14155
|
+
* Present whenever the upstream returns this record.
|
|
14156
|
+
*/
|
|
14157
|
+
url?: string;
|
|
14158
|
+
[extra: string]: unknown;
|
|
14159
|
+
}
|
|
14160
|
+
/**
|
|
14161
|
+
* The `data` payload of Reddit User Posts (reddit.user_posts).
|
|
14162
|
+
*/
|
|
14163
|
+
interface RedditUserPostsData {
|
|
14164
|
+
/**
|
|
14165
|
+
* Opaque cursor for the next page of this user's posts; pass it back as the `cursor` input to fetch the following page. Null when there are no more pages.
|
|
14166
|
+
*/
|
|
14167
|
+
nextCursor: string;
|
|
14168
|
+
/**
|
|
14169
|
+
* The user's posts in feed order. Posts hosted on the user's own profile (r/u_<name>) are included and carry an empty subreddit. Populated whenever the provider has data for the entity.
|
|
14170
|
+
*/
|
|
14171
|
+
posts: RedditUserPostsPost[];
|
|
14172
|
+
}
|
|
13859
14173
|
/**
|
|
13860
14174
|
* Typed methods for the reddit platform. Attached to the AnyAPI client as
|
|
13861
14175
|
* `client.reddit`.
|
|
@@ -13863,6 +14177,17 @@ interface RedditSubredditSearchData {
|
|
|
13863
14177
|
declare class RedditNamespace {
|
|
13864
14178
|
private readonly _core;
|
|
13865
14179
|
constructor(_core: ClientCore);
|
|
14180
|
+
/**
|
|
14181
|
+
* Reddit Post
|
|
14182
|
+
*
|
|
14183
|
+
* Fetch a single Reddit post by URL, including its full body text, score, comment count, upvote ratio, and subreddit, as normalized JSON.
|
|
14184
|
+
*
|
|
14185
|
+
* Price: $0.001 per request.
|
|
14186
|
+
*
|
|
14187
|
+
* @example
|
|
14188
|
+
* const res = await client.reddit.post({ url: "https://www.reddit.com/r/IAmA/comments/z1c9z/i_am_barack_obama_president_of_the_united_states/" });
|
|
14189
|
+
*/
|
|
14190
|
+
post(input: RedditPostInput, options?: RequestOptions): Promise<RunResult<RedditPostData>>;
|
|
13866
14191
|
/**
|
|
13867
14192
|
* Reddit Post Comments
|
|
13868
14193
|
*
|
|
@@ -13874,6 +14199,13 @@ declare class RedditNamespace {
|
|
|
13874
14199
|
* const res = await client.reddit.postComments({ url: "https://www.reddit.com/r/IAmA/comments/z1c9z/i_am_barack_obama_president_of_the_united_states/" });
|
|
13875
14200
|
*/
|
|
13876
14201
|
postComments(input: RedditPostCommentsInput, options?: RequestOptions): Promise<RunResult<RedditPostCommentsData>>;
|
|
14202
|
+
/**
|
|
14203
|
+
* Iterate every result of Reddit Post Comments across pages.
|
|
14204
|
+
*
|
|
14205
|
+
* Yields items directly; call `.pages()` on the return value to walk whole
|
|
14206
|
+
* result pages instead (each carries its own costUsd).
|
|
14207
|
+
*/
|
|
14208
|
+
iterPostComments(input: RedditPostCommentsInput, options?: RequestOptions): Paginator<RedditPostCommentsComment, RunResult<RedditPostCommentsData>>;
|
|
13877
14209
|
/**
|
|
13878
14210
|
* Reddit Post Transcript
|
|
13879
14211
|
*
|
|
@@ -13885,6 +14217,17 @@ declare class RedditNamespace {
|
|
|
13885
14217
|
* const res = await client.reddit.postTranscript({ url: "https://www.reddit.com/r/youseeingthisshit/comments/1oiu9xm/" });
|
|
13886
14218
|
*/
|
|
13887
14219
|
postTranscript(input: RedditPostTranscriptInput, options?: RequestOptions): Promise<RunResult<RedditPostTranscriptData>>;
|
|
14220
|
+
/**
|
|
14221
|
+
* Reddit Profile
|
|
14222
|
+
*
|
|
14223
|
+
* Fetch a Reddit user's public profile (karma split, post and comment counts, bio, avatar, account age) by username.
|
|
14224
|
+
*
|
|
14225
|
+
* Price: $0.001 per request.
|
|
14226
|
+
*
|
|
14227
|
+
* @example
|
|
14228
|
+
* const res = await client.reddit.profile({ username: "spez" });
|
|
14229
|
+
*/
|
|
14230
|
+
profile(input: RedditProfileInput, options?: RequestOptions): Promise<RunResult<RedditProfileData>>;
|
|
13888
14231
|
/**
|
|
13889
14232
|
* Reddit Search
|
|
13890
14233
|
*
|
|
@@ -13943,6 +14286,42 @@ declare class RedditNamespace {
|
|
|
13943
14286
|
* result pages instead (each carries its own costUsd).
|
|
13944
14287
|
*/
|
|
13945
14288
|
iterSubredditSearch(input: RedditSubredditSearchInput, options?: RequestOptions): Paginator<RedditSubredditSearchPost, RunResult<RedditSubredditSearchData>>;
|
|
14289
|
+
/**
|
|
14290
|
+
* Reddit User Comments
|
|
14291
|
+
*
|
|
14292
|
+
* List a Reddit user's comments by username, sorted by new, top, hot, or controversial, with the parent post title and subreddit on every item and cursor pagination. Comment text comes back as a roughly 300-character preview rather than the full body, and this endpoint carries no per-comment permalink; use reddit.post_comments for full comment bodies and comment URLs on a given post.
|
|
14293
|
+
*
|
|
14294
|
+
* Price: $0.001 per request.
|
|
14295
|
+
*
|
|
14296
|
+
* @example
|
|
14297
|
+
* const res = await client.reddit.userComments({ username: "spez" });
|
|
14298
|
+
*/
|
|
14299
|
+
userComments(input: RedditUserCommentsInput, options?: RequestOptions): Promise<RunResult<RedditUserCommentsData>>;
|
|
14300
|
+
/**
|
|
14301
|
+
* Iterate every result of Reddit User Comments across pages.
|
|
14302
|
+
*
|
|
14303
|
+
* Yields items directly; call `.pages()` on the return value to walk whole
|
|
14304
|
+
* result pages instead (each carries its own costUsd).
|
|
14305
|
+
*/
|
|
14306
|
+
iterUserComments(input: RedditUserCommentsInput, options?: RequestOptions): Paginator<RedditUserCommentsComment, RunResult<RedditUserCommentsData>>;
|
|
14307
|
+
/**
|
|
14308
|
+
* Reddit User Posts
|
|
14309
|
+
*
|
|
14310
|
+
* List a Reddit user's posts by username, sorted by new, top, hot, or controversial, with cursor pagination.
|
|
14311
|
+
*
|
|
14312
|
+
* Price: $0.001 per request.
|
|
14313
|
+
*
|
|
14314
|
+
* @example
|
|
14315
|
+
* const res = await client.reddit.userPosts({ username: "spez" });
|
|
14316
|
+
*/
|
|
14317
|
+
userPosts(input: RedditUserPostsInput, options?: RequestOptions): Promise<RunResult<RedditUserPostsData>>;
|
|
14318
|
+
/**
|
|
14319
|
+
* Iterate every result of Reddit User Posts across pages.
|
|
14320
|
+
*
|
|
14321
|
+
* Yields items directly; call `.pages()` on the return value to walk whole
|
|
14322
|
+
* result pages instead (each carries its own costUsd).
|
|
14323
|
+
*/
|
|
14324
|
+
iterUserPosts(input: RedditUserPostsInput, options?: RequestOptions): Paginator<RedditUserPostsPost, RunResult<RedditUserPostsData>>;
|
|
13946
14325
|
}
|
|
13947
14326
|
|
|
13948
14327
|
/**
|
|
@@ -20716,6 +21095,11 @@ interface WebScrapeInput {
|
|
|
20716
21095
|
* Default: true.
|
|
20717
21096
|
*/
|
|
20718
21097
|
onlyMainContent?: boolean;
|
|
21098
|
+
/**
|
|
21099
|
+
* When true, fetch through a stealth proxy that gets past bot protection which refuses an ordinary request. This costs materially more per request (see the pricing ceiling), so leave it off unless a normal scrape of the site comes back blocked or empty.
|
|
21100
|
+
* Default: false.
|
|
21101
|
+
*/
|
|
21102
|
+
stealth?: boolean;
|
|
20719
21103
|
/**
|
|
20720
21104
|
* The URL of the page to scrape.
|
|
20721
21105
|
* Format: uri.
|
|
@@ -24196,6 +24580,11 @@ interface SkuMap {
|
|
|
24196
24580
|
data: RealtorSearchData;
|
|
24197
24581
|
result: RunResult<RealtorSearchData>;
|
|
24198
24582
|
};
|
|
24583
|
+
"reddit.post": {
|
|
24584
|
+
input: RedditPostInput;
|
|
24585
|
+
data: RedditPostData;
|
|
24586
|
+
result: RunResult<RedditPostData>;
|
|
24587
|
+
};
|
|
24199
24588
|
"reddit.post_comments": {
|
|
24200
24589
|
input: RedditPostCommentsInput;
|
|
24201
24590
|
data: RedditPostCommentsData;
|
|
@@ -24206,6 +24595,11 @@ interface SkuMap {
|
|
|
24206
24595
|
data: RedditPostTranscriptData;
|
|
24207
24596
|
result: RunResult<RedditPostTranscriptData>;
|
|
24208
24597
|
};
|
|
24598
|
+
"reddit.profile": {
|
|
24599
|
+
input: RedditProfileInput;
|
|
24600
|
+
data: RedditProfileData;
|
|
24601
|
+
result: RunResult<RedditProfileData>;
|
|
24602
|
+
};
|
|
24209
24603
|
"reddit.search": {
|
|
24210
24604
|
input: RedditSearchInput;
|
|
24211
24605
|
data: RedditSearchData;
|
|
@@ -24226,6 +24620,16 @@ interface SkuMap {
|
|
|
24226
24620
|
data: RedditSubredditSearchData;
|
|
24227
24621
|
result: RunResult<RedditSubredditSearchData>;
|
|
24228
24622
|
};
|
|
24623
|
+
"reddit.user_comments": {
|
|
24624
|
+
input: RedditUserCommentsInput;
|
|
24625
|
+
data: RedditUserCommentsData;
|
|
24626
|
+
result: RunResult<RedditUserCommentsData>;
|
|
24627
|
+
};
|
|
24628
|
+
"reddit.user_posts": {
|
|
24629
|
+
input: RedditUserPostsInput;
|
|
24630
|
+
data: RedditUserPostsData;
|
|
24631
|
+
result: RunResult<RedditUserPostsData>;
|
|
24632
|
+
};
|
|
24229
24633
|
"redfin.search": {
|
|
24230
24634
|
input: RedfinSearchInput;
|
|
24231
24635
|
data: RedfinSearchData;
|
|
@@ -25084,4 +25488,4 @@ declare class AnyAPI extends AnyAPI$1 {
|
|
|
25084
25488
|
get zillow(): ZillowNamespace;
|
|
25085
25489
|
}
|
|
25086
25490
|
|
|
25087
|
-
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 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 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 LinkedinProfileSkill, 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 LinkedinSearchProfilesEmailSkill, type LinkedinSearchProfilesExperience, type LinkedinSearchProfilesInput, type LinkedinSearchProfilesItem, type LinkedinSearchProfilesSkill, 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 RedditPostTranscriptData, type RedditPostTranscriptInput, type RedditSearchData, type RedditSearchInput, type RedditSearchPost, type RedditSubredditDetailsData, type RedditSubredditDetailsInput, type RedditSubredditPostsData, type RedditSubredditPostsInput, type RedditSubredditPostsPost, type RedditSubredditSearchData, type RedditSubredditSearchInput, type RedditSubredditSearchPost, 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, WhatsappNamespace, type WhatsappValidateData, type WhatsappValidateInput, type WhatsappValidateItem, 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 };
|
|
25491
|
+
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 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 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 LinkedinProfileSkill, 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 LinkedinSearchProfilesEmailSkill, type LinkedinSearchProfilesExperience, type LinkedinSearchProfilesInput, type LinkedinSearchProfilesItem, type LinkedinSearchProfilesSkill, 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, WhatsappNamespace, type WhatsappValidateData, type WhatsappValidateInput, type WhatsappValidateItem, 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 };
|