@getanyapi/sdk 0.22.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
@@ -196,16 +196,38 @@ interface DiscoveryPricing {
196
196
  from: PricingOffer;
197
197
  failoverMaxUsd: number;
198
198
  }
199
+ type DiscoveryExecutionMode = "sync" | "durable";
200
+ interface DiscoveryExecution {
201
+ mode: DiscoveryExecutionMode;
202
+ }
203
+ interface DiscoverySource {
204
+ id: string;
205
+ name: string;
206
+ kind: "anonymous" | "brand";
207
+ artworkKey: string;
208
+ }
199
209
  interface LaneHealth {
200
210
  window: string;
201
211
  uptimePct: number;
202
212
  latencyP50Ms: number;
213
+ uptimeSample: number;
214
+ latencySample: number;
203
215
  requests: number;
216
+ servedRequests: number;
204
217
  }
205
218
  interface DiscoveryLane {
206
219
  pricing: PricingOffer;
220
+ source: DiscoverySource;
207
221
  health?: LaneHealth;
208
222
  }
223
+ interface DiscoveryLatency {
224
+ window: string;
225
+ p50Ms: number;
226
+ p95Ms: number;
227
+ p99Ms: number;
228
+ sample: number;
229
+ basis: "service_time_excludes_caller_requested_delay";
230
+ }
209
231
  /** One customer-safe API returned by catalog() or describe(). */
210
232
  interface CatalogEntry {
211
233
  id: string;
@@ -213,15 +235,21 @@ interface CatalogEntry {
213
235
  name: string;
214
236
  category: string;
215
237
  description: string;
238
+ method: "POST";
239
+ path: string;
240
+ execution: DiscoveryExecution;
216
241
  provider: "AnyAPI";
217
242
  pricing: DiscoveryPricing;
218
243
  lanes: DiscoveryLane[];
219
244
  heavy: boolean;
220
245
  tryEligible: boolean;
246
+ tryMaxItems?: number;
221
247
  failover?: boolean;
222
248
  excludesCallerDelay?: boolean;
223
249
  inputSchema?: Record<string, unknown>;
224
250
  outputSchema?: Record<string, unknown>;
251
+ /** Detail-only successful end-to-end latency. Null when no sample is available. */
252
+ latency?: DiscoveryLatency | null;
225
253
  }
226
254
  interface SearchOptions {
227
255
  query: string;
@@ -240,8 +268,14 @@ interface CatalogSearchResult {
240
268
  name: string;
241
269
  description: string;
242
270
  category: string;
271
+ method: "POST";
272
+ path: string;
273
+ execution: DiscoveryExecution;
243
274
  provider: "AnyAPI";
244
275
  pricing: DiscoveryPricing;
276
+ tryMaxItems?: number;
277
+ failover: boolean;
278
+ excludesCallerDelay?: boolean;
245
279
  relevance: number;
246
280
  highlightFields?: HighlightField[];
247
281
  }
@@ -1171,9 +1205,9 @@ interface AmazonReviewsInput {
1171
1205
  */
1172
1206
  endDate?: string;
1173
1207
  /**
1174
- * 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).
1175
1209
  */
1176
- keywords?: string[];
1210
+ keyword?: string;
1177
1211
  /**
1178
1212
  * Maximum number of results to return (1-50, default 50). You are billed per result returned, so a lower limit costs less.
1179
1213
  * Range: minimum 1, maximum 50.
@@ -1191,13 +1225,11 @@ interface AmazonReviewsInput {
1191
1225
  /**
1192
1226
  * Amazon marketplace domain the product ASIN belongs to (e.g. amazon.co.uk).
1193
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.
1194
- * Default: amazon.com.
1195
1228
  */
1196
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";
1197
1230
  /**
1198
1231
  * Review sort order: most helpful first or most recent first (e.g. recent).
1199
1232
  * One of: helpful, recent.
1200
- * Default: helpful.
1201
1233
  */
1202
1234
  sort?: "helpful" | "recent";
1203
1235
  /**
@@ -1206,7 +1238,6 @@ interface AmazonReviewsInput {
1206
1238
  startDate?: string;
1207
1239
  /**
1208
1240
  * Set true to return only verified-purchase reviews (e.g. true).
1209
- * Default: false.
1210
1241
  */
1211
1242
  verifiedOnly?: boolean;
1212
1243
  }
@@ -1235,6 +1266,11 @@ interface AmazonReviewsItem {
1235
1266
  * Review headline / title; empty when the review has none.
1236
1267
  */
1237
1268
  title?: string;
1269
+ /**
1270
+ * Public Amazon page for this review, when supplied by the serving lane.
1271
+ * Format: uri.
1272
+ */
1273
+ url?: string;
1238
1274
  /**
1239
1275
  * True when Amazon marks the review a verified purchase.
1240
1276
  */
@@ -2594,6 +2630,11 @@ interface AppstoreReviewsItem {
2594
2630
  * Review title.
2595
2631
  */
2596
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;
2597
2638
  /**
2598
2639
  * App version the review was left on.
2599
2640
  */
@@ -5040,6 +5081,11 @@ interface FacebookAdDetailsData {
5040
5081
  * Present whenever the upstream returns this record.
5041
5082
  */
5042
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;
5043
5089
  /**
5044
5090
  * Run start, epoch seconds. Populated whenever the provider has data for the entity.
5045
5091
  * Present whenever the upstream returns this record.
@@ -5057,6 +5103,178 @@ interface FacebookAdDetailsData {
5057
5103
  title?: string | null;
5058
5104
  [extra: string]: unknown;
5059
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
+ }
5060
5278
  /**
5061
5279
  * Input for Facebook Ad Transcript (facebook.ad_transcript).
5062
5280
  */
@@ -5182,6 +5400,11 @@ interface FacebookAdsSearchAd {
5182
5400
  * Populated whenever the provider has data for the entity.
5183
5401
  */
5184
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;
5185
5408
  /**
5186
5409
  * Epoch seconds. Populated whenever the provider has data for the entity.
5187
5410
  */
@@ -6487,9 +6710,20 @@ declare class FacebookNamespace {
6487
6710
  * Price: $0.002 per request.
6488
6711
  *
6489
6712
  * @example
6490
- * const res = await client.facebook.adDetails({ id: "1869276447125570" });
6713
+ * const res = await client.facebook.adDetails({ id: "1249043200627555" });
6491
6714
  */
6492
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>>;
6493
6727
  /**
6494
6728
  * Facebook Ad Transcript
6495
6729
  *
@@ -6818,7 +7052,7 @@ declare class FacebookNamespace {
6818
7052
  *
6819
7053
  * Search public Facebook posts by keyword, optionally filtered by location, and get structured post records (text, author, engagement).
6820
7054
  *
6821
- * 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).
6822
7056
  *
6823
7057
  * @example
6824
7058
  * const res = await client.facebook.searchPosts({ query: "nike", limit: 3 });
@@ -10431,9 +10665,10 @@ interface InstagramSearchHashtagInput {
10431
10665
  */
10432
10666
  hashtag: string;
10433
10667
  /**
10434
- * Filter by media type (e.g. all, photo, video, reel).
10668
+ * Filter by media type. One of all, reel.
10669
+ * One of: all, reel.
10435
10670
  */
10436
- mediaType?: string;
10671
+ mediaType?: "all" | "reel";
10437
10672
  }
10438
10673
  interface InstagramSearchHashtagPost {
10439
10674
  caption: string;
@@ -11036,7 +11271,7 @@ declare class InstagramNamespace {
11036
11271
  *
11037
11272
  * Fetch an Instagram account's public profile (followers, posts, bio, verification) by handle.
11038
11273
  *
11039
- * Price: $0.0024 per request.
11274
+ * Price: $0.002 per request.
11040
11275
  *
11041
11276
  * @example
11042
11277
  * const res = await client.instagram.profile({ handle: "nasa" });
@@ -11083,7 +11318,7 @@ declare class InstagramNamespace {
11083
11318
  * Price: $0.002 per request.
11084
11319
  *
11085
11320
  * @example
11086
- * const res = await client.instagram.searchHashtag({ hashtag: "travel" });
11321
+ * const res = await client.instagram.searchHashtag({ hashtag: "skincare", datePosted: "last-month", mediaType: "reel" });
11087
11322
  */
11088
11323
  searchHashtag(input: InstagramSearchHashtagInput, options?: RequestOptions): Promise<RunResult<InstagramSearchHashtagData>>;
11089
11324
  /**
@@ -13332,31 +13567,32 @@ interface LinkedinProfileThinData {
13332
13567
  /**
13333
13568
  * About/summary text of the profile.
13334
13569
  */
13335
- about: string;
13570
+ about?: string;
13336
13571
  /**
13337
13572
  * The profile's published articles.
13338
13573
  */
13339
- articles: LinkedinProfileThinArticle[];
13574
+ articles?: LinkedinProfileThinArticle[];
13340
13575
  /**
13341
13576
  * URL of the profile avatar image.
13342
13577
  */
13343
- avatarUrl: string;
13578
+ avatarUrl?: string;
13344
13579
  /**
13345
13580
  * Education entries.
13346
13581
  */
13347
- education: LinkedinProfileThinEducation[];
13582
+ education?: LinkedinProfileThinEducation[];
13348
13583
  /**
13349
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.
13350
13586
  */
13351
- experience: LinkedinProfileThinExperience[];
13587
+ experience?: LinkedinProfileThinExperience[];
13352
13588
  /**
13353
13589
  * Number of followers.
13354
13590
  */
13355
- followers: number;
13591
+ followers?: number;
13356
13592
  /**
13357
13593
  * Location of the profile owner.
13358
13594
  */
13359
- location: string;
13595
+ location?: string;
13360
13596
  /**
13361
13597
  * Full name of the profile owner.
13362
13598
  */
@@ -13364,7 +13600,7 @@ interface LinkedinProfileThinData {
13364
13600
  /**
13365
13601
  * The profile's recent posts.
13366
13602
  */
13367
- recentPosts: LinkedinProfileThinRecentPost[];
13603
+ recentPosts?: LinkedinProfileThinRecentPost[];
13368
13604
  [extra: string]: unknown;
13369
13605
  }
13370
13606
  /**
@@ -15104,6 +15340,108 @@ declare class MobilePhoneNamespace {
15104
15340
  leadmagic(input: MobilePhoneLeadmagicInput, options?: RequestOptions): Promise<RunResult<MobilePhoneLeadmagicData>>;
15105
15341
  }
15106
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
+
15107
15445
  /**
15108
15446
  * Input for Panda Express Locations (pandaexpress.locations).
15109
15447
  */
@@ -16068,9 +16406,8 @@ interface PlaystoreReviewsInput {
16068
16406
  */
16069
16407
  appVersion?: string[];
16070
16408
  /**
16071
- * 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.
16072
16410
  * One of: mobile, tablet, chromebook.
16073
- * Default: mobile.
16074
16411
  */
16075
16412
  deviceType?: "mobile" | "tablet" | "chromebook";
16076
16413
  /**
@@ -16101,7 +16438,6 @@ interface PlaystoreReviewsInput {
16101
16438
  recentDays?: number;
16102
16439
  /**
16103
16440
  * Review ordering: mostRelevant, newest, or rating (e.g. newest).
16104
- * Default: mostRelevant.
16105
16441
  */
16106
16442
  sortBy?: string;
16107
16443
  }
@@ -19599,7 +19935,7 @@ interface SnapchatProfileStorie {
19599
19935
  */
19600
19936
  storyTitle?: string;
19601
19937
  /**
19602
- * Story thumbnail image URL, with tracking query params stripped.
19938
+ * Story thumbnail image URL, preserving signed delivery parameters required to load the preview.
19603
19939
  */
19604
19940
  thumbnailUrl?: string;
19605
19941
  [extra: string]: unknown;
@@ -21846,13 +22182,105 @@ interface TiktokVideoTranscriptInput {
21846
22182
  * The `data` payload of TikTok Video Transcript (tiktok.video_transcript).
21847
22183
  */
21848
22184
  interface TiktokVideoTranscriptData {
21849
- language: string;
22185
+ language?: string;
21850
22186
  /**
21851
22187
  * Populated whenever the provider has data for the entity.
21852
22188
  */
21853
22189
  transcript: string;
21854
22190
  [extra: string]: unknown;
21855
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
+ }
21856
22284
  /**
21857
22285
  * Typed methods for the tiktok platform. Attached to the AnyAPI client as
21858
22286
  * `client.tiktok`.
@@ -22176,6 +22604,17 @@ declare class TiktokNamespace {
22176
22604
  * const res = await client.tiktok.videoTranscript({ url: "https://www.tiktok.com/@washingtonpost/video/7609177768793787679" });
22177
22605
  */
22178
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>>;
22179
22618
  }
22180
22619
 
22181
22620
  /**
@@ -25666,39 +26105,64 @@ interface YoutubeChannelPlaylistsData {
25666
26105
  */
25667
26106
  interface YoutubeChannelShortsInput {
25668
26107
  /**
25669
- * YouTube channel ID.
26108
+ * YouTube channel ID beginning with UC.
25670
26109
  */
25671
26110
  channelId?: string;
25672
26111
  /**
25673
- * Continuation token from a previous response for pagination.
26112
+ * Continuation token from a previous response.
25674
26113
  */
25675
26114
  cursor?: string;
25676
26115
  /**
25677
- * YouTube channel handle.
26116
+ * YouTube channel handle, including or omitting the leading @.
25678
26117
  */
25679
26118
  handle?: string;
25680
26119
  /**
25681
- * Sort order.
25682
- * One of: newest, popular.
26120
+ * Sort order for the Shorts feed. latest and newest are equivalent.
26121
+ * One of: latest, newest, popular.
25683
26122
  */
25684
- sort?: "newest" | "popular";
26123
+ sort?: "latest" | "newest" | "popular";
25685
26124
  }
25686
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
+ */
25687
26138
  duration: string;
25688
26139
  /**
25689
- * Populated whenever the provider has data for the entity.
26140
+ * Unique YouTube video identifier. Populated whenever the provider has data for the entity.
25690
26141
  */
25691
26142
  id: string;
26143
+ /**
26144
+ * Public like count when supplied by the upstream response.
26145
+ * Range: minimum 0.
26146
+ */
25692
26147
  likes: number;
25693
26148
  /**
25694
- * 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.
25695
26150
  */
25696
26151
  title: string;
25697
26152
  /**
25698
- * 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.
25699
26155
  */
25700
26156
  url: string;
26157
+ /**
26158
+ * Public view count when supplied by the upstream response.
26159
+ * Range: minimum 0.
26160
+ */
25701
26161
  views: number;
26162
+ /**
26163
+ * Whether views is backed by a public count in the upstream response.
26164
+ */
26165
+ viewsAvailable: boolean;
25702
26166
  [extra: string]: unknown;
25703
26167
  }
25704
26168
  /**
@@ -25706,11 +26170,11 @@ interface YoutubeChannelShortsShort {
25706
26170
  */
25707
26171
  interface YoutubeChannelShortsData {
25708
26172
  /**
25709
- * 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.
25710
26174
  */
25711
26175
  nextCursor: string | null;
25712
26176
  /**
25713
- * 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.
25714
26178
  */
25715
26179
  shorts: YoutubeChannelShortsShort[];
25716
26180
  }
@@ -26202,6 +26666,23 @@ interface YoutubeVideoTranscriptInput {
26202
26666
  */
26203
26667
  url?: string;
26204
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
+ }
26205
26686
  /**
26206
26687
  * The `data` payload of YouTube Video Transcript (youtube.video_transcript).
26207
26688
  */
@@ -26210,12 +26691,92 @@ interface YoutubeVideoTranscriptData {
26210
26691
  * Populated whenever the provider has data for the entity.
26211
26692
  */
26212
26693
  language: string;
26694
+ /**
26695
+ * Timed transcript segments in source order when the serving lane supplies caption timing.
26696
+ */
26697
+ segments?: YoutubeVideoTranscriptSegment[];
26213
26698
  /**
26214
26699
  * Populated whenever the provider has data for the entity.
26215
26700
  */
26216
26701
  transcript: string;
26217
26702
  [extra: string]: unknown;
26218
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
+ }
26219
26780
  /**
26220
26781
  * Typed methods for the youtube platform. Attached to the AnyAPI client as
26221
26782
  * `client.youtube`.
@@ -26291,12 +26852,12 @@ declare class YoutubeNamespace {
26291
26852
  /**
26292
26853
  * YouTube Channel Shorts
26293
26854
  *
26294
- * 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.
26295
26856
  *
26296
26857
  * Price: $0.002 per request.
26297
26858
  *
26298
26859
  * @example
26299
- * const res = await client.youtube.channelShorts({ handle: "@starterstory" });
26860
+ * const res = await client.youtube.channelShorts({ handle: "@zachking", sort: "latest" });
26300
26861
  */
26301
26862
  channelShorts(input: YoutubeChannelShortsInput, options?: RequestOptions): Promise<RunResult<YoutubeChannelShortsData>>;
26302
26863
  /**
@@ -26442,12 +27003,23 @@ declare class YoutubeNamespace {
26442
27003
  *
26443
27004
  * Fetch the transcript/captions of a YouTube video by URL or ID.
26444
27005
  *
26445
- * Price: $0.002 per request.
27006
+ * Price: $0.011 per request.
26446
27007
  *
26447
27008
  * @example
26448
27009
  * const res = await client.youtube.videoTranscript({ url: "https://www.youtube.com/watch?v=dQw4w9WgXcQ" });
26449
27010
  */
26450
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>>;
26451
27023
  }
26452
27024
 
26453
27025
  /**
@@ -27500,6 +28072,11 @@ interface SkuMap {
27500
28072
  data: FacebookAdDetailsData;
27501
28073
  result: RunResult<FacebookAdDetailsData>;
27502
28074
  };
28075
+ "facebook.ad_details_full": {
28076
+ input: FacebookAdDetailsFullInput;
28077
+ data: FacebookAdDetailsFullData;
28078
+ result: RunResult<FacebookAdDetailsFullData>;
28079
+ };
27503
28080
  "facebook.ad_transcript": {
27504
28081
  input: FacebookAdTranscriptInput;
27505
28082
  data: FacebookAdTranscriptData;
@@ -28070,6 +28647,11 @@ interface SkuMap {
28070
28647
  data: MobilePhoneLeadmagicData;
28071
28648
  result: RunResult<MobilePhoneLeadmagicData>;
28072
28649
  };
28650
+ "naver.blog_search": {
28651
+ input: NaverBlogSearchInput;
28652
+ data: NaverBlogSearchData;
28653
+ result: RunResult<NaverBlogSearchData>;
28654
+ };
28073
28655
  "pandaexpress.locations": {
28074
28656
  input: PandaexpressLocationsInput;
28075
28657
  data: PandaexpressLocationsData;
@@ -28490,6 +29072,11 @@ interface SkuMap {
28490
29072
  data: TiktokVideoTranscriptData;
28491
29073
  result: RunResult<TiktokVideoTranscriptData>;
28492
29074
  };
29075
+ "tiktok.video_transcript_full": {
29076
+ input: TiktokVideoTranscriptFullInput;
29077
+ data: TiktokVideoTranscriptFullData;
29078
+ result: RunResult<TiktokVideoTranscriptFullData>;
29079
+ };
28493
29080
  "tiktok_shop.product": {
28494
29081
  input: TiktokShopProductInput;
28495
29082
  data: TiktokShopProductData;
@@ -28765,6 +29352,11 @@ interface SkuMap {
28765
29352
  data: YoutubeVideoTranscriptData;
28766
29353
  result: RunResult<YoutubeVideoTranscriptData>;
28767
29354
  };
29355
+ "youtube.video_transcript_full": {
29356
+ input: YoutubeVideoTranscriptFullInput;
29357
+ data: YoutubeVideoTranscriptFullData;
29358
+ result: RunResult<YoutubeVideoTranscriptFullData>;
29359
+ };
28768
29360
  "zhihu.answer": {
28769
29361
  input: ZhihuAnswerInput;
28770
29362
  data: ZhihuAnswerData;
@@ -28952,6 +29544,10 @@ declare class AnyAPI extends AnyAPI$1 {
28952
29544
  * Typed methods for the mobile_phone platform.
28953
29545
  */
28954
29546
  get mobilePhone(): MobilePhoneNamespace;
29547
+ /**
29548
+ * Typed methods for the naver platform.
29549
+ */
29550
+ get naver(): NaverNamespace;
28955
29551
  /**
28956
29552
  * Typed methods for the pandaexpress platform.
28957
29553
  */
@@ -29094,4 +29690,4 @@ declare class AnyAPI extends AnyAPI$1 {
29094
29690
  get zillow(): ZillowNamespace;
29095
29691
  }
29096
29692
 
29097
- 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 DiscoveryLane, type DiscoveryPricing, DouyinNamespace, type DouyinProfileData, type DouyinProfileInput, type DouyinSearchVideosData, type DouyinSearchVideosInput, type DouyinSearchVideosVideo, type DouyinUserPostsData, type DouyinUserPostsInput, type DouyinUserPostsPost, type DouyinVideoCommentsComment, type DouyinVideoCommentsData, type DouyinVideoCommentsInput, type DouyinVideoData, type DouyinVideoInput, EbayNamespace, type EbaySearchData, type EbaySearchInput, type EbaySearchItem, type EbaySoldListingsData, type EbaySoldListingsInput, type EbaySoldListingsItem, type EmailFindData, type EmailFindInput, type EmailFindItem, 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 };