@getanyapi/sdk 0.15.2 → 0.16.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -977,6 +977,7 @@ interface AmazonBestsellersInput {
977
977
  /**
978
978
  * Maximum number of results to return (1-20, default 20). You are billed per result returned, so a lower limit costs less.
979
979
  * Range: minimum 1, maximum 20.
980
+ * Default: 20.
980
981
  */
981
982
  limit?: number;
982
983
  /**
@@ -1142,6 +1143,7 @@ interface AmazonReviewsInput {
1142
1143
  /**
1143
1144
  * Maximum number of results to return (1-50, default 50). You are billed per result returned, so a lower limit costs less.
1144
1145
  * Range: minimum 1, maximum 50.
1146
+ * Default: 50.
1145
1147
  */
1146
1148
  limit?: number;
1147
1149
  /**
@@ -1221,6 +1223,7 @@ interface AmazonSearchInput {
1221
1223
  /**
1222
1224
  * Maximum number of results to return (1-20, default 20). You are billed per result returned, so a lower limit costs less.
1223
1225
  * Range: minimum 1, maximum 20.
1226
+ * Default: 20.
1224
1227
  */
1225
1228
  limit?: number;
1226
1229
  /**
@@ -1307,7 +1310,7 @@ declare class AmazonNamespace {
1307
1310
  *
1308
1311
  * List the top-ranked products of any Amazon Best Sellers category (rank, title, price, and rating) in one normalized request.
1309
1312
  *
1310
- * Price: $0 per request plus $0.00431 per result (maximum $0.0861).
1313
+ * Price: $0.0009 per request.
1311
1314
  *
1312
1315
  * @example
1313
1316
  * const res = await client.amazon.bestsellers({ url: "https://www.amazon.com/gp/bestsellers/electronics", limit: 3 });
@@ -1329,7 +1332,7 @@ declare class AmazonNamespace {
1329
1332
  *
1330
1333
  * Pull up to 50 customer reviews for any Amazon product by ASIN or URL: rating, title, text, date, and verified-purchase badge.
1331
1334
  *
1332
- * Price: $0.018 per request.
1335
+ * Price: $0.0018 per request.
1333
1336
  *
1334
1337
  * @example
1335
1338
  * const res = await client.amazon.reviews({ product: "B07PXGQC1Q", limit: 3 });
@@ -1340,7 +1343,7 @@ declare class AmazonNamespace {
1340
1343
  *
1341
1344
  * Search Amazon from any search or category URL and get up to 20 matching products (title, price, rating, and thumbnail) in one normalized response.
1342
1345
  *
1343
- * Price: $0 per request plus $0.00368 per result (maximum $0.0735).
1346
+ * Price: $0.0009 per request.
1344
1347
  *
1345
1348
  * @example
1346
1349
  * const res = await client.amazon.search({ url: "https://www.amazon.com/s?k=laptop", limit: 3 });
@@ -11372,6 +11375,655 @@ interface LinkedinProfileData {
11372
11375
  verified?: boolean;
11373
11376
  [extra: string]: unknown;
11374
11377
  }
11378
+ /**
11379
+ * Input for LinkedIn Profile Posts (full) (linkedin.profile_posts_full).
11380
+ */
11381
+ interface LinkedinProfilePostsFullInput {
11382
+ /**
11383
+ * Regional LinkedIn context used when retrieving posts.
11384
+ * One of: any, US, GB, DE, FR.
11385
+ */
11386
+ contextCountry?: "any" | "US" | "GB" | "DE" | "FR";
11387
+ /**
11388
+ * Whether to include quote posts that add commentary to shared content.
11389
+ * Default: true.
11390
+ */
11391
+ includeQuotePosts?: boolean;
11392
+ /**
11393
+ * Whether to include reposts that share content without added commentary.
11394
+ * Default: true.
11395
+ */
11396
+ includeReposts?: boolean;
11397
+ /**
11398
+ * Maximum number of posts to return (1-100, default 10). You are billed per post returned, so a lower limit costs less.
11399
+ * Range: minimum 1, maximum 100.
11400
+ * Default: 10.
11401
+ */
11402
+ limit?: number;
11403
+ /**
11404
+ * Only return posts published within this relative time window.
11405
+ * One of: any, 1h, 24h, week, month, 3months, 6months, year.
11406
+ */
11407
+ postedLimit?: "any" | "1h" | "24h" | "week" | "month" | "3months" | "6months" | "year";
11408
+ /**
11409
+ * Only return posts published on or after this date or timestamp, using a JavaScript-compatible date-time string.
11410
+ */
11411
+ postedLimitDate?: string;
11412
+ /**
11413
+ * Full URL of the public LinkedIn profile whose posts should be returned.
11414
+ * Format: uri.
11415
+ */
11416
+ url: string;
11417
+ }
11418
+ interface LinkedinProfilePostsFullItem {
11419
+ /**
11420
+ * Description excerpt of the attached article, when present.
11421
+ */
11422
+ articleDescription?: string;
11423
+ /**
11424
+ * Image URL of the attached article, when present.
11425
+ * Format: uri.
11426
+ */
11427
+ articleImage?: string;
11428
+ /**
11429
+ * Height of the attached article image in pixels.
11430
+ * Range: minimum 0.
11431
+ */
11432
+ articleImageHeight?: number;
11433
+ /**
11434
+ * Width of the attached article image in pixels.
11435
+ * Range: minimum 0.
11436
+ */
11437
+ articleImageWidth?: number;
11438
+ /**
11439
+ * Accessible display label for the attached article link, when present.
11440
+ */
11441
+ articleLinkLabel?: string;
11442
+ /**
11443
+ * Subtitle or publisher label of the attached article, when present.
11444
+ */
11445
+ articleSubtitle?: string;
11446
+ /**
11447
+ * Title of the attached article, when present.
11448
+ */
11449
+ articleTitle?: string;
11450
+ /**
11451
+ * Canonical URL of the attached article, when present.
11452
+ * Format: uri.
11453
+ */
11454
+ articleUrl?: string;
11455
+ /**
11456
+ * Detailed identity and publication information for the post author. Populated whenever the provider has data for the entity.
11457
+ * Present whenever the upstream returns this record.
11458
+ */
11459
+ author?: {
11460
+ /**
11461
+ * Public LinkedIn profile handle of the author. Populated whenever the provider has data for the entity.
11462
+ * Present whenever the upstream returns this record.
11463
+ */
11464
+ handle?: string;
11465
+ /**
11466
+ * Professional headline or follower summary displayed for the author. Populated whenever the provider has data for the entity.
11467
+ * Present whenever the upstream returns this record.
11468
+ */
11469
+ headline?: string;
11470
+ /**
11471
+ * Stable LinkedIn identifier of the author.
11472
+ */
11473
+ id?: string;
11474
+ /**
11475
+ * Profile or company image URL of the author. Populated whenever the provider has data for the entity.
11476
+ * Format: uri.
11477
+ * Present whenever the upstream returns this record.
11478
+ */
11479
+ image?: string;
11480
+ /**
11481
+ * Height of the author image in pixels.
11482
+ * Range: minimum 0.
11483
+ */
11484
+ imageHeight?: number;
11485
+ /**
11486
+ * Width of the author image in pixels.
11487
+ * Range: minimum 0.
11488
+ */
11489
+ imageWidth?: number;
11490
+ /**
11491
+ * Display name of the author.
11492
+ */
11493
+ name?: string;
11494
+ /**
11495
+ * Canonical LinkedIn profile or company URL of the author. Populated whenever the provider has data for the entity.
11496
+ * Format: uri.
11497
+ * Present whenever the upstream returns this record.
11498
+ */
11499
+ profileUrl?: string;
11500
+ /**
11501
+ * Author kind, such as profile or company.
11502
+ */
11503
+ type?: string;
11504
+ /**
11505
+ * Universal LinkedIn name used for company authors, when present.
11506
+ */
11507
+ universalName?: string;
11508
+ /**
11509
+ * Publication or website URL displayed by the author.
11510
+ * Format: uri.
11511
+ */
11512
+ website?: string;
11513
+ /**
11514
+ * Display label for the author's publication or website link.
11515
+ */
11516
+ websiteLabel?: string;
11517
+ };
11518
+ /**
11519
+ * Structured mentions and links embedded in the post text.
11520
+ */
11521
+ contentAnnotations?: LinkedinProfilePostsFullContentAnnotation[];
11522
+ /**
11523
+ * UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. Populated whenever the provider has data for the entity.
11524
+ */
11525
+ createdUtc: number;
11526
+ /**
11527
+ * Engagement totals and reaction breakdown for the post. Populated whenever the provider has data for the entity.
11528
+ * Present whenever the upstream returns this record.
11529
+ */
11530
+ engagement?: {
11531
+ /**
11532
+ * Counts grouped by LinkedIn reaction type.
11533
+ */
11534
+ breakdown?: LinkedinProfilePostsFullBreakdown[];
11535
+ /**
11536
+ * Total number of comments on the post. Populated whenever the provider has data for the entity.
11537
+ * Range: minimum 0.
11538
+ * Present whenever the upstream returns this record.
11539
+ */
11540
+ comments?: number;
11541
+ /**
11542
+ * Total number of reactions on the post. Populated whenever the provider has data for the entity.
11543
+ * Range: minimum 0.
11544
+ * Present whenever the upstream returns this record.
11545
+ */
11546
+ reactions?: number;
11547
+ /**
11548
+ * Total number of reposts or shares of the post. Populated whenever the provider has data for the entity.
11549
+ * Range: minimum 0.
11550
+ * Present whenever the upstream returns this record.
11551
+ */
11552
+ reposts?: number;
11553
+ };
11554
+ /**
11555
+ * Unique identifier of the LinkedIn post. Populated whenever the provider has data for the entity.
11556
+ */
11557
+ id: string;
11558
+ /**
11559
+ * Images attached to the post.
11560
+ */
11561
+ images?: LinkedinProfilePostsFullImage[];
11562
+ /**
11563
+ * Title of the LinkedIn newsletter associated with the post, when present.
11564
+ */
11565
+ newsletterTitle?: string;
11566
+ /**
11567
+ * Canonical URL of the LinkedIn newsletter associated with the post, when present.
11568
+ * Format: uri.
11569
+ */
11570
+ newsletterUrl?: string;
11571
+ /**
11572
+ * Canonical LinkedIn feed publication URL for the post.
11573
+ * Format: uri.
11574
+ */
11575
+ publicationUrl?: string;
11576
+ /**
11577
+ * Description excerpt of the reposted post's article, when present.
11578
+ */
11579
+ repostArticleDescription?: string;
11580
+ /**
11581
+ * Image URL of the reposted post's article, when present.
11582
+ * Format: uri.
11583
+ */
11584
+ repostArticleImage?: string;
11585
+ /**
11586
+ * Height of the reposted post's article image in pixels.
11587
+ * Range: minimum 0.
11588
+ */
11589
+ repostArticleImageHeight?: number;
11590
+ /**
11591
+ * Width of the reposted post's article image in pixels.
11592
+ * Range: minimum 0.
11593
+ */
11594
+ repostArticleImageWidth?: number;
11595
+ /**
11596
+ * Accessible display label for the reposted post's article link, when present.
11597
+ */
11598
+ repostArticleLinkLabel?: string;
11599
+ /**
11600
+ * Subtitle or publisher label of the reposted post's article, when present.
11601
+ */
11602
+ repostArticleSubtitle?: string;
11603
+ /**
11604
+ * Title of the article attached to the reposted post, when present.
11605
+ */
11606
+ repostArticleTitle?: string;
11607
+ /**
11608
+ * Canonical URL of the reposted post's article, when present.
11609
+ * Format: uri.
11610
+ */
11611
+ repostArticleUrl?: string;
11612
+ /**
11613
+ * Public LinkedIn profile handle of the reposted post's author, when present.
11614
+ */
11615
+ repostAuthorHandle?: string;
11616
+ /**
11617
+ * Headline or follower summary of the reposted post's author, when present.
11618
+ */
11619
+ repostAuthorHeadline?: string;
11620
+ /**
11621
+ * Stable LinkedIn identifier of the reposted post's author, when present.
11622
+ */
11623
+ repostAuthorId?: string;
11624
+ /**
11625
+ * Image URL of the reposted post's author, when present.
11626
+ * Format: uri.
11627
+ */
11628
+ repostAuthorImage?: string;
11629
+ /**
11630
+ * Display name of the reposted post's author, when present.
11631
+ */
11632
+ repostAuthorName?: string;
11633
+ /**
11634
+ * Author kind for the reposted post, when present.
11635
+ */
11636
+ repostAuthorType?: string;
11637
+ /**
11638
+ * Universal LinkedIn name of the reposted post's company author, when present.
11639
+ */
11640
+ repostAuthorUniversalName?: string;
11641
+ /**
11642
+ * Canonical LinkedIn URL of the reposted post's author, when present.
11643
+ * Format: uri.
11644
+ */
11645
+ repostAuthorUrl?: string;
11646
+ /**
11647
+ * UTC epoch timestamp in seconds (Unix time) when the reposted post was published. Multiply by 1000 for a JS Date in milliseconds.
11648
+ */
11649
+ repostCreatedUtc?: number;
11650
+ /**
11651
+ * Unique identifier of the reposted post, when present.
11652
+ */
11653
+ repostId?: string;
11654
+ /**
11655
+ * Images attached to the reposted post.
11656
+ */
11657
+ repostImages?: LinkedinProfilePostsFullRepostImage[];
11658
+ /**
11659
+ * Text content of the reposted post, when present.
11660
+ */
11661
+ repostText?: string;
11662
+ /**
11663
+ * Canonical URL of the reposted post, when present.
11664
+ * Format: uri.
11665
+ */
11666
+ repostUrl?: string;
11667
+ /**
11668
+ * LinkedIn visibility and action flags for the post.
11669
+ */
11670
+ socialContent?: {
11671
+ /**
11672
+ * Whether LinkedIn hides the comment action.
11673
+ */
11674
+ hideCommentAction?: boolean;
11675
+ /**
11676
+ * Whether LinkedIn hides the comment count.
11677
+ */
11678
+ hideCommentsCount?: boolean;
11679
+ /**
11680
+ * Whether LinkedIn hides the react action.
11681
+ */
11682
+ hideReactAction?: boolean;
11683
+ /**
11684
+ * Whether LinkedIn hides the reaction count.
11685
+ */
11686
+ hideReactionsCount?: boolean;
11687
+ /**
11688
+ * Whether LinkedIn hides the repost count.
11689
+ */
11690
+ hideRepostsCount?: boolean;
11691
+ /**
11692
+ * Whether LinkedIn hides the send action.
11693
+ */
11694
+ hideSendAction?: boolean;
11695
+ /**
11696
+ * Whether LinkedIn hides the share action.
11697
+ */
11698
+ hideShareAction?: boolean;
11699
+ /**
11700
+ * Whether LinkedIn hides social activity counts.
11701
+ */
11702
+ hideSocialActivityCounts?: boolean;
11703
+ /**
11704
+ * Whether LinkedIn hides the view count.
11705
+ */
11706
+ hideViewsCount?: boolean;
11707
+ /**
11708
+ * Canonical LinkedIn share URL for the post.
11709
+ * Format: uri.
11710
+ */
11711
+ shareUrl?: string;
11712
+ /**
11713
+ * Whether LinkedIn enables the contribution experience.
11714
+ */
11715
+ showContributionExperience?: boolean;
11716
+ /**
11717
+ * Whether LinkedIn shows social detail.
11718
+ */
11719
+ showSocialDetail?: boolean;
11720
+ };
11721
+ /**
11722
+ * Text content of the post. Populated whenever the provider has data for the entity.
11723
+ */
11724
+ text: string;
11725
+ /**
11726
+ * LinkedIn record type reported for the post.
11727
+ */
11728
+ type?: string;
11729
+ /**
11730
+ * Canonical LinkedIn URL of the post. Populated whenever the provider has data for the entity.
11731
+ * Format: uri.
11732
+ */
11733
+ url: string;
11734
+ /**
11735
+ * Thumbnail URL of the attached video, when present.
11736
+ * Format: uri.
11737
+ */
11738
+ videoThumbnail?: string;
11739
+ /**
11740
+ * URL of the attached video, when present.
11741
+ * Format: uri.
11742
+ */
11743
+ videoUrl?: string;
11744
+ [extra: string]: unknown;
11745
+ }
11746
+ interface LinkedinProfilePostsFullContentAnnotation {
11747
+ /**
11748
+ * LinkedIn identifier of a mentioned company, when present.
11749
+ */
11750
+ companyId?: string;
11751
+ /**
11752
+ * Display name of a mentioned company, when present.
11753
+ */
11754
+ companyName?: string;
11755
+ /**
11756
+ * Canonical LinkedIn URL of a mentioned company, when present.
11757
+ * Format: uri.
11758
+ */
11759
+ companyUrl?: string;
11760
+ /**
11761
+ * Canonical hyperlink attached to the annotation, when present.
11762
+ * Format: uri.
11763
+ */
11764
+ hyperlink?: string;
11765
+ /**
11766
+ * Length of the annotated text span.
11767
+ * Range: minimum 0.
11768
+ */
11769
+ length?: number;
11770
+ /**
11771
+ * First name of a mentioned profile, when present.
11772
+ */
11773
+ profileFirstName?: string;
11774
+ /**
11775
+ * Public LinkedIn handle of a mentioned profile, when present.
11776
+ */
11777
+ profileHandle?: string;
11778
+ /**
11779
+ * LinkedIn identifier of a mentioned profile, when present.
11780
+ */
11781
+ profileId?: string;
11782
+ /**
11783
+ * Last name of a mentioned profile, when present.
11784
+ */
11785
+ profileLastName?: string;
11786
+ /**
11787
+ * Canonical LinkedIn URL of a mentioned profile, when present.
11788
+ * Format: uri.
11789
+ */
11790
+ profileUrl?: string;
11791
+ /**
11792
+ * Zero-based start offset of the annotation in the post text.
11793
+ * Range: minimum 0.
11794
+ */
11795
+ start?: number;
11796
+ /**
11797
+ * Canonical text link attached to the annotation, when present.
11798
+ * Format: uri.
11799
+ */
11800
+ textLink?: string;
11801
+ /**
11802
+ * Kind of content annotation.
11803
+ */
11804
+ type?: string;
11805
+ [extra: string]: unknown;
11806
+ }
11807
+ interface LinkedinProfilePostsFullBreakdown {
11808
+ /**
11809
+ * Number of reactions of this type.
11810
+ * Range: minimum 0.
11811
+ */
11812
+ count: number;
11813
+ /**
11814
+ * LinkedIn reaction type.
11815
+ */
11816
+ type: string;
11817
+ [extra: string]: unknown;
11818
+ }
11819
+ interface LinkedinProfilePostsFullImage {
11820
+ /**
11821
+ * Height of the image in pixels.
11822
+ * Range: minimum 0.
11823
+ */
11824
+ height?: number;
11825
+ /**
11826
+ * URL of the attached image.
11827
+ * Format: uri.
11828
+ */
11829
+ url: string;
11830
+ /**
11831
+ * Width of the image in pixels.
11832
+ * Range: minimum 0.
11833
+ */
11834
+ width?: number;
11835
+ [extra: string]: unknown;
11836
+ }
11837
+ interface LinkedinProfilePostsFullRepostImage {
11838
+ /**
11839
+ * Height of the reposted image in pixels.
11840
+ * Range: minimum 0.
11841
+ */
11842
+ height?: number;
11843
+ /**
11844
+ * URL of an image attached to the reposted post.
11845
+ * Format: uri.
11846
+ */
11847
+ url: string;
11848
+ /**
11849
+ * Width of the reposted image in pixels.
11850
+ * Range: minimum 0.
11851
+ */
11852
+ width?: number;
11853
+ [extra: string]: unknown;
11854
+ }
11855
+ /**
11856
+ * The `data` payload of LinkedIn Profile Posts (full) (linkedin.profile_posts_full).
11857
+ */
11858
+ interface LinkedinProfilePostsFullData {
11859
+ /**
11860
+ * Recent enriched posts published by the profile. Populated whenever the provider has data for the entity.
11861
+ */
11862
+ items: LinkedinProfilePostsFullItem[];
11863
+ }
11864
+ /**
11865
+ * Input for LinkedIn Profile Posts (basic) (linkedin.profile_posts_thin).
11866
+ */
11867
+ interface LinkedinProfilePostsThinInput {
11868
+ /**
11869
+ * Maximum number of posts to return (10-100, default 10). You are billed per post returned, so a lower limit costs less.
11870
+ * Range: minimum 10, maximum 100.
11871
+ * Default: 10.
11872
+ */
11873
+ limit?: number;
11874
+ /**
11875
+ * Full URL of the public LinkedIn profile whose posts should be returned.
11876
+ * Format: uri.
11877
+ */
11878
+ url: string;
11879
+ }
11880
+ interface LinkedinProfilePostsThinItem {
11881
+ /**
11882
+ * Image URL of the attached article, when present.
11883
+ * Format: uri.
11884
+ */
11885
+ articleImage?: string;
11886
+ /**
11887
+ * Subtitle or publisher label of the attached article, when present.
11888
+ */
11889
+ articleSubtitle?: string;
11890
+ /**
11891
+ * Title of the attached article, when present.
11892
+ */
11893
+ articleTitle?: string;
11894
+ /**
11895
+ * Canonical URL of the attached article, when present.
11896
+ * Format: uri.
11897
+ */
11898
+ articleUrl?: string;
11899
+ /**
11900
+ * Portable details about the post author. Populated whenever the provider has data for the entity.
11901
+ * Present whenever the upstream returns this record.
11902
+ */
11903
+ author?: {
11904
+ /**
11905
+ * Public LinkedIn handle of the author. Populated whenever the provider has data for the entity.
11906
+ * Present whenever the upstream returns this record.
11907
+ */
11908
+ handle?: string;
11909
+ /**
11910
+ * Professional headline displayed for the author. Populated whenever the provider has data for the entity.
11911
+ * Present whenever the upstream returns this record.
11912
+ */
11913
+ headline?: string;
11914
+ /**
11915
+ * Profile image URL of the author. Populated whenever the provider has data for the entity.
11916
+ * Format: uri.
11917
+ * Present whenever the upstream returns this record.
11918
+ */
11919
+ image?: string;
11920
+ /**
11921
+ * Canonical LinkedIn profile URL of the author. Populated whenever the provider has data for the entity.
11922
+ * Format: uri.
11923
+ * Present whenever the upstream returns this record.
11924
+ */
11925
+ profileUrl?: string;
11926
+ };
11927
+ /**
11928
+ * UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. Populated whenever the provider has data for the entity.
11929
+ */
11930
+ createdUtc: number;
11931
+ /**
11932
+ * Portable engagement totals for the post. Populated whenever the provider has data for the entity.
11933
+ * Present whenever the upstream returns this record.
11934
+ */
11935
+ engagement?: {
11936
+ /**
11937
+ * Total number of comments on the post. Populated whenever the provider has data for the entity.
11938
+ * Range: minimum 0.
11939
+ * Present whenever the upstream returns this record.
11940
+ */
11941
+ comments?: number;
11942
+ /**
11943
+ * Total number of reactions on the post. Populated whenever the provider has data for the entity.
11944
+ * Range: minimum 0.
11945
+ * Present whenever the upstream returns this record.
11946
+ */
11947
+ reactions?: number;
11948
+ /**
11949
+ * Total number of reposts or shares of the post. Populated whenever the provider has data for the entity.
11950
+ * Range: minimum 0.
11951
+ * Present whenever the upstream returns this record.
11952
+ */
11953
+ reposts?: number;
11954
+ };
11955
+ /**
11956
+ * Unique identifier of the LinkedIn post. Populated whenever the provider has data for the entity.
11957
+ */
11958
+ id: string;
11959
+ /**
11960
+ * Images attached to the post.
11961
+ */
11962
+ images?: LinkedinProfilePostsThinImage[];
11963
+ /**
11964
+ * Title of the article attached to the reposted post, when present.
11965
+ */
11966
+ repostArticleTitle?: string;
11967
+ /**
11968
+ * Canonical URL of the article attached to the reposted post, when present.
11969
+ * Format: uri.
11970
+ */
11971
+ repostArticleUrl?: string;
11972
+ /**
11973
+ * UTC epoch timestamp in seconds (Unix time) when the reposted post was published. Multiply by 1000 for a JS Date in milliseconds.
11974
+ */
11975
+ repostCreatedUtc?: number;
11976
+ /**
11977
+ * Unique identifier of the reposted post, when present.
11978
+ */
11979
+ repostId?: string;
11980
+ /**
11981
+ * Text content of the reposted post, when present.
11982
+ */
11983
+ repostText?: string;
11984
+ /**
11985
+ * Canonical URL of the reposted post, when present.
11986
+ * Format: uri.
11987
+ */
11988
+ repostUrl?: string;
11989
+ /**
11990
+ * Text content of the post. Populated whenever the provider has data for the entity.
11991
+ */
11992
+ text: string;
11993
+ /**
11994
+ * Canonical LinkedIn URL of the post. Populated whenever the provider has data for the entity.
11995
+ * Format: uri.
11996
+ */
11997
+ url: string;
11998
+ /**
11999
+ * Thumbnail URL of the attached video, when present.
12000
+ * Format: uri.
12001
+ */
12002
+ videoThumbnail?: string;
12003
+ /**
12004
+ * URL of the attached video, when present.
12005
+ * Format: uri.
12006
+ */
12007
+ videoUrl?: string;
12008
+ [extra: string]: unknown;
12009
+ }
12010
+ interface LinkedinProfilePostsThinImage {
12011
+ /**
12012
+ * URL of an attached image.
12013
+ * Format: uri.
12014
+ */
12015
+ url: string;
12016
+ [extra: string]: unknown;
12017
+ }
12018
+ /**
12019
+ * The `data` payload of LinkedIn Profile Posts (basic) (linkedin.profile_posts_thin).
12020
+ */
12021
+ interface LinkedinProfilePostsThinData {
12022
+ /**
12023
+ * Recent posts published by the profile. Populated whenever the provider has data for the entity.
12024
+ */
12025
+ items: LinkedinProfilePostsThinItem[];
12026
+ }
11375
12027
  /**
11376
12028
  * Input for LinkedIn Profile (basic) (linkedin.profile_thin).
11377
12029
  */
@@ -12265,6 +12917,28 @@ declare class LinkedinNamespace {
12265
12917
  * const res = await client.linkedin.profile({ url: "https://www.linkedin.com/in/williamhgates" });
12266
12918
  */
12267
12919
  profile(input: LinkedinProfileInput, options?: RequestOptions): Promise<RunResult<LinkedinProfileData>>;
12920
+ /**
12921
+ * LinkedIn Profile Posts (full)
12922
+ *
12923
+ * Fetch recent public LinkedIn profile posts with enriched author, engagement, article, newsletter, media, annotation, repost, and social activity details.
12924
+ *
12925
+ * Price: $0.00006 per request plus $0.00184 per result (maximum $0.184).
12926
+ *
12927
+ * @example
12928
+ * const res = await client.linkedin.profilePostsFull({ url: "https://www.linkedin.com/in/williamhgates/", limit: 10 });
12929
+ */
12930
+ profilePostsFull(input: LinkedinProfilePostsFullInput, options?: RequestOptions): Promise<RunResult<LinkedinProfilePostsFullData>>;
12931
+ /**
12932
+ * LinkedIn Profile Posts (basic)
12933
+ *
12934
+ * Fetch recent public LinkedIn profile posts with portable identity, author, engagement, article, image, video, and repost fields.
12935
+ *
12936
+ * Price: $0 per request plus $0.00137 per result (maximum $0.137).
12937
+ *
12938
+ * @example
12939
+ * const res = await client.linkedin.profilePostsThin({ url: "https://www.linkedin.com/in/williamhgates/", limit: 10 });
12940
+ */
12941
+ profilePostsThin(input: LinkedinProfilePostsThinInput, options?: RequestOptions): Promise<RunResult<LinkedinProfilePostsThinData>>;
12268
12942
  /**
12269
12943
  * LinkedIn Profile (basic)
12270
12944
  *
@@ -20488,7 +21162,7 @@ interface TwitterProfileData {
20488
21162
  */
20489
21163
  interface TwitterRepliesInput {
20490
21164
  /**
20491
- * Maximum number of results to return (1-40, default 40). You are billed per result returned, so a lower limit costs less.
21165
+ * Maximum number of results to return (1-40, default 40). Per-result lanes cost less at lower limits; a backup that bills its native page may cost up to the advertised request price.
20492
21166
  * Range: minimum 1, maximum 40.
20493
21167
  */
20494
21168
  limit?: number;
@@ -20838,7 +21512,7 @@ interface TwitterUserPostsData {
20838
21512
  */
20839
21513
  interface TwitterUserTweetsInput {
20840
21514
  /**
20841
- * Reserved for cursor-capable lanes. The current bulk lane returns nextCursor as null, so omit this field.
21515
+ * Opaque pagination cursor from a previous response's nextCursor. Omit for the first page.
20842
21516
  */
20843
21517
  cursor?: string;
20844
21518
  /**
@@ -20852,7 +21526,7 @@ interface TwitterUserTweetsInput {
20852
21526
  */
20853
21527
  limit?: number;
20854
21528
  /**
20855
- * Compatibility flag for requiring one response. The current lane already returns up to limit results in one bulk call, whether this is omitted or true.
21529
+ * Require a lane that can return the requested limit in one response.
20856
21530
  */
20857
21531
  requireSinglePage?: boolean;
20858
21532
  }
@@ -20889,7 +21563,7 @@ interface TwitterUserTweetsTweet {
20889
21563
  */
20890
21564
  interface TwitterUserTweetsData {
20891
21565
  /**
20892
- * Reserved pagination cursor. The current bulk lane returns null; cursor-capable lanes may return an opaque continuation value in the future.
21566
+ * Opaque cursor for the next page when the selected lane supports pagination, otherwise null.
20893
21567
  */
20894
21568
  nextCursor?: string | null;
20895
21569
  /**
@@ -20920,7 +21594,7 @@ declare class TwitterNamespace {
20920
21594
  *
20921
21595
  * Fetch a Twitter/X community's public details (name, description, member count, join policy) by URL.
20922
21596
  *
20923
- * Price: $0.002 per request.
21597
+ * Price: $0.00018 per request.
20924
21598
  *
20925
21599
  * @example
20926
21600
  * const res = await client.twitter.community({ url: "https://x.com/i/communities/1926186499399139650" });
@@ -20978,7 +21652,7 @@ declare class TwitterNamespace {
20978
21652
  *
20979
21653
  * Fetch a Twitter/X account's public profile (followers, tweets, bio, verification) by handle.
20980
21654
  *
20981
- * Price: $0.00075 per request.
21655
+ * Price: $0.00018 per request.
20982
21656
  *
20983
21657
  * @example
20984
21658
  * const res = await client.twitter.profile({ handle: "nasa" });
@@ -20989,7 +21663,7 @@ declare class TwitterNamespace {
20989
21663
  *
20990
21664
  * Fetch the replies to any X (Twitter) post URL as structured records: author, text, and engagement.
20991
21665
  *
20992
- * Price: $0.00263 per request plus $0.00027 per result (maximum $0.0132).
21666
+ * Price: $0.00018 per request plus $0.00018 per result (maximum $0.00666).
20993
21667
  *
20994
21668
  * @example
20995
21669
  * const res = await client.twitter.replies({ url: "https://x.com/jack/status/20", limit: 3 });
@@ -21018,7 +21692,7 @@ declare class TwitterNamespace {
21018
21692
  *
21019
21693
  * Get current X (Twitter) trends for worldwide, a country, or a city in X ranking order, including the resolved location.
21020
21694
  *
21021
- * Price: $0.00075 per request.
21695
+ * Price: $0.00018 per request.
21022
21696
  *
21023
21697
  * @example
21024
21698
  * const res = await client.twitter.trends({ limit: 10, location: "US" });
@@ -21029,7 +21703,7 @@ declare class TwitterNamespace {
21029
21703
  *
21030
21704
  * Fetch a single Twitter/X tweet by URL with its full text and engagement counts (likes, retweets, replies, quotes, bookmarks, views).
21031
21705
  *
21032
- * Price: $0.00075 per request.
21706
+ * Price: $0.00018 per request.
21033
21707
  *
21034
21708
  * @example
21035
21709
  * const res = await client.twitter.tweet({ url: "https://x.com/SpaceX/status/1732824684683784516" });
@@ -21067,9 +21741,9 @@ declare class TwitterNamespace {
21067
21741
  /**
21068
21742
  * X / Twitter User Tweets and Replies
21069
21743
  *
21070
- * Get up to the requested limit of tweets and replies authored by an X (Twitter) account in one bulk call, with engagement, views, and language. The current lane returns nextCursor as null; cursor is reserved for future cursor-capable lanes.
21744
+ * Get up to the requested limit of tweets and replies authored by an X (Twitter) account, with engagement, views, language, and cursor pagination where available.
21071
21745
  *
21072
- * Price: $0 per request plus $0.00021 per result (maximum $0.21).
21746
+ * Price: $0.00018 per request plus $0.00018 per result (maximum $0.01818).
21073
21747
  *
21074
21748
  * @example
21075
21749
  * const res = await client.twitter.userTweets({ handle: "levelsio", limit: 20 });
@@ -23960,6 +24634,7 @@ interface ZillowSearchInput {
23960
24634
  /**
23961
24635
  * Maximum number of results to return (1-25, default 25). You are billed per result returned, so a lower limit costs less.
23962
24636
  * Range: minimum 1, maximum 25.
24637
+ * Default: 25.
23963
24638
  */
23964
24639
  limit?: number;
23965
24640
  /**
@@ -24122,7 +24797,7 @@ declare class ZillowNamespace {
24122
24797
  *
24123
24798
  * Search Zillow for-sale, rental, or sold listings by region-level location (city, ZIP, county, or neighborhood) with optional price, bedroom, living-area, home-type, recency, and sort filters and get matching properties (price, address, beds, baths, living area, status, Zestimate) as normalized JSON.
24124
24799
  *
24125
- * Price: $0.00053 per request plus $0.00315 per result (maximum $0.0793).
24800
+ * Price: $0.0009 per request.
24126
24801
  *
24127
24802
  * @example
24128
24803
  * const res = await client.zillow.search({ location: "Austin, TX", limit: 3, maxPrice: 900000, minBedrooms: 3, operation: "buy" });
@@ -24797,6 +25472,16 @@ interface SkuMap {
24797
25472
  data: LinkedinProfileData;
24798
25473
  result: RunResult<LinkedinProfileData>;
24799
25474
  };
25475
+ "linkedin.profile_posts_full": {
25476
+ input: LinkedinProfilePostsFullInput;
25477
+ data: LinkedinProfilePostsFullData;
25478
+ result: RunResult<LinkedinProfilePostsFullData>;
25479
+ };
25480
+ "linkedin.profile_posts_thin": {
25481
+ input: LinkedinProfilePostsThinInput;
25482
+ data: LinkedinProfilePostsThinData;
25483
+ result: RunResult<LinkedinProfilePostsThinData>;
25484
+ };
24800
25485
  "linkedin.profile_thin": {
24801
25486
  input: LinkedinProfileThinInput;
24802
25487
  data: LinkedinProfileThinData;
@@ -25791,4 +26476,4 @@ declare class AnyAPI extends AnyAPI$1 {
25791
26476
  get zillow(): ZillowNamespace;
25792
26477
  }
25793
26478
 
25794
- export { type AccountProfile, type AgentSignupOptions, type AgentSignupResult, type AhrefsBacklinksData, type AhrefsBacklinksInput, type AhrefsBacklinksItem, type AhrefsKeywordIdeasData, type AhrefsKeywordIdeasIdea, type AhrefsKeywordIdeasInput, type AhrefsKeywordIdeasItem, type AhrefsKeywordsData, type AhrefsKeywordsInput, type AhrefsKeywordsItem, AhrefsNamespace, type AhrefsOverviewData, type AhrefsOverviewInput, type AhrefsOverviewItem, AirbnbNamespace, type AirbnbSearchData, type AirbnbSearchInput, type AirbnbSearchItem, AlibabaNamespace, type AlibabaSearchData, type AlibabaSearchInput, type AlibabaSearchItem, type AmazonAsinsData, type AmazonAsinsInput, type AmazonAsinsItem, type AmazonBestsellersData, type AmazonBestsellersInput, type AmazonBestsellersItem, AmazonNamespace, type AmazonProductData, type AmazonProductInput, type AmazonProductItem, type AmazonReviewsData, type AmazonReviewsInput, type AmazonReviewsItem, type AmazonSearchData, type AmazonSearchInput, type AmazonSearchItem, AnyAPI, AnyAPIError, ApolloNamespace, type ApolloOrganizationData, type ApolloOrganizationEnrichData, type ApolloOrganizationEnrichInput, type ApolloOrganizationInput, type ApolloOrganizationJobsData, type ApolloOrganizationJobsInput, type ApolloOrganizationJobsJob, type ApolloOrganizationNewsArticle, type ApolloOrganizationNewsData, type ApolloOrganizationNewsInput, type ApolloOrganizationsBulkEnrichData, type ApolloOrganizationsBulkEnrichInput, type ApolloOrganizationsBulkEnrichOrganization, type ApolloOrganizationsSearchData, type ApolloOrganizationsSearchInput, type ApolloOrganizationsSearchOrganization, type ApolloPeopleSearchData, type ApolloPeopleSearchInput, type ApolloPeopleSearchPeople, type ApolloPersonEnrichData, type ApolloPersonEnrichEmploymentHistory, type ApolloPersonEnrichInput, AppstoreNamespace, type AppstoreReviewsData, type AppstoreReviewsInput, type AppstoreReviewsItem, AuthenticationError, BadRequestError, type BareRunResult, BlueskyNamespace, type BlueskyPostData, type BlueskyPostInput, type BlueskyProfileData, type BlueskyProfileInput, type BlueskyUserPostsData, type BlueskyUserPostsInput, type BlueskyUserPostsPost, BookingNamespace, type BookingSearchData, type BookingSearchInput, type BookingSearchItem, type CatalogEntry, type CatalogOptions, type CatalogSearchResult, type CatalogSearchResults, type ClientCore, type ClientOptions, type CoinmarketcapListingsData, type CoinmarketcapListingsInput, type CoinmarketcapListingsItem, CoinmarketcapNamespace, CongressNamespace, type CongressTradesData, type CongressTradesInput, type CongressTradesItem, ConnectionError, DexscreenerNamespace, type DexscreenerTokensData, type DexscreenerTokensInput, type DexscreenerTokensItem, type DiscoveryLane, type DiscoveryPricing, DouyinNamespace, type DouyinProfileData, type DouyinProfileInput, type DouyinSearchVideosData, type DouyinSearchVideosInput, type DouyinSearchVideosVideo, type DouyinUserPostsData, type DouyinUserPostsInput, type DouyinUserPostsPost, type DouyinVideoCommentsComment, type DouyinVideoCommentsData, type DouyinVideoCommentsInput, type DouyinVideoData, type DouyinVideoInput, EbayNamespace, type EbaySearchData, type EbaySearchInput, type EbaySearchItem, type EbaySoldListingsData, type EbaySoldListingsInput, type EbaySoldListingsItem, type EmailFindData, type EmailFindInput, type EmailFindItem, EmailNamespace, type EmailVerifyData, type EmailVerifyInput, type EmailVerifyItem, type FacebookAdDetailsData, type FacebookAdDetailsInput, type FacebookAdTranscriptData, type FacebookAdTranscriptInput, type FacebookAdsSearchAd, type FacebookAdsSearchData, type FacebookAdsSearchInput, type FacebookCommentRepliesData, type FacebookCommentRepliesInput, type FacebookCommentRepliesReplie, type FacebookCompanyAdsAd, type FacebookCompanyAdsData, type FacebookCompanyAdsInput, type FacebookEventDetailsData, type FacebookEventDetailsInput, type FacebookEventsData, type FacebookEventsEvent, type FacebookEventsInput, type FacebookEventsSearchData, type FacebookEventsSearchEvent, type FacebookEventsSearchInput, type FacebookFollowersData, type FacebookFollowersInput, type FacebookFollowersItem, type FacebookGroupPostsData, type FacebookGroupPostsInput, type FacebookGroupPostsPost, type FacebookMarketplaceData, type FacebookMarketplaceInput, type FacebookMarketplaceItemData, type FacebookMarketplaceItemInput, type FacebookMarketplaceListing, type FacebookMarketplaceLocationSearchData, type FacebookMarketplaceLocationSearchInput, type FacebookMarketplaceLocationSearchLocation, FacebookNamespace, type FacebookPageContactData, type FacebookPageContactInput, type FacebookPageContactItem, type FacebookPhotosData, type FacebookPhotosInput, type FacebookPhotosPhoto, type FacebookPostCommentsComment, type FacebookPostCommentsData, type FacebookPostCommentsInput, type FacebookPostData, type FacebookPostInput, type FacebookPostTranscriptData, type FacebookPostTranscriptInput, type FacebookProfileData, type FacebookProfileEventsData, type FacebookProfileEventsEvent, type FacebookProfileEventsInput, type FacebookProfileInput, type FacebookProfilePostsData, type FacebookProfilePostsInput, type FacebookProfilePostsPost, type FacebookProfileReelsData, type FacebookProfileReelsInput, type FacebookProfileReelsReel, type FacebookSearchCompaniesCompanie, type FacebookSearchCompaniesData, type FacebookSearchCompaniesInput, type FacebookSearchPagesData, type FacebookSearchPagesInput, type FacebookSearchPagesItem, type FacebookSearchPostsData, type FacebookSearchPostsInput, type FacebookSearchPostsItem, FiverrNamespace, type FiverrSearchData, type FiverrSearchInput, type FiverrSearchItem, type FlatPricingOffer, GithubNamespace, type GithubRepositoryData, type GithubRepositoryInput, type GithubTrendingDevelopersData, type GithubTrendingDevelopersDeveloper, type GithubTrendingDevelopersInput, type GithubTrendingRepositoriesData, type GithubTrendingRepositoriesInput, type GithubTrendingRepositoriesRepo, type GithubUserActivityActivity, type GithubUserActivityData, type GithubUserActivityInput, type GithubUserContributionsData, type GithubUserContributionsDay, type GithubUserContributionsInput, type GithubUserData, type GithubUserFollowersData, type GithubUserFollowersFollower, type GithubUserFollowersInput, type GithubUserFollowingData, type GithubUserFollowingFollowing, type GithubUserFollowingInput, type GithubUserInput, type GithubUserPullRequestsData, type GithubUserPullRequestsInput, type GithubUserPullRequestsPullRequest, type GithubUserRepositoriesData, type GithubUserRepositoriesInput, type GithubUserRepositoriesRepo, type GlassdoorJobsData, type GlassdoorJobsInput, type GlassdoorJobsItem, GlassdoorNamespace, type GoogleAdsAdDetailsData, type GoogleAdsAdDetailsInput, type GoogleAdsAdDetailsVariation, type GoogleAdsAdvertiserSearchAdvertiser, type GoogleAdsAdvertiserSearchData, type GoogleAdsAdvertiserSearchInput, type GoogleAdsCompanyAdsAd, type GoogleAdsCompanyAdsData, type GoogleAdsCompanyAdsInput, GoogleAdsNamespace, type GoogleAdsSearchData, type GoogleAdsSearchInput, type GoogleAdsSearchItem, type GoogleAdsSearchVariation, type GoogleAutocompleteData, type GoogleAutocompleteInput, type GoogleAutocompleteSuggestion, GoogleFinanceNamespace, type GoogleFinanceQuoteData, type GoogleFinanceQuoteInput, type GoogleFinanceQuoteItem, type GoogleImagesData, type GoogleImagesInput, type GoogleImagesItem, type GoogleLensData, type GoogleLensInput, type GoogleLensResult, GoogleNamespace, type GoogleNewsData, type GoogleNewsInput, type GoogleNewsItem, type GooglePatentsData, type GooglePatentsInput, type GooglePatentsResult, type GoogleScholarData, type GoogleScholarInput, type GoogleScholarResult, type GoogleSearchData, type GoogleSearchInput, type GoogleSearchResult, GoogleShoppingNamespace, type GoogleShoppingSearchData, type GoogleShoppingSearchInput, type GoogleShoppingSearchItem, type GoogleVideosData, type GoogleVideosInput, type GoogleVideosResult, HackernewsNamespace, type HackernewsProfileData, type HackernewsProfileInput, type HackernewsSearchData, type HackernewsSearchInput, type HackernewsSearchResult, type HackernewsStoryCommentsComment, type HackernewsStoryCommentsData, type HackernewsStoryCommentsInput, type HackernewsStoryData, type HackernewsStoryInput, type HighlightField, type IndeedJobsData, type IndeedJobsInput, type IndeedJobsItem, IndeedNamespace, type InstagramAudioReelsData, type InstagramAudioReelsInput, type InstagramAudioReelsReel, type InstagramBasicProfileData, type InstagramBasicProfileInput, type InstagramCommentRepliesComment, type InstagramCommentRepliesData, type InstagramCommentRepliesInput, type InstagramEmbedData, type InstagramEmbedInput, type InstagramFollowersData, type InstagramFollowersInput, type InstagramFollowersItem, type InstagramFollowingData, type InstagramFollowingInput, type InstagramFollowingItem, type InstagramHashtagAnalyticsData, type InstagramHashtagAnalyticsInput, type InstagramHashtagAnalyticsItem, type InstagramHighlightDetailData, type InstagramHighlightDetailInput, type InstagramMediaTranscriptData, type InstagramMediaTranscriptInput, type InstagramMediaTranscriptTranscript, InstagramNamespace, type InstagramPostCommentsComment, type InstagramPostCommentsData, type InstagramPostCommentsInput, type InstagramPostData, type InstagramPostInput, type InstagramProfileData, type InstagramProfileInput, type InstagramReelTranscriptData, type InstagramReelTranscriptInput, type InstagramReelTranscriptItem, type InstagramReelTranscriptSegment, type InstagramReelsSearchData, type InstagramReelsSearchInput, type InstagramReelsSearchReel, type InstagramSearchData, type InstagramSearchHashtagData, type InstagramSearchHashtagInput, type InstagramSearchHashtagPost, type InstagramSearchInput, type InstagramSearchItem, type InstagramSearchProfilesData, type InstagramSearchProfilesInput, type InstagramSearchProfilesProfile, type InstagramStoriesFullData, type InstagramStoriesFullInput, type InstagramStoriesFullItem, type InstagramStoriesThinData, type InstagramStoriesThinInput, type InstagramStoriesThinItem, type InstagramTaggedPostsData, type InstagramTaggedPostsInput, type InstagramTaggedPostsPost, type InstagramTrendingReelsData, type InstagramTrendingReelsInput, type InstagramTrendingReelsReel, type InstagramUserHighlightsData, type InstagramUserHighlightsHighlight, type InstagramUserHighlightsInput, type InstagramUserPostsData, type InstagramUserPostsInput, type InstagramUserPostsPost, type InstagramUserReelsData, type InstagramUserReelsInput, type InstagramUserReelsReel, InsufficientBalanceError, type LaneHealth, type LinearPricingOffer, type LinkedinAdData, type LinkedinAdInput, type LinkedinAdsData, type LinkedinAdsInput, type LinkedinAdsItem, type LinkedinAdsSearchAd, type LinkedinAdsSearchData, type LinkedinAdsSearchInput, type LinkedinCompanyData, type LinkedinCompanyEmployeesData, type LinkedinCompanyEmployeesInput, type LinkedinCompanyEmployeesItem, type LinkedinCompanyInput, type LinkedinCompanyLocation, type LinkedinCompanyPostsContentAttribute, type LinkedinCompanyPostsData, type LinkedinCompanyPostsInput, type LinkedinCompanyPostsItem, type LinkedinCompanyPostsPostImage, type LinkedinCompanyPostsReaction, type LinkedinCompanyPostsThinData, type LinkedinCompanyPostsThinInput, type LinkedinCompanyPostsThinItem, type LinkedinCompanyThinData, type LinkedinCompanyThinInput, type LinkedinEmailData, type LinkedinEmailEmail, type LinkedinEmailInput, type LinkedinJobsData, type LinkedinJobsInput, type LinkedinJobsItem, type LinkedinJobsThinData, type LinkedinJobsThinInput, type LinkedinJobsThinItem, LinkedinNamespace, type LinkedinPostCommentsData, type LinkedinPostCommentsInput, type LinkedinPostCommentsItem, type LinkedinPostData, type LinkedinPostInput, type LinkedinPostReactionsData, type LinkedinPostReactionsInput, type LinkedinPostReactionsItem, type LinkedinPostTranscriptData, type LinkedinPostTranscriptInput, type LinkedinProfileCertification, type LinkedinProfileCurrentPosition, type LinkedinProfileData, type LinkedinProfileEducation, type LinkedinProfileExperience, type LinkedinProfileHonorsAndAward, type LinkedinProfileInput, type LinkedinProfilePublication, type LinkedinProfileThinArticle, type LinkedinProfileThinData, type LinkedinProfileThinEducation, type LinkedinProfileThinExperience, type LinkedinProfileThinInput, type LinkedinProfileThinRecentPost, type LinkedinSearchCompaniesData, type LinkedinSearchCompaniesInput, type LinkedinSearchCompaniesItem, type LinkedinSearchPostsData, type LinkedinSearchPostsInput, type LinkedinSearchPostsPost, type LinkedinSearchProfilesCurrentPosition, type LinkedinSearchProfilesData, type LinkedinSearchProfilesEducation, type LinkedinSearchProfilesEmailCurrentPosition, type LinkedinSearchProfilesEmailData, type LinkedinSearchProfilesEmailEducation, type LinkedinSearchProfilesEmailEmail, type LinkedinSearchProfilesEmailExperience, type LinkedinSearchProfilesEmailInput, type LinkedinSearchProfilesEmailItem, type LinkedinSearchProfilesExperience, type LinkedinSearchProfilesInput, type LinkedinSearchProfilesItem, type LinkedinSearchProfilesThinData, type LinkedinSearchProfilesThinInput, type LinkedinSearchProfilesThinItem, type MapsContactsData, type MapsContactsInput, type MapsContactsItem, MapsNamespace, type MapsPlaceData, type MapsPlaceHour, type MapsPlaceInput, type MapsPlaceItem, type MapsReviewsData, type MapsReviewsInput, type MapsReviewsItem, type MapsSearchData, type MapsSearchInput, type MapsSearchItem, NotFoundError, type Output, type Paginator, type PandaexpressLocationsData, type PandaexpressLocationsInput, type PandaexpressLocationsRestaurant, type PandaexpressMenuCategorie, type PandaexpressMenuData, type PandaexpressMenuInput, type PandaexpressMenuItem, PandaexpressNamespace, type PandaexpressNutritionData, type PandaexpressNutritionInput, type PandaexpressNutritionItem, PersonNamespace, type PersonSkipTraceAssociate, type PersonSkipTraceData, type PersonSkipTraceInput, type PersonSkipTraceItem, type PersonSkipTracePreviousAddresse, type PersonSkipTraceRelative, PinterestNamespace, type PinterestSearchData, type PinterestSearchInput, type PinterestSearchItem, PlaystoreNamespace, type PlaystoreReviewsData, type PlaystoreReviewsInput, type PlaystoreReviewsItem, type PolymarketMarketsData, type PolymarketMarketsInput, type PolymarketMarketsItem, type PolymarketMarketsOutcome, PolymarketNamespace, type PricingOffer, RateLimitedError, RealtorNamespace, type RealtorSearchData, type RealtorSearchInput, type RealtorSearchItem, RedditNamespace, type RedditPostCommentsComment, type RedditPostCommentsData, type RedditPostCommentsInput, type RedditPostData, type RedditPostInput, type RedditPostTranscriptData, type RedditPostTranscriptInput, type RedditProfileData, type RedditProfileInput, type RedditSearchData, type RedditSearchInput, type RedditSearchPost, type RedditSubredditDetailsData, type RedditSubredditDetailsInput, type RedditSubredditPostsData, type RedditSubredditPostsInput, type RedditSubredditPostsPost, type RedditSubredditSearchData, type RedditSubredditSearchInput, type RedditSubredditSearchPost, type RedditTrendingPostsData, type RedditTrendingPostsInput, type RedditTrendingPostsPost, type RedditUserCommentsComment, type RedditUserCommentsData, type RedditUserCommentsInput, type RedditUserPostsData, type RedditUserPostsInput, type RedditUserPostsPost, RedfinNamespace, type RedfinSearchData, type RedfinSearchInput, type RedfinSearchItem, RednoteNamespace, type RednoteNoteCommentsComment, type RednoteNoteCommentsData, type RednoteNoteCommentsInput, type RednoteNoteData, type RednoteNoteInput, type RednoteProfileData, type RednoteProfileInput, type RednoteSearchData, type RednoteSearchInput, type RednoteSearchNote, type RednoteSearchUsersData, type RednoteSearchUsersInput, type RednoteSearchUsersUser, type RednoteUserNotesData, type RednoteUserNotesInput, type RednoteUserNotesNote, type RequestOptions, ResultNotFoundError, type RunResult, type SearchOptions, type SecFilingsData, type SecFilingsInput, type SecFilingsItem, SecNamespace, type SemrushKeywordsData, type SemrushKeywordsInput, type SemrushKeywordsItem, type SemrushKeywordsQuestion, type SemrushKeywordsRelatedKeyword, SemrushNamespace, type SemrushOverviewData, type SemrushOverviewInput, type SemrushOverviewItem, type SemrushOverviewTopKeyword, type SeoCompetitorsDomainCompetitor, type SeoCompetitorsDomainData, type SeoCompetitorsDomainInput, type SeoDomainIntersectionData, type SeoDomainIntersectionInput, type SeoDomainIntersectionKeyword, type SeoDomainRankOverviewData, type SeoDomainRankOverviewInput, type SeoKeywordDifficultyData, type SeoKeywordDifficultyDifficultie, type SeoKeywordDifficultyInput, type SeoKeywordIdeasData, type SeoKeywordIdeasIdea, type SeoKeywordIdeasInput, type SeoKeywordOverviewData, type SeoKeywordOverviewInput, type SeoKeywordOverviewKeyword, type SeoKeywordOverviewMonthlySearche, type SeoKeywordSuggestionsData, type SeoKeywordSuggestionsInput, type SeoKeywordSuggestionsSuggestion, type SeoLocalPackData, type SeoLocalPackInput, type SeoLocalPackPlace, SeoNamespace, type SeoRankedKeywordsData, type SeoRankedKeywordsInput, type SeoRankedKeywordsRankedKeyword, type SeoRelatedKeywordsData, type SeoRelatedKeywordsInput, type SeoRelatedKeywordsRelatedKeyword, type SeoSearchIntentData, type SeoSearchIntentInput, type SeoSearchIntentIntent, type SeoSearchVolumeData, type SeoSearchVolumeInput, type SeoSearchVolumeKeyword, type SeoSearchVolumeMonthlySearche, type SkuMap, SnapchatNamespace, type SnapchatProfileData, type SnapchatProfileInput, type SnapchatProfileItem, type SnapchatProfileStorie, type SocialFinderData, type SocialFinderInput, type SocialFinderItem, SocialNamespace, type SpotifyAlbumData, type SpotifyAlbumInput, type SpotifyAlbumTrack, type SpotifyArtistAlbum, type SpotifyArtistData, type SpotifyArtistInput, type SpotifyArtistTopTrack, SpotifyNamespace, type SpotifyPlayCountData, type SpotifyPlayCountInput, type SpotifyPlayCountItem, type SpotifyPodcastData, type SpotifyPodcastEpisodesData, type SpotifyPodcastEpisodesEpisode, type SpotifyPodcastEpisodesInput, type SpotifyPodcastInput, type SpotifySearchAlbum, type SpotifySearchArtist, type SpotifySearchData, type SpotifySearchInput, type SpotifySearchPodcast, type SpotifySearchTrack, type SpotifyTrackData, type SpotifyTrackInput, SubstackNamespace, type SubstackPostsData, type SubstackPostsInput, type SubstackPostsItem, ThreadsNamespace, type ThreadsPostData, type ThreadsPostInput, type ThreadsProfileData, type ThreadsProfileInput, type ThreadsSearchData, type ThreadsSearchInput, type ThreadsSearchPost, type ThreadsSearchUsersData, type ThreadsSearchUsersInput, type ThreadsSearchUsersUser, type ThreadsUserPostsData, type ThreadsUserPostsInput, type ThreadsUserPostsPost, type TiktokAdLibraryAdData, type TiktokAdLibraryAdInput, type TiktokAdLibrarySearchAd, type TiktokAdLibrarySearchData, type TiktokAdLibrarySearchInput, type TiktokAudienceDemographicsAudienceLocation, type TiktokAudienceDemographicsData, type TiktokAudienceDemographicsInput, type TiktokCommentRepliesComment, type TiktokCommentRepliesData, type TiktokCommentRepliesInput, type TiktokFollowersData, type TiktokFollowersFollower, type TiktokFollowersInput, type TiktokFollowingData, type TiktokFollowingFollowing, type TiktokFollowingInput, type TiktokHashtagVideosData, type TiktokHashtagVideosInput, type TiktokHashtagVideosItem, type TiktokLiveData, type TiktokLiveInput, TiktokNamespace, type TiktokProfileData, type TiktokProfileInput, type TiktokProfileRegionData, type TiktokProfileRegionInput, type TiktokProfileVideosData, type TiktokProfileVideosInput, type TiktokProfileVideosVideo, type TiktokSearchHashtagData, type TiktokSearchHashtagInput, type TiktokSearchHashtagVideo, type TiktokSearchKeywordData, type TiktokSearchKeywordInput, type TiktokSearchKeywordVideo, type TiktokSearchTopData, type TiktokSearchTopInput, type TiktokSearchTopItem, type TiktokSearchUsersData, type TiktokSearchUsersInput, type TiktokSearchUsersUser, TiktokShopNamespace, type TiktokShopProductData, type TiktokShopProductInput, type TiktokShopProductReviewsData, type TiktokShopProductReviewsInput, type TiktokShopProductReviewsReview, type TiktokShopSearchData, type TiktokShopSearchInput, type TiktokShopSearchItem, type TiktokShopShopProductsData, type TiktokShopShopProductsInput, type TiktokShopShopProductsProduct, type TiktokShopUserShowcaseData, type TiktokShopUserShowcaseInput, type TiktokShopUserShowcaseProduct, type TiktokSongData, type TiktokSongInput, type TiktokSongVideosData, type TiktokSongVideosInput, type TiktokSongVideosVideo, type TiktokTrendingFeedData, type TiktokTrendingFeedInput, type TiktokTrendingFeedVideo, type TiktokVideoCommentsComment, type TiktokVideoCommentsData, type TiktokVideoCommentsInput, type TiktokVideoData, type TiktokVideoInput, type TiktokVideoTranscriptData, type TiktokVideoTranscriptInput, TimeoutError, TripadvisorNamespace, type TripadvisorReviewsData, type TripadvisorReviewsInput, type TripadvisorReviewsItem, type TripadvisorSearchData, type TripadvisorSearchInput, type TripadvisorSearchItem, TrustpilotNamespace, type TrustpilotReviewsData, type TrustpilotReviewsInput, type TrustpilotReviewsItem, TruthsocialNamespace, type TruthsocialPostData, type TruthsocialPostInput, type TruthsocialProfileData, type TruthsocialProfileInput, type TruthsocialUserPostsData, type TruthsocialUserPostsInput, type TruthsocialUserPostsPost, type TwitterArticleContentBlock, type TwitterArticleData, type TwitterArticleEntitie, type TwitterArticleInlineStyle, type TwitterArticleInput, type TwitterCommunityData, type TwitterCommunityInput, type TwitterCommunityTweetsData, type TwitterCommunityTweetsInput, type TwitterCommunityTweetsTweet, type TwitterFollowersData, type TwitterFollowersInput, type TwitterFollowersItem, type TwitterFollowingData, type TwitterFollowingInput, type TwitterFollowingItem, TwitterNamespace, type TwitterProfileData, type TwitterProfileInput, type TwitterRepliesData, type TwitterRepliesInput, type TwitterRepliesItem, type TwitterSearchData, type TwitterSearchInput, type TwitterSearchItem, type TwitterTrendsData, type TwitterTrendsInput, type TwitterTrendsItem, type TwitterTweetData, type TwitterTweetInput, type TwitterTweetTranscriptData, type TwitterTweetTranscriptInput, type TwitterUserPostsData, type TwitterUserPostsInput, type TwitterUserPostsTweet, type TwitterUserTweetsData, type TwitterUserTweetsInput, type TwitterUserTweetsTweet, UpstreamError, type UpworkJobsData, type UpworkJobsInput, type UpworkJobsItem, UpworkNamespace, WalmartNamespace, type WalmartProductData, type WalmartProductInput, type WalmartProductItem, type WebCrawlData, type WebCrawlInput, type WebCrawlItem, type WebMapData, type WebMapInput, type WebMapResult, WebNamespace, type WebScrapeData, type WebScrapeInput, type WebScreenshotData, type WebScreenshotInput, type WebScreenshotItem, type WeiboHotSearchData, type WeiboHotSearchInput, type WeiboHotSearchTopic, WeiboNamespace, type WeiboPostCommentsComment, type WeiboPostCommentsData, type WeiboPostCommentsInput, type WeiboPostData, type WeiboPostInput, type WeiboProfileData, type WeiboProfileInput, type WeiboSearchData, type WeiboSearchInput, type WeiboSearchPost, type WeiboUserPostsData, type WeiboUserPostsInput, type WeiboUserPostsPost, YahooFinanceNamespace, type YahooFinanceQuoteData, type YahooFinanceQuoteInput, type YahooFinanceQuoteItem, YelpNamespace, type YelpSearchCategorie, type YelpSearchData, type YelpSearchInput, type YelpSearchItem, type YoutubeChannelCommunityPostsData, type YoutubeChannelCommunityPostsInput, type YoutubeChannelCommunityPostsPost, type YoutubeChannelData, type YoutubeChannelInput, type YoutubeChannelLivesData, type YoutubeChannelLivesInput, type YoutubeChannelLivesLive, type YoutubeChannelPlaylistsData, type YoutubeChannelPlaylistsInput, type YoutubeChannelPlaylistsPlaylist, type YoutubeChannelShortsData, type YoutubeChannelShortsInput, type YoutubeChannelShortsShort, type YoutubeChannelVideosData, type YoutubeChannelVideosInput, type YoutubeChannelVideosVideo, type YoutubeCommentRepliesComment, type YoutubeCommentRepliesData, type YoutubeCommentRepliesInput, type YoutubeCommunityPostData, type YoutubeCommunityPostInput, YoutubeNamespace, type YoutubePlaylistData, type YoutubePlaylistInput, type YoutubePlaylistVideo, type YoutubeSearchData, type YoutubeSearchHashtagData, type YoutubeSearchHashtagInput, type YoutubeSearchHashtagVideo, type YoutubeSearchInput, type YoutubeSearchVideo, type YoutubeTrendingShortsData, type YoutubeTrendingShortsInput, type YoutubeTrendingShortsShort, type YoutubeVideoCommentsComment, type YoutubeVideoCommentsData, type YoutubeVideoCommentsInput, type YoutubeVideoData, type YoutubeVideoInput, type YoutubeVideoSponsorsData, type YoutubeVideoSponsorsInput, type YoutubeVideoSponsorsSuspectedSponsor, type YoutubeVideoTranscriptData, type YoutubeVideoTranscriptInput, type ZhihuAnswerData, type ZhihuAnswerInput, ZhihuNamespace, type ZhihuProfileData, type ZhihuProfileInput, type ZhihuQuestionAnswersAnswer, type ZhihuQuestionAnswersData, type ZhihuQuestionAnswersInput, type ZhihuQuestionData, type ZhihuQuestionInput, type ZhihuSearchArticlesArticle, type ZhihuSearchArticlesData, type ZhihuSearchArticlesInput, ZillowNamespace, type ZillowPropertyData, type ZillowPropertyInput, type ZillowPropertyItem, type ZillowSearchData, type ZillowSearchInput, type ZillowSearchItem, agentSignup, paginate, unwrap };
26479
+ export { type AccountProfile, type AgentSignupOptions, type AgentSignupResult, type AhrefsBacklinksData, type AhrefsBacklinksInput, type AhrefsBacklinksItem, type AhrefsKeywordIdeasData, type AhrefsKeywordIdeasIdea, type AhrefsKeywordIdeasInput, type AhrefsKeywordIdeasItem, type AhrefsKeywordsData, type AhrefsKeywordsInput, type AhrefsKeywordsItem, AhrefsNamespace, type AhrefsOverviewData, type AhrefsOverviewInput, type AhrefsOverviewItem, AirbnbNamespace, type AirbnbSearchData, type AirbnbSearchInput, type AirbnbSearchItem, AlibabaNamespace, type AlibabaSearchData, type AlibabaSearchInput, type AlibabaSearchItem, type AmazonAsinsData, type AmazonAsinsInput, type AmazonAsinsItem, type AmazonBestsellersData, type AmazonBestsellersInput, type AmazonBestsellersItem, AmazonNamespace, type AmazonProductData, type AmazonProductInput, type AmazonProductItem, type AmazonReviewsData, type AmazonReviewsInput, type AmazonReviewsItem, type AmazonSearchData, type AmazonSearchInput, type AmazonSearchItem, AnyAPI, AnyAPIError, ApolloNamespace, type ApolloOrganizationData, type ApolloOrganizationEnrichData, type ApolloOrganizationEnrichInput, type ApolloOrganizationInput, type ApolloOrganizationJobsData, type ApolloOrganizationJobsInput, type ApolloOrganizationJobsJob, type ApolloOrganizationNewsArticle, type ApolloOrganizationNewsData, type ApolloOrganizationNewsInput, type ApolloOrganizationsBulkEnrichData, type ApolloOrganizationsBulkEnrichInput, type ApolloOrganizationsBulkEnrichOrganization, type ApolloOrganizationsSearchData, type ApolloOrganizationsSearchInput, type ApolloOrganizationsSearchOrganization, type ApolloPeopleSearchData, type ApolloPeopleSearchInput, type ApolloPeopleSearchPeople, type ApolloPersonEnrichData, type ApolloPersonEnrichEmploymentHistory, type ApolloPersonEnrichInput, AppstoreNamespace, type AppstoreReviewsData, type AppstoreReviewsInput, type AppstoreReviewsItem, AuthenticationError, BadRequestError, type BareRunResult, BlueskyNamespace, type BlueskyPostData, type BlueskyPostInput, type BlueskyProfileData, type BlueskyProfileInput, type BlueskyUserPostsData, type BlueskyUserPostsInput, type BlueskyUserPostsPost, BookingNamespace, type BookingSearchData, type BookingSearchInput, type BookingSearchItem, type CatalogEntry, type CatalogOptions, type CatalogSearchResult, type CatalogSearchResults, type ClientCore, type ClientOptions, type CoinmarketcapListingsData, type CoinmarketcapListingsInput, type CoinmarketcapListingsItem, CoinmarketcapNamespace, CongressNamespace, type CongressTradesData, type CongressTradesInput, type CongressTradesItem, ConnectionError, DexscreenerNamespace, type DexscreenerTokensData, type DexscreenerTokensInput, type DexscreenerTokensItem, type DiscoveryLane, type DiscoveryPricing, DouyinNamespace, type DouyinProfileData, type DouyinProfileInput, type DouyinSearchVideosData, type DouyinSearchVideosInput, type DouyinSearchVideosVideo, type DouyinUserPostsData, type DouyinUserPostsInput, type DouyinUserPostsPost, type DouyinVideoCommentsComment, type DouyinVideoCommentsData, type DouyinVideoCommentsInput, type DouyinVideoData, type DouyinVideoInput, EbayNamespace, type EbaySearchData, type EbaySearchInput, type EbaySearchItem, type EbaySoldListingsData, type EbaySoldListingsInput, type EbaySoldListingsItem, type EmailFindData, type EmailFindInput, type EmailFindItem, EmailNamespace, type EmailVerifyData, type EmailVerifyInput, type EmailVerifyItem, type FacebookAdDetailsData, type FacebookAdDetailsInput, type FacebookAdTranscriptData, type FacebookAdTranscriptInput, type FacebookAdsSearchAd, type FacebookAdsSearchData, type FacebookAdsSearchInput, type FacebookCommentRepliesData, type FacebookCommentRepliesInput, type FacebookCommentRepliesReplie, type FacebookCompanyAdsAd, type FacebookCompanyAdsData, type FacebookCompanyAdsInput, type FacebookEventDetailsData, type FacebookEventDetailsInput, type FacebookEventsData, type FacebookEventsEvent, type FacebookEventsInput, type FacebookEventsSearchData, type FacebookEventsSearchEvent, type FacebookEventsSearchInput, type FacebookFollowersData, type FacebookFollowersInput, type FacebookFollowersItem, type FacebookGroupPostsData, type FacebookGroupPostsInput, type FacebookGroupPostsPost, type FacebookMarketplaceData, type FacebookMarketplaceInput, type FacebookMarketplaceItemData, type FacebookMarketplaceItemInput, type FacebookMarketplaceListing, type FacebookMarketplaceLocationSearchData, type FacebookMarketplaceLocationSearchInput, type FacebookMarketplaceLocationSearchLocation, FacebookNamespace, type FacebookPageContactData, type FacebookPageContactInput, type FacebookPageContactItem, type FacebookPhotosData, type FacebookPhotosInput, type FacebookPhotosPhoto, type FacebookPostCommentsComment, type FacebookPostCommentsData, type FacebookPostCommentsInput, type FacebookPostData, type FacebookPostInput, type FacebookPostTranscriptData, type FacebookPostTranscriptInput, type FacebookProfileData, type FacebookProfileEventsData, type FacebookProfileEventsEvent, type FacebookProfileEventsInput, type FacebookProfileInput, type FacebookProfilePostsData, type FacebookProfilePostsInput, type FacebookProfilePostsPost, type FacebookProfileReelsData, type FacebookProfileReelsInput, type FacebookProfileReelsReel, type FacebookSearchCompaniesCompanie, type FacebookSearchCompaniesData, type FacebookSearchCompaniesInput, type FacebookSearchPagesData, type FacebookSearchPagesInput, type FacebookSearchPagesItem, type FacebookSearchPostsData, type FacebookSearchPostsInput, type FacebookSearchPostsItem, FiverrNamespace, type FiverrSearchData, type FiverrSearchInput, type FiverrSearchItem, type FlatPricingOffer, GithubNamespace, type GithubRepositoryData, type GithubRepositoryInput, type GithubTrendingDevelopersData, type GithubTrendingDevelopersDeveloper, type GithubTrendingDevelopersInput, type GithubTrendingRepositoriesData, type GithubTrendingRepositoriesInput, type GithubTrendingRepositoriesRepo, type GithubUserActivityActivity, type GithubUserActivityData, type GithubUserActivityInput, type GithubUserContributionsData, type GithubUserContributionsDay, type GithubUserContributionsInput, type GithubUserData, type GithubUserFollowersData, type GithubUserFollowersFollower, type GithubUserFollowersInput, type GithubUserFollowingData, type GithubUserFollowingFollowing, type GithubUserFollowingInput, type GithubUserInput, type GithubUserPullRequestsData, type GithubUserPullRequestsInput, type GithubUserPullRequestsPullRequest, type GithubUserRepositoriesData, type GithubUserRepositoriesInput, type GithubUserRepositoriesRepo, type GlassdoorJobsData, type GlassdoorJobsInput, type GlassdoorJobsItem, GlassdoorNamespace, type GoogleAdsAdDetailsData, type GoogleAdsAdDetailsInput, type GoogleAdsAdDetailsVariation, type GoogleAdsAdvertiserSearchAdvertiser, type GoogleAdsAdvertiserSearchData, type GoogleAdsAdvertiserSearchInput, type GoogleAdsCompanyAdsAd, type GoogleAdsCompanyAdsData, type GoogleAdsCompanyAdsInput, GoogleAdsNamespace, type GoogleAdsSearchData, type GoogleAdsSearchInput, type GoogleAdsSearchItem, type GoogleAdsSearchVariation, type GoogleAutocompleteData, type GoogleAutocompleteInput, type GoogleAutocompleteSuggestion, GoogleFinanceNamespace, type GoogleFinanceQuoteData, type GoogleFinanceQuoteInput, type GoogleFinanceQuoteItem, type GoogleImagesData, type GoogleImagesInput, type GoogleImagesItem, type GoogleLensData, type GoogleLensInput, type GoogleLensResult, GoogleNamespace, type GoogleNewsData, type GoogleNewsInput, type GoogleNewsItem, type GooglePatentsData, type GooglePatentsInput, type GooglePatentsResult, type GoogleScholarData, type GoogleScholarInput, type GoogleScholarResult, type GoogleSearchData, type GoogleSearchInput, type GoogleSearchResult, GoogleShoppingNamespace, type GoogleShoppingSearchData, type GoogleShoppingSearchInput, type GoogleShoppingSearchItem, type GoogleVideosData, type GoogleVideosInput, type GoogleVideosResult, HackernewsNamespace, type HackernewsProfileData, type HackernewsProfileInput, type HackernewsSearchData, type HackernewsSearchInput, type HackernewsSearchResult, type HackernewsStoryCommentsComment, type HackernewsStoryCommentsData, type HackernewsStoryCommentsInput, type HackernewsStoryData, type HackernewsStoryInput, type HighlightField, type IndeedJobsData, type IndeedJobsInput, type IndeedJobsItem, IndeedNamespace, type InstagramAudioReelsData, type InstagramAudioReelsInput, type InstagramAudioReelsReel, type InstagramBasicProfileData, type InstagramBasicProfileInput, type InstagramCommentRepliesComment, type InstagramCommentRepliesData, type InstagramCommentRepliesInput, type InstagramEmbedData, type InstagramEmbedInput, type InstagramFollowersData, type InstagramFollowersInput, type InstagramFollowersItem, type InstagramFollowingData, type InstagramFollowingInput, type InstagramFollowingItem, type InstagramHashtagAnalyticsData, type InstagramHashtagAnalyticsInput, type InstagramHashtagAnalyticsItem, type InstagramHighlightDetailData, type InstagramHighlightDetailInput, type InstagramMediaTranscriptData, type InstagramMediaTranscriptInput, type InstagramMediaTranscriptTranscript, InstagramNamespace, type InstagramPostCommentsComment, type InstagramPostCommentsData, type InstagramPostCommentsInput, type InstagramPostData, type InstagramPostInput, type InstagramProfileData, type InstagramProfileInput, type InstagramReelTranscriptData, type InstagramReelTranscriptInput, type InstagramReelTranscriptItem, type InstagramReelTranscriptSegment, type InstagramReelsSearchData, type InstagramReelsSearchInput, type InstagramReelsSearchReel, type InstagramSearchData, type InstagramSearchHashtagData, type InstagramSearchHashtagInput, type InstagramSearchHashtagPost, type InstagramSearchInput, type InstagramSearchItem, type InstagramSearchProfilesData, type InstagramSearchProfilesInput, type InstagramSearchProfilesProfile, type InstagramStoriesFullData, type InstagramStoriesFullInput, type InstagramStoriesFullItem, type InstagramStoriesThinData, type InstagramStoriesThinInput, type InstagramStoriesThinItem, type InstagramTaggedPostsData, type InstagramTaggedPostsInput, type InstagramTaggedPostsPost, type InstagramTrendingReelsData, type InstagramTrendingReelsInput, type InstagramTrendingReelsReel, type InstagramUserHighlightsData, type InstagramUserHighlightsHighlight, type InstagramUserHighlightsInput, type InstagramUserPostsData, type InstagramUserPostsInput, type InstagramUserPostsPost, type InstagramUserReelsData, type InstagramUserReelsInput, type InstagramUserReelsReel, InsufficientBalanceError, type LaneHealth, type LinearPricingOffer, type LinkedinAdData, type LinkedinAdInput, type LinkedinAdsData, type LinkedinAdsInput, type LinkedinAdsItem, type LinkedinAdsSearchAd, type LinkedinAdsSearchData, type LinkedinAdsSearchInput, type LinkedinCompanyData, type LinkedinCompanyEmployeesData, type LinkedinCompanyEmployeesInput, type LinkedinCompanyEmployeesItem, type LinkedinCompanyInput, type LinkedinCompanyLocation, type LinkedinCompanyPostsContentAttribute, type LinkedinCompanyPostsData, type LinkedinCompanyPostsInput, type LinkedinCompanyPostsItem, type LinkedinCompanyPostsPostImage, type LinkedinCompanyPostsReaction, type LinkedinCompanyPostsThinData, type LinkedinCompanyPostsThinInput, type LinkedinCompanyPostsThinItem, type LinkedinCompanyThinData, type LinkedinCompanyThinInput, type LinkedinEmailData, type LinkedinEmailEmail, type LinkedinEmailInput, type LinkedinJobsData, type LinkedinJobsInput, type LinkedinJobsItem, type LinkedinJobsThinData, type LinkedinJobsThinInput, type LinkedinJobsThinItem, LinkedinNamespace, type LinkedinPostCommentsData, type LinkedinPostCommentsInput, type LinkedinPostCommentsItem, type LinkedinPostData, type LinkedinPostInput, type LinkedinPostReactionsData, type LinkedinPostReactionsInput, type LinkedinPostReactionsItem, type LinkedinPostTranscriptData, type LinkedinPostTranscriptInput, type LinkedinProfileCertification, type LinkedinProfileCurrentPosition, type LinkedinProfileData, type LinkedinProfileEducation, type LinkedinProfileExperience, type LinkedinProfileHonorsAndAward, type LinkedinProfileInput, type LinkedinProfilePostsFullBreakdown, type LinkedinProfilePostsFullContentAnnotation, type LinkedinProfilePostsFullData, type LinkedinProfilePostsFullImage, type LinkedinProfilePostsFullInput, type LinkedinProfilePostsFullItem, type LinkedinProfilePostsFullRepostImage, type LinkedinProfilePostsThinData, type LinkedinProfilePostsThinImage, type LinkedinProfilePostsThinInput, type LinkedinProfilePostsThinItem, type LinkedinProfilePublication, type LinkedinProfileThinArticle, type LinkedinProfileThinData, type LinkedinProfileThinEducation, type LinkedinProfileThinExperience, type LinkedinProfileThinInput, type LinkedinProfileThinRecentPost, type LinkedinSearchCompaniesData, type LinkedinSearchCompaniesInput, type LinkedinSearchCompaniesItem, type LinkedinSearchPostsData, type LinkedinSearchPostsInput, type LinkedinSearchPostsPost, type LinkedinSearchProfilesCurrentPosition, type LinkedinSearchProfilesData, type LinkedinSearchProfilesEducation, type LinkedinSearchProfilesEmailCurrentPosition, type LinkedinSearchProfilesEmailData, type LinkedinSearchProfilesEmailEducation, type LinkedinSearchProfilesEmailEmail, type LinkedinSearchProfilesEmailExperience, type LinkedinSearchProfilesEmailInput, type LinkedinSearchProfilesEmailItem, type LinkedinSearchProfilesExperience, type LinkedinSearchProfilesInput, type LinkedinSearchProfilesItem, type LinkedinSearchProfilesThinData, type LinkedinSearchProfilesThinInput, type LinkedinSearchProfilesThinItem, type MapsContactsData, type MapsContactsInput, type MapsContactsItem, MapsNamespace, type MapsPlaceData, type MapsPlaceHour, type MapsPlaceInput, type MapsPlaceItem, type MapsReviewsData, type MapsReviewsInput, type MapsReviewsItem, type MapsSearchData, type MapsSearchInput, type MapsSearchItem, NotFoundError, type Output, type Paginator, type PandaexpressLocationsData, type PandaexpressLocationsInput, type PandaexpressLocationsRestaurant, type PandaexpressMenuCategorie, type PandaexpressMenuData, type PandaexpressMenuInput, type PandaexpressMenuItem, PandaexpressNamespace, type PandaexpressNutritionData, type PandaexpressNutritionInput, type PandaexpressNutritionItem, PersonNamespace, type PersonSkipTraceAssociate, type PersonSkipTraceData, type PersonSkipTraceInput, type PersonSkipTraceItem, type PersonSkipTracePreviousAddresse, type PersonSkipTraceRelative, PinterestNamespace, type PinterestSearchData, type PinterestSearchInput, type PinterestSearchItem, PlaystoreNamespace, type PlaystoreReviewsData, type PlaystoreReviewsInput, type PlaystoreReviewsItem, type PolymarketMarketsData, type PolymarketMarketsInput, type PolymarketMarketsItem, type PolymarketMarketsOutcome, PolymarketNamespace, type PricingOffer, RateLimitedError, RealtorNamespace, type RealtorSearchData, type RealtorSearchInput, type RealtorSearchItem, RedditNamespace, type RedditPostCommentsComment, type RedditPostCommentsData, type RedditPostCommentsInput, type RedditPostData, type RedditPostInput, type RedditPostTranscriptData, type RedditPostTranscriptInput, type RedditProfileData, type RedditProfileInput, type RedditSearchData, type RedditSearchInput, type RedditSearchPost, type RedditSubredditDetailsData, type RedditSubredditDetailsInput, type RedditSubredditPostsData, type RedditSubredditPostsInput, type RedditSubredditPostsPost, type RedditSubredditSearchData, type RedditSubredditSearchInput, type RedditSubredditSearchPost, type RedditTrendingPostsData, type RedditTrendingPostsInput, type RedditTrendingPostsPost, type RedditUserCommentsComment, type RedditUserCommentsData, type RedditUserCommentsInput, type RedditUserPostsData, type RedditUserPostsInput, type RedditUserPostsPost, RedfinNamespace, type RedfinSearchData, type RedfinSearchInput, type RedfinSearchItem, RednoteNamespace, type RednoteNoteCommentsComment, type RednoteNoteCommentsData, type RednoteNoteCommentsInput, type RednoteNoteData, type RednoteNoteInput, type RednoteProfileData, type RednoteProfileInput, type RednoteSearchData, type RednoteSearchInput, type RednoteSearchNote, type RednoteSearchUsersData, type RednoteSearchUsersInput, type RednoteSearchUsersUser, type RednoteUserNotesData, type RednoteUserNotesInput, type RednoteUserNotesNote, type RequestOptions, ResultNotFoundError, type RunResult, type SearchOptions, type SecFilingsData, type SecFilingsInput, type SecFilingsItem, SecNamespace, type SemrushKeywordsData, type SemrushKeywordsInput, type SemrushKeywordsItem, type SemrushKeywordsQuestion, type SemrushKeywordsRelatedKeyword, SemrushNamespace, type SemrushOverviewData, type SemrushOverviewInput, type SemrushOverviewItem, type SemrushOverviewTopKeyword, type SeoCompetitorsDomainCompetitor, type SeoCompetitorsDomainData, type SeoCompetitorsDomainInput, type SeoDomainIntersectionData, type SeoDomainIntersectionInput, type SeoDomainIntersectionKeyword, type SeoDomainRankOverviewData, type SeoDomainRankOverviewInput, type SeoKeywordDifficultyData, type SeoKeywordDifficultyDifficultie, type SeoKeywordDifficultyInput, type SeoKeywordIdeasData, type SeoKeywordIdeasIdea, type SeoKeywordIdeasInput, type SeoKeywordOverviewData, type SeoKeywordOverviewInput, type SeoKeywordOverviewKeyword, type SeoKeywordOverviewMonthlySearche, type SeoKeywordSuggestionsData, type SeoKeywordSuggestionsInput, type SeoKeywordSuggestionsSuggestion, type SeoLocalPackData, type SeoLocalPackInput, type SeoLocalPackPlace, SeoNamespace, type SeoRankedKeywordsData, type SeoRankedKeywordsInput, type SeoRankedKeywordsRankedKeyword, type SeoRelatedKeywordsData, type SeoRelatedKeywordsInput, type SeoRelatedKeywordsRelatedKeyword, type SeoSearchIntentData, type SeoSearchIntentInput, type SeoSearchIntentIntent, type SeoSearchVolumeData, type SeoSearchVolumeInput, type SeoSearchVolumeKeyword, type SeoSearchVolumeMonthlySearche, type SkuMap, SnapchatNamespace, type SnapchatProfileData, type SnapchatProfileInput, type SnapchatProfileItem, type SnapchatProfileStorie, type SocialFinderData, type SocialFinderInput, type SocialFinderItem, SocialNamespace, type SpotifyAlbumData, type SpotifyAlbumInput, type SpotifyAlbumTrack, type SpotifyArtistAlbum, type SpotifyArtistData, type SpotifyArtistInput, type SpotifyArtistTopTrack, SpotifyNamespace, type SpotifyPlayCountData, type SpotifyPlayCountInput, type SpotifyPlayCountItem, type SpotifyPodcastData, type SpotifyPodcastEpisodesData, type SpotifyPodcastEpisodesEpisode, type SpotifyPodcastEpisodesInput, type SpotifyPodcastInput, type SpotifySearchAlbum, type SpotifySearchArtist, type SpotifySearchData, type SpotifySearchInput, type SpotifySearchPodcast, type SpotifySearchTrack, type SpotifyTrackData, type SpotifyTrackInput, SubstackNamespace, type SubstackPostsData, type SubstackPostsInput, type SubstackPostsItem, ThreadsNamespace, type ThreadsPostData, type ThreadsPostInput, type ThreadsProfileData, type ThreadsProfileInput, type ThreadsSearchData, type ThreadsSearchInput, type ThreadsSearchPost, type ThreadsSearchUsersData, type ThreadsSearchUsersInput, type ThreadsSearchUsersUser, type ThreadsUserPostsData, type ThreadsUserPostsInput, type ThreadsUserPostsPost, type TiktokAdLibraryAdData, type TiktokAdLibraryAdInput, type TiktokAdLibrarySearchAd, type TiktokAdLibrarySearchData, type TiktokAdLibrarySearchInput, type TiktokAudienceDemographicsAudienceLocation, type TiktokAudienceDemographicsData, type TiktokAudienceDemographicsInput, type TiktokCommentRepliesComment, type TiktokCommentRepliesData, type TiktokCommentRepliesInput, type TiktokFollowersData, type TiktokFollowersFollower, type TiktokFollowersInput, type TiktokFollowingData, type TiktokFollowingFollowing, type TiktokFollowingInput, type TiktokHashtagVideosData, type TiktokHashtagVideosInput, type TiktokHashtagVideosItem, type TiktokLiveData, type TiktokLiveInput, TiktokNamespace, type TiktokProfileData, type TiktokProfileInput, type TiktokProfileRegionData, type TiktokProfileRegionInput, type TiktokProfileVideosData, type TiktokProfileVideosInput, type TiktokProfileVideosVideo, type TiktokSearchHashtagData, type TiktokSearchHashtagInput, type TiktokSearchHashtagVideo, type TiktokSearchKeywordData, type TiktokSearchKeywordInput, type TiktokSearchKeywordVideo, type TiktokSearchTopData, type TiktokSearchTopInput, type TiktokSearchTopItem, type TiktokSearchUsersData, type TiktokSearchUsersInput, type TiktokSearchUsersUser, TiktokShopNamespace, type TiktokShopProductData, type TiktokShopProductInput, type TiktokShopProductReviewsData, type TiktokShopProductReviewsInput, type TiktokShopProductReviewsReview, type TiktokShopSearchData, type TiktokShopSearchInput, type TiktokShopSearchItem, type TiktokShopShopProductsData, type TiktokShopShopProductsInput, type TiktokShopShopProductsProduct, type TiktokShopUserShowcaseData, type TiktokShopUserShowcaseInput, type TiktokShopUserShowcaseProduct, type TiktokSongData, type TiktokSongInput, type TiktokSongVideosData, type TiktokSongVideosInput, type TiktokSongVideosVideo, type TiktokTrendingFeedData, type TiktokTrendingFeedInput, type TiktokTrendingFeedVideo, type TiktokVideoCommentsComment, type TiktokVideoCommentsData, type TiktokVideoCommentsInput, type TiktokVideoData, type TiktokVideoInput, type TiktokVideoTranscriptData, type TiktokVideoTranscriptInput, TimeoutError, TripadvisorNamespace, type TripadvisorReviewsData, type TripadvisorReviewsInput, type TripadvisorReviewsItem, type TripadvisorSearchData, type TripadvisorSearchInput, type TripadvisorSearchItem, TrustpilotNamespace, type TrustpilotReviewsData, type TrustpilotReviewsInput, type TrustpilotReviewsItem, TruthsocialNamespace, type TruthsocialPostData, type TruthsocialPostInput, type TruthsocialProfileData, type TruthsocialProfileInput, type TruthsocialUserPostsData, type TruthsocialUserPostsInput, type TruthsocialUserPostsPost, type TwitterArticleContentBlock, type TwitterArticleData, type TwitterArticleEntitie, type TwitterArticleInlineStyle, type TwitterArticleInput, type TwitterCommunityData, type TwitterCommunityInput, type TwitterCommunityTweetsData, type TwitterCommunityTweetsInput, type TwitterCommunityTweetsTweet, type TwitterFollowersData, type TwitterFollowersInput, type TwitterFollowersItem, type TwitterFollowingData, type TwitterFollowingInput, type TwitterFollowingItem, TwitterNamespace, type TwitterProfileData, type TwitterProfileInput, type TwitterRepliesData, type TwitterRepliesInput, type TwitterRepliesItem, type TwitterSearchData, type TwitterSearchInput, type TwitterSearchItem, type TwitterTrendsData, type TwitterTrendsInput, type TwitterTrendsItem, type TwitterTweetData, type TwitterTweetInput, type TwitterTweetTranscriptData, type TwitterTweetTranscriptInput, type TwitterUserPostsData, type TwitterUserPostsInput, type TwitterUserPostsTweet, type TwitterUserTweetsData, type TwitterUserTweetsInput, type TwitterUserTweetsTweet, UpstreamError, type UpworkJobsData, type UpworkJobsInput, type UpworkJobsItem, UpworkNamespace, WalmartNamespace, type WalmartProductData, type WalmartProductInput, type WalmartProductItem, type WebCrawlData, type WebCrawlInput, type WebCrawlItem, type WebMapData, type WebMapInput, type WebMapResult, WebNamespace, type WebScrapeData, type WebScrapeInput, type WebScreenshotData, type WebScreenshotInput, type WebScreenshotItem, type WeiboHotSearchData, type WeiboHotSearchInput, type WeiboHotSearchTopic, WeiboNamespace, type WeiboPostCommentsComment, type WeiboPostCommentsData, type WeiboPostCommentsInput, type WeiboPostData, type WeiboPostInput, type WeiboProfileData, type WeiboProfileInput, type WeiboSearchData, type WeiboSearchInput, type WeiboSearchPost, type WeiboUserPostsData, type WeiboUserPostsInput, type WeiboUserPostsPost, YahooFinanceNamespace, type YahooFinanceQuoteData, type YahooFinanceQuoteInput, type YahooFinanceQuoteItem, YelpNamespace, type YelpSearchCategorie, type YelpSearchData, type YelpSearchInput, type YelpSearchItem, type YoutubeChannelCommunityPostsData, type YoutubeChannelCommunityPostsInput, type YoutubeChannelCommunityPostsPost, type YoutubeChannelData, type YoutubeChannelInput, type YoutubeChannelLivesData, type YoutubeChannelLivesInput, type YoutubeChannelLivesLive, type YoutubeChannelPlaylistsData, type YoutubeChannelPlaylistsInput, type YoutubeChannelPlaylistsPlaylist, type YoutubeChannelShortsData, type YoutubeChannelShortsInput, type YoutubeChannelShortsShort, type YoutubeChannelVideosData, type YoutubeChannelVideosInput, type YoutubeChannelVideosVideo, type YoutubeCommentRepliesComment, type YoutubeCommentRepliesData, type YoutubeCommentRepliesInput, type YoutubeCommunityPostData, type YoutubeCommunityPostInput, YoutubeNamespace, type YoutubePlaylistData, type YoutubePlaylistInput, type YoutubePlaylistVideo, type YoutubeSearchData, type YoutubeSearchHashtagData, type YoutubeSearchHashtagInput, type YoutubeSearchHashtagVideo, type YoutubeSearchInput, type YoutubeSearchVideo, type YoutubeTrendingShortsData, type YoutubeTrendingShortsInput, type YoutubeTrendingShortsShort, type YoutubeVideoCommentsComment, type YoutubeVideoCommentsData, type YoutubeVideoCommentsInput, type YoutubeVideoData, type YoutubeVideoInput, type YoutubeVideoSponsorsData, type YoutubeVideoSponsorsInput, type YoutubeVideoSponsorsSuspectedSponsor, type YoutubeVideoTranscriptData, type YoutubeVideoTranscriptInput, type ZhihuAnswerData, type ZhihuAnswerInput, ZhihuNamespace, type ZhihuProfileData, type ZhihuProfileInput, type ZhihuQuestionAnswersAnswer, type ZhihuQuestionAnswersData, type ZhihuQuestionAnswersInput, type ZhihuQuestionData, type ZhihuQuestionInput, type ZhihuSearchArticlesArticle, type ZhihuSearchArticlesData, type ZhihuSearchArticlesInput, ZillowNamespace, type ZillowPropertyData, type ZillowPropertyInput, type ZillowPropertyItem, type ZillowSearchData, type ZillowSearchInput, type ZillowSearchItem, agentSignup, paginate, unwrap };