@getanyapi/sdk 0.45.0 → 0.46.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
@@ -14974,7 +14974,7 @@ interface GoogleSearchInput {
14974
14974
  */
14975
14975
  limit?: number;
14976
14976
  /**
14977
- * Fine-grained location for result localization, given as a canonical Google location string (e.g. 'New York, United States', 'London, United Kingdom'). More specific than the country-level gl.
14977
+ * Fine-grained location to localize results to, more specific than the country-level gl. Must exactly match an Active Canonical Name from Google's geo-target list, which uses no space after each comma: 'New York,New York,United States', 'Austin,Texas,United States', 'London,England,United Kingdom'. A value that does not match is rejected rather than quietly searched from somewhere else.
14978
14978
  */
14979
14979
  location?: string;
14980
14980
  /**
@@ -15271,7 +15271,7 @@ declare class GoogleNamespace {
15271
15271
  *
15272
15272
  * Run a Google web search and get the organic results (title, link, snippet, position) as clean JSON. Returns about 10 results per call - Google stopped honoring bulk result counts in September 2025, so a limit above 10 is accepted but returns no more than a page. Pass the returned nextCursor back as cursor to walk further, or use google.search_100 for up to 100 ranked results in one call, which is cheaper past roughly 20 results.
15273
15273
  *
15274
- * Price: $0.0005 per request.
15274
+ * Price: $0.0004 per request.
15275
15275
  *
15276
15276
  * @example
15277
15277
  * const res = await client.google.search({ query: "best coffee maker", gl: "us", hl: "en", limit: 10 });
@@ -17498,7 +17498,7 @@ interface InstagramReelTranscriptItem {
17498
17498
  */
17499
17499
  ownerUsername?: string;
17500
17500
  /**
17501
- * Time-aligned transcript segments, each with its text, speaker label, and start/end offsets in seconds. Empty when the reel has no detectable spoken audio.
17501
+ * Time-aligned transcript segments in playback order, one per sentence, each with its text, speaker label, and start/end offsets in seconds. A segment starts when its first word is spoken and ends when its last one finishes. Empty when the reel has no detectable spoken audio.
17502
17502
  */
17503
17503
  segments?: InstagramReelTranscriptSegment[];
17504
17504
  /**
@@ -18910,7 +18910,7 @@ declare class InstagramNamespace {
18910
18910
  *
18911
18911
  * Fetch an Instagram account's public profile (followers, posts, bio, verification) by handle.
18912
18912
  *
18913
- * Price: $0.0012 per request.
18913
+ * Price: $0.0005 per request.
18914
18914
  *
18915
18915
  * @example
18916
18916
  * const res = await client.instagram.profile({ handle: "nasa" });
@@ -24688,6 +24688,144 @@ interface MapsSearchData {
24688
24688
  */
24689
24689
  items: MapsSearchItem[];
24690
24690
  }
24691
+ /**
24692
+ * Input for Google Maps Nearby Search (maps.search_nearby).
24693
+ */
24694
+ interface MapsSearchNearbyInput {
24695
+ /**
24696
+ * The exact map centre to search around. Use maps.search instead if you only have a place name.
24697
+ */
24698
+ coordinates: {
24699
+ /**
24700
+ * Latitude of the map centre in decimal degrees.
24701
+ * Range: minimum -90, maximum 90.
24702
+ */
24703
+ latitude: number;
24704
+ /**
24705
+ * Longitude of the map centre in decimal degrees.
24706
+ * Range: minimum -180, maximum 180.
24707
+ */
24708
+ longitude: number;
24709
+ };
24710
+ /**
24711
+ * Opaque cursor from a previous response's nextCursor. Pass it back to get the next page of places.
24712
+ */
24713
+ cursor?: string | null;
24714
+ /**
24715
+ * Two-letter language code for the results (e.g. en).
24716
+ * Default: en.
24717
+ */
24718
+ language?: string;
24719
+ /**
24720
+ * Maximum number of places to return in this response (1-20). Google Maps returns one viewport of about 20 places per call; page with cursor for more. Price is flat per request.
24721
+ * Range: minimum 1, maximum 20.
24722
+ * Default: 20.
24723
+ */
24724
+ limit?: number;
24725
+ /**
24726
+ * 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.
24727
+ * Range: minimum 1.
24728
+ */
24729
+ preferLatencyUnderMs?: number;
24730
+ /**
24731
+ * What you would type in the Google Maps search bar (e.g. coffee shop).
24732
+ */
24733
+ query: string;
24734
+ /**
24735
+ * Google Maps viewport zoom. Lower covers a wider area, higher focuses more tightly around the coordinates.
24736
+ * Range: minimum 3, maximum 21.
24737
+ * Default: 13.1.
24738
+ */
24739
+ zoom?: number;
24740
+ }
24741
+ interface MapsSearchNearbyItem {
24742
+ /**
24743
+ * Full formatted street address.
24744
+ */
24745
+ address?: string;
24746
+ /**
24747
+ * Primary place category (e.g. Coffee shop).
24748
+ */
24749
+ category?: string;
24750
+ /**
24751
+ * Google customer/place id (cid).
24752
+ */
24753
+ cid?: string;
24754
+ /**
24755
+ * City the place is in.
24756
+ */
24757
+ city?: string;
24758
+ /**
24759
+ * Two-letter country code.
24760
+ */
24761
+ countryCode?: string;
24762
+ /**
24763
+ * Thumbnail photo URL for the place.
24764
+ */
24765
+ image?: string;
24766
+ /**
24767
+ * Latitude of the place in decimal degrees.
24768
+ */
24769
+ latitude?: number;
24770
+ /**
24771
+ * Longitude of the place in decimal degrees.
24772
+ */
24773
+ longitude?: number;
24774
+ /**
24775
+ * Place name. Populated whenever the provider has data for the entity.
24776
+ */
24777
+ name: string;
24778
+ /**
24779
+ * Business phone number, when listed.
24780
+ */
24781
+ phone?: string;
24782
+ /**
24783
+ * Google Maps place id (stable identifier for the place). Populated whenever the provider has data for the entity.
24784
+ */
24785
+ placeId: string;
24786
+ /**
24787
+ * Postal code of the place.
24788
+ */
24789
+ postalCode?: string;
24790
+ /**
24791
+ * Average Google rating out of 5.
24792
+ */
24793
+ rating?: number;
24794
+ /**
24795
+ * Number of Google reviews the place has.
24796
+ */
24797
+ reviewCount?: number;
24798
+ /**
24799
+ * State or region the place is in, spelled in full (e.g. Texas).
24800
+ */
24801
+ state?: string;
24802
+ /**
24803
+ * Street line of the address.
24804
+ */
24805
+ street?: string;
24806
+ /**
24807
+ * Canonical Google Maps URL for the place. Populated whenever the provider has data for the entity.
24808
+ */
24809
+ url: string;
24810
+ /**
24811
+ * The place's own website URL, when listed.
24812
+ */
24813
+ website?: string;
24814
+ [extra: string]: unknown;
24815
+ }
24816
+ /**
24817
+ * The `data` payload of Google Maps Nearby Search (maps.search_nearby).
24818
+ */
24819
+ interface MapsSearchNearbyData {
24820
+ /**
24821
+ * Matching Google Maps place records, nearest the requested coordinates first. Populated whenever the provider has data for the entity.
24822
+ */
24823
+ items: MapsSearchNearbyItem[];
24824
+ /**
24825
+ * Opaque cursor for the next page of places, or null when this search is complete. Pass it back as cursor to continue.
24826
+ */
24827
+ nextCursor?: string | null;
24828
+ }
24691
24829
  /**
24692
24830
  * Typed methods for the maps platform. Attached to the AnyAPI client as
24693
24831
  * `client.maps`.
@@ -24739,6 +24877,24 @@ declare class MapsNamespace {
24739
24877
  * const res = await client.maps.search({ location: "Austin, TX", query: "coffee", limit: 3 });
24740
24878
  */
24741
24879
  search(input: MapsSearchInput, options?: RequestOptions): Promise<RunResult<MapsSearchData>>;
24880
+ /**
24881
+ * Google Maps Nearby Search
24882
+ *
24883
+ * Search Google Maps around an exact latitude and longitude and get up to 20 normalized places per call, each with the address broken into street, city, state, postal code and country. Use this when you have coordinates and want the map viewport centred on them; use maps.search when you only have a place name. Pass the returned nextCursor back as cursor for the next 20 places.
24884
+ *
24885
+ * Price: $0.0013 per request.
24886
+ *
24887
+ * @example
24888
+ * const res = await client.maps.searchNearby({ coordinates: { latitude: 30.2672, longitude: -97.7431 }, query: "coffee shop", limit: 20 });
24889
+ */
24890
+ searchNearby(input: MapsSearchNearbyInput, options?: RequestOptions): Promise<RunResult<MapsSearchNearbyData>>;
24891
+ /**
24892
+ * Iterate every result of Google Maps Nearby Search across pages.
24893
+ *
24894
+ * Yields items directly; call `.pages()` on the return value to walk whole
24895
+ * result pages instead (each carries its own costUsd).
24896
+ */
24897
+ iterSearchNearby(input: MapsSearchNearbyInput, options?: RequestOptions): Paginator<MapsSearchNearbyItem, RunResult<MapsSearchNearbyData>>;
24742
24898
  }
24743
24899
 
24744
24900
  /**
@@ -47501,6 +47657,11 @@ interface SkuMap {
47501
47657
  data: MapsSearchData;
47502
47658
  result: RunResult<MapsSearchData>;
47503
47659
  };
47660
+ "maps.search_nearby": {
47661
+ input: MapsSearchNearbyInput;
47662
+ data: MapsSearchNearbyData;
47663
+ result: RunResult<MapsSearchNearbyData>;
47664
+ };
47504
47665
  "mobile_phone.ai_ark": {
47505
47666
  input: MobilePhoneAiArkInput;
47506
47667
  data: MobilePhoneAiArkData;
@@ -48704,4 +48865,4 @@ declare class AnyAPI extends AnyAPI$1 {
48704
48865
  get zillow(): ZillowNamespace;
48705
48866
  }
48706
48867
 
48707
- 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 };
48868
+ 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 MapsSearchNearbyData, type MapsSearchNearbyInput, type MapsSearchNearbyItem, 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 };