@getanyapi/sdk 0.23.0 → 0.24.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.d.ts CHANGED
@@ -1205,9 +1205,9 @@ interface AmazonReviewsInput {
1205
1205
  */
1206
1206
  endDate?: string;
1207
1207
  /**
1208
- * Only return reviews whose text contains one of these keywords (e.g. ["battery", "screen"]).
1208
+ * Only return reviews whose title or text contains this keyword, case-insensitively (e.g. battery).
1209
1209
  */
1210
- keywords?: string[];
1210
+ keyword?: string;
1211
1211
  /**
1212
1212
  * Maximum number of results to return (1-50, default 50). You are billed per result returned, so a lower limit costs less.
1213
1213
  * Range: minimum 1, maximum 50.
@@ -1225,13 +1225,11 @@ interface AmazonReviewsInput {
1225
1225
  /**
1226
1226
  * Amazon marketplace domain the product ASIN belongs to (e.g. amazon.co.uk).
1227
1227
  * One of: amazon.com, amazon.ca, amazon.de, amazon.fr, amazon.co.uk, amazon.it, amazon.es, amazon.com.au, amazon.co.jp, amazon.com.br, amazon.com.mx, amazon.nl, amazon.ie, amazon.se, amazon.com.tr, amazon.ae, amazon.sg, amazon.sa, amazon.pl, amazon.com.be, amazon.eg, amazon.in.
1228
- * Default: amazon.com.
1229
1228
  */
1230
1229
  region?: "amazon.com" | "amazon.ca" | "amazon.de" | "amazon.fr" | "amazon.co.uk" | "amazon.it" | "amazon.es" | "amazon.com.au" | "amazon.co.jp" | "amazon.com.br" | "amazon.com.mx" | "amazon.nl" | "amazon.ie" | "amazon.se" | "amazon.com.tr" | "amazon.ae" | "amazon.sg" | "amazon.sa" | "amazon.pl" | "amazon.com.be" | "amazon.eg" | "amazon.in";
1231
1230
  /**
1232
1231
  * Review sort order: most helpful first or most recent first (e.g. recent).
1233
1232
  * One of: helpful, recent.
1234
- * Default: helpful.
1235
1233
  */
1236
1234
  sort?: "helpful" | "recent";
1237
1235
  /**
@@ -1240,7 +1238,6 @@ interface AmazonReviewsInput {
1240
1238
  startDate?: string;
1241
1239
  /**
1242
1240
  * Set true to return only verified-purchase reviews (e.g. true).
1243
- * Default: false.
1244
1241
  */
1245
1242
  verifiedOnly?: boolean;
1246
1243
  }
@@ -1269,6 +1266,11 @@ interface AmazonReviewsItem {
1269
1266
  * Review headline / title; empty when the review has none.
1270
1267
  */
1271
1268
  title?: string;
1269
+ /**
1270
+ * Public Amazon page for this review, when supplied by the serving lane.
1271
+ * Format: uri.
1272
+ */
1273
+ url?: string;
1272
1274
  /**
1273
1275
  * True when Amazon marks the review a verified purchase.
1274
1276
  */
@@ -2628,6 +2630,11 @@ interface AppstoreReviewsItem {
2628
2630
  * Review title.
2629
2631
  */
2630
2632
  title?: string;
2633
+ /**
2634
+ * Public App Store page for this review, when supplied by the serving lane.
2635
+ * Format: uri.
2636
+ */
2637
+ url?: string;
2631
2638
  /**
2632
2639
  * App version the review was left on.
2633
2640
  */
@@ -5074,6 +5081,11 @@ interface FacebookAdDetailsData {
5074
5081
  * Present whenever the upstream returns this record.
5075
5082
  */
5076
5083
  platforms?: string[] | null;
5084
+ /**
5085
+ * Inspectable Meta Ad Library URL for this ad. Populated whenever the provider has data for the entity.
5086
+ * Format: uri.
5087
+ */
5088
+ sourceUrl: string;
5077
5089
  /**
5078
5090
  * Run start, epoch seconds. Populated whenever the provider has data for the entity.
5079
5091
  * Present whenever the upstream returns this record.
@@ -5091,6 +5103,178 @@ interface FacebookAdDetailsData {
5091
5103
  title?: string | null;
5092
5104
  [extra: string]: unknown;
5093
5105
  }
5106
+ /**
5107
+ * Input for Facebook Ad Creative Details (facebook.ad_details_full).
5108
+ */
5109
+ interface FacebookAdDetailsFullInput {
5110
+ /**
5111
+ * Meta Ad Library ad ID - the numeric id in an Ad Library URL (e.g. "1519158199783790" from https://www.facebook.com/ads/library/?id=1519158199783790).
5112
+ */
5113
+ id: string;
5114
+ }
5115
+ interface FacebookAdDetailsFullCreative {
5116
+ /**
5117
+ * Variant body text.
5118
+ */
5119
+ body?: string;
5120
+ /**
5121
+ * Variant display caption.
5122
+ */
5123
+ caption?: string;
5124
+ /**
5125
+ * Variant call-to-action label.
5126
+ */
5127
+ ctaText?: string;
5128
+ /**
5129
+ * Variant call-to-action type.
5130
+ */
5131
+ ctaType?: string;
5132
+ /**
5133
+ * Original creative image URL.
5134
+ */
5135
+ image?: string;
5136
+ /**
5137
+ * Resized creative image URL.
5138
+ */
5139
+ imageResized?: string;
5140
+ /**
5141
+ * Variant secondary description.
5142
+ */
5143
+ linkDescription?: string;
5144
+ /**
5145
+ * Variant destination URL.
5146
+ */
5147
+ linkUrl?: string;
5148
+ /**
5149
+ * Variant headline.
5150
+ */
5151
+ title?: string;
5152
+ /**
5153
+ * Poster frame for the creative video.
5154
+ */
5155
+ videoPreviewImage?: string;
5156
+ /**
5157
+ * Creative video URL (HD when supplied, otherwise SD).
5158
+ */
5159
+ videoUrl?: string;
5160
+ [extra: string]: unknown;
5161
+ }
5162
+ interface FacebookAdDetailsFullImage {
5163
+ /**
5164
+ * Original creative image URL.
5165
+ */
5166
+ image?: string;
5167
+ /**
5168
+ * Resized creative image URL.
5169
+ */
5170
+ imageResized?: string;
5171
+ [extra: string]: unknown;
5172
+ }
5173
+ interface FacebookAdDetailsFullVideo {
5174
+ /**
5175
+ * Poster frame for the creative video.
5176
+ */
5177
+ videoPreviewImage?: string;
5178
+ /**
5179
+ * Creative video URL (HD when supplied, otherwise SD).
5180
+ */
5181
+ videoUrl?: string;
5182
+ [extra: string]: unknown;
5183
+ }
5184
+ /**
5185
+ * The `data` payload of Facebook Ad Creative Details (facebook.ad_details_full).
5186
+ */
5187
+ interface FacebookAdDetailsFullData {
5188
+ /**
5189
+ * Whether the ad is currently running.
5190
+ */
5191
+ active?: boolean;
5192
+ /**
5193
+ * Ad Library archive ID (stable identity). Populated whenever the provider has data for the entity.
5194
+ */
5195
+ adArchiveId: string;
5196
+ /**
5197
+ * Ad body text. Populated whenever the provider has data for the entity.
5198
+ * Present whenever the upstream returns this record.
5199
+ */
5200
+ body?: string;
5201
+ /**
5202
+ * Display caption, usually the destination domain.
5203
+ */
5204
+ caption?: string;
5205
+ /**
5206
+ * One entry per creative variant of a carousel or dynamic ad, in the order Meta returns them. Single-creative ads return an empty array and carry their media in images/videos. Meta CDN media URLs are signed and expire, so fetch what you need at read time.
5207
+ */
5208
+ creatives?: FacebookAdDetailsFullCreative[];
5209
+ /**
5210
+ * Call-to-action label (e.g. "Shop now").
5211
+ */
5212
+ ctaText?: string;
5213
+ /**
5214
+ * Call-to-action type (e.g. "SHOP_NOW").
5215
+ */
5216
+ ctaType?: string;
5217
+ /**
5218
+ * Ad creative format (e.g. "DPA", "VIDEO", "IMAGE"). Populated whenever the provider has data for the entity.
5219
+ * Present whenever the upstream returns this record.
5220
+ */
5221
+ displayFormat?: string;
5222
+ /**
5223
+ * Run end, or last-seen date while the ad is still running. UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
5224
+ */
5225
+ endedUtc?: number;
5226
+ /**
5227
+ * Standalone creative images for a single-image ad. Meta CDN media URLs are signed and expire.
5228
+ */
5229
+ images?: FacebookAdDetailsFullImage[];
5230
+ /**
5231
+ * Secondary link description line.
5232
+ */
5233
+ linkDescription?: string;
5234
+ /**
5235
+ * Creative destination URL.
5236
+ */
5237
+ linkUrl?: string;
5238
+ /**
5239
+ * Advertiser page ID (stable identity). Populated whenever the provider has data for the entity.
5240
+ */
5241
+ pageId: string;
5242
+ /**
5243
+ * Advertiser page profile picture URL. Meta CDN URLs are signed and expire.
5244
+ */
5245
+ pageImage?: string;
5246
+ /**
5247
+ * Advertiser page name. Populated whenever the provider has data for the entity.
5248
+ * Present whenever the upstream returns this record.
5249
+ */
5250
+ pageName?: string;
5251
+ /**
5252
+ * Advertiser page URL.
5253
+ */
5254
+ pageUrl?: string;
5255
+ /**
5256
+ * Publisher platforms the ad runs on.
5257
+ */
5258
+ platforms?: string[];
5259
+ /**
5260
+ * Inspectable Meta Ad Library URL for this ad. Populated whenever the provider has data for the entity.
5261
+ * Format: uri.
5262
+ */
5263
+ sourceUrl: string;
5264
+ /**
5265
+ * Run start. UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
5266
+ */
5267
+ startedUtc?: number;
5268
+ /**
5269
+ * Creative headline. Dynamic-product ads return a template such as "{{product.name}}".
5270
+ */
5271
+ title?: string;
5272
+ /**
5273
+ * Standalone creative videos for a single-video ad. Meta CDN media URLs are signed and expire.
5274
+ */
5275
+ videos?: FacebookAdDetailsFullVideo[];
5276
+ [extra: string]: unknown;
5277
+ }
5094
5278
  /**
5095
5279
  * Input for Facebook Ad Transcript (facebook.ad_transcript).
5096
5280
  */
@@ -5216,6 +5400,11 @@ interface FacebookAdsSearchAd {
5216
5400
  * Populated whenever the provider has data for the entity.
5217
5401
  */
5218
5402
  platforms: string[];
5403
+ /**
5404
+ * Inspectable Meta Ad Library URL for this ad. Populated whenever the provider has data for the entity.
5405
+ * Format: uri.
5406
+ */
5407
+ sourceUrl: string;
5219
5408
  /**
5220
5409
  * Epoch seconds. Populated whenever the provider has data for the entity.
5221
5410
  */
@@ -6521,9 +6710,20 @@ declare class FacebookNamespace {
6521
6710
  * Price: $0.002 per request.
6522
6711
  *
6523
6712
  * @example
6524
- * const res = await client.facebook.adDetails({ id: "1869276447125570" });
6713
+ * const res = await client.facebook.adDetails({ id: "1249043200627555" });
6525
6714
  */
6526
6715
  adDetails(input: FacebookAdDetailsInput, options?: RequestOptions): Promise<RunResult<FacebookAdDetailsData>>;
6716
+ /**
6717
+ * Facebook Ad Creative Details
6718
+ *
6719
+ * Pull one Meta Ad Library ad with its creative: every carousel variant, image and video URL, headline, body, and call to action.
6720
+ *
6721
+ * Price: $0.00441 per request plus $0 per result (maximum $0.00441).
6722
+ *
6723
+ * @example
6724
+ * const res = await client.facebook.adDetailsFull({ id: "1519158199783790" });
6725
+ */
6726
+ adDetailsFull(input: FacebookAdDetailsFullInput, options?: RequestOptions): Promise<RunResult<FacebookAdDetailsFullData>>;
6527
6727
  /**
6528
6728
  * Facebook Ad Transcript
6529
6729
  *
@@ -6852,7 +7052,7 @@ declare class FacebookNamespace {
6852
7052
  *
6853
7053
  * Search public Facebook posts by keyword, optionally filtered by location, and get structured post records (text, author, engagement).
6854
7054
  *
6855
- * Price: $0 per request plus $0.00315 per result (maximum $0.063).
7055
+ * Price: $0.00006 per request plus $0.00315 per result (maximum $0.0631).
6856
7056
  *
6857
7057
  * @example
6858
7058
  * const res = await client.facebook.searchPosts({ query: "nike", limit: 3 });
@@ -10465,9 +10665,10 @@ interface InstagramSearchHashtagInput {
10465
10665
  */
10466
10666
  hashtag: string;
10467
10667
  /**
10468
- * Filter by media type (e.g. all, photo, video, reel).
10668
+ * Filter by media type. One of all, reel.
10669
+ * One of: all, reel.
10469
10670
  */
10470
- mediaType?: string;
10671
+ mediaType?: "all" | "reel";
10471
10672
  }
10472
10673
  interface InstagramSearchHashtagPost {
10473
10674
  caption: string;
@@ -11070,7 +11271,7 @@ declare class InstagramNamespace {
11070
11271
  *
11071
11272
  * Fetch an Instagram account's public profile (followers, posts, bio, verification) by handle.
11072
11273
  *
11073
- * Price: $0.0024 per request.
11274
+ * Price: $0.002 per request.
11074
11275
  *
11075
11276
  * @example
11076
11277
  * const res = await client.instagram.profile({ handle: "nasa" });
@@ -11117,7 +11318,7 @@ declare class InstagramNamespace {
11117
11318
  * Price: $0.002 per request.
11118
11319
  *
11119
11320
  * @example
11120
- * const res = await client.instagram.searchHashtag({ hashtag: "travel" });
11321
+ * const res = await client.instagram.searchHashtag({ hashtag: "skincare", datePosted: "last-month", mediaType: "reel" });
11121
11322
  */
11122
11323
  searchHashtag(input: InstagramSearchHashtagInput, options?: RequestOptions): Promise<RunResult<InstagramSearchHashtagData>>;
11123
11324
  /**
@@ -13366,31 +13567,32 @@ interface LinkedinProfileThinData {
13366
13567
  /**
13367
13568
  * About/summary text of the profile.
13368
13569
  */
13369
- about: string;
13570
+ about?: string;
13370
13571
  /**
13371
13572
  * The profile's published articles.
13372
13573
  */
13373
- articles: LinkedinProfileThinArticle[];
13574
+ articles?: LinkedinProfileThinArticle[];
13374
13575
  /**
13375
13576
  * URL of the profile avatar image.
13376
13577
  */
13377
- avatarUrl: string;
13578
+ avatarUrl?: string;
13378
13579
  /**
13379
13580
  * Education entries.
13380
13581
  */
13381
- education: LinkedinProfileThinEducation[];
13582
+ education?: LinkedinProfileThinEducation[];
13382
13583
  /**
13383
13584
  * Work experience entries (company and dates only in this basic tier). Populated whenever the provider has data for the entity.
13585
+ * Present whenever the upstream returns this record.
13384
13586
  */
13385
- experience: LinkedinProfileThinExperience[];
13587
+ experience?: LinkedinProfileThinExperience[];
13386
13588
  /**
13387
13589
  * Number of followers.
13388
13590
  */
13389
- followers: number;
13591
+ followers?: number;
13390
13592
  /**
13391
13593
  * Location of the profile owner.
13392
13594
  */
13393
- location: string;
13595
+ location?: string;
13394
13596
  /**
13395
13597
  * Full name of the profile owner.
13396
13598
  */
@@ -13398,7 +13600,7 @@ interface LinkedinProfileThinData {
13398
13600
  /**
13399
13601
  * The profile's recent posts.
13400
13602
  */
13401
- recentPosts: LinkedinProfileThinRecentPost[];
13603
+ recentPosts?: LinkedinProfileThinRecentPost[];
13402
13604
  [extra: string]: unknown;
13403
13605
  }
13404
13606
  /**
@@ -15138,6 +15340,108 @@ declare class MobilePhoneNamespace {
15138
15340
  leadmagic(input: MobilePhoneLeadmagicInput, options?: RequestOptions): Promise<RunResult<MobilePhoneLeadmagicData>>;
15139
15341
  }
15140
15342
 
15343
+ /**
15344
+ * Input for Naver Blog Search (naver.blog_search).
15345
+ */
15346
+ interface NaverBlogSearchInput {
15347
+ /**
15348
+ * Opaque pagination cursor from a previous response's nextCursor.
15349
+ */
15350
+ cursor?: string;
15351
+ /**
15352
+ * Maximum number of title-enriched posts to return, from 1 to 5 (default 5).
15353
+ * Range: minimum 1, maximum 5.
15354
+ */
15355
+ limit?: number;
15356
+ /**
15357
+ * Keyword phrase to search across Naver blogs.
15358
+ */
15359
+ query: string;
15360
+ /**
15361
+ * Order posts by Naver relevance or newest publication date (default relevance).
15362
+ * One of: relevance, recent.
15363
+ */
15364
+ sort?: "relevance" | "recent";
15365
+ }
15366
+ interface NaverBlogSearchItem {
15367
+ /**
15368
+ * Blogger display name.
15369
+ */
15370
+ bloggerName: string;
15371
+ /**
15372
+ * Public root URL for the blog that published the post.
15373
+ * Format: uri.
15374
+ */
15375
+ bloggerUrl: string;
15376
+ /**
15377
+ * Publication date as a UTC epoch timestamp in seconds.
15378
+ */
15379
+ createdUtc: number;
15380
+ /**
15381
+ * Search-result excerpt from the post.
15382
+ */
15383
+ description: string;
15384
+ /**
15385
+ * One-based rank within this result page.
15386
+ * Range: minimum 1.
15387
+ */
15388
+ rank: number;
15389
+ /**
15390
+ * Blog post title.
15391
+ */
15392
+ title: string;
15393
+ /**
15394
+ * Public blog post URL.
15395
+ * Format: uri.
15396
+ */
15397
+ url: string;
15398
+ [extra: string]: unknown;
15399
+ }
15400
+ /**
15401
+ * The `data` payload of Naver Blog Search (naver.blog_search).
15402
+ */
15403
+ interface NaverBlogSearchData {
15404
+ /**
15405
+ * Blog posts in Naver's requested search order. Populated whenever the provider has data for the entity.
15406
+ */
15407
+ items: NaverBlogSearchItem[];
15408
+ /**
15409
+ * Opaque cursor for the next page, or an empty string when no next page is available.
15410
+ */
15411
+ nextCursor: string | null;
15412
+ /**
15413
+ * Naver's reported number of matching blog posts.
15414
+ * Range: minimum 0.
15415
+ */
15416
+ total: number;
15417
+ }
15418
+ /**
15419
+ * Typed methods for the naver platform. Attached to the AnyAPI client as
15420
+ * `client.naver`.
15421
+ */
15422
+ declare class NaverNamespace {
15423
+ private readonly _core;
15424
+ constructor(_core: ClientCore);
15425
+ /**
15426
+ * Naver Blog Search
15427
+ *
15428
+ * Search up to five enriched Naver blog results by keyword with stable cursor pagination: result rank, title, excerpt, post and blogger URLs, blogger name, publish time, and Naver's total match count.
15429
+ *
15430
+ * Price: $0.036 per request.
15431
+ *
15432
+ * @example
15433
+ * const res = await client.naver.blogSearch({ query: "제주도 맛집", limit: 5, sort: "relevance" });
15434
+ */
15435
+ blogSearch(input: NaverBlogSearchInput, options?: RequestOptions): Promise<RunResult<NaverBlogSearchData>>;
15436
+ /**
15437
+ * Iterate every result of Naver Blog Search across pages.
15438
+ *
15439
+ * Yields items directly; call `.pages()` on the return value to walk whole
15440
+ * result pages instead (each carries its own costUsd).
15441
+ */
15442
+ iterBlogSearch(input: NaverBlogSearchInput, options?: RequestOptions): Paginator<NaverBlogSearchItem, RunResult<NaverBlogSearchData>>;
15443
+ }
15444
+
15141
15445
  /**
15142
15446
  * Input for Panda Express Locations (pandaexpress.locations).
15143
15447
  */
@@ -16102,9 +16406,8 @@ interface PlaystoreReviewsInput {
16102
16406
  */
16103
16407
  appVersion?: string[];
16104
16408
  /**
16105
- * Only return reviews from this device type (e.g. "tablet"); defaults to mobile.
16409
+ * Only return reviews from this device type (e.g. "tablet"); omit for the provider default.
16106
16410
  * One of: mobile, tablet, chromebook.
16107
- * Default: mobile.
16108
16411
  */
16109
16412
  deviceType?: "mobile" | "tablet" | "chromebook";
16110
16413
  /**
@@ -16135,7 +16438,6 @@ interface PlaystoreReviewsInput {
16135
16438
  recentDays?: number;
16136
16439
  /**
16137
16440
  * Review ordering: mostRelevant, newest, or rating (e.g. newest).
16138
- * Default: mostRelevant.
16139
16441
  */
16140
16442
  sortBy?: string;
16141
16443
  }
@@ -19633,7 +19935,7 @@ interface SnapchatProfileStorie {
19633
19935
  */
19634
19936
  storyTitle?: string;
19635
19937
  /**
19636
- * Story thumbnail image URL, with tracking query params stripped.
19938
+ * Story thumbnail image URL, preserving signed delivery parameters required to load the preview.
19637
19939
  */
19638
19940
  thumbnailUrl?: string;
19639
19941
  [extra: string]: unknown;
@@ -21880,13 +22182,105 @@ interface TiktokVideoTranscriptInput {
21880
22182
  * The `data` payload of TikTok Video Transcript (tiktok.video_transcript).
21881
22183
  */
21882
22184
  interface TiktokVideoTranscriptData {
21883
- language: string;
22185
+ language?: string;
21884
22186
  /**
21885
22187
  * Populated whenever the provider has data for the entity.
21886
22188
  */
21887
22189
  transcript: string;
21888
22190
  [extra: string]: unknown;
21889
22191
  }
22192
+ /**
22193
+ * Input for TikTok Video Transcript (Audio) (tiktok.video_transcript_full).
22194
+ */
22195
+ interface TiktokVideoTranscriptFullInput {
22196
+ /**
22197
+ * TikTok video URL (e.g. "https://www.tiktok.com/@user/video/1234567890").
22198
+ */
22199
+ url: string;
22200
+ }
22201
+ interface TiktokVideoTranscriptFullSegment {
22202
+ /**
22203
+ * Segment end offset in seconds.
22204
+ * Range: minimum 0.
22205
+ */
22206
+ endSeconds: number;
22207
+ /**
22208
+ * Detected language for this segment.
22209
+ */
22210
+ language?: string;
22211
+ /**
22212
+ * Recognizer speaker label for this segment (e.g. "SPEAKER_00"). Diarization is a guess, not an identification.
22213
+ */
22214
+ speaker?: string;
22215
+ /**
22216
+ * Segment start offset in seconds.
22217
+ * Range: minimum 0.
22218
+ */
22219
+ startSeconds: number;
22220
+ /**
22221
+ * Text of this segment.
22222
+ */
22223
+ text: string;
22224
+ /**
22225
+ * Per-word timing and recognizer confidence for this segment.
22226
+ */
22227
+ words?: TiktokVideoTranscriptFullWord[];
22228
+ [extra: string]: unknown;
22229
+ }
22230
+ interface TiktokVideoTranscriptFullWord {
22231
+ /**
22232
+ * Recognizer confidence for this word, 0 to 1. Low values mark words the recognizer guessed; they are common on names, jargon, and music.
22233
+ * Range: minimum 0, maximum 1.
22234
+ */
22235
+ confidence: number;
22236
+ /**
22237
+ * Word end offset in seconds.
22238
+ * Range: minimum 0.
22239
+ */
22240
+ endSeconds?: number;
22241
+ /**
22242
+ * Recognizer speaker label for this word.
22243
+ */
22244
+ speaker?: string;
22245
+ /**
22246
+ * Word start offset in seconds.
22247
+ * Range: minimum 0.
22248
+ */
22249
+ startSeconds?: number;
22250
+ /**
22251
+ * The recognized word.
22252
+ */
22253
+ word: string;
22254
+ [extra: string]: unknown;
22255
+ }
22256
+ /**
22257
+ * The `data` payload of TikTok Video Transcript (Audio) (tiktok.video_transcript_full).
22258
+ */
22259
+ interface TiktokVideoTranscriptFullData {
22260
+ /**
22261
+ * Video duration in seconds.
22262
+ * Range: minimum 0.
22263
+ */
22264
+ durationSeconds?: number;
22265
+ /**
22266
+ * Detected spoken language of the audio (BCP-47 style code, e.g. "en").
22267
+ */
22268
+ language?: string;
22269
+ /**
22270
+ * Timed transcript segments in playback order, each with the recognizer's per-word confidence so low-confidence text can be treated as uncertain rather than quoted. Populated whenever the provider has data for the entity.
22271
+ * Present whenever the upstream returns this record.
22272
+ */
22273
+ segments?: TiktokVideoTranscriptFullSegment[];
22274
+ /**
22275
+ * How the text was produced. Always "audio_asr" on this endpoint: the words come from automatic speech recognition over the audio, not from a caption track the platform published. Populated whenever the provider has data for the entity.
22276
+ */
22277
+ source: string;
22278
+ /**
22279
+ * Full spoken-word transcript, machine-transcribed from the video's audio track. Populated whenever the provider has data for the entity.
22280
+ */
22281
+ transcript: string;
22282
+ [extra: string]: unknown;
22283
+ }
21890
22284
  /**
21891
22285
  * Typed methods for the tiktok platform. Attached to the AnyAPI client as
21892
22286
  * `client.tiktok`.
@@ -22210,6 +22604,17 @@ declare class TiktokNamespace {
22210
22604
  * const res = await client.tiktok.videoTranscript({ url: "https://www.tiktok.com/@washingtonpost/video/7609177768793787679" });
22211
22605
  */
22212
22606
  videoTranscript(input: TiktokVideoTranscriptInput, options?: RequestOptions): Promise<RunResult<TiktokVideoTranscriptData>>;
22607
+ /**
22608
+ * TikTok Video Transcript (Audio)
22609
+ *
22610
+ * Transcribe the spoken audio of a TikTok video with timed segments, speaker labels, and per-word confidence - for videos TikTok publishes no subtitle track for.
22611
+ *
22612
+ * Price: $0.0168 per request plus $0 per result (maximum $0.0168).
22613
+ *
22614
+ * @example
22615
+ * const res = await client.tiktok.videoTranscriptFull({ url: "https://www.tiktok.com/@thatdudecancook/video/7649086431641521421" });
22616
+ */
22617
+ videoTranscriptFull(input: TiktokVideoTranscriptFullInput, options?: RequestOptions): Promise<RunResult<TiktokVideoTranscriptFullData>>;
22213
22618
  }
22214
22619
 
22215
22620
  /**
@@ -25700,39 +26105,64 @@ interface YoutubeChannelPlaylistsData {
25700
26105
  */
25701
26106
  interface YoutubeChannelShortsInput {
25702
26107
  /**
25703
- * YouTube channel ID.
26108
+ * YouTube channel ID beginning with UC.
25704
26109
  */
25705
26110
  channelId?: string;
25706
26111
  /**
25707
- * Continuation token from a previous response for pagination.
26112
+ * Continuation token from a previous response.
25708
26113
  */
25709
26114
  cursor?: string;
25710
26115
  /**
25711
- * YouTube channel handle.
26116
+ * YouTube channel handle, including or omitting the leading @.
25712
26117
  */
25713
26118
  handle?: string;
25714
26119
  /**
25715
- * Sort order.
25716
- * One of: newest, popular.
26120
+ * Sort order for the Shorts feed. latest and newest are equivalent.
26121
+ * One of: latest, newest, popular.
25717
26122
  */
25718
- sort?: "newest" | "popular";
26123
+ sort?: "latest" | "newest" | "popular";
25719
26124
  }
25720
26125
  interface YoutubeChannelShortsShort {
26126
+ /**
26127
+ * Explicit normalized provenance that this item came from a dedicated Shorts feed.
26128
+ * One of: short.
26129
+ */
26130
+ contentType: "short";
26131
+ /**
26132
+ * UTC epoch timestamp in seconds when supplied by the upstream response.
26133
+ */
26134
+ createdUtc?: number;
26135
+ /**
26136
+ * Published duration when supplied by the upstream response.
26137
+ */
25721
26138
  duration: string;
25722
26139
  /**
25723
- * Populated whenever the provider has data for the entity.
26140
+ * Unique YouTube video identifier. Populated whenever the provider has data for the entity.
25724
26141
  */
25725
26142
  id: string;
26143
+ /**
26144
+ * Public like count when supplied by the upstream response.
26145
+ * Range: minimum 0.
26146
+ */
25726
26147
  likes: number;
25727
26148
  /**
25728
- * Populated whenever the provider has data for the entity.
26149
+ * Public title or caption for the Short. Populated whenever the provider has data for the entity.
25729
26150
  */
25730
26151
  title: string;
25731
26152
  /**
25732
- * Populated whenever the provider has data for the entity.
26153
+ * Public YouTube URL for the Short. Populated whenever the provider has data for the entity.
26154
+ * Format: uri.
25733
26155
  */
25734
26156
  url: string;
26157
+ /**
26158
+ * Public view count when supplied by the upstream response.
26159
+ * Range: minimum 0.
26160
+ */
25735
26161
  views: number;
26162
+ /**
26163
+ * Whether views is backed by a public count in the upstream response.
26164
+ */
26165
+ viewsAvailable: boolean;
25736
26166
  [extra: string]: unknown;
25737
26167
  }
25738
26168
  /**
@@ -25740,11 +26170,11 @@ interface YoutubeChannelShortsShort {
25740
26170
  */
25741
26171
  interface YoutubeChannelShortsData {
25742
26172
  /**
25743
- * Opaque cursor for the next page of shorts, or null when this lane has no more. Pass it back as cursor to continue.
26173
+ * Opaque cursor for the next Shorts page, or null when no next page is available.
25744
26174
  */
25745
26175
  nextCursor: string | null;
25746
26176
  /**
25747
- * Populated whenever the provider has data for the entity.
26177
+ * Short-form videos returned by the provider's dedicated YouTube Shorts endpoint. Populated whenever the provider has data for the entity.
25748
26178
  */
25749
26179
  shorts: YoutubeChannelShortsShort[];
25750
26180
  }
@@ -26236,6 +26666,23 @@ interface YoutubeVideoTranscriptInput {
26236
26666
  */
26237
26667
  url?: string;
26238
26668
  }
26669
+ interface YoutubeVideoTranscriptSegment {
26670
+ /**
26671
+ * Segment duration in seconds.
26672
+ * Range: minimum 0.
26673
+ */
26674
+ durationSeconds: number;
26675
+ /**
26676
+ * Segment start offset in seconds.
26677
+ * Range: minimum 0.
26678
+ */
26679
+ startSeconds: number;
26680
+ /**
26681
+ * Text of this transcript segment.
26682
+ */
26683
+ text: string;
26684
+ [extra: string]: unknown;
26685
+ }
26239
26686
  /**
26240
26687
  * The `data` payload of YouTube Video Transcript (youtube.video_transcript).
26241
26688
  */
@@ -26244,12 +26691,92 @@ interface YoutubeVideoTranscriptData {
26244
26691
  * Populated whenever the provider has data for the entity.
26245
26692
  */
26246
26693
  language: string;
26694
+ /**
26695
+ * Timed transcript segments in source order when the serving lane supplies caption timing.
26696
+ */
26697
+ segments?: YoutubeVideoTranscriptSegment[];
26247
26698
  /**
26248
26699
  * Populated whenever the provider has data for the entity.
26249
26700
  */
26250
26701
  transcript: string;
26251
26702
  [extra: string]: unknown;
26252
26703
  }
26704
+ /**
26705
+ * Input for YouTube Video Transcript (Provenance) (youtube.video_transcript_full).
26706
+ */
26707
+ interface YoutubeVideoTranscriptFullInput {
26708
+ /**
26709
+ * Which caption track to accept: "manual" only creator-written captions, "automatic" only YouTube's speech recognition, "any" whichever exists.
26710
+ * One of: manual, automatic, any.
26711
+ * Default: any.
26712
+ */
26713
+ captionKind?: "manual" | "automatic" | "any";
26714
+ /**
26715
+ * Preferred caption language code (e.g. "en", "es"). Defaults to English.
26716
+ */
26717
+ language?: string;
26718
+ /**
26719
+ * YouTube video URL (e.g. "https://www.youtube.com/watch?v=dQw4w9WgXcQ").
26720
+ */
26721
+ url: string;
26722
+ }
26723
+ interface YoutubeVideoTranscriptFullSegment {
26724
+ /**
26725
+ * Segment end offset in seconds.
26726
+ * Range: minimum 0.
26727
+ */
26728
+ endSeconds: number;
26729
+ /**
26730
+ * Segment start offset in seconds.
26731
+ * Range: minimum 0.
26732
+ */
26733
+ startSeconds: number;
26734
+ /**
26735
+ * Text of this transcript segment.
26736
+ */
26737
+ text: string;
26738
+ [extra: string]: unknown;
26739
+ }
26740
+ /**
26741
+ * The `data` payload of YouTube Video Transcript (Provenance) (youtube.video_transcript_full).
26742
+ */
26743
+ interface YoutubeVideoTranscriptFullData {
26744
+ /**
26745
+ * Channel name that published the video.
26746
+ */
26747
+ channel?: string;
26748
+ /**
26749
+ * Video duration in seconds.
26750
+ * Range: minimum 0.
26751
+ */
26752
+ durationSeconds?: number;
26753
+ /**
26754
+ * True when the words were recognized from the audio by the serving lane rather than read from any YouTube caption track.
26755
+ */
26756
+ isAiGenerated?: boolean;
26757
+ /**
26758
+ * True when YouTube generated the caption track by speech recognition rather than the creator supplying it. Automatic captions carry recognition errors, especially on names and jargon. Populated whenever the provider has data for the entity.
26759
+ */
26760
+ isAutoGenerated: boolean;
26761
+ /**
26762
+ * Caption language code (e.g. "en"). Populated whenever the provider has data for the entity.
26763
+ */
26764
+ language: string;
26765
+ /**
26766
+ * Timed transcript segments in playback order. Populated whenever the provider has data for the entity.
26767
+ * Present whenever the upstream returns this record.
26768
+ */
26769
+ segments?: YoutubeVideoTranscriptFullSegment[];
26770
+ /**
26771
+ * Video title.
26772
+ */
26773
+ title?: string;
26774
+ /**
26775
+ * Full transcript text, segments joined in playback order. Populated whenever the provider has data for the entity.
26776
+ */
26777
+ transcript: string;
26778
+ [extra: string]: unknown;
26779
+ }
26253
26780
  /**
26254
26781
  * Typed methods for the youtube platform. Attached to the AnyAPI client as
26255
26782
  * `client.youtube`.
@@ -26325,12 +26852,12 @@ declare class YoutubeNamespace {
26325
26852
  /**
26326
26853
  * YouTube Channel Shorts
26327
26854
  *
26328
- * List a YouTube channel's Shorts by handle or channel ID with cursor pagination (title, views, likes, duration).
26855
+ * List a YouTube channel's Shorts by handle or channel ID with cursor pagination, views, and publish timestamps.
26329
26856
  *
26330
26857
  * Price: $0.002 per request.
26331
26858
  *
26332
26859
  * @example
26333
- * const res = await client.youtube.channelShorts({ handle: "@starterstory" });
26860
+ * const res = await client.youtube.channelShorts({ handle: "@zachking", sort: "latest" });
26334
26861
  */
26335
26862
  channelShorts(input: YoutubeChannelShortsInput, options?: RequestOptions): Promise<RunResult<YoutubeChannelShortsData>>;
26336
26863
  /**
@@ -26476,12 +27003,23 @@ declare class YoutubeNamespace {
26476
27003
  *
26477
27004
  * Fetch the transcript/captions of a YouTube video by URL or ID.
26478
27005
  *
26479
- * Price: $0.002 per request.
27006
+ * Price: $0.011 per request.
26480
27007
  *
26481
27008
  * @example
26482
27009
  * const res = await client.youtube.videoTranscript({ url: "https://www.youtube.com/watch?v=dQw4w9WgXcQ" });
26483
27010
  */
26484
27011
  videoTranscript(input: YoutubeVideoTranscriptInput, options?: RequestOptions): Promise<RunResult<YoutubeVideoTranscriptData>>;
27012
+ /**
27013
+ * YouTube Video Transcript (Provenance)
27014
+ *
27015
+ * Fetch a YouTube transcript with timed segments and its provenance: whether the words are creator-written captions or machine speech recognition.
27016
+ *
27017
+ * Price: $0.00294 per request plus $0 per result (maximum $0.00294).
27018
+ *
27019
+ * @example
27020
+ * const res = await client.youtube.videoTranscriptFull({ url: "https://www.youtube.com/watch?v=dQw4w9WgXcQ" });
27021
+ */
27022
+ videoTranscriptFull(input: YoutubeVideoTranscriptFullInput, options?: RequestOptions): Promise<RunResult<YoutubeVideoTranscriptFullData>>;
26485
27023
  }
26486
27024
 
26487
27025
  /**
@@ -27534,6 +28072,11 @@ interface SkuMap {
27534
28072
  data: FacebookAdDetailsData;
27535
28073
  result: RunResult<FacebookAdDetailsData>;
27536
28074
  };
28075
+ "facebook.ad_details_full": {
28076
+ input: FacebookAdDetailsFullInput;
28077
+ data: FacebookAdDetailsFullData;
28078
+ result: RunResult<FacebookAdDetailsFullData>;
28079
+ };
27537
28080
  "facebook.ad_transcript": {
27538
28081
  input: FacebookAdTranscriptInput;
27539
28082
  data: FacebookAdTranscriptData;
@@ -28104,6 +28647,11 @@ interface SkuMap {
28104
28647
  data: MobilePhoneLeadmagicData;
28105
28648
  result: RunResult<MobilePhoneLeadmagicData>;
28106
28649
  };
28650
+ "naver.blog_search": {
28651
+ input: NaverBlogSearchInput;
28652
+ data: NaverBlogSearchData;
28653
+ result: RunResult<NaverBlogSearchData>;
28654
+ };
28107
28655
  "pandaexpress.locations": {
28108
28656
  input: PandaexpressLocationsInput;
28109
28657
  data: PandaexpressLocationsData;
@@ -28524,6 +29072,11 @@ interface SkuMap {
28524
29072
  data: TiktokVideoTranscriptData;
28525
29073
  result: RunResult<TiktokVideoTranscriptData>;
28526
29074
  };
29075
+ "tiktok.video_transcript_full": {
29076
+ input: TiktokVideoTranscriptFullInput;
29077
+ data: TiktokVideoTranscriptFullData;
29078
+ result: RunResult<TiktokVideoTranscriptFullData>;
29079
+ };
28527
29080
  "tiktok_shop.product": {
28528
29081
  input: TiktokShopProductInput;
28529
29082
  data: TiktokShopProductData;
@@ -28799,6 +29352,11 @@ interface SkuMap {
28799
29352
  data: YoutubeVideoTranscriptData;
28800
29353
  result: RunResult<YoutubeVideoTranscriptData>;
28801
29354
  };
29355
+ "youtube.video_transcript_full": {
29356
+ input: YoutubeVideoTranscriptFullInput;
29357
+ data: YoutubeVideoTranscriptFullData;
29358
+ result: RunResult<YoutubeVideoTranscriptFullData>;
29359
+ };
28802
29360
  "zhihu.answer": {
28803
29361
  input: ZhihuAnswerInput;
28804
29362
  data: ZhihuAnswerData;
@@ -28986,6 +29544,10 @@ declare class AnyAPI extends AnyAPI$1 {
28986
29544
  * Typed methods for the mobile_phone platform.
28987
29545
  */
28988
29546
  get mobilePhone(): MobilePhoneNamespace;
29547
+ /**
29548
+ * Typed methods for the naver platform.
29549
+ */
29550
+ get naver(): NaverNamespace;
28989
29551
  /**
28990
29552
  * Typed methods for the pandaexpress platform.
28991
29553
  */
@@ -29128,4 +29690,4 @@ declare class AnyAPI extends AnyAPI$1 {
29128
29690
  get zillow(): ZillowNamespace;
29129
29691
  }
29130
29692
 
29131
- 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 ChatgptBrandVisibilityCitation, type ChatgptBrandVisibilityCompetitor, type ChatgptBrandVisibilityData, type ChatgptBrandVisibilityInput, ChatgptNamespace, type ChatgptSearchCitation, type ChatgptSearchData, type ChatgptSearchInput, type ClientCore, type ClientOptions, type CoinmarketcapListingsData, type CoinmarketcapListingsInput, type CoinmarketcapListingsItem, CoinmarketcapNamespace, type CompanyEnrichmentCrustdataV3Data, type CompanyEnrichmentCrustdataV3Input, CompanyEnrichmentNamespace, type CompanySearchAiArkCompanie, type CompanySearchAiArkData, type CompanySearchAiArkInput, type CompanySearchCrustdataV3Companie, type CompanySearchCrustdataV3Data, type CompanySearchCrustdataV3Input, type CompanySearchCrustdataV3Sort, CompanySearchNamespace, CongressNamespace, type CongressTradesData, type CongressTradesInput, type CongressTradesItem, ConnectionError, DexscreenerNamespace, type DexscreenerTokensData, type DexscreenerTokensInput, type DexscreenerTokensItem, type DiscoveryExecution, type DiscoveryExecutionMode, type DiscoveryLane, type DiscoveryLatency, type DiscoveryPricing, type DiscoverySource, 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, type EmailFindingDropleadsData, type EmailFindingDropleadsInput, type EmailFindingIcypeasData, type EmailFindingIcypeasInput, EmailFindingNamespace, EmailNamespace, type EmailVerificationAllegrowData, type EmailVerificationAllegrowInput, type EmailVerificationBouncebanData, type EmailVerificationBouncebanInput, type EmailVerificationIcypeasData, type EmailVerificationIcypeasInput, EmailVerificationNamespace, 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, type GeminiBrandVisibilityCitation, type GeminiBrandVisibilityCompetitor, type GeminiBrandVisibilityData, type GeminiBrandVisibilityInput, GeminiNamespace, type GeminiSearchCitation, type GeminiSearchData, type GeminiSearchInput, 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 GoogleAiModeCitation, type GoogleAiModeData, type GoogleAiModeInput, type GoogleAiOverviewCitation, type GoogleAiOverviewData, type GoogleAiOverviewInput, 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 LinkedinProfilePostsFullBreakdown, type LinkedinProfilePostsFullContentAnnotation, type LinkedinProfilePostsFullData, type LinkedinProfilePostsFullImage, type LinkedinProfilePostsFullInput, type LinkedinProfilePostsFullItem, type LinkedinProfilePostsFullRepostImage, type LinkedinProfilePostsThinData, type LinkedinProfilePostsThinImage, type LinkedinProfilePostsThinInput, type LinkedinProfilePostsThinItem, type LinkedinProfilePublication, type LinkedinProfileThinArticle, type LinkedinProfileThinData, type LinkedinProfileThinEducation, type LinkedinProfileThinExperience, type LinkedinProfileThinInput, type LinkedinProfileThinRecentPost, type LinkedinSearchCompaniesData, type LinkedinSearchCompaniesInput, type LinkedinSearchCompaniesItem, type LinkedinSearchPostsData, type LinkedinSearchPostsFullBreakdown, type LinkedinSearchPostsFullData, type LinkedinSearchPostsFullInput, type LinkedinSearchPostsFullPollOption, type LinkedinSearchPostsFullPost, 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, type MobilePhoneAiArkData, type MobilePhoneAiArkInput, type MobilePhoneLeadmagicData, type MobilePhoneLeadmagicInput, MobilePhoneNamespace, 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, type PeopleSearchAiArkData, type PeopleSearchAiArkInput, type PeopleSearchAiArkPeople, type PeopleSearchCrustdataV3Data, type PeopleSearchCrustdataV3Input, type PeopleSearchCrustdataV3Profile, PeopleSearchNamespace, type PerplexityBrandVisibilityCitation, type PerplexityBrandVisibilityCompetitor, type PerplexityBrandVisibilityData, type PerplexityBrandVisibilityInput, PerplexityNamespace, type PerplexitySearchCitation, type PerplexitySearchData, type PerplexitySearchInput, type PersonEnrichmentAviatoData, type PersonEnrichmentAviatoInput, PersonEnrichmentNamespace, 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, RequestPendingError, type RequestSnapshot, type RequestStatus, 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, type StartOptions, 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 TiktokAdTransparencySearchAd, type TiktokAdTransparencySearchData, type TiktokAdTransparencySearchInput, 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 TiktokTopAdsSearchAd, type TiktokTopAdsSearchData, type TiktokTopAdsSearchInput, 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 TwitterThreadData, type TwitterThreadInput, type TwitterThreadTweet, 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 };
29693
+ 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 ChatgptBrandVisibilityCitation, type ChatgptBrandVisibilityCompetitor, type ChatgptBrandVisibilityData, type ChatgptBrandVisibilityInput, ChatgptNamespace, type ChatgptSearchCitation, type ChatgptSearchData, type ChatgptSearchInput, type ClientCore, type ClientOptions, type CoinmarketcapListingsData, type CoinmarketcapListingsInput, type CoinmarketcapListingsItem, CoinmarketcapNamespace, type CompanyEnrichmentCrustdataV3Data, type CompanyEnrichmentCrustdataV3Input, CompanyEnrichmentNamespace, type CompanySearchAiArkCompanie, type CompanySearchAiArkData, type CompanySearchAiArkInput, type CompanySearchCrustdataV3Companie, type CompanySearchCrustdataV3Data, type CompanySearchCrustdataV3Input, type CompanySearchCrustdataV3Sort, CompanySearchNamespace, CongressNamespace, type CongressTradesData, type CongressTradesInput, type CongressTradesItem, ConnectionError, DexscreenerNamespace, type DexscreenerTokensData, type DexscreenerTokensInput, type DexscreenerTokensItem, type DiscoveryExecution, type DiscoveryExecutionMode, type DiscoveryLane, type DiscoveryLatency, type DiscoveryPricing, type DiscoverySource, 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, type EmailFindingDropleadsData, type EmailFindingDropleadsInput, type EmailFindingIcypeasData, type EmailFindingIcypeasInput, EmailFindingNamespace, EmailNamespace, type EmailVerificationAllegrowData, type EmailVerificationAllegrowInput, type EmailVerificationBouncebanData, type EmailVerificationBouncebanInput, type EmailVerificationIcypeasData, type EmailVerificationIcypeasInput, EmailVerificationNamespace, type EmailVerifyData, type EmailVerifyInput, type EmailVerifyItem, type FacebookAdDetailsData, type FacebookAdDetailsFullCreative, type FacebookAdDetailsFullData, type FacebookAdDetailsFullImage, type FacebookAdDetailsFullInput, type FacebookAdDetailsFullVideo, 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, type GeminiBrandVisibilityCitation, type GeminiBrandVisibilityCompetitor, type GeminiBrandVisibilityData, type GeminiBrandVisibilityInput, GeminiNamespace, type GeminiSearchCitation, type GeminiSearchData, type GeminiSearchInput, 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 GoogleAiModeCitation, type GoogleAiModeData, type GoogleAiModeInput, type GoogleAiOverviewCitation, type GoogleAiOverviewData, type GoogleAiOverviewInput, 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 LinkedinProfilePostsFullBreakdown, type LinkedinProfilePostsFullContentAnnotation, type LinkedinProfilePostsFullData, type LinkedinProfilePostsFullImage, type LinkedinProfilePostsFullInput, type LinkedinProfilePostsFullItem, type LinkedinProfilePostsFullRepostImage, type LinkedinProfilePostsThinData, type LinkedinProfilePostsThinImage, type LinkedinProfilePostsThinInput, type LinkedinProfilePostsThinItem, type LinkedinProfilePublication, type LinkedinProfileThinArticle, type LinkedinProfileThinData, type LinkedinProfileThinEducation, type LinkedinProfileThinExperience, type LinkedinProfileThinInput, type LinkedinProfileThinRecentPost, type LinkedinSearchCompaniesData, type LinkedinSearchCompaniesInput, type LinkedinSearchCompaniesItem, type LinkedinSearchPostsData, type LinkedinSearchPostsFullBreakdown, type LinkedinSearchPostsFullData, type LinkedinSearchPostsFullInput, type LinkedinSearchPostsFullPollOption, type LinkedinSearchPostsFullPost, 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, type MobilePhoneAiArkData, type MobilePhoneAiArkInput, type MobilePhoneLeadmagicData, type MobilePhoneLeadmagicInput, MobilePhoneNamespace, type NaverBlogSearchData, type NaverBlogSearchInput, type NaverBlogSearchItem, NaverNamespace, 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, type PeopleSearchAiArkData, type PeopleSearchAiArkInput, type PeopleSearchAiArkPeople, type PeopleSearchCrustdataV3Data, type PeopleSearchCrustdataV3Input, type PeopleSearchCrustdataV3Profile, PeopleSearchNamespace, type PerplexityBrandVisibilityCitation, type PerplexityBrandVisibilityCompetitor, type PerplexityBrandVisibilityData, type PerplexityBrandVisibilityInput, PerplexityNamespace, type PerplexitySearchCitation, type PerplexitySearchData, type PerplexitySearchInput, type PersonEnrichmentAviatoData, type PersonEnrichmentAviatoInput, PersonEnrichmentNamespace, 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, RequestPendingError, type RequestSnapshot, type RequestStatus, 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, type StartOptions, 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 TiktokAdTransparencySearchAd, type TiktokAdTransparencySearchData, type TiktokAdTransparencySearchInput, 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 TiktokTopAdsSearchAd, type TiktokTopAdsSearchData, type TiktokTopAdsSearchInput, type TiktokTrendingFeedData, type TiktokTrendingFeedInput, type TiktokTrendingFeedVideo, type TiktokVideoCommentsComment, type TiktokVideoCommentsData, type TiktokVideoCommentsInput, type TiktokVideoData, type TiktokVideoInput, type TiktokVideoTranscriptData, type TiktokVideoTranscriptFullData, type TiktokVideoTranscriptFullInput, type TiktokVideoTranscriptFullSegment, type TiktokVideoTranscriptFullWord, 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 TwitterThreadData, type TwitterThreadInput, type TwitterThreadTweet, 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 YoutubeVideoTranscriptFullData, type YoutubeVideoTranscriptFullInput, type YoutubeVideoTranscriptFullSegment, type YoutubeVideoTranscriptInput, type YoutubeVideoTranscriptSegment, 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 };