@getanyapi/sdk 0.43.0 → 0.44.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.cts CHANGED
@@ -1107,6 +1107,10 @@ interface AmazonBestsellersInput {
1107
1107
  * Range: minimum 1.
1108
1108
  */
1109
1109
  preferLatencyUnderMs?: number;
1110
+ /**
1111
+ * Optional; omit it and routing is unchanged, with the cheapest source serving. Name the output fields this request must be able to return, for example `offersCount` or `categoryName`, and it is served only by a source that returns every one of them. Fields you do not name are still returned whenever the serving source has them. This can raise your price: when the cheapest source cannot return a named field, a dearer source serves, and you are quoted and charged its price. A named field can still be absent on a product that genuinely lacks it. Naming a combination that no single source returns together is refused as invalid input, with no charge.
1112
+ */
1113
+ requireFields?: ("categoryName" | "currency" | "image" | "offersCount" | "price" | "rank" | "rating" | "reviewsCount")[];
1110
1114
  /**
1111
1115
  * Amazon Best Sellers category URL (e.g. https://www.amazon.com/Best-Sellers-Electronics/zgbs/electronics).
1112
1116
  */
@@ -1118,9 +1122,9 @@ interface AmazonBestsellersItem {
1118
1122
  */
1119
1123
  asin: string;
1120
1124
  /**
1121
- * Best Sellers category name the product ranks in.
1125
+ * Best Sellers category name the product ranks in, or null when the serving source does not publish it.
1122
1126
  */
1123
- categoryName?: string;
1127
+ categoryName?: string | null;
1124
1128
  /**
1125
1129
  * Price currency symbol or code, e.g. "$".
1126
1130
  */
@@ -1130,9 +1134,9 @@ interface AmazonBestsellersItem {
1130
1134
  */
1131
1135
  image?: string;
1132
1136
  /**
1133
- * Number of available offers; 0 when unknown.
1137
+ * Number of available offers, or null when the serving source does not publish it.
1134
1138
  */
1135
- offersCount?: number;
1139
+ offersCount?: number | null;
1136
1140
  /**
1137
1141
  * Listed price; 0 when no offer is available.
1138
1142
  */
@@ -1378,6 +1382,10 @@ interface AmazonSearchInput {
1378
1382
  * Range: minimum 1.
1379
1383
  */
1380
1384
  preferLatencyUnderMs?: number;
1385
+ /**
1386
+ * Optional; omit it and routing is unchanged, with the cheapest source serving. Name the output fields this request must be able to return, for example `offersCount`, and it is served only by a source that returns every one of them. Fields you do not name are still returned whenever the serving source has them. This can raise your price: when the cheapest source cannot return a named field, a dearer source serves, and you are quoted and charged its price. A named field can still be absent on a product that genuinely lacks it. Naming a combination that no single source returns together is refused as invalid input, with no charge.
1387
+ */
1388
+ requireFields?: ("currency" | "image" | "isSponsored" | "listPrice" | "offersCount" | "position" | "price" | "rating" | "reviewsCount")[];
1381
1389
  /**
1382
1390
  * Amazon search or category URL to pull results from (e.g. https://www.amazon.com/s?k=gaming+mouse).
1383
1391
  */
@@ -1401,13 +1409,13 @@ interface AmazonSearchItem {
1401
1409
  */
1402
1410
  isSponsored?: boolean;
1403
1411
  /**
1404
- * Pre-discount list price when on sale; 0 when not discounted.
1412
+ * Pre-discount list price when on sale, 0 when not discounted, or null when the serving source does not publish it.
1405
1413
  */
1406
- listPrice?: number;
1414
+ listPrice?: number | null;
1407
1415
  /**
1408
- * Number of available offers; 0 when unknown.
1416
+ * Number of available offers, or null when the serving source does not publish it.
1409
1417
  */
1410
- offersCount?: number;
1418
+ offersCount?: number | null;
1411
1419
  /**
1412
1420
  * 1-based position of the result on the search page.
1413
1421
  */
@@ -17417,13 +17425,18 @@ interface InstagramProfileContactData {
17417
17425
  * Input for Instagram Reel Transcript (instagram.reel_transcript).
17418
17426
  */
17419
17427
  interface InstagramReelTranscriptInput {
17428
+ /**
17429
+ * Set false to download and host the video only, without transcribing its speech (e.g. false).
17430
+ * Default: true.
17431
+ */
17432
+ includeTranscript?: boolean;
17420
17433
  /**
17421
17434
  * Optional; omit it and routing is unchanged, with the cheapest source serving. Prefer sources whose typical response time (median over the trailing 30 days, as published on this endpoint's lane health) is under this many milliseconds; among those, the cheapest serves. This can raise your price: when the cheapest source misses the target, a faster and dearer one serves, and you are quoted and charged its price. If no source is that fast the request is still served, by whichever source offers the best speed for its price - it is never refused for being slow. Sources we have not timed are tried last. This is a preference, not a guarantee: the median describes past requests and is not a ceiling on this one, and it excludes any wait this request itself asks for. On a paginated walk it applies to the first page only: later pages stay with the source that page chose, at the price it was quoted.
17422
17435
  * Range: minimum 1.
17423
17436
  */
17424
17437
  preferLatencyUnderMs?: number;
17425
17438
  /**
17426
- * The URL of a public Instagram reel or video post with spoken audio (e.g. https://www.instagram.com/reel/C8yKXdRxKqK/).
17439
+ * The URL of a public Instagram reel or video post (e.g. https://www.instagram.com/reel/C8yKXdRxKqK/), or an Instagram CDN media URL you already hold.
17427
17440
  */
17428
17441
  url: string;
17429
17442
  /**
@@ -17434,51 +17447,64 @@ interface InstagramReelTranscriptInput {
17434
17447
  }
17435
17448
  interface InstagramReelTranscriptItem {
17436
17449
  /**
17437
- * The reel's caption text. Empty when the reel has no caption.
17450
+ * Size of the downloaded MP4 in bytes.
17438
17451
  */
17439
- caption?: string;
17452
+ bytes?: number;
17440
17453
  /**
17441
- * Number of comments on the reel.
17454
+ * Video duration in seconds. Absent when there is no transcript, which is what measures it.
17442
17455
  */
17443
- commentCount?: number;
17456
+ durationSeconds?: number;
17444
17457
  /**
17445
- * UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
17458
+ * UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. After this moment the hosted MP4 is deleted.
17446
17459
  */
17447
- createdUtc?: number;
17460
+ expiresUtc?: number;
17448
17461
  /**
17449
- * Video duration in seconds.
17462
+ * A direct link to the downloaded MP4, hosted by AnyAPI and playable without an Instagram session.
17463
+ * Format: uri.
17450
17464
  */
17451
- durationSeconds?: number;
17465
+ hostedUrl?: string;
17452
17466
  /**
17453
- * The reel's numeric Instagram media ID, as a string. Populated whenever the provider has data for the entity.
17467
+ * The reel's numeric Instagram media ID, as a string. Empty when the request supplied a CDN media URL, which carries no post record. Populated whenever the provider has data for the entity.
17454
17468
  */
17455
17469
  id: string;
17456
17470
  /**
17457
- * Detected spoken language (ISO 639-1 code, e.g. "en"). Empty when the upstream omits it.
17471
+ * Detected spoken language (ISO 639-1 code, e.g. "en"). Absent when there is no transcript.
17458
17472
  */
17459
17473
  language?: string;
17460
17474
  /**
17461
- * Number of likes on the reel.
17475
+ * Number of likes on the reel. Absent when the lane that served the lookup does not carry a like count.
17462
17476
  */
17463
17477
  likeCount?: number;
17464
17478
  /**
17465
- * Username of the reel's owner, without the @ prefix. Empty when the upstream omits it.
17479
+ * What kind of media this is, as Instagram labels it (for example a video or an image post).
17480
+ */
17481
+ mediaType?: string;
17482
+ /**
17483
+ * Username of the reel's owner, without the @ prefix. Empty when the request supplied a CDN media URL.
17466
17484
  */
17467
17485
  ownerUsername?: string;
17468
17486
  /**
17469
- * Time-aligned transcript segments, each with its text and start/end offsets in seconds.
17487
+ * Time-aligned transcript segments, each with its text, speaker label, and start/end offsets in seconds. Empty when includeTranscript was false.
17470
17488
  */
17471
17489
  segments?: InstagramReelTranscriptSegment[];
17472
17490
  /**
17473
- * The full speech transcript. Empty when the reel has no detectable spoken audio. Populated whenever the provider has data for the entity.
17491
+ * The reel's short code, the part of its instagram.com URL after /reel/. Empty when the request supplied a CDN media URL.
17492
+ */
17493
+ shortcode?: string;
17494
+ /**
17495
+ * The full speech transcript. Empty when the reel has no detectable spoken audio, and when includeTranscript was false. Populated whenever the provider has data for the entity.
17474
17496
  */
17475
17497
  text: string;
17476
17498
  /**
17477
- * Canonical URL of the reel, with tracking query params stripped. Populated whenever the provider has data for the entity.
17499
+ * A link to the reel's cover image on Instagram. This link is signed by Instagram and stops working after a short time.
17500
+ */
17501
+ thumbnailUrl?: string;
17502
+ /**
17503
+ * The reel URL the request asked for, returned as sent. Populated whenever the provider has data for the entity.
17478
17504
  */
17479
17505
  url: string;
17480
17506
  /**
17481
- * Number of video views.
17507
+ * Number of video views. Absent when the lane that served the lookup does not carry a view count.
17482
17508
  */
17483
17509
  viewCount?: number;
17484
17510
  [extra: string]: unknown;
@@ -17488,6 +17514,10 @@ interface InstagramReelTranscriptSegment {
17488
17514
  * Segment end offset in seconds from the start of the video.
17489
17515
  */
17490
17516
  end?: number;
17517
+ /**
17518
+ * Which speaker said this segment, as a stable label within this transcript (e.g. "0", "1").
17519
+ */
17520
+ speaker?: string;
17491
17521
  /**
17492
17522
  * Segment start offset in seconds from the start of the video.
17493
17523
  */
@@ -17496,6 +17526,25 @@ interface InstagramReelTranscriptSegment {
17496
17526
  * The segment's transcribed text.
17497
17527
  */
17498
17528
  text?: string;
17529
+ /**
17530
+ * Every word in the segment with its own timing. Present only when wordTimestamps was true.
17531
+ */
17532
+ words?: InstagramReelTranscriptWord[];
17533
+ [extra: string]: unknown;
17534
+ }
17535
+ interface InstagramReelTranscriptWord {
17536
+ /**
17537
+ * Word end offset in seconds from the start of the video.
17538
+ */
17539
+ end?: number;
17540
+ /**
17541
+ * Word start offset in seconds from the start of the video.
17542
+ */
17543
+ start?: number;
17544
+ /**
17545
+ * The word as spoken.
17546
+ */
17547
+ text?: string;
17499
17548
  [extra: string]: unknown;
17500
17549
  }
17501
17550
  /**
@@ -17503,7 +17552,7 @@ interface InstagramReelTranscriptSegment {
17503
17552
  */
17504
17553
  interface InstagramReelTranscriptData {
17505
17554
  /**
17506
- * Transcript record for the requested reel (one item), with the full transcript text, timed segments, and source video metadata. Populated whenever the provider has data for the entity.
17555
+ * Record for the requested reel (one item), with its hosted video link, the full transcript text, timed segments, and source video metadata. Populated whenever the provider has data for the entity.
17507
17556
  */
17508
17557
  items: InstagramReelTranscriptItem[];
17509
17558
  }
@@ -18811,7 +18860,7 @@ declare class InstagramNamespace {
18811
18860
  *
18812
18861
  * Fetch a single Instagram post or reel by URL (media URLs, like count, owner, type) as normalized JSON.
18813
18862
  *
18814
- * Price: $0.0012 per request.
18863
+ * Price: $0.0005 per request.
18815
18864
  *
18816
18865
  * @example
18817
18866
  * const res = await client.instagram.post({ url: "https://www.instagram.com/reel/DWzrfE2kaY8/" });
@@ -18871,12 +18920,12 @@ declare class InstagramNamespace {
18871
18920
  /**
18872
18921
  * Instagram Reel Transcript
18873
18922
  *
18874
- * Turn any public Instagram reel or video post into a full speech transcript, with optional word-level timestamps.
18923
+ * Download any public Instagram reel or video post to a hosted MP4 link, with an optional full speech transcript, speaker labels, and word-level timestamps. Transcription runs on MAI-Transcribe-2, chosen for its accuracy and its speaker labels. If you only want the text and not the video file, instagram.media_transcript is the cheaper transcript-only option.
18875
18924
  *
18876
- * Price: $0.0055 per request plus $0.0253 per result (maximum $0.0308).
18925
+ * Price: $0.005 per request plus $0.006 per audio minute (maximum $0.05).
18877
18926
  *
18878
18927
  * @example
18879
- * const res = await client.instagram.reelTranscript({ url: "https://www.instagram.com/reel/DWzrfE2kaY8/", wordTimestamps: false });
18928
+ * const res = await client.instagram.reelTranscript({ url: "https://www.instagram.com/reel/CfY6jCIgH-P/", includeTranscript: true, wordTimestamps: false });
18880
18929
  */
18881
18930
  reelTranscript(input: InstagramReelTranscriptInput, options?: RequestOptions): Promise<RunResult<InstagramReelTranscriptData>>;
18882
18931
  /**
@@ -22840,9 +22889,9 @@ interface LinkedinProfileThinData {
22840
22889
  */
22841
22890
  about?: string;
22842
22891
  /**
22843
- * The profile's published articles.
22892
+ * The profile's published articles, or null when the serving source does not publish them.
22844
22893
  */
22845
- articles?: LinkedinProfileThinArticle[];
22894
+ articles?: LinkedinProfileThinArticle[] | null;
22846
22895
  /**
22847
22896
  * URL of the profile avatar image.
22848
22897
  */
@@ -22869,9 +22918,9 @@ interface LinkedinProfileThinData {
22869
22918
  */
22870
22919
  name: string;
22871
22920
  /**
22872
- * The profile's recent posts.
22921
+ * The profile's recent posts, or null when the serving source does not publish them.
22873
22922
  */
22874
- recentPosts?: LinkedinProfileThinRecentPost[];
22923
+ recentPosts?: LinkedinProfileThinRecentPost[] | null;
22875
22924
  [extra: string]: unknown;
22876
22925
  }
22877
22926
  /**
@@ -33227,9 +33276,9 @@ interface RedditUserPostsPost {
33227
33276
  interface RedditUserPostsMedia {
33228
33277
  height?: number;
33229
33278
  /**
33230
- * One of photo, video, or gif.
33279
+ * One of photo, video, or gif, or null when the serving source wraps a thumbnail it cannot classify.
33231
33280
  */
33232
- type: string;
33281
+ type: string | null;
33233
33282
  /**
33234
33283
  * Image URL. For a video or GIF this is the poster/thumbnail frame.
33235
33284
  * Format: uri.
@@ -42514,7 +42563,7 @@ interface TwitterUserPostsInput {
42514
42563
  */
42515
42564
  preferLatencyUnderMs?: number;
42516
42565
  /**
42517
- * Optional; omit it and routing is unchanged, with the cheapest source serving. Name the output fields this request must be able to return, for example `isReply`, and it is served only by a source that returns every one of them. Fields you do not name are still returned whenever the serving source has them. This can raise your price: when the cheapest source cannot return a named field, a dearer source serves, and you are quoted and charged its price. A named field can still be absent on a tweet that genuinely lacks it. Naming a combination that no single source returns together is refused as invalid input, with no charge. On a paginated walk it applies to the first page only; later pages stay with the source that page chose, at the price it was quoted.
42566
+ * Optional; omit it and routing is unchanged, with the cheapest source serving. Name the output fields this request must be able to return, for example `isPinned` or `isReply`, and it is served only by a source that returns every one of them. Fields you do not name are still returned whenever the serving source has them. This can raise your price: when the cheapest source cannot return a named field, a dearer source serves, and you are quoted and charged its price. A named field can still be absent on a tweet that genuinely lacks it. Naming a combination that no single source returns together is refused as invalid input, with no charge. On a paginated walk it applies to the first page only; later pages stay with the source that page chose, at the price it was quoted.
42518
42567
  */
42519
42568
  requireFields?: ("bookmarks" | "isPinned" | "isReply" | "lang" | "likes" | "media" | "nextCursor" | "quotes" | "replies" | "retweets" | "views")[];
42520
42569
  }
@@ -42532,9 +42581,9 @@ interface TwitterUserPostsTweet {
42532
42581
  */
42533
42582
  id: string;
42534
42583
  /**
42535
- * Whether X marks the post as pinned on the profile.
42584
+ * Whether X marks the post as pinned on the profile, or null when the serving source does not publish it.
42536
42585
  */
42537
- isPinned: boolean;
42586
+ isPinned: boolean | null;
42538
42587
  /**
42539
42588
  * Whether X marks the record as a reply. Certified Posts-tab captures use this for self-thread continuations.
42540
42589
  */
@@ -42623,8 +42672,8 @@ interface TwitterUserTweetsInput {
42623
42672
  */
42624
42673
  handle: string;
42625
42674
  /**
42626
- * Maximum number of authored tweets and replies to return in the current bulk call (1-1000). The provider may return fewer results.
42627
- * Range: minimum 1, maximum 1000.
42675
+ * Maximum number of authored tweets and replies to return in THIS page (1-100). Sources return fewer - most cap at 20 - so read `nextCursor` and pass it back as `cursor` to walk further rather than asking for one large page.
42676
+ * Range: minimum 1, maximum 100.
42628
42677
  * Default: 20.
42629
42678
  */
42630
42679
  limit?: number;
@@ -42634,7 +42683,7 @@ interface TwitterUserTweetsInput {
42634
42683
  */
42635
42684
  preferLatencyUnderMs?: number;
42636
42685
  /**
42637
- * Optional; omit it and routing is unchanged, with the cheapest source serving. Name the output fields this request must be able to return, for example `nextCursor` or `media`, and it is served only by a source that returns every one of them. Fields you do not name are still returned whenever the serving source has them. This can raise your price: when the cheapest source cannot return a named field, a dearer source serves, and you are quoted and charged its price. A named field can still be absent on a post that genuinely lacks it. Naming a combination that no single source returns together is refused as invalid input, with no charge. On a paginated walk it applies to the first page only; later pages stay with the source that page chose, at the price it was quoted.
42686
+ * Optional; omit it and routing is unchanged, with the cheapest source serving. Name the output fields this request must be able to return, for example `isPinned` or `nextCursor`, and it is served only by a source that returns every one of them. Fields you do not name are still returned whenever the serving source has them. This can raise your price: when the cheapest source cannot return a named field, a dearer source serves, and you are quoted and charged its price. A named field can still be absent on a post that genuinely lacks it. Naming a combination that no single source returns together is refused as invalid input, with no charge. On a paginated walk it applies to the first page only; later pages stay with the source that page chose, at the price it was quoted.
42638
42687
  */
42639
42688
  requireFields?: ("bookmarks" | "isPinned" | "isReply" | "lang" | "likes" | "media" | "nextCursor" | "quotes" | "replies" | "retweets" | "views")[];
42640
42689
  /**
@@ -42652,7 +42701,10 @@ interface TwitterUserTweetsTweet {
42652
42701
  * Populated whenever the provider has data for the entity.
42653
42702
  */
42654
42703
  id: string;
42655
- isPinned: boolean;
42704
+ /**
42705
+ * Whether X marks the post as pinned on the profile, or null when the serving source does not publish it.
42706
+ */
42707
+ isPinned: boolean | null;
42656
42708
  isReply?: boolean;
42657
42709
  lang?: string;
42658
42710
  likes: number;
@@ -45275,6 +45327,10 @@ interface YoutubeVideoTranscriptFullInput {
45275
45327
  * Range: minimum 1.
45276
45328
  */
45277
45329
  preferLatencyUnderMs?: number;
45330
+ /**
45331
+ * Optional; omit it and routing is unchanged, with the cheapest source serving. Name the output fields this request must be able to return, for example `isAiGenerated`, and it is served only by a source that returns every one of them. Fields you do not name are still returned whenever the serving source has them. This can raise your price: when the cheapest source cannot return a named field, a dearer source serves, and you are quoted and charged its price. A named field can still be absent on a transcript that genuinely lacks it. Naming a combination that no single source returns together is refused as invalid input, with no charge.
45332
+ */
45333
+ requireFields?: ("channel" | "durationSeconds" | "endSeconds" | "isAiGenerated" | "startSeconds" | "text" | "title")[];
45278
45334
  /**
45279
45335
  * YouTube video or Short URL (e.g. "https://www.youtube.com/watch?v=dQw4w9WgXcQ" or "https://www.youtube.com/shorts/Fir1x9cw2vg").
45280
45336
  */
@@ -45311,9 +45367,9 @@ interface YoutubeVideoTranscriptFullData {
45311
45367
  */
45312
45368
  durationSeconds?: number;
45313
45369
  /**
45314
- * True when the words were recognized from the audio by the serving lane rather than read from any YouTube caption track.
45370
+ * True when the words were recognized from the audio by the serving lane rather than read from any YouTube caption track, or null when the serving source does not say.
45315
45371
  */
45316
- isAiGenerated?: boolean;
45372
+ isAiGenerated?: boolean | null;
45317
45373
  /**
45318
45374
  * 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.
45319
45375
  */
@@ -46337,6 +46393,10 @@ interface ZillowSearchInput {
46337
46393
  * Range: minimum 1.
46338
46394
  */
46339
46395
  preferLatencyUnderMs?: number;
46396
+ /**
46397
+ * Optional; omit it and routing is unchanged, with the cheapest source serving. Name the output fields this request must be able to return, for example `yearBuilt`, and it is served only by a source that returns every one of them. Fields you do not name are still returned whenever the serving source has them. This can raise your price: when the cheapest source cannot return a named field, a dearer source serves, and you are quoted and charged its price. A named field can still be absent on a listing that genuinely lacks it. Naming a combination that no single source returns together is refused as invalid input, with no charge.
46398
+ */
46399
+ requireFields?: ("baths" | "beds" | "city" | "currency" | "daysOnZillow" | "latitude" | "livingArea" | "longitude" | "lotSize" | "price" | "propertyType" | "rentZestimate" | "state" | "status" | "yearBuilt" | "zestimate" | "zipcode")[];
46340
46400
  /**
46341
46401
  * Only show listings with a price reduction. Buy searches only; ignored for rentals (e.g. true).
46342
46402
  */
@@ -46409,7 +46469,10 @@ interface ZillowSearchItem {
46409
46469
  * Absolute Zillow listing URL. Populated whenever the provider has data for the entity.
46410
46470
  */
46411
46471
  url: string;
46412
- yearBuilt?: number;
46472
+ /**
46473
+ * Year the home was built, or null when the serving source does not publish it.
46474
+ */
46475
+ yearBuilt?: number | null;
46413
46476
  /**
46414
46477
  * Zillow estimated market value.
46415
46478
  */
@@ -48631,4 +48694,4 @@ declare class AnyAPI extends AnyAPI$1 {
48631
48694
  get zillow(): ZillowNamespace;
48632
48695
  }
48633
48696
 
48634
- 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, CapterraNamespace, type CapterraReviewsAlternativesConsidered, type CapterraReviewsData, type CapterraReviewsInput, type CapterraReviewsItem, type CapterraReviewsSwitchedFrom, type CatalogEntry, type CatalogOptions, type CatalogSearchResult, type CatalogSearchResults, ChatgptNamespace, type ChatgptSearchAd, type ChatgptSearchCitation, type ChatgptSearchData, type ChatgptSearchEntitie, type ChatgptSearchInput, type ChatgptSearchPlace, type ChatgptSearchSearchResult, type ChatgptSearchShoppingCard, type ClientCore, type ClientOptions, type CoinmarketcapListingsData, type CoinmarketcapListingsInput, type CoinmarketcapListingsItem, CoinmarketcapNamespace, type CompanyEnrichmentCrustdataV3Data, type CompanyEnrichmentCrustdataV3HeadcountTimeserie, type CompanyEnrichmentCrustdataV3Input, type CompanyEnrichmentCrustdataV3SicCode, type CompanyEnrichmentLushaData, type CompanyEnrichmentLushaInput, type CompanyEnrichmentLushaNaicsCode, type CompanyEnrichmentLushaOffice, type CompanyEnrichmentLushaSicCode, CompanyEnrichmentNamespace, type CompanyEnrichmentPeopledatalabsData, type CompanyEnrichmentPeopledatalabsInput, type CompanyEnrichmentPeopledatalabsNaicsCode, type CompanyEnrichmentPeopledatalabsSicCode, type CompanyEnrichmentProspeoData, type CompanyEnrichmentProspeoEvent, type CompanyEnrichmentProspeoInput, CompanyNamespace, type CompanyResearchData, type CompanyResearchInput, type CompanySearchAiArkCompanie, type CompanySearchAiArkData, type CompanySearchAiArkDiversityInvestment, type CompanySearchAiArkFundingRound, type CompanySearchAiArkInput, type CompanySearchAiArkLocation, type CompanySearchAiArkSpotlight, type CompanySearchAiArkTechnologie, type CompanySearchCrustdataV3Companie, type CompanySearchCrustdataV3Data, type CompanySearchCrustdataV3Input, type CompanySearchCrustdataV3Sort, type CompanySearchFullenrichCompanie, type CompanySearchFullenrichCompanyId, type CompanySearchFullenrichData, type CompanySearchFullenrichDomain, type CompanySearchFullenrichFoundedYear, type CompanySearchFullenrichHeadcount, type CompanySearchFullenrichHeadquartersLocation, type CompanySearchFullenrichIndustrie, type CompanySearchFullenrichInput, type CompanySearchFullenrichKeyword, type CompanySearchFullenrichLinkedinUrl, type CompanySearchFullenrichName, type CompanySearchFullenrichOffice, type CompanySearchFullenrichSpecialtie, type CompanySearchFullenrichType, CompanySearchNamespace, type CompanySearchPeopledatalabsCompanie, type CompanySearchPeopledatalabsData, type CompanySearchPeopledatalabsInput, type CompanySearchPeopledatalabsNaicsCode, type CompanySearchPeopledatalabsSicCode, type CompanySearchProspeoCompanie, type CompanySearchProspeoData, type CompanySearchProspeoEvent, type CompanySearchProspeoInput, type CompanySearchQuickenrichCompanie, type CompanySearchQuickenrichData, type CompanySearchQuickenrichInput, type CompanySearchTheirstackCompanie, type CompanySearchTheirstackData, type CompanySearchTheirstackInput, type CompanySearchTheirstackTechnologiesFound, 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 EbayProductData, type EbayProductFullData, type EbayProductFullInput, type EbayProductFullItem, type EbayProductFullSpecification, type EbayProductInput, type EbayProductItem, type EbaySearchData, type EbaySearchInput, type EbaySearchItem, type EbaySoldListingsData, type EbaySoldListingsInput, type EbaySoldListingsItem, type EmailFindData, type EmailFindInput, type EmailFindItem, type EmailFindingDropleadsData, type EmailFindingDropleadsInput, type EmailFindingHunterCountData, type EmailFindingHunterCountInput, type EmailFindingHunterDomainData, type EmailFindingHunterDomainEmail, type EmailFindingHunterDomainInput, type EmailFindingHunterDomainSource, type EmailFindingIcypeasData, type EmailFindingIcypeasEmail, type EmailFindingIcypeasInput, EmailFindingNamespace, type EmailFindingQuickenrichData, type EmailFindingQuickenrichInput, type EmailFindingZerobounceData, type EmailFindingZerobounceDomainData, type EmailFindingZerobounceDomainInput, type EmailFindingZerobounceDomainOtherFormat, type EmailFindingZerobounceInput, EmailNamespace, type EmailVerificationAllegrowData, type EmailVerificationAllegrowInput, type EmailVerificationBouncebanData, type EmailVerificationBouncebanInput, type EmailVerificationIcypeasData, type EmailVerificationIcypeasInput, EmailVerificationNamespace, type EmailVerificationZerobounceActivityData, type EmailVerificationZerobounceActivityInput, type EmailVerificationZerobounceData, type EmailVerificationZerobounceInput, type EmailVerifyData, type EmailVerifyInput, type EmailVerifyItem, type FacebookAdDetailsData, type FacebookAdDetailsFullCreative, type FacebookAdDetailsFullData, type FacebookAdDetailsFullImage, type FacebookAdDetailsFullInput, type FacebookAdDetailsFullVideo, type FacebookAdDetailsInput, type FacebookAdDetailsMedia, type FacebookAdTranscriptData, type FacebookAdTranscriptInput, type FacebookAdsSearchAd, type FacebookAdsSearchData, type FacebookAdsSearchInput, type FacebookAdsSearchMedia, type FacebookCommentRepliesData, type FacebookCommentRepliesInput, type FacebookCommentRepliesReplie, type FacebookCompanyAdsAd, type FacebookCompanyAdsData, type FacebookCompanyAdsInput, type FacebookCompanyAdsMedia, 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 FacebookProfilePostsMedia, 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, G2Namespace, type G2ReviewsData, type G2ReviewsInput, type G2ReviewsItem, 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 GoogleSearch100Data, type GoogleSearch100Input, type GoogleSearch100Result, 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 InstagramHashtagRecentPostsData, type InstagramHashtagRecentPostsInput, type InstagramHashtagRecentPostsMedia, type InstagramHashtagRecentPostsPost, type InstagramHashtagTopPostsData, type InstagramHashtagTopPostsInput, type InstagramHashtagTopPostsMedia, type InstagramHashtagTopPostsPost, type InstagramHighlightDetailData, type InstagramHighlightDetailInput, type InstagramLocationPostsCoauthor, type InstagramLocationPostsData, type InstagramLocationPostsInput, type InstagramLocationPostsPost, type InstagramLocationPostsTaggedUser, type InstagramMediaTranscriptData, type InstagramMediaTranscriptInput, type InstagramMediaTranscriptTranscript, InstagramNamespace, type InstagramPostCommentsComment, type InstagramPostCommentsData, type InstagramPostCommentsInput, type InstagramPostData, type InstagramPostInput, type InstagramPostLikersData, type InstagramPostLikersInput, type InstagramPostLikersLiker, type InstagramProfileBioLink, type InstagramProfileContactData, type InstagramProfileContactInput, 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 InstagramSearchLocationsData, type InstagramSearchLocationsInput, type InstagramSearchLocationsLocation, type InstagramSearchProfilesData, type InstagramSearchProfilesInput, type InstagramSearchProfilesProfile, type InstagramSimilarProfilesData, type InstagramSimilarProfilesInput, type InstagramSimilarProfilesProfile, 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 InstagramUserPostsMedia, type InstagramUserPostsPost, type InstagramUserReelsData, type InstagramUserReelsInput, type InstagramUserReelsMedia, type InstagramUserReelsReel, type InstagramUserRepostsCoauthor, type InstagramUserRepostsData, type InstagramUserRepostsInput, type InstagramUserRepostsPost, type InstagramUserRepostsTaggedUser, InsufficientBalanceError, JobSearchNamespace, type JobSearchTheirstackData, type JobSearchTheirstackInput, type JobSearchTheirstackJob, type JobSearchTheirstackLocation, type LaneHealth, type LinearPricingOffer, type LinkedinAdData, type LinkedinAdInput, type LinkedinAdsData, type LinkedinAdsInput, type LinkedinAdsItem, type LinkedinAdsSearchAd, type LinkedinAdsSearchData, type LinkedinAdsSearchInput, type LinkedinArticleData, type LinkedinArticleInput, 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 LinkedinJobData, type LinkedinJobHiringTeam, type LinkedinJobInput, 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 LinkedinProfileCommentsData, type LinkedinProfileCommentsInput, type LinkedinProfileCommentsItem, 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 LinkedinProfileReactionsBreakdown, type LinkedinProfileReactionsData, type LinkedinProfileReactionsInput, type LinkedinProfileReactionsItem, 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, type NextdoorBusinessData, type NextdoorBusinessInput, type NextdoorBusinessItem, NextdoorNamespace, type NextdoorSearchData, type NextdoorSearchInput, type NextdoorSearchItem, NotFoundError, type Output, type Paginator, type PeopleSearchAiArkCompanyAcquisition, type PeopleSearchAiArkCompanyLocation, type PeopleSearchAiArkCompanyTechnologie, type PeopleSearchAiArkData, type PeopleSearchAiArkEducation, type PeopleSearchAiArkExperience, type PeopleSearchAiArkInput, type PeopleSearchAiArkPeople, type PeopleSearchAiArkPosition, type PeopleSearchAiArkSupportedLocale, type PeopleSearchCrustdataV3AllEmployer, type PeopleSearchCrustdataV3Certification, type PeopleSearchCrustdataV3CurrentEmployer, type PeopleSearchCrustdataV3Data, type PeopleSearchCrustdataV3Input, type PeopleSearchCrustdataV3PastEmployer, type PeopleSearchCrustdataV3Profile, type PeopleSearchFullenrichCurrentCompanyDomain, type PeopleSearchFullenrichCurrentCompanyFoundedYear, type PeopleSearchFullenrichCurrentCompanyHeadcount, type PeopleSearchFullenrichCurrentCompanyHeadquarter, type PeopleSearchFullenrichCurrentCompanyId, type PeopleSearchFullenrichCurrentCompanyIndustrie, type PeopleSearchFullenrichCurrentCompanyLinkedinUrl, type PeopleSearchFullenrichCurrentCompanyName, type PeopleSearchFullenrichCurrentCompanySpecialtie, type PeopleSearchFullenrichCurrentCompanyType, type PeopleSearchFullenrichCurrentPositionJobFunction, type PeopleSearchFullenrichCurrentPositionSeniorityLevel, type PeopleSearchFullenrichCurrentPositionSubFunction, type PeopleSearchFullenrichCurrentPositionTitle, type PeopleSearchFullenrichCurrentPositionYearsIn, type PeopleSearchFullenrichData, type PeopleSearchFullenrichEducation, type PeopleSearchFullenrichInput, type PeopleSearchFullenrichLanguage, type PeopleSearchFullenrichOffice, type PeopleSearchFullenrichPastCompanyDomain, type PeopleSearchFullenrichPastCompanyName, type PeopleSearchFullenrichPastPositionTitle, type PeopleSearchFullenrichPeople, type PeopleSearchFullenrichPersonId, type PeopleSearchFullenrichPersonLanguage, type PeopleSearchFullenrichPersonLinkedinUrl, type PeopleSearchFullenrichPersonLocation, type PeopleSearchFullenrichPersonName, type PeopleSearchFullenrichPersonSkill, type PeopleSearchLushaData, type PeopleSearchLushaInput, type PeopleSearchLushaPeople, PeopleSearchNamespace, type PeopleSearchPeopledatalabsData, type PeopleSearchPeopledatalabsEducation, type PeopleSearchPeopledatalabsEmail, type PeopleSearchPeopledatalabsExperience, type PeopleSearchPeopledatalabsInput, type PeopleSearchPeopledatalabsPeople, type PeopleSearchPeopledatalabsProfile, type PeopleSearchProspeoData, type PeopleSearchProspeoEvent, type PeopleSearchProspeoInput, type PeopleSearchProspeoJobHistory, type PeopleSearchProspeoPeople, type PeopleSearchQuickenrichCompanyData, type PeopleSearchQuickenrichCompanyInput, type PeopleSearchQuickenrichCompanyPeople, type PeopleSearchQuickenrichData, type PeopleSearchQuickenrichInput, type PeopleSearchQuickenrichPeople, PerplexityNamespace, type PerplexitySearchCitation, type PerplexitySearchData, type PerplexitySearchInput, type PersonEnrichmentBettercontactData, type PersonEnrichmentBettercontactInput, type PersonEnrichmentFullenrichBulkContact, type PersonEnrichmentFullenrichBulkData, type PersonEnrichmentFullenrichBulkEducation, type PersonEnrichmentFullenrichBulkEmploymentHistory, type PersonEnrichmentFullenrichBulkInput, type PersonEnrichmentFullenrichBulkLanguage, type PersonEnrichmentFullenrichBulkOffice, type PersonEnrichmentFullenrichBulkPersonalEmail, type PersonEnrichmentFullenrichBulkWorkEmail, type PersonEnrichmentFullenrichReverseEmailContact, type PersonEnrichmentFullenrichReverseEmailData, type PersonEnrichmentFullenrichReverseEmailEducation, type PersonEnrichmentFullenrichReverseEmailEmploymentHistory, type PersonEnrichmentFullenrichReverseEmailInput, type PersonEnrichmentFullenrichReverseEmailLanguage, type PersonEnrichmentFullenrichReverseEmailOffice, type PersonEnrichmentLushaData, type PersonEnrichmentLushaEmail, type PersonEnrichmentLushaInput, type PersonEnrichmentLushaNaicsCode, type PersonEnrichmentLushaPhone, type PersonEnrichmentLushaSicCode, PersonEnrichmentNamespace, type PersonEnrichmentPeopledatalabsData, type PersonEnrichmentPeopledatalabsEducation, type PersonEnrichmentPeopledatalabsEmail, type PersonEnrichmentPeopledatalabsExperience, type PersonEnrichmentPeopledatalabsInput, type PersonEnrichmentPeopledatalabsProfile, type PersonEnrichmentPeopledatalabsStreetAddresse, type PersonEnrichmentProspeoData, type PersonEnrichmentProspeoEvent, type PersonEnrichmentProspeoInput, type PersonEnrichmentProspeoJobHistory, type PersonEnrichmentQuickenrichData, type PersonEnrichmentQuickenrichInput, 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 RedditPostCommentsMedia, type RedditPostData, type RedditPostInput, type RedditPostTranscriptData, type RedditPostTranscriptInput, type RedditProfileData, type RedditProfileInput, type RedditSearchData, type RedditSearchInput, type RedditSearchMedia, 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 RedditUserPostsMedia, 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 SeoDomainTechnologiesData, type SeoDomainTechnologiesInput, type SeoDomainsByTechnologyData, type SeoDomainsByTechnologyDomain, type SeoDomainsByTechnologyInput, 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 SubstackPostsComment, type SubstackPostsData, type SubstackPostsInput, type SubstackPostsItem, type SubstackPostsReplie, TechnographicsNamespace, type TechnographicsTheirstackData, type TechnographicsTheirstackInput, type TechnographicsTheirstackTechnologie, 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 TiktokPhotosData, type TiktokPhotosImage, type TiktokPhotosInput, type TiktokProfileContactData, type TiktokProfileContactEmail, type TiktokProfileContactInput, type TiktokProfileContactSocialLink, 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, type TiktokShopCategoriesCategorie, type TiktokShopCategoriesChildren, type TiktokShopCategoriesData, type TiktokShopCategoriesInput, type TiktokShopCategoryProductsData, type TiktokShopCategoryProductsInput, type TiktokShopCategoryProductsItem, type TiktokShopCreatorAudienceAge, type TiktokShopCreatorAudienceGender, type TiktokShopCreatorAudienceLocation, type TiktokShopCreatorCategorie, type TiktokShopCreatorData, type TiktokShopCreatorInput, TiktokShopNamespace, type TiktokShopProductData, type TiktokShopProductFullData, type TiktokShopProductFullInput, type TiktokShopProductInput, type TiktokShopProductReviewsData, type TiktokShopProductReviewsInput, type TiktokShopProductReviewsReview, type TiktokShopSearchData, type TiktokShopSearchInput, type TiktokShopSearchItem, type TiktokShopSearchSuggestionsData, type TiktokShopSearchSuggestionsInput, 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 TiktokTrendingHashtagsData, type TiktokTrendingHashtagsInput, type TiktokTrendingHashtagsItem, type TiktokTrendingHashtagsPopularity, type TiktokTrendingHashtagsTopCreator, type TiktokVideoCommentsComment, type TiktokVideoCommentsData, type TiktokVideoCommentsInput, type TiktokVideoData, type TiktokVideoDownloadData, type TiktokVideoDownloadInput, 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 TwitterRepliesMedia, type TwitterSearchCommunitiesCommunitie, type TwitterSearchCommunitiesData, type TwitterSearchCommunitiesInput, type TwitterSearchData, type TwitterSearchInput, type TwitterSearchItem, type TwitterSearchMedia, type TwitterSearchUsersData, type TwitterSearchUsersInput, type TwitterSearchUsersUser, type TwitterThreadData, type TwitterThreadInput, type TwitterThreadMedia, type TwitterThreadTweet, type TwitterTrendsData, type TwitterTrendsInput, type TwitterTrendsItem, type TwitterTweetData, type TwitterTweetInput, type TwitterTweetMedia, type TwitterTweetTranscriptData, type TwitterTweetTranscriptInput, type TwitterUserPostsData, type TwitterUserPostsInput, type TwitterUserPostsMedia, type TwitterUserPostsTweet, type TwitterUserTweetsData, type TwitterUserTweetsInput, type TwitterUserTweetsMedia, 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 YoutubeChannelContactData, type YoutubeChannelContactInput, 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 YoutubeSearchShortsData, type YoutubeSearchShortsInput, type YoutubeSearchShortsShort, 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 };
48697
+ 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, CapterraNamespace, type CapterraReviewsAlternativesConsidered, type CapterraReviewsData, type CapterraReviewsInput, type CapterraReviewsItem, type CapterraReviewsSwitchedFrom, type CatalogEntry, type CatalogOptions, type CatalogSearchResult, type CatalogSearchResults, ChatgptNamespace, type ChatgptSearchAd, type ChatgptSearchCitation, type ChatgptSearchData, type ChatgptSearchEntitie, type ChatgptSearchInput, type ChatgptSearchPlace, type ChatgptSearchSearchResult, type ChatgptSearchShoppingCard, type ClientCore, type ClientOptions, type CoinmarketcapListingsData, type CoinmarketcapListingsInput, type CoinmarketcapListingsItem, CoinmarketcapNamespace, type CompanyEnrichmentCrustdataV3Data, type CompanyEnrichmentCrustdataV3HeadcountTimeserie, type CompanyEnrichmentCrustdataV3Input, type CompanyEnrichmentCrustdataV3SicCode, type CompanyEnrichmentLushaData, type CompanyEnrichmentLushaInput, type CompanyEnrichmentLushaNaicsCode, type CompanyEnrichmentLushaOffice, type CompanyEnrichmentLushaSicCode, CompanyEnrichmentNamespace, type CompanyEnrichmentPeopledatalabsData, type CompanyEnrichmentPeopledatalabsInput, type CompanyEnrichmentPeopledatalabsNaicsCode, type CompanyEnrichmentPeopledatalabsSicCode, type CompanyEnrichmentProspeoData, type CompanyEnrichmentProspeoEvent, type CompanyEnrichmentProspeoInput, CompanyNamespace, type CompanyResearchData, type CompanyResearchInput, type CompanySearchAiArkCompanie, type CompanySearchAiArkData, type CompanySearchAiArkDiversityInvestment, type CompanySearchAiArkFundingRound, type CompanySearchAiArkInput, type CompanySearchAiArkLocation, type CompanySearchAiArkSpotlight, type CompanySearchAiArkTechnologie, type CompanySearchCrustdataV3Companie, type CompanySearchCrustdataV3Data, type CompanySearchCrustdataV3Input, type CompanySearchCrustdataV3Sort, type CompanySearchFullenrichCompanie, type CompanySearchFullenrichCompanyId, type CompanySearchFullenrichData, type CompanySearchFullenrichDomain, type CompanySearchFullenrichFoundedYear, type CompanySearchFullenrichHeadcount, type CompanySearchFullenrichHeadquartersLocation, type CompanySearchFullenrichIndustrie, type CompanySearchFullenrichInput, type CompanySearchFullenrichKeyword, type CompanySearchFullenrichLinkedinUrl, type CompanySearchFullenrichName, type CompanySearchFullenrichOffice, type CompanySearchFullenrichSpecialtie, type CompanySearchFullenrichType, CompanySearchNamespace, type CompanySearchPeopledatalabsCompanie, type CompanySearchPeopledatalabsData, type CompanySearchPeopledatalabsInput, type CompanySearchPeopledatalabsNaicsCode, type CompanySearchPeopledatalabsSicCode, type CompanySearchProspeoCompanie, type CompanySearchProspeoData, type CompanySearchProspeoEvent, type CompanySearchProspeoInput, type CompanySearchQuickenrichCompanie, type CompanySearchQuickenrichData, type CompanySearchQuickenrichInput, type CompanySearchTheirstackCompanie, type CompanySearchTheirstackData, type CompanySearchTheirstackInput, type CompanySearchTheirstackTechnologiesFound, 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 EbayProductData, type EbayProductFullData, type EbayProductFullInput, type EbayProductFullItem, type EbayProductFullSpecification, type EbayProductInput, type EbayProductItem, type EbaySearchData, type EbaySearchInput, type EbaySearchItem, type EbaySoldListingsData, type EbaySoldListingsInput, type EbaySoldListingsItem, type EmailFindData, type EmailFindInput, type EmailFindItem, type EmailFindingDropleadsData, type EmailFindingDropleadsInput, type EmailFindingHunterCountData, type EmailFindingHunterCountInput, type EmailFindingHunterDomainData, type EmailFindingHunterDomainEmail, type EmailFindingHunterDomainInput, type EmailFindingHunterDomainSource, type EmailFindingIcypeasData, type EmailFindingIcypeasEmail, type EmailFindingIcypeasInput, EmailFindingNamespace, type EmailFindingQuickenrichData, type EmailFindingQuickenrichInput, type EmailFindingZerobounceData, type EmailFindingZerobounceDomainData, type EmailFindingZerobounceDomainInput, type EmailFindingZerobounceDomainOtherFormat, type EmailFindingZerobounceInput, EmailNamespace, type EmailVerificationAllegrowData, type EmailVerificationAllegrowInput, type EmailVerificationBouncebanData, type EmailVerificationBouncebanInput, type EmailVerificationIcypeasData, type EmailVerificationIcypeasInput, EmailVerificationNamespace, type EmailVerificationZerobounceActivityData, type EmailVerificationZerobounceActivityInput, type EmailVerificationZerobounceData, type EmailVerificationZerobounceInput, type EmailVerifyData, type EmailVerifyInput, type EmailVerifyItem, type FacebookAdDetailsData, type FacebookAdDetailsFullCreative, type FacebookAdDetailsFullData, type FacebookAdDetailsFullImage, type FacebookAdDetailsFullInput, type FacebookAdDetailsFullVideo, type FacebookAdDetailsInput, type FacebookAdDetailsMedia, type FacebookAdTranscriptData, type FacebookAdTranscriptInput, type FacebookAdsSearchAd, type FacebookAdsSearchData, type FacebookAdsSearchInput, type FacebookAdsSearchMedia, type FacebookCommentRepliesData, type FacebookCommentRepliesInput, type FacebookCommentRepliesReplie, type FacebookCompanyAdsAd, type FacebookCompanyAdsData, type FacebookCompanyAdsInput, type FacebookCompanyAdsMedia, 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 FacebookProfilePostsMedia, 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, G2Namespace, type G2ReviewsData, type G2ReviewsInput, type G2ReviewsItem, 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 GoogleSearch100Data, type GoogleSearch100Input, type GoogleSearch100Result, 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 InstagramHashtagRecentPostsData, type InstagramHashtagRecentPostsInput, type InstagramHashtagRecentPostsMedia, type InstagramHashtagRecentPostsPost, type InstagramHashtagTopPostsData, type InstagramHashtagTopPostsInput, type InstagramHashtagTopPostsMedia, type InstagramHashtagTopPostsPost, type InstagramHighlightDetailData, type InstagramHighlightDetailInput, type InstagramLocationPostsCoauthor, type InstagramLocationPostsData, type InstagramLocationPostsInput, type InstagramLocationPostsPost, type InstagramLocationPostsTaggedUser, type InstagramMediaTranscriptData, type InstagramMediaTranscriptInput, type InstagramMediaTranscriptTranscript, InstagramNamespace, type InstagramPostCommentsComment, type InstagramPostCommentsData, type InstagramPostCommentsInput, type InstagramPostData, type InstagramPostInput, type InstagramPostLikersData, type InstagramPostLikersInput, type InstagramPostLikersLiker, type InstagramProfileBioLink, type InstagramProfileContactData, type InstagramProfileContactInput, type InstagramProfileData, type InstagramProfileInput, type InstagramReelTranscriptData, type InstagramReelTranscriptInput, type InstagramReelTranscriptItem, type InstagramReelTranscriptSegment, type InstagramReelTranscriptWord, type InstagramReelsSearchData, type InstagramReelsSearchInput, type InstagramReelsSearchReel, type InstagramSearchData, type InstagramSearchHashtagData, type InstagramSearchHashtagInput, type InstagramSearchHashtagPost, type InstagramSearchInput, type InstagramSearchItem, type InstagramSearchLocationsData, type InstagramSearchLocationsInput, type InstagramSearchLocationsLocation, type InstagramSearchProfilesData, type InstagramSearchProfilesInput, type InstagramSearchProfilesProfile, type InstagramSimilarProfilesData, type InstagramSimilarProfilesInput, type InstagramSimilarProfilesProfile, 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 InstagramUserPostsMedia, type InstagramUserPostsPost, type InstagramUserReelsData, type InstagramUserReelsInput, type InstagramUserReelsMedia, type InstagramUserReelsReel, type InstagramUserRepostsCoauthor, type InstagramUserRepostsData, type InstagramUserRepostsInput, type InstagramUserRepostsPost, type InstagramUserRepostsTaggedUser, InsufficientBalanceError, JobSearchNamespace, type JobSearchTheirstackData, type JobSearchTheirstackInput, type JobSearchTheirstackJob, type JobSearchTheirstackLocation, type LaneHealth, type LinearPricingOffer, type LinkedinAdData, type LinkedinAdInput, type LinkedinAdsData, type LinkedinAdsInput, type LinkedinAdsItem, type LinkedinAdsSearchAd, type LinkedinAdsSearchData, type LinkedinAdsSearchInput, type LinkedinArticleData, type LinkedinArticleInput, 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 LinkedinJobData, type LinkedinJobHiringTeam, type LinkedinJobInput, 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 LinkedinProfileCommentsData, type LinkedinProfileCommentsInput, type LinkedinProfileCommentsItem, 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 LinkedinProfileReactionsBreakdown, type LinkedinProfileReactionsData, type LinkedinProfileReactionsInput, type LinkedinProfileReactionsItem, 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, type NextdoorBusinessData, type NextdoorBusinessInput, type NextdoorBusinessItem, NextdoorNamespace, type NextdoorSearchData, type NextdoorSearchInput, type NextdoorSearchItem, NotFoundError, type Output, type Paginator, type PeopleSearchAiArkCompanyAcquisition, type PeopleSearchAiArkCompanyLocation, type PeopleSearchAiArkCompanyTechnologie, type PeopleSearchAiArkData, type PeopleSearchAiArkEducation, type PeopleSearchAiArkExperience, type PeopleSearchAiArkInput, type PeopleSearchAiArkPeople, type PeopleSearchAiArkPosition, type PeopleSearchAiArkSupportedLocale, type PeopleSearchCrustdataV3AllEmployer, type PeopleSearchCrustdataV3Certification, type PeopleSearchCrustdataV3CurrentEmployer, type PeopleSearchCrustdataV3Data, type PeopleSearchCrustdataV3Input, type PeopleSearchCrustdataV3PastEmployer, type PeopleSearchCrustdataV3Profile, type PeopleSearchFullenrichCurrentCompanyDomain, type PeopleSearchFullenrichCurrentCompanyFoundedYear, type PeopleSearchFullenrichCurrentCompanyHeadcount, type PeopleSearchFullenrichCurrentCompanyHeadquarter, type PeopleSearchFullenrichCurrentCompanyId, type PeopleSearchFullenrichCurrentCompanyIndustrie, type PeopleSearchFullenrichCurrentCompanyLinkedinUrl, type PeopleSearchFullenrichCurrentCompanyName, type PeopleSearchFullenrichCurrentCompanySpecialtie, type PeopleSearchFullenrichCurrentCompanyType, type PeopleSearchFullenrichCurrentPositionJobFunction, type PeopleSearchFullenrichCurrentPositionSeniorityLevel, type PeopleSearchFullenrichCurrentPositionSubFunction, type PeopleSearchFullenrichCurrentPositionTitle, type PeopleSearchFullenrichCurrentPositionYearsIn, type PeopleSearchFullenrichData, type PeopleSearchFullenrichEducation, type PeopleSearchFullenrichInput, type PeopleSearchFullenrichLanguage, type PeopleSearchFullenrichOffice, type PeopleSearchFullenrichPastCompanyDomain, type PeopleSearchFullenrichPastCompanyName, type PeopleSearchFullenrichPastPositionTitle, type PeopleSearchFullenrichPeople, type PeopleSearchFullenrichPersonId, type PeopleSearchFullenrichPersonLanguage, type PeopleSearchFullenrichPersonLinkedinUrl, type PeopleSearchFullenrichPersonLocation, type PeopleSearchFullenrichPersonName, type PeopleSearchFullenrichPersonSkill, type PeopleSearchLushaData, type PeopleSearchLushaInput, type PeopleSearchLushaPeople, PeopleSearchNamespace, type PeopleSearchPeopledatalabsData, type PeopleSearchPeopledatalabsEducation, type PeopleSearchPeopledatalabsEmail, type PeopleSearchPeopledatalabsExperience, type PeopleSearchPeopledatalabsInput, type PeopleSearchPeopledatalabsPeople, type PeopleSearchPeopledatalabsProfile, type PeopleSearchProspeoData, type PeopleSearchProspeoEvent, type PeopleSearchProspeoInput, type PeopleSearchProspeoJobHistory, type PeopleSearchProspeoPeople, type PeopleSearchQuickenrichCompanyData, type PeopleSearchQuickenrichCompanyInput, type PeopleSearchQuickenrichCompanyPeople, type PeopleSearchQuickenrichData, type PeopleSearchQuickenrichInput, type PeopleSearchQuickenrichPeople, PerplexityNamespace, type PerplexitySearchCitation, type PerplexitySearchData, type PerplexitySearchInput, type PersonEnrichmentBettercontactData, type PersonEnrichmentBettercontactInput, type PersonEnrichmentFullenrichBulkContact, type PersonEnrichmentFullenrichBulkData, type PersonEnrichmentFullenrichBulkEducation, type PersonEnrichmentFullenrichBulkEmploymentHistory, type PersonEnrichmentFullenrichBulkInput, type PersonEnrichmentFullenrichBulkLanguage, type PersonEnrichmentFullenrichBulkOffice, type PersonEnrichmentFullenrichBulkPersonalEmail, type PersonEnrichmentFullenrichBulkWorkEmail, type PersonEnrichmentFullenrichReverseEmailContact, type PersonEnrichmentFullenrichReverseEmailData, type PersonEnrichmentFullenrichReverseEmailEducation, type PersonEnrichmentFullenrichReverseEmailEmploymentHistory, type PersonEnrichmentFullenrichReverseEmailInput, type PersonEnrichmentFullenrichReverseEmailLanguage, type PersonEnrichmentFullenrichReverseEmailOffice, type PersonEnrichmentLushaData, type PersonEnrichmentLushaEmail, type PersonEnrichmentLushaInput, type PersonEnrichmentLushaNaicsCode, type PersonEnrichmentLushaPhone, type PersonEnrichmentLushaSicCode, PersonEnrichmentNamespace, type PersonEnrichmentPeopledatalabsData, type PersonEnrichmentPeopledatalabsEducation, type PersonEnrichmentPeopledatalabsEmail, type PersonEnrichmentPeopledatalabsExperience, type PersonEnrichmentPeopledatalabsInput, type PersonEnrichmentPeopledatalabsProfile, type PersonEnrichmentPeopledatalabsStreetAddresse, type PersonEnrichmentProspeoData, type PersonEnrichmentProspeoEvent, type PersonEnrichmentProspeoInput, type PersonEnrichmentProspeoJobHistory, type PersonEnrichmentQuickenrichData, type PersonEnrichmentQuickenrichInput, 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 RedditPostCommentsMedia, type RedditPostData, type RedditPostInput, type RedditPostTranscriptData, type RedditPostTranscriptInput, type RedditProfileData, type RedditProfileInput, type RedditSearchData, type RedditSearchInput, type RedditSearchMedia, 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 RedditUserPostsMedia, 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 SeoDomainTechnologiesData, type SeoDomainTechnologiesInput, type SeoDomainsByTechnologyData, type SeoDomainsByTechnologyDomain, type SeoDomainsByTechnologyInput, 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 SubstackPostsComment, type SubstackPostsData, type SubstackPostsInput, type SubstackPostsItem, type SubstackPostsReplie, TechnographicsNamespace, type TechnographicsTheirstackData, type TechnographicsTheirstackInput, type TechnographicsTheirstackTechnologie, 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 TiktokPhotosData, type TiktokPhotosImage, type TiktokPhotosInput, type TiktokProfileContactData, type TiktokProfileContactEmail, type TiktokProfileContactInput, type TiktokProfileContactSocialLink, 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, type TiktokShopCategoriesCategorie, type TiktokShopCategoriesChildren, type TiktokShopCategoriesData, type TiktokShopCategoriesInput, type TiktokShopCategoryProductsData, type TiktokShopCategoryProductsInput, type TiktokShopCategoryProductsItem, type TiktokShopCreatorAudienceAge, type TiktokShopCreatorAudienceGender, type TiktokShopCreatorAudienceLocation, type TiktokShopCreatorCategorie, type TiktokShopCreatorData, type TiktokShopCreatorInput, TiktokShopNamespace, type TiktokShopProductData, type TiktokShopProductFullData, type TiktokShopProductFullInput, type TiktokShopProductInput, type TiktokShopProductReviewsData, type TiktokShopProductReviewsInput, type TiktokShopProductReviewsReview, type TiktokShopSearchData, type TiktokShopSearchInput, type TiktokShopSearchItem, type TiktokShopSearchSuggestionsData, type TiktokShopSearchSuggestionsInput, 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 TiktokTrendingHashtagsData, type TiktokTrendingHashtagsInput, type TiktokTrendingHashtagsItem, type TiktokTrendingHashtagsPopularity, type TiktokTrendingHashtagsTopCreator, type TiktokVideoCommentsComment, type TiktokVideoCommentsData, type TiktokVideoCommentsInput, type TiktokVideoData, type TiktokVideoDownloadData, type TiktokVideoDownloadInput, 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 TwitterRepliesMedia, type TwitterSearchCommunitiesCommunitie, type TwitterSearchCommunitiesData, type TwitterSearchCommunitiesInput, type TwitterSearchData, type TwitterSearchInput, type TwitterSearchItem, type TwitterSearchMedia, type TwitterSearchUsersData, type TwitterSearchUsersInput, type TwitterSearchUsersUser, type TwitterThreadData, type TwitterThreadInput, type TwitterThreadMedia, type TwitterThreadTweet, type TwitterTrendsData, type TwitterTrendsInput, type TwitterTrendsItem, type TwitterTweetData, type TwitterTweetInput, type TwitterTweetMedia, type TwitterTweetTranscriptData, type TwitterTweetTranscriptInput, type TwitterUserPostsData, type TwitterUserPostsInput, type TwitterUserPostsMedia, type TwitterUserPostsTweet, type TwitterUserTweetsData, type TwitterUserTweetsInput, type TwitterUserTweetsMedia, 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 YoutubeChannelContactData, type YoutubeChannelContactInput, 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 YoutubeSearchShortsData, type YoutubeSearchShortsInput, type YoutubeSearchShortsShort, 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 };