@getanyapi/sdk 0.19.0 → 0.21.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
@@ -2908,6 +2908,293 @@ declare class BookingNamespace {
2908
2908
  search(input: BookingSearchInput, options?: RequestOptions): Promise<RunResult<BookingSearchData>>;
2909
2909
  }
2910
2910
 
2911
+ /**
2912
+ * Input for ChatGPT Brand Visibility (chatgpt.brand_visibility).
2913
+ */
2914
+ interface ChatgptBrandVisibilityInput {
2915
+ /**
2916
+ * Alternative brand names to include in mention analysis.
2917
+ */
2918
+ aliases?: string[];
2919
+ /**
2920
+ * Brand name to measure in the answer.
2921
+ */
2922
+ brand: string;
2923
+ /**
2924
+ * Competitor brand names to compare against the target brand.
2925
+ */
2926
+ competitors?: string[];
2927
+ /**
2928
+ * Country context for the answer and web search (default US).
2929
+ * Default: US.
2930
+ */
2931
+ country?: string;
2932
+ /**
2933
+ * Brand domain used to attribute citations when supplied.
2934
+ */
2935
+ domain?: string;
2936
+ /**
2937
+ * Question or topic ChatGPT should answer while measuring brand visibility.
2938
+ */
2939
+ prompt: string;
2940
+ }
2941
+ interface ChatgptBrandVisibilityCitation {
2942
+ /**
2943
+ * Source attribution label when supplied. Populated whenever the provider has data for the entity.
2944
+ * Present whenever the upstream returns this record.
2945
+ */
2946
+ attribution?: string;
2947
+ /**
2948
+ * Source domain. Populated whenever the provider has data for the entity.
2949
+ * Present whenever the upstream returns this record.
2950
+ */
2951
+ domain?: string;
2952
+ /**
2953
+ * End character offset of the citation evidence. Populated whenever the provider has data for the entity.
2954
+ * Present whenever the upstream returns this record.
2955
+ */
2956
+ endIndex?: number;
2957
+ /**
2958
+ * Answer text matched to the citation evidence.
2959
+ */
2960
+ matchedText?: string;
2961
+ /**
2962
+ * Source publication UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
2963
+ */
2964
+ pubDateUtc?: number;
2965
+ /**
2966
+ * Source published UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
2967
+ */
2968
+ publishedUtc?: number;
2969
+ /**
2970
+ * Source evidence snippet when supplied. Populated whenever the provider has data for the entity.
2971
+ * Present whenever the upstream returns this record.
2972
+ */
2973
+ snippet?: string;
2974
+ /**
2975
+ * Start character offset of the citation evidence. Populated whenever the provider has data for the entity.
2976
+ * Present whenever the upstream returns this record.
2977
+ */
2978
+ startIndex?: number;
2979
+ /**
2980
+ * Source page title when supplied. Populated whenever the provider has data for the entity.
2981
+ * Present whenever the upstream returns this record.
2982
+ */
2983
+ title?: string;
2984
+ /**
2985
+ * Canonical source URL. Populated whenever the provider has data for the entity.
2986
+ * Format: uri.
2987
+ */
2988
+ url: string;
2989
+ [extra: string]: unknown;
2990
+ }
2991
+ interface ChatgptBrandVisibilityCompetitor {
2992
+ /**
2993
+ * Whether the answer cites the competitor. Populated whenever the provider has data for the entity.
2994
+ * Present whenever the upstream returns this record.
2995
+ */
2996
+ cited?: boolean;
2997
+ /**
2998
+ * URLs attributed to the competitor.
2999
+ */
3000
+ citedUrls?: string[];
3001
+ /**
3002
+ * Character position of the first competitor mention. Populated whenever the provider has data for the entity.
3003
+ * Present whenever the upstream returns this record.
3004
+ */
3005
+ firstPosition?: number;
3006
+ /**
3007
+ * Number of competitor mentions in the answer. Populated whenever the provider has data for the entity.
3008
+ * Present whenever the upstream returns this record.
3009
+ */
3010
+ mentionCount?: number;
3011
+ /**
3012
+ * Whether the answer mentions the competitor. Populated whenever the provider has data for the entity.
3013
+ * Present whenever the upstream returns this record.
3014
+ */
3015
+ mentioned?: boolean;
3016
+ /**
3017
+ * Competitor brand name.
3018
+ */
3019
+ name: string;
3020
+ [extra: string]: unknown;
3021
+ }
3022
+ /**
3023
+ * The `data` payload of ChatGPT Brand Visibility (chatgpt.brand_visibility).
3024
+ */
3025
+ interface ChatgptBrandVisibilityData {
3026
+ /**
3027
+ * Full answer used for the visibility analysis. Populated whenever the provider has data for the entity.
3028
+ * Present whenever the upstream returns this record.
3029
+ */
3030
+ answer?: string;
3031
+ /**
3032
+ * Brand measured in the answer.
3033
+ */
3034
+ brand: string;
3035
+ /**
3036
+ * One-based citation rank for the brand, or null when it was not cited. Populated whenever the provider has data for the entity.
3037
+ * Present whenever the upstream returns this record.
3038
+ */
3039
+ citationRank?: number | null;
3040
+ /**
3041
+ * Sources cited by the answer. Populated whenever the provider has data for the entity.
3042
+ * Present whenever the upstream returns this record.
3043
+ */
3044
+ citations?: ChatgptBrandVisibilityCitation[];
3045
+ /**
3046
+ * Whether the answer cites the brand domain. Populated whenever the provider has data for the entity.
3047
+ * Present whenever the upstream returns this record.
3048
+ */
3049
+ cited?: boolean;
3050
+ /**
3051
+ * URLs attributed to the brand domain. Populated whenever the provider has data for the entity.
3052
+ * Present whenever the upstream returns this record.
3053
+ */
3054
+ citedUrls?: string[];
3055
+ /**
3056
+ * Visibility metrics for requested competitors. Populated whenever the provider has data for the entity.
3057
+ * Present whenever the upstream returns this record.
3058
+ */
3059
+ competitors?: ChatgptBrandVisibilityCompetitor[];
3060
+ /**
3061
+ * Country context used for the answer. Populated whenever the provider has data for the entity.
3062
+ * Present whenever the upstream returns this record.
3063
+ */
3064
+ country?: string;
3065
+ /**
3066
+ * 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.
3067
+ * Present whenever the upstream returns this record.
3068
+ */
3069
+ createdUtc?: number;
3070
+ /**
3071
+ * Brand domain used for citation attribution. Populated whenever the provider has data for the entity.
3072
+ * Present whenever the upstream returns this record.
3073
+ */
3074
+ domain?: string;
3075
+ /**
3076
+ * Leading excerpt from the answer. Populated whenever the provider has data for the entity.
3077
+ * Present whenever the upstream returns this record.
3078
+ */
3079
+ excerpt?: string;
3080
+ /**
3081
+ * Character position of the first brand mention. Populated whenever the provider has data for the entity.
3082
+ * Present whenever the upstream returns this record.
3083
+ */
3084
+ firstPosition?: number;
3085
+ /**
3086
+ * Upstream processing latency in milliseconds. Populated whenever the provider has data for the entity.
3087
+ * Present whenever the upstream returns this record.
3088
+ */
3089
+ latencyMs?: number;
3090
+ /**
3091
+ * Number of brand mentions in the answer. Populated whenever the provider has data for the entity.
3092
+ * Present whenever the upstream returns this record.
3093
+ */
3094
+ mentionCount?: number;
3095
+ /**
3096
+ * Whether the answer mentions the brand. Populated whenever the provider has data for the entity.
3097
+ * Present whenever the upstream returns this record.
3098
+ */
3099
+ mentioned?: boolean;
3100
+ /**
3101
+ * ChatGPT model that generated the answer. Populated whenever the provider has data for the entity.
3102
+ * Present whenever the upstream returns this record.
3103
+ */
3104
+ model?: string;
3105
+ /**
3106
+ * Visibility score derived from the first mention position. Populated whenever the provider has data for the entity.
3107
+ * Present whenever the upstream returns this record.
3108
+ */
3109
+ positionScore?: number;
3110
+ /**
3111
+ * Prompt answered for the visibility analysis.
3112
+ */
3113
+ prompt: string;
3114
+ /**
3115
+ * Brand share of voice among the measured brands, as a percentage. Populated whenever the provider has data for the entity.
3116
+ * Present whenever the upstream returns this record.
3117
+ */
3118
+ shareOfVoicePct?: number;
3119
+ /**
3120
+ * Whether ChatGPT used web search for the answer. Populated whenever the provider has data for the entity.
3121
+ * Present whenever the upstream returns this record.
3122
+ */
3123
+ webSearchTriggered?: boolean;
3124
+ }
3125
+ /**
3126
+ * Input for ChatGPT Search (chatgpt.search).
3127
+ */
3128
+ interface ChatgptSearchInput {
3129
+ /**
3130
+ * Question or research prompt for ChatGPT to answer using web search.
3131
+ */
3132
+ prompt: string;
3133
+ }
3134
+ interface ChatgptSearchCitation {
3135
+ /**
3136
+ * Source page title when supplied by the search engine.
3137
+ */
3138
+ title: string;
3139
+ /**
3140
+ * Source page URL.
3141
+ * Format: uri.
3142
+ */
3143
+ url: string;
3144
+ [extra: string]: unknown;
3145
+ }
3146
+ /**
3147
+ * The `data` payload of ChatGPT Search (chatgpt.search).
3148
+ */
3149
+ interface ChatgptSearchData {
3150
+ /**
3151
+ * The web-grounded answer as text. Populated whenever the provider has data for the entity.
3152
+ */
3153
+ answer: string;
3154
+ /**
3155
+ * The web-grounded answer with Markdown formatting. Populated whenever the provider has data for the entity.
3156
+ */
3157
+ answerMarkdown: string;
3158
+ /**
3159
+ * Sources cited by the answer. Populated whenever the provider has data for the entity.
3160
+ */
3161
+ citations: ChatgptSearchCitation[];
3162
+ /**
3163
+ * The prompt answered by ChatGPT.
3164
+ */
3165
+ prompt: string;
3166
+ }
3167
+ /**
3168
+ * Typed methods for the chatgpt platform. Attached to the AnyAPI client as
3169
+ * `client.chatgpt`.
3170
+ */
3171
+ declare class ChatgptNamespace {
3172
+ private readonly _core;
3173
+ constructor(_core: ClientCore);
3174
+ /**
3175
+ * ChatGPT Brand Visibility
3176
+ *
3177
+ * Analyze how ChatGPT mentions and cites a brand relative to its competitors.
3178
+ *
3179
+ * Price: $0.0045 per request.
3180
+ *
3181
+ * @example
3182
+ * const res = await client.chatgpt.brandVisibility({ brand: "OpenAI", prompt: "What is OpenAI and who are its main competitors?", competitors: ["Anthropic", "Google DeepMind", "Meta"], country: "US", domain: "openai.com" });
3183
+ */
3184
+ brandVisibility(input: ChatgptBrandVisibilityInput, options?: RequestOptions): Promise<RunResult<ChatgptBrandVisibilityData>>;
3185
+ /**
3186
+ * ChatGPT Search
3187
+ *
3188
+ * Ask ChatGPT a web-grounded question and receive an answer with source citations.
3189
+ *
3190
+ * Price: $0.0036 per request.
3191
+ *
3192
+ * @example
3193
+ * const res = await client.chatgpt.search({ prompt: "What is AnyAPI at getanyapi.com, and what does it offer?" });
3194
+ */
3195
+ search(input: ChatgptSearchInput, options?: RequestOptions): Promise<RunResult<ChatgptSearchData>>;
3196
+ }
3197
+
2911
3198
  /**
2912
3199
  * Input for CoinMarketCap Listings (coinmarketcap.listings).
2913
3200
  */
@@ -6583,58 +6870,331 @@ interface FiverrSearchItem {
6583
6870
  */
6584
6871
  sellerDisplayName?: string;
6585
6872
  /**
6586
- * Fiverr seller level.
6873
+ * Fiverr seller level.
6874
+ */
6875
+ sellerLevel?: string;
6876
+ /**
6877
+ * Seller username.
6878
+ */
6879
+ sellerName?: string;
6880
+ /**
6881
+ * Number of seller ratings.
6882
+ */
6883
+ sellerRatingCount?: number;
6884
+ /**
6885
+ * Average seller rating.
6886
+ */
6887
+ sellerRatingScore?: number;
6888
+ /**
6889
+ * Seller profile URL.
6890
+ */
6891
+ sellerUrl?: string;
6892
+ /**
6893
+ * Gig headline. Populated whenever the provider has data for the entity.
6894
+ */
6895
+ title: string;
6896
+ [extra: string]: unknown;
6897
+ }
6898
+ /**
6899
+ * The `data` payload of Fiverr Gig Search (fiverr.search).
6900
+ */
6901
+ interface FiverrSearchData {
6902
+ /**
6903
+ * Gig records from the search or category URL. Operators may return additional fields beyond those documented here. Populated whenever the provider has data for the entity.
6904
+ */
6905
+ items: FiverrSearchItem[];
6906
+ }
6907
+ /**
6908
+ * Typed methods for the fiverr platform. Attached to the AnyAPI client as
6909
+ * `client.fiverr`.
6910
+ */
6911
+ declare class FiverrNamespace {
6912
+ private readonly _core;
6913
+ constructor(_core: ClientCore);
6914
+ /**
6915
+ * Fiverr Gig Search
6916
+ *
6917
+ * Extract Fiverr gig listings from any search or category URL: titles, sellers, ratings, and pricing as structured JSON.
6918
+ *
6919
+ * Price: $0 per request plus $0.00158 per result (maximum $0.0315).
6920
+ *
6921
+ * @example
6922
+ * const res = await client.fiverr.search({ url: "https://www.fiverr.com/search/gigs?query=logo%20design", limit: 3 });
6923
+ */
6924
+ search(input: FiverrSearchInput, options?: RequestOptions): Promise<RunResult<FiverrSearchData>>;
6925
+ }
6926
+
6927
+ /**
6928
+ * Input for Gemini Brand Visibility (gemini.brand_visibility).
6929
+ */
6930
+ interface GeminiBrandVisibilityInput {
6931
+ /**
6932
+ * Alternative brand names to include in mention analysis.
6933
+ */
6934
+ aliases?: string[];
6935
+ /**
6936
+ * Brand name to measure in the answer.
6937
+ */
6938
+ brand: string;
6939
+ /**
6940
+ * Competitor brand names to compare against the target brand.
6941
+ */
6942
+ competitors?: string[];
6943
+ /**
6944
+ * Country context for the answer and web search (default US).
6945
+ * Default: US.
6946
+ */
6947
+ country?: string;
6948
+ /**
6949
+ * Brand domain used to attribute citations when supplied.
6950
+ */
6951
+ domain?: string;
6952
+ /**
6953
+ * Question or topic Gemini should answer while measuring brand visibility.
6954
+ */
6955
+ prompt: string;
6956
+ }
6957
+ interface GeminiBrandVisibilityCitation {
6958
+ /**
6959
+ * Source attribution label when supplied. Populated whenever the provider has data for the entity.
6960
+ * Present whenever the upstream returns this record.
6961
+ */
6962
+ attribution?: string;
6963
+ /**
6964
+ * Source domain. Populated whenever the provider has data for the entity.
6965
+ * Present whenever the upstream returns this record.
6966
+ */
6967
+ domain?: string;
6968
+ /**
6969
+ * End character offset of the citation evidence.
6970
+ */
6971
+ endIndex?: number;
6972
+ /**
6973
+ * Answer text matched to the citation evidence.
6974
+ */
6975
+ matchedText?: string;
6976
+ /**
6977
+ * Source evidence snippet when supplied.
6978
+ */
6979
+ snippet?: string;
6980
+ /**
6981
+ * Start character offset of the citation evidence.
6982
+ */
6983
+ startIndex?: number;
6984
+ /**
6985
+ * Source page title when supplied. Populated whenever the provider has data for the entity.
6986
+ * Present whenever the upstream returns this record.
6987
+ */
6988
+ title?: string;
6989
+ /**
6990
+ * Canonical source URL. Populated whenever the provider has data for the entity.
6991
+ * Format: uri.
6992
+ */
6993
+ url: string;
6994
+ [extra: string]: unknown;
6995
+ }
6996
+ interface GeminiBrandVisibilityCompetitor {
6997
+ /**
6998
+ * Whether the answer cites the competitor. Populated whenever the provider has data for the entity.
6999
+ * Present whenever the upstream returns this record.
7000
+ */
7001
+ cited?: boolean;
7002
+ /**
7003
+ * URLs attributed to the competitor.
7004
+ */
7005
+ citedUrls?: string[];
7006
+ /**
7007
+ * Character position of the first competitor mention. Populated whenever the provider has data for the entity.
7008
+ * Present whenever the upstream returns this record.
7009
+ */
7010
+ firstPosition?: number;
7011
+ /**
7012
+ * Number of competitor mentions in the answer. Populated whenever the provider has data for the entity.
7013
+ * Present whenever the upstream returns this record.
7014
+ */
7015
+ mentionCount?: number;
7016
+ /**
7017
+ * Whether the answer mentions the competitor. Populated whenever the provider has data for the entity.
7018
+ * Present whenever the upstream returns this record.
7019
+ */
7020
+ mentioned?: boolean;
7021
+ /**
7022
+ * Competitor brand name.
7023
+ */
7024
+ name: string;
7025
+ [extra: string]: unknown;
7026
+ }
7027
+ /**
7028
+ * The `data` payload of Gemini Brand Visibility (gemini.brand_visibility).
7029
+ */
7030
+ interface GeminiBrandVisibilityData {
7031
+ /**
7032
+ * Full answer used for the visibility analysis. Populated whenever the provider has data for the entity.
7033
+ * Present whenever the upstream returns this record.
7034
+ */
7035
+ answer?: string;
7036
+ /**
7037
+ * Brand measured in the answer.
7038
+ */
7039
+ brand: string;
7040
+ /**
7041
+ * One-based citation rank for the brand, or null when it was not cited.
7042
+ */
7043
+ citationRank?: number | null;
7044
+ /**
7045
+ * Sources cited by the answer. Populated whenever the provider has data for the entity.
7046
+ * Present whenever the upstream returns this record.
7047
+ */
7048
+ citations?: GeminiBrandVisibilityCitation[];
7049
+ /**
7050
+ * Whether the answer cites the brand domain. Populated whenever the provider has data for the entity.
7051
+ * Present whenever the upstream returns this record.
7052
+ */
7053
+ cited?: boolean;
7054
+ /**
7055
+ * URLs attributed to the brand domain.
7056
+ */
7057
+ citedUrls?: string[];
7058
+ /**
7059
+ * Visibility metrics for requested competitors. Populated whenever the provider has data for the entity.
7060
+ * Present whenever the upstream returns this record.
7061
+ */
7062
+ competitors?: GeminiBrandVisibilityCompetitor[];
7063
+ /**
7064
+ * Country context used for the answer. Populated whenever the provider has data for the entity.
7065
+ * Present whenever the upstream returns this record.
7066
+ */
7067
+ country?: string;
7068
+ /**
7069
+ * UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
7070
+ */
7071
+ createdUtc?: number;
7072
+ /**
7073
+ * Brand domain used for citation attribution. Populated whenever the provider has data for the entity.
7074
+ * Present whenever the upstream returns this record.
7075
+ */
7076
+ domain?: string;
7077
+ /**
7078
+ * Leading excerpt from the answer. Populated whenever the provider has data for the entity.
7079
+ * Present whenever the upstream returns this record.
7080
+ */
7081
+ excerpt?: string;
7082
+ /**
7083
+ * Character position of the first brand mention. Populated whenever the provider has data for the entity.
7084
+ * Present whenever the upstream returns this record.
7085
+ */
7086
+ firstPosition?: number;
7087
+ /**
7088
+ * Upstream processing latency in milliseconds. Populated whenever the provider has data for the entity.
7089
+ * Present whenever the upstream returns this record.
7090
+ */
7091
+ latencyMs?: number;
7092
+ /**
7093
+ * Number of brand mentions in the answer. Populated whenever the provider has data for the entity.
7094
+ * Present whenever the upstream returns this record.
7095
+ */
7096
+ mentionCount?: number;
7097
+ /**
7098
+ * Whether the answer mentions the brand. Populated whenever the provider has data for the entity.
7099
+ * Present whenever the upstream returns this record.
7100
+ */
7101
+ mentioned?: boolean;
7102
+ /**
7103
+ * Gemini model that generated the answer. Populated whenever the provider has data for the entity.
7104
+ * Present whenever the upstream returns this record.
7105
+ */
7106
+ model?: string;
7107
+ /**
7108
+ * Visibility score derived from the first mention position. Populated whenever the provider has data for the entity.
7109
+ * Present whenever the upstream returns this record.
6587
7110
  */
6588
- sellerLevel?: string;
7111
+ positionScore?: number;
6589
7112
  /**
6590
- * Seller username.
7113
+ * Prompt answered for the visibility analysis.
6591
7114
  */
6592
- sellerName?: string;
7115
+ prompt: string;
6593
7116
  /**
6594
- * Number of seller ratings.
7117
+ * Brand share of voice among the measured brands, as a percentage. Populated whenever the provider has data for the entity.
7118
+ * Present whenever the upstream returns this record.
6595
7119
  */
6596
- sellerRatingCount?: number;
7120
+ shareOfVoicePct?: number;
6597
7121
  /**
6598
- * Average seller rating.
7122
+ * Whether Gemini used web search for the answer. Populated whenever the provider has data for the entity.
7123
+ * Present whenever the upstream returns this record.
6599
7124
  */
6600
- sellerRatingScore?: number;
7125
+ webSearchTriggered?: boolean;
7126
+ }
7127
+ /**
7128
+ * Input for Gemini Search (gemini.search).
7129
+ */
7130
+ interface GeminiSearchInput {
6601
7131
  /**
6602
- * Seller profile URL.
7132
+ * Question or research prompt for Gemini to answer using web search.
6603
7133
  */
6604
- sellerUrl?: string;
7134
+ prompt: string;
7135
+ }
7136
+ interface GeminiSearchCitation {
6605
7137
  /**
6606
- * Gig headline. Populated whenever the provider has data for the entity.
7138
+ * Source page title when supplied by the search engine.
6607
7139
  */
6608
7140
  title: string;
7141
+ /**
7142
+ * Source page URL.
7143
+ * Format: uri.
7144
+ */
7145
+ url: string;
6609
7146
  [extra: string]: unknown;
6610
7147
  }
6611
7148
  /**
6612
- * The `data` payload of Fiverr Gig Search (fiverr.search).
7149
+ * The `data` payload of Gemini Search (gemini.search).
6613
7150
  */
6614
- interface FiverrSearchData {
7151
+ interface GeminiSearchData {
6615
7152
  /**
6616
- * Gig records from the search or category URL. Operators may return additional fields beyond those documented here. Populated whenever the provider has data for the entity.
7153
+ * The web-grounded answer as text. Populated whenever the provider has data for the entity.
6617
7154
  */
6618
- items: FiverrSearchItem[];
7155
+ answer: string;
7156
+ /**
7157
+ * The web-grounded answer with Markdown formatting. Populated whenever the provider has data for the entity.
7158
+ */
7159
+ answerMarkdown: string;
7160
+ /**
7161
+ * Sources cited by the answer. Populated whenever the provider has data for the entity.
7162
+ */
7163
+ citations: GeminiSearchCitation[];
7164
+ /**
7165
+ * The prompt answered by Gemini.
7166
+ */
7167
+ prompt: string;
6619
7168
  }
6620
7169
  /**
6621
- * Typed methods for the fiverr platform. Attached to the AnyAPI client as
6622
- * `client.fiverr`.
7170
+ * Typed methods for the gemini platform. Attached to the AnyAPI client as
7171
+ * `client.gemini`.
6623
7172
  */
6624
- declare class FiverrNamespace {
7173
+ declare class GeminiNamespace {
6625
7174
  private readonly _core;
6626
7175
  constructor(_core: ClientCore);
6627
7176
  /**
6628
- * Fiverr Gig Search
7177
+ * Gemini Brand Visibility
6629
7178
  *
6630
- * Extract Fiverr gig listings from any search or category URL: titles, sellers, ratings, and pricing as structured JSON.
7179
+ * Analyze how Gemini mentions and cites a brand relative to its competitors.
6631
7180
  *
6632
- * Price: $0 per request plus $0.00158 per result (maximum $0.0315).
7181
+ * Price: $0.0045 per request.
6633
7182
  *
6634
7183
  * @example
6635
- * const res = await client.fiverr.search({ url: "https://www.fiverr.com/search/gigs?query=logo%20design", limit: 3 });
7184
+ * const res = await client.gemini.brandVisibility({ brand: "OpenAI", prompt: "What is OpenAI and who are its main competitors?", competitors: ["Anthropic", "Google DeepMind", "Meta"], country: "US", domain: "openai.com" });
6636
7185
  */
6637
- search(input: FiverrSearchInput, options?: RequestOptions): Promise<RunResult<FiverrSearchData>>;
7186
+ brandVisibility(input: GeminiBrandVisibilityInput, options?: RequestOptions): Promise<RunResult<GeminiBrandVisibilityData>>;
7187
+ /**
7188
+ * Gemini Search
7189
+ *
7190
+ * Ask Gemini a web-grounded question and receive an answer with source citations.
7191
+ *
7192
+ * Price: $0.0036 per request.
7193
+ *
7194
+ * @example
7195
+ * const res = await client.gemini.search({ prompt: "What is AnyAPI at getanyapi.com, and what does it offer?" });
7196
+ */
7197
+ search(input: GeminiSearchInput, options?: RequestOptions): Promise<RunResult<GeminiSearchData>>;
6638
7198
  }
6639
7199
 
6640
7200
  /**
@@ -7498,6 +8058,88 @@ declare class GlassdoorNamespace {
7498
8058
  jobs(input: GlassdoorJobsInput, options?: RequestOptions): Promise<RunResult<GlassdoorJobsData>>;
7499
8059
  }
7500
8060
 
8061
+ /**
8062
+ * Input for Google AI Mode (google.ai_mode).
8063
+ */
8064
+ interface GoogleAiModeInput {
8065
+ /**
8066
+ * The question or prompt to answer with Google AI Mode.
8067
+ */
8068
+ prompt: string;
8069
+ }
8070
+ interface GoogleAiModeCitation {
8071
+ /**
8072
+ * The cited source title.
8073
+ */
8074
+ title: string;
8075
+ /**
8076
+ * The cited source URL.
8077
+ */
8078
+ url: string;
8079
+ [extra: string]: unknown;
8080
+ }
8081
+ /**
8082
+ * The `data` payload of Google AI Mode (google.ai_mode).
8083
+ */
8084
+ interface GoogleAiModeData {
8085
+ /**
8086
+ * The answer as plain text. Populated whenever the provider has data for the entity.
8087
+ */
8088
+ answer: string;
8089
+ /**
8090
+ * The answer in Markdown form. Populated whenever the provider has data for the entity.
8091
+ */
8092
+ answerMarkdown: string;
8093
+ /**
8094
+ * Sources cited by the answer when the upstream returns them.
8095
+ */
8096
+ citations: GoogleAiModeCitation[];
8097
+ /**
8098
+ * The prompt answered by the upstream search experience. Populated whenever the provider has data for the entity.
8099
+ */
8100
+ prompt: string;
8101
+ }
8102
+ /**
8103
+ * Input for Google AI Overview (google.ai_overview).
8104
+ */
8105
+ interface GoogleAiOverviewInput {
8106
+ /**
8107
+ * The question or prompt to answer with a Google AI Overview.
8108
+ */
8109
+ prompt: string;
8110
+ }
8111
+ interface GoogleAiOverviewCitation {
8112
+ /**
8113
+ * The cited source title.
8114
+ */
8115
+ title: string;
8116
+ /**
8117
+ * The cited source URL.
8118
+ */
8119
+ url: string;
8120
+ [extra: string]: unknown;
8121
+ }
8122
+ /**
8123
+ * The `data` payload of Google AI Overview (google.ai_overview).
8124
+ */
8125
+ interface GoogleAiOverviewData {
8126
+ /**
8127
+ * The AI Overview answer as plain text. Populated whenever the provider has data for the entity.
8128
+ */
8129
+ answer: string;
8130
+ /**
8131
+ * The AI Overview answer in Markdown form. Populated whenever the provider has data for the entity.
8132
+ */
8133
+ answerMarkdown: string;
8134
+ /**
8135
+ * Sources cited by the AI Overview when Google returns them.
8136
+ */
8137
+ citations: GoogleAiOverviewCitation[];
8138
+ /**
8139
+ * The prompt answered by the upstream search experience. Populated whenever the provider has data for the entity.
8140
+ */
8141
+ prompt: string;
8142
+ }
7501
8143
  /**
7502
8144
  * Input for Google Autocomplete (google.autocomplete).
7503
8145
  */
@@ -8010,6 +8652,28 @@ interface GoogleVideosData {
8010
8652
  declare class GoogleNamespace {
8011
8653
  private readonly _core;
8012
8654
  constructor(_core: ClientCore);
8655
+ /**
8656
+ * Google AI Mode
8657
+ *
8658
+ * Ask Google AI Mode a prompt and receive a cited answer.
8659
+ *
8660
+ * Price: $0.00126 per request.
8661
+ *
8662
+ * @example
8663
+ * const res = await client.google.aiMode({ prompt: "What is AnyAPI at getanyapi.com, and what does it offer?" });
8664
+ */
8665
+ aiMode(input: GoogleAiModeInput, options?: RequestOptions): Promise<RunResult<GoogleAiModeData>>;
8666
+ /**
8667
+ * Google AI Overview
8668
+ *
8669
+ * Ask Google Search a prompt and receive its AI Overview with citations.
8670
+ *
8671
+ * Price: $0.00126 per request plus $0.00018 per result (maximum $0.00144).
8672
+ *
8673
+ * @example
8674
+ * const res = await client.google.aiOverview({ prompt: "How does photosynthesis work?" });
8675
+ */
8676
+ aiOverview(input: GoogleAiOverviewInput, options?: RequestOptions): Promise<RunResult<GoogleAiOverviewData>>;
8013
8677
  /**
8014
8678
  * Google Autocomplete
8015
8679
  *
@@ -12756,63 +13420,262 @@ interface LinkedinSearchCompaniesItem {
12756
13420
  /**
12757
13421
  * Company name. Populated whenever the provider has data for the entity.
12758
13422
  */
12759
- name: string;
13423
+ name: string;
13424
+ /**
13425
+ * Canonical LinkedIn company URL. Populated whenever the provider has data for the entity.
13426
+ */
13427
+ url: string;
13428
+ [extra: string]: unknown;
13429
+ }
13430
+ /**
13431
+ * The `data` payload of LinkedIn Company Search (linkedin.search_companies).
13432
+ */
13433
+ interface LinkedinSearchCompaniesData {
13434
+ /**
13435
+ * Matching company records. Populated whenever the provider has data for the entity.
13436
+ */
13437
+ items: LinkedinSearchCompaniesItem[];
13438
+ }
13439
+ /**
13440
+ * Input for LinkedIn Post Search (linkedin.search_posts).
13441
+ */
13442
+ interface LinkedinSearchPostsInput {
13443
+ /**
13444
+ * Pagination cursor from a previous response.
13445
+ */
13446
+ cursor?: string;
13447
+ /**
13448
+ * Filter by recency. One of last-hour, last-day, last-week, last-month, last-year.
13449
+ * One of: last-hour, last-day, last-week, last-month, last-year.
13450
+ */
13451
+ datePosted?: "last-hour" | "last-day" | "last-week" | "last-month" | "last-year";
13452
+ /**
13453
+ * The post search query.
13454
+ */
13455
+ query: string;
13456
+ }
13457
+ interface LinkedinSearchPostsPost {
13458
+ /**
13459
+ * 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.
13460
+ */
13461
+ createdUtc: number;
13462
+ /**
13463
+ * Text content of the post. Populated whenever the provider has data for the entity.
13464
+ */
13465
+ text: string;
13466
+ /**
13467
+ * Canonical URL of the post. Populated whenever the provider has data for the entity.
13468
+ */
13469
+ url: string;
13470
+ [extra: string]: unknown;
13471
+ }
13472
+ /**
13473
+ * The `data` payload of LinkedIn Post Search (linkedin.search_posts).
13474
+ */
13475
+ interface LinkedinSearchPostsData {
13476
+ /**
13477
+ * Posts matching the search query. Populated whenever the provider has data for the entity.
13478
+ */
13479
+ posts: LinkedinSearchPostsPost[];
13480
+ }
13481
+ /**
13482
+ * Input for LinkedIn Post Search (full) (linkedin.search_posts_full).
13483
+ */
13484
+ interface LinkedinSearchPostsFullInput {
13485
+ /**
13486
+ * Only return posts by people associated with these company names.
13487
+ */
13488
+ authorCompanyNames?: string[];
13489
+ /**
13490
+ * Only return posts by authors associated with these LinkedIn industry IDs.
13491
+ */
13492
+ authorIndustryIds?: string[];
13493
+ /**
13494
+ * Only return posts whose author profile headline or job title contains at least one of these keywords.
13495
+ */
13496
+ authorKeywords?: string;
13497
+ /**
13498
+ * Only return posts authored by these LinkedIn profile or company URLs.
13499
+ */
13500
+ authorUrls?: string[];
13501
+ /**
13502
+ * Only return posts carrying this content type.
13503
+ * One of: all, videos, images, jobs, live-videos, documents, collaborative-articles.
13504
+ */
13505
+ contentType?: "all" | "videos" | "images" | "jobs" | "live-videos" | "documents" | "collaborative-articles";
13506
+ /**
13507
+ * Only return posts published within this relative time window. Last-hour and windows beyond one month route to the provider that supports them.
13508
+ * One of: last-hour, last-day, last-week, last-month, last-three-months, last-six-months, last-year.
13509
+ * Default: last-day.
13510
+ */
13511
+ datePosted?: "last-hour" | "last-day" | "last-week" | "last-month" | "last-three-months" | "last-six-months" | "last-year";
13512
+ /**
13513
+ * Maximum number of posts to return (1-100, default 10). The upper bound is one LinkedIn search page. You are billed per post returned.
13514
+ * Range: minimum 1, maximum 100.
13515
+ * Default: 10.
13516
+ */
13517
+ limit?: number;
13518
+ /**
13519
+ * Only return posts mentioning these LinkedIn member profile URLs.
13520
+ */
13521
+ mentioningMemberUrls?: string[];
13522
+ /**
13523
+ * LinkedIn post search query, including quoted terms or Boolean operators accepted by LinkedIn search.
13524
+ */
13525
+ query: string;
13526
+ /**
13527
+ * Order results by search relevance or publication date.
13528
+ * One of: relevance, date.
13529
+ * Default: relevance.
13530
+ */
13531
+ sort?: "relevance" | "date";
13532
+ }
13533
+ interface LinkedinSearchPostsFullPost {
13534
+ /**
13535
+ * Description of the attached structured content.
13536
+ */
13537
+ attachmentDescription?: string;
13538
+ /**
13539
+ * Image URL associated with the attachment.
13540
+ * Format: uri.
13541
+ */
13542
+ attachmentImage?: string;
13543
+ /**
13544
+ * Subtitle of the attached structured content.
13545
+ */
13546
+ attachmentSubtitle?: string;
13547
+ /**
13548
+ * Title of the attached article, job, or other structured content.
13549
+ */
13550
+ attachmentTitle?: string;
13551
+ /**
13552
+ * Provider-reported attachment type when the post carries structured content.
13553
+ */
13554
+ attachmentType?: string;
13555
+ /**
13556
+ * Canonical destination URL of the attachment.
13557
+ * Format: uri.
13558
+ */
13559
+ attachmentUrl?: string;
13560
+ /**
13561
+ * Public author identity attached to the post. Populated whenever the provider has data for the entity.
13562
+ */
13563
+ author: {
13564
+ /**
13565
+ * Public headline or company follower summary for the author.
13566
+ */
13567
+ headline?: string;
13568
+ /**
13569
+ * LinkedIn identifier for the author.
13570
+ */
13571
+ id?: string;
13572
+ /**
13573
+ * Public profile or company image URL for the author.
13574
+ * Format: uri.
13575
+ */
13576
+ image?: string;
13577
+ /**
13578
+ * Display name of the author.
13579
+ */
13580
+ name?: string;
13581
+ /**
13582
+ * Canonical LinkedIn profile or company URL for the author.
13583
+ * Format: uri.
13584
+ */
13585
+ profileUrl?: string;
13586
+ };
13587
+ /**
13588
+ * 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.
13589
+ */
13590
+ createdUtc: number;
13591
+ /**
13592
+ * Public engagement totals attached to the post. Populated whenever the provider has data for the entity.
13593
+ */
13594
+ engagement: {
13595
+ /**
13596
+ * Reaction counts grouped by LinkedIn reaction type.
13597
+ */
13598
+ breakdown?: LinkedinSearchPostsFullBreakdown[];
13599
+ /**
13600
+ * Total comment count.
13601
+ * Range: minimum 0.
13602
+ */
13603
+ comments?: number;
13604
+ /**
13605
+ * Total reaction count.
13606
+ * Range: minimum 0.
13607
+ */
13608
+ reactions?: number;
13609
+ /**
13610
+ * Total repost or share count.
13611
+ * Range: minimum 0.
13612
+ */
13613
+ reposts?: number;
13614
+ };
13615
+ /**
13616
+ * Stable LinkedIn activity identifier for the post. Populated whenever the provider has data for the entity.
13617
+ */
13618
+ id: string;
13619
+ /**
13620
+ * Whether the attached poll is closed.
13621
+ */
13622
+ pollClosed?: boolean;
12760
13623
  /**
12761
- * Canonical LinkedIn company URL. Populated whenever the provider has data for the entity.
13624
+ * Options and public vote counts for an attached poll.
12762
13625
  */
12763
- url: string;
12764
- [extra: string]: unknown;
12765
- }
12766
- /**
12767
- * The `data` payload of LinkedIn Company Search (linkedin.search_companies).
12768
- */
12769
- interface LinkedinSearchCompaniesData {
13626
+ pollOptions?: LinkedinSearchPostsFullPollOption[];
12770
13627
  /**
12771
- * Matching company records. Populated whenever the provider has data for the entity.
13628
+ * Question asked by an attached LinkedIn poll.
12772
13629
  */
12773
- items: LinkedinSearchCompaniesItem[];
12774
- }
12775
- /**
12776
- * Input for LinkedIn Post Search (linkedin.search_posts).
12777
- */
12778
- interface LinkedinSearchPostsInput {
13630
+ pollQuestion?: string;
12779
13631
  /**
12780
- * Pagination cursor from a previous response.
13632
+ * Total votes recorded by the attached poll.
13633
+ * Range: minimum 0.
12781
13634
  */
12782
- cursor?: string;
13635
+ pollTotalVotes?: number;
12783
13636
  /**
12784
- * Filter by recency. One of last-hour, last-day, last-week, last-month, last-year.
12785
- * One of: last-hour, last-day, last-week, last-month, last-year.
13637
+ * Text content of the post. Populated whenever the provider has data for the entity.
12786
13638
  */
12787
- datePosted?: "last-hour" | "last-day" | "last-week" | "last-month" | "last-year";
13639
+ text: string;
12788
13640
  /**
12789
- * The post search query.
13641
+ * Canonical URL of the LinkedIn post. Populated whenever the provider has data for the entity.
13642
+ * Format: uri.
12790
13643
  */
12791
- query: string;
13644
+ url: string;
13645
+ [extra: string]: unknown;
12792
13646
  }
12793
- interface LinkedinSearchPostsPost {
13647
+ interface LinkedinSearchPostsFullBreakdown {
12794
13648
  /**
12795
- * 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.
13649
+ * Number of reactions of this type.
13650
+ * Range: minimum 0.
12796
13651
  */
12797
- createdUtc: number;
13652
+ count: number;
12798
13653
  /**
12799
- * Text content of the post. Populated whenever the provider has data for the entity.
13654
+ * LinkedIn reaction type.
13655
+ */
13656
+ type: string;
13657
+ [extra: string]: unknown;
13658
+ }
13659
+ interface LinkedinSearchPostsFullPollOption {
13660
+ /**
13661
+ * Poll option text.
12800
13662
  */
12801
13663
  text: string;
12802
13664
  /**
12803
- * Canonical URL of the post. Populated whenever the provider has data for the entity.
13665
+ * Votes recorded for this option.
13666
+ * Range: minimum 0.
12804
13667
  */
12805
- url: string;
13668
+ votes: number;
12806
13669
  [extra: string]: unknown;
12807
13670
  }
12808
13671
  /**
12809
- * The `data` payload of LinkedIn Post Search (linkedin.search_posts).
13672
+ * The `data` payload of LinkedIn Post Search (full) (linkedin.search_posts_full).
12810
13673
  */
12811
- interface LinkedinSearchPostsData {
13674
+ interface LinkedinSearchPostsFullData {
12812
13675
  /**
12813
- * Posts matching the search query. Populated whenever the provider has data for the entity.
13676
+ * LinkedIn posts matching the search query. Populated whenever the provider has data for the entity.
12814
13677
  */
12815
- posts: LinkedinSearchPostsPost[];
13678
+ posts: LinkedinSearchPostsFullPost[];
12816
13679
  }
12817
13680
  /**
12818
13681
  * Input for LinkedIn Profile Search (linkedin.search_profiles).
@@ -13524,6 +14387,17 @@ declare class LinkedinNamespace {
13524
14387
  * const res = await client.linkedin.searchPosts({ query: "hiring", datePosted: "last-week" });
13525
14388
  */
13526
14389
  searchPosts(input: LinkedinSearchPostsInput, options?: RequestOptions): Promise<RunResult<LinkedinSearchPostsData>>;
14390
+ /**
14391
+ * LinkedIn Post Search (full)
14392
+ *
14393
+ * Search public LinkedIn posts with rich author, engagement, attachment, and poll details.
14394
+ *
14395
+ * Price: $0 per request plus $0.00137 per result (maximum $0.137).
14396
+ *
14397
+ * @example
14398
+ * const res = await client.linkedin.searchPostsFull({ query: "artificial intelligence", datePosted: "last-week", limit: 10, sort: "relevance" });
14399
+ */
14400
+ searchPostsFull(input: LinkedinSearchPostsFullInput, options?: RequestOptions): Promise<RunResult<LinkedinSearchPostsFullData>>;
13527
14401
  /**
13528
14402
  * LinkedIn Profile Search
13529
14403
  *
@@ -14622,6 +15496,300 @@ declare class PeopleSearchNamespace {
14622
15496
  crustdataV3(input: PeopleSearchCrustdataV3Input, options?: RequestOptions): Promise<RunResult<PeopleSearchCrustdataV3Data>>;
14623
15497
  }
14624
15498
 
15499
+ /**
15500
+ * Input for Perplexity Brand Visibility (perplexity.brand_visibility).
15501
+ */
15502
+ interface PerplexityBrandVisibilityInput {
15503
+ /**
15504
+ * Alternative brand names to include in mention analysis.
15505
+ */
15506
+ aliases?: string[];
15507
+ /**
15508
+ * Brand name to measure in the answer.
15509
+ */
15510
+ brand: string;
15511
+ /**
15512
+ * Competitor brand names to compare against the target brand.
15513
+ */
15514
+ competitors?: string[];
15515
+ /**
15516
+ * Country context for the answer and web search (default US).
15517
+ * Default: US.
15518
+ */
15519
+ country?: string;
15520
+ /**
15521
+ * Brand domain used to attribute citations when supplied.
15522
+ */
15523
+ domain?: string;
15524
+ /**
15525
+ * Question or topic Perplexity should answer while measuring brand visibility.
15526
+ */
15527
+ prompt: string;
15528
+ }
15529
+ interface PerplexityBrandVisibilityCitation {
15530
+ /**
15531
+ * Source domain. Populated whenever the provider has data for the entity.
15532
+ * Present whenever the upstream returns this record.
15533
+ */
15534
+ domain?: string;
15535
+ /**
15536
+ * End character offset of the citation evidence. Populated whenever the provider has data for the entity.
15537
+ * Present whenever the upstream returns this record.
15538
+ */
15539
+ endIndex?: number;
15540
+ /**
15541
+ * Source last-updated UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
15542
+ */
15543
+ lastUpdatedUtc?: number;
15544
+ /**
15545
+ * Answer text matched to the citation evidence. Populated whenever the provider has data for the entity.
15546
+ * Present whenever the upstream returns this record.
15547
+ */
15548
+ matchedText?: string;
15549
+ /**
15550
+ * Source publication UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
15551
+ */
15552
+ pubDateUtc?: number;
15553
+ /**
15554
+ * Source published 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.
15555
+ * Present whenever the upstream returns this record.
15556
+ */
15557
+ publishedUtc?: number;
15558
+ /**
15559
+ * One-based citation reference index used in the answer. Populated whenever the provider has data for the entity.
15560
+ * Present whenever the upstream returns this record.
15561
+ */
15562
+ refIndex?: number;
15563
+ /**
15564
+ * Source evidence snippet when supplied. Populated whenever the provider has data for the entity.
15565
+ * Present whenever the upstream returns this record.
15566
+ */
15567
+ snippet?: string;
15568
+ /**
15569
+ * Source evidence type. Populated whenever the provider has data for the entity.
15570
+ * Present whenever the upstream returns this record.
15571
+ */
15572
+ sourceType?: string;
15573
+ /**
15574
+ * Start character offset of the citation evidence. Populated whenever the provider has data for the entity.
15575
+ * Present whenever the upstream returns this record.
15576
+ */
15577
+ startIndex?: number;
15578
+ /**
15579
+ * Source page title when supplied. Populated whenever the provider has data for the entity.
15580
+ * Present whenever the upstream returns this record.
15581
+ */
15582
+ title?: string;
15583
+ /**
15584
+ * Canonical source URL. Populated whenever the provider has data for the entity.
15585
+ * Format: uri.
15586
+ */
15587
+ url: string;
15588
+ [extra: string]: unknown;
15589
+ }
15590
+ interface PerplexityBrandVisibilityCompetitor {
15591
+ /**
15592
+ * Whether the answer cites the competitor. Populated whenever the provider has data for the entity.
15593
+ * Present whenever the upstream returns this record.
15594
+ */
15595
+ cited?: boolean;
15596
+ /**
15597
+ * URLs attributed to the competitor.
15598
+ */
15599
+ citedUrls?: string[];
15600
+ /**
15601
+ * Character position of the first competitor mention when present.
15602
+ */
15603
+ firstPosition?: number;
15604
+ /**
15605
+ * Number of competitor mentions in the answer. Populated whenever the provider has data for the entity.
15606
+ * Present whenever the upstream returns this record.
15607
+ */
15608
+ mentionCount?: number;
15609
+ /**
15610
+ * Whether the answer mentions the competitor. Populated whenever the provider has data for the entity.
15611
+ * Present whenever the upstream returns this record.
15612
+ */
15613
+ mentioned?: boolean;
15614
+ /**
15615
+ * Competitor brand name.
15616
+ */
15617
+ name: string;
15618
+ [extra: string]: unknown;
15619
+ }
15620
+ /**
15621
+ * The `data` payload of Perplexity Brand Visibility (perplexity.brand_visibility).
15622
+ */
15623
+ interface PerplexityBrandVisibilityData {
15624
+ /**
15625
+ * Full answer used for the visibility analysis. Populated whenever the provider has data for the entity.
15626
+ * Present whenever the upstream returns this record.
15627
+ */
15628
+ answer?: string;
15629
+ /**
15630
+ * Brand measured in the answer.
15631
+ */
15632
+ brand: string;
15633
+ /**
15634
+ * One-based citation rank for the brand, or null when it was not cited.
15635
+ */
15636
+ citationRank?: number | null;
15637
+ /**
15638
+ * Sources cited by the answer. Populated whenever the provider has data for the entity.
15639
+ * Present whenever the upstream returns this record.
15640
+ */
15641
+ citations?: PerplexityBrandVisibilityCitation[];
15642
+ /**
15643
+ * Whether the answer cites the brand domain. Populated whenever the provider has data for the entity.
15644
+ * Present whenever the upstream returns this record.
15645
+ */
15646
+ cited?: boolean;
15647
+ /**
15648
+ * URLs attributed to the brand domain.
15649
+ */
15650
+ citedUrls?: string[];
15651
+ /**
15652
+ * Visibility metrics for requested competitors. Populated whenever the provider has data for the entity.
15653
+ * Present whenever the upstream returns this record.
15654
+ */
15655
+ competitors?: PerplexityBrandVisibilityCompetitor[];
15656
+ /**
15657
+ * Country context used for the answer. Populated whenever the provider has data for the entity.
15658
+ * Present whenever the upstream returns this record.
15659
+ */
15660
+ country?: string;
15661
+ /**
15662
+ * UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
15663
+ */
15664
+ createdUtc?: number;
15665
+ /**
15666
+ * Brand domain used for citation attribution. Populated whenever the provider has data for the entity.
15667
+ * Present whenever the upstream returns this record.
15668
+ */
15669
+ domain?: string;
15670
+ /**
15671
+ * Leading excerpt from the answer. Populated whenever the provider has data for the entity.
15672
+ * Present whenever the upstream returns this record.
15673
+ */
15674
+ excerpt?: string;
15675
+ /**
15676
+ * Character position of the first brand mention. Populated whenever the provider has data for the entity.
15677
+ * Present whenever the upstream returns this record.
15678
+ */
15679
+ firstPosition?: number;
15680
+ /**
15681
+ * Upstream processing latency in milliseconds. Populated whenever the provider has data for the entity.
15682
+ * Present whenever the upstream returns this record.
15683
+ */
15684
+ latencyMs?: number;
15685
+ /**
15686
+ * Number of brand mentions in the answer. Populated whenever the provider has data for the entity.
15687
+ * Present whenever the upstream returns this record.
15688
+ */
15689
+ mentionCount?: number;
15690
+ /**
15691
+ * Whether the answer mentions the brand. Populated whenever the provider has data for the entity.
15692
+ * Present whenever the upstream returns this record.
15693
+ */
15694
+ mentioned?: boolean;
15695
+ /**
15696
+ * Perplexity model that generated the answer. Populated whenever the provider has data for the entity.
15697
+ * Present whenever the upstream returns this record.
15698
+ */
15699
+ model?: string;
15700
+ /**
15701
+ * Visibility score derived from the first mention position. Populated whenever the provider has data for the entity.
15702
+ * Present whenever the upstream returns this record.
15703
+ */
15704
+ positionScore?: number;
15705
+ /**
15706
+ * Prompt answered for the visibility analysis.
15707
+ */
15708
+ prompt: string;
15709
+ /**
15710
+ * Brand share of voice among the measured brands, as a percentage. Populated whenever the provider has data for the entity.
15711
+ * Present whenever the upstream returns this record.
15712
+ */
15713
+ shareOfVoicePct?: number;
15714
+ /**
15715
+ * Whether Perplexity used web search for the answer. Populated whenever the provider has data for the entity.
15716
+ * Present whenever the upstream returns this record.
15717
+ */
15718
+ webSearchTriggered?: boolean;
15719
+ }
15720
+ /**
15721
+ * Input for Perplexity Search (perplexity.search).
15722
+ */
15723
+ interface PerplexitySearchInput {
15724
+ /**
15725
+ * Question or research prompt for Perplexity to answer using web search.
15726
+ */
15727
+ prompt: string;
15728
+ }
15729
+ interface PerplexitySearchCitation {
15730
+ /**
15731
+ * Source page title when supplied by the search engine.
15732
+ */
15733
+ title: string;
15734
+ /**
15735
+ * Source page URL.
15736
+ * Format: uri.
15737
+ */
15738
+ url: string;
15739
+ [extra: string]: unknown;
15740
+ }
15741
+ /**
15742
+ * The `data` payload of Perplexity Search (perplexity.search).
15743
+ */
15744
+ interface PerplexitySearchData {
15745
+ /**
15746
+ * The web-grounded answer as text. Populated whenever the provider has data for the entity.
15747
+ */
15748
+ answer: string;
15749
+ /**
15750
+ * The web-grounded answer with Markdown formatting. Populated whenever the provider has data for the entity.
15751
+ */
15752
+ answerMarkdown: string;
15753
+ /**
15754
+ * Sources cited by the answer. Populated whenever the provider has data for the entity.
15755
+ */
15756
+ citations: PerplexitySearchCitation[];
15757
+ /**
15758
+ * The prompt answered by Perplexity.
15759
+ */
15760
+ prompt: string;
15761
+ }
15762
+ /**
15763
+ * Typed methods for the perplexity platform. Attached to the AnyAPI client as
15764
+ * `client.perplexity`.
15765
+ */
15766
+ declare class PerplexityNamespace {
15767
+ private readonly _core;
15768
+ constructor(_core: ClientCore);
15769
+ /**
15770
+ * Perplexity Brand Visibility
15771
+ *
15772
+ * Analyze how Perplexity mentions and cites a brand relative to its competitors.
15773
+ *
15774
+ * Price: $0.0045 per request.
15775
+ *
15776
+ * @example
15777
+ * const res = await client.perplexity.brandVisibility({ brand: "OpenAI", prompt: "What is OpenAI and who are its main competitors?", competitors: ["Anthropic", "Google DeepMind", "Meta"], country: "US", domain: "openai.com" });
15778
+ */
15779
+ brandVisibility(input: PerplexityBrandVisibilityInput, options?: RequestOptions): Promise<RunResult<PerplexityBrandVisibilityData>>;
15780
+ /**
15781
+ * Perplexity Search
15782
+ *
15783
+ * Ask Perplexity a web-grounded question and receive an answer with source citations.
15784
+ *
15785
+ * Price: $0.0036 per request.
15786
+ *
15787
+ * @example
15788
+ * const res = await client.perplexity.search({ prompt: "What is AnyAPI at getanyapi.com, and what does it offer?" });
15789
+ */
15790
+ search(input: PerplexitySearchInput, options?: RequestOptions): Promise<RunResult<PerplexitySearchData>>;
15791
+ }
15792
+
14625
15793
  /**
14626
15794
  * Input for Skip Trace (person.skip_trace).
14627
15795
  */
@@ -26208,6 +27376,16 @@ interface SkuMap {
26208
27376
  data: BookingSearchData;
26209
27377
  result: RunResult<BookingSearchData>;
26210
27378
  };
27379
+ "chatgpt.brand_visibility": {
27380
+ input: ChatgptBrandVisibilityInput;
27381
+ data: ChatgptBrandVisibilityData;
27382
+ result: RunResult<ChatgptBrandVisibilityData>;
27383
+ };
27384
+ "chatgpt.search": {
27385
+ input: ChatgptSearchInput;
27386
+ data: ChatgptSearchData;
27387
+ result: RunResult<ChatgptSearchData>;
27388
+ };
26211
27389
  "coinmarketcap.listings": {
26212
27390
  input: CoinmarketcapListingsInput;
26213
27391
  data: CoinmarketcapListingsData;
@@ -26438,6 +27616,16 @@ interface SkuMap {
26438
27616
  data: FiverrSearchData;
26439
27617
  result: RunResult<FiverrSearchData>;
26440
27618
  };
27619
+ "gemini.brand_visibility": {
27620
+ input: GeminiBrandVisibilityInput;
27621
+ data: GeminiBrandVisibilityData;
27622
+ result: RunResult<GeminiBrandVisibilityData>;
27623
+ };
27624
+ "gemini.search": {
27625
+ input: GeminiSearchInput;
27626
+ data: GeminiSearchData;
27627
+ result: RunResult<GeminiSearchData>;
27628
+ };
26441
27629
  "github.repository": {
26442
27630
  input: GithubRepositoryInput;
26443
27631
  data: GithubRepositoryData;
@@ -26493,6 +27681,16 @@ interface SkuMap {
26493
27681
  data: GlassdoorJobsData;
26494
27682
  result: RunResult<GlassdoorJobsData>;
26495
27683
  };
27684
+ "google.ai_mode": {
27685
+ input: GoogleAiModeInput;
27686
+ data: GoogleAiModeData;
27687
+ result: RunResult<GoogleAiModeData>;
27688
+ };
27689
+ "google.ai_overview": {
27690
+ input: GoogleAiOverviewInput;
27691
+ data: GoogleAiOverviewData;
27692
+ result: RunResult<GoogleAiOverviewData>;
27693
+ };
26496
27694
  "google.autocomplete": {
26497
27695
  input: GoogleAutocompleteInput;
26498
27696
  data: GoogleAutocompleteData;
@@ -26813,6 +28011,11 @@ interface SkuMap {
26813
28011
  data: LinkedinSearchPostsData;
26814
28012
  result: RunResult<LinkedinSearchPostsData>;
26815
28013
  };
28014
+ "linkedin.search_posts_full": {
28015
+ input: LinkedinSearchPostsFullInput;
28016
+ data: LinkedinSearchPostsFullData;
28017
+ result: RunResult<LinkedinSearchPostsFullData>;
28018
+ };
26816
28019
  "linkedin.search_profiles": {
26817
28020
  input: LinkedinSearchProfilesInput;
26818
28021
  data: LinkedinSearchProfilesData;
@@ -26883,6 +28086,16 @@ interface SkuMap {
26883
28086
  data: PeopleSearchCrustdataV3Data;
26884
28087
  result: RunResult<PeopleSearchCrustdataV3Data>;
26885
28088
  };
28089
+ "perplexity.brand_visibility": {
28090
+ input: PerplexityBrandVisibilityInput;
28091
+ data: PerplexityBrandVisibilityData;
28092
+ result: RunResult<PerplexityBrandVisibilityData>;
28093
+ };
28094
+ "perplexity.search": {
28095
+ input: PerplexitySearchInput;
28096
+ data: PerplexitySearchData;
28097
+ result: RunResult<PerplexitySearchData>;
28098
+ };
26886
28099
  "person.skip_trace": {
26887
28100
  input: PersonSkipTraceInput;
26888
28101
  data: PersonSkipTraceData;
@@ -27626,6 +28839,10 @@ declare class AnyAPI extends AnyAPI$1 {
27626
28839
  * Typed methods for the booking platform.
27627
28840
  */
27628
28841
  get booking(): BookingNamespace;
28842
+ /**
28843
+ * Typed methods for the chatgpt platform.
28844
+ */
28845
+ get chatgpt(): ChatgptNamespace;
27629
28846
  /**
27630
28847
  * Typed methods for the coinmarketcap platform.
27631
28848
  */
@@ -27674,6 +28891,10 @@ declare class AnyAPI extends AnyAPI$1 {
27674
28891
  * Typed methods for the fiverr platform.
27675
28892
  */
27676
28893
  get fiverr(): FiverrNamespace;
28894
+ /**
28895
+ * Typed methods for the gemini platform.
28896
+ */
28897
+ get gemini(): GeminiNamespace;
27677
28898
  /**
27678
28899
  * Typed methods for the github platform.
27679
28900
  */
@@ -27730,6 +28951,10 @@ declare class AnyAPI extends AnyAPI$1 {
27730
28951
  * Typed methods for the people_search platform.
27731
28952
  */
27732
28953
  get peopleSearch(): PeopleSearchNamespace;
28954
+ /**
28955
+ * Typed methods for the perplexity platform.
28956
+ */
28957
+ get perplexity(): PerplexityNamespace;
27733
28958
  /**
27734
28959
  * Typed methods for the person platform.
27735
28960
  */
@@ -27860,4 +29085,4 @@ declare class AnyAPI extends AnyAPI$1 {
27860
29085
  get zillow(): ZillowNamespace;
27861
29086
  }
27862
29087
 
27863
- 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, type CompanyEnrichmentCrustdataV3Data, type CompanyEnrichmentCrustdataV3Input, CompanyEnrichmentNamespace, type CompanySearchAiArkCompanie, type CompanySearchAiArkData, type CompanySearchAiArkInput, type CompanySearchCrustdataV3Companie, type CompanySearchCrustdataV3Data, type CompanySearchCrustdataV3Input, type CompanySearchCrustdataV3Sort, CompanySearchNamespace, CongressNamespace, type CongressTradesData, type CongressTradesInput, type CongressTradesItem, ConnectionError, DexscreenerNamespace, type DexscreenerTokensData, type DexscreenerTokensInput, type DexscreenerTokensItem, type DiscoveryLane, type DiscoveryPricing, DouyinNamespace, type DouyinProfileData, type DouyinProfileInput, type DouyinSearchVideosData, type DouyinSearchVideosInput, type DouyinSearchVideosVideo, type DouyinUserPostsData, type DouyinUserPostsInput, type DouyinUserPostsPost, type DouyinVideoCommentsComment, type DouyinVideoCommentsData, type DouyinVideoCommentsInput, type DouyinVideoData, type DouyinVideoInput, EbayNamespace, type EbaySearchData, type EbaySearchInput, type EbaySearchItem, type EbaySoldListingsData, type EbaySoldListingsInput, type EbaySoldListingsItem, type EmailFindData, type EmailFindInput, type EmailFindItem, type EmailFindingDropleadsData, type EmailFindingDropleadsInput, type EmailFindingIcypeasData, type EmailFindingIcypeasInput, EmailFindingNamespace, EmailNamespace, type EmailVerificationAllegrowData, type EmailVerificationAllegrowInput, type EmailVerificationBouncebanData, type EmailVerificationBouncebanInput, type EmailVerificationIcypeasData, type EmailVerificationIcypeasInput, EmailVerificationNamespace, type EmailVerifyData, type EmailVerifyInput, type EmailVerifyItem, type FacebookAdDetailsData, type FacebookAdDetailsInput, type FacebookAdTranscriptData, type FacebookAdTranscriptInput, type FacebookAdsSearchAd, type FacebookAdsSearchData, type FacebookAdsSearchInput, type FacebookCommentRepliesData, type FacebookCommentRepliesInput, type FacebookCommentRepliesReplie, type FacebookCompanyAdsAd, type FacebookCompanyAdsData, type FacebookCompanyAdsInput, type FacebookEventDetailsData, type FacebookEventDetailsInput, type FacebookEventsData, type FacebookEventsEvent, type FacebookEventsInput, type FacebookEventsSearchData, type FacebookEventsSearchEvent, type FacebookEventsSearchInput, type FacebookFollowersData, type FacebookFollowersInput, type FacebookFollowersItem, type FacebookGroupPostsData, type FacebookGroupPostsInput, type FacebookGroupPostsPost, type FacebookMarketplaceData, type FacebookMarketplaceInput, type FacebookMarketplaceItemData, type FacebookMarketplaceItemInput, type FacebookMarketplaceListing, type FacebookMarketplaceLocationSearchData, type FacebookMarketplaceLocationSearchInput, type FacebookMarketplaceLocationSearchLocation, FacebookNamespace, type FacebookPageContactData, type FacebookPageContactInput, type FacebookPageContactItem, type FacebookPhotosData, type FacebookPhotosInput, type FacebookPhotosPhoto, type FacebookPostCommentsComment, type FacebookPostCommentsData, type FacebookPostCommentsInput, type FacebookPostData, type FacebookPostInput, type FacebookPostTranscriptData, type FacebookPostTranscriptInput, type FacebookProfileData, type FacebookProfileEventsData, type FacebookProfileEventsEvent, type FacebookProfileEventsInput, type FacebookProfileInput, type FacebookProfilePostsData, type FacebookProfilePostsInput, type FacebookProfilePostsPost, type FacebookProfileReelsData, type FacebookProfileReelsInput, type FacebookProfileReelsReel, type FacebookSearchCompaniesCompanie, type FacebookSearchCompaniesData, type FacebookSearchCompaniesInput, type FacebookSearchPagesData, type FacebookSearchPagesInput, type FacebookSearchPagesItem, type FacebookSearchPostsData, type FacebookSearchPostsInput, type FacebookSearchPostsItem, FiverrNamespace, type FiverrSearchData, type FiverrSearchInput, type FiverrSearchItem, type FlatPricingOffer, 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, type MobilePhoneAiArkData, type MobilePhoneAiArkInput, type MobilePhoneLeadmagicData, type MobilePhoneLeadmagicInput, MobilePhoneNamespace, NotFoundError, type Output, type Paginator, type PandaexpressLocationsData, type PandaexpressLocationsInput, type PandaexpressLocationsRestaurant, type PandaexpressMenuCategorie, type PandaexpressMenuData, type PandaexpressMenuInput, type PandaexpressMenuItem, PandaexpressNamespace, type PandaexpressNutritionData, type PandaexpressNutritionInput, type PandaexpressNutritionItem, type PeopleSearchAiArkData, type PeopleSearchAiArkInput, type PeopleSearchAiArkPeople, type PeopleSearchCrustdataV3Data, type PeopleSearchCrustdataV3Input, type PeopleSearchCrustdataV3Profile, PeopleSearchNamespace, type PersonEnrichmentAviatoData, type PersonEnrichmentAviatoInput, PersonEnrichmentNamespace, PersonNamespace, type PersonSkipTraceAssociate, type PersonSkipTraceData, type PersonSkipTraceInput, type PersonSkipTraceItem, type PersonSkipTracePreviousAddresse, type PersonSkipTraceRelative, PinterestNamespace, type PinterestSearchData, type PinterestSearchInput, type PinterestSearchItem, PlaystoreNamespace, type PlaystoreReviewsData, type PlaystoreReviewsInput, type PlaystoreReviewsItem, type PolymarketMarketsData, type PolymarketMarketsInput, type PolymarketMarketsItem, type PolymarketMarketsOutcome, PolymarketNamespace, type PricingOffer, RateLimitedError, RealtorNamespace, type RealtorSearchData, type RealtorSearchInput, type RealtorSearchItem, RedditNamespace, type RedditPostCommentsComment, type RedditPostCommentsData, type RedditPostCommentsInput, type RedditPostData, type RedditPostInput, type RedditPostTranscriptData, type RedditPostTranscriptInput, type RedditProfileData, type RedditProfileInput, type RedditSearchData, type RedditSearchInput, type RedditSearchPost, type RedditSubredditDetailsData, type RedditSubredditDetailsInput, type RedditSubredditPostsData, type RedditSubredditPostsInput, type RedditSubredditPostsPost, type RedditSubredditSearchData, type RedditSubredditSearchInput, type RedditSubredditSearchPost, type RedditTrendingPostsData, type RedditTrendingPostsInput, type RedditTrendingPostsPost, type RedditUserCommentsComment, type RedditUserCommentsData, type RedditUserCommentsInput, type RedditUserPostsData, type RedditUserPostsInput, type RedditUserPostsPost, RedfinNamespace, type RedfinSearchData, type RedfinSearchInput, type RedfinSearchItem, RednoteNamespace, type RednoteNoteCommentsComment, type RednoteNoteCommentsData, type RednoteNoteCommentsInput, type RednoteNoteData, type RednoteNoteInput, type RednoteProfileData, type RednoteProfileInput, type RednoteSearchData, type RednoteSearchInput, type RednoteSearchNote, type RednoteSearchUsersData, type RednoteSearchUsersInput, type RednoteSearchUsersUser, type RednoteUserNotesData, type RednoteUserNotesInput, type RednoteUserNotesNote, type RequestOptions, RequestPendingError, type RequestSnapshot, type RequestStatus, ResultNotFoundError, type RunResult, type SearchOptions, type SecFilingsData, type SecFilingsInput, type SecFilingsItem, SecNamespace, type SemrushKeywordsData, type SemrushKeywordsInput, type SemrushKeywordsItem, type SemrushKeywordsQuestion, type SemrushKeywordsRelatedKeyword, SemrushNamespace, type SemrushOverviewData, type SemrushOverviewInput, type SemrushOverviewItem, type SemrushOverviewTopKeyword, type SeoCompetitorsDomainCompetitor, type SeoCompetitorsDomainData, type SeoCompetitorsDomainInput, type SeoDomainIntersectionData, type SeoDomainIntersectionInput, type SeoDomainIntersectionKeyword, type SeoDomainRankOverviewData, type SeoDomainRankOverviewInput, type SeoKeywordDifficultyData, type SeoKeywordDifficultyDifficultie, type SeoKeywordDifficultyInput, type SeoKeywordIdeasData, type SeoKeywordIdeasIdea, type SeoKeywordIdeasInput, type SeoKeywordOverviewData, type SeoKeywordOverviewInput, type SeoKeywordOverviewKeyword, type SeoKeywordOverviewMonthlySearche, type SeoKeywordSuggestionsData, type SeoKeywordSuggestionsInput, type SeoKeywordSuggestionsSuggestion, type SeoLocalPackData, type SeoLocalPackInput, type SeoLocalPackPlace, SeoNamespace, type SeoRankedKeywordsData, type SeoRankedKeywordsInput, type SeoRankedKeywordsRankedKeyword, type SeoRelatedKeywordsData, type SeoRelatedKeywordsInput, type SeoRelatedKeywordsRelatedKeyword, type SeoSearchIntentData, type SeoSearchIntentInput, type SeoSearchIntentIntent, type SeoSearchVolumeData, type SeoSearchVolumeInput, type SeoSearchVolumeKeyword, type SeoSearchVolumeMonthlySearche, type SkuMap, SnapchatNamespace, type SnapchatProfileData, type SnapchatProfileInput, type SnapchatProfileItem, type SnapchatProfileStorie, type SocialFinderData, type SocialFinderInput, type SocialFinderItem, SocialNamespace, type SpotifyAlbumData, type SpotifyAlbumInput, type SpotifyAlbumTrack, type SpotifyArtistAlbum, type SpotifyArtistData, type SpotifyArtistInput, type SpotifyArtistTopTrack, SpotifyNamespace, type SpotifyPlayCountData, type SpotifyPlayCountInput, type SpotifyPlayCountItem, type SpotifyPodcastData, type SpotifyPodcastEpisodesData, type SpotifyPodcastEpisodesEpisode, type SpotifyPodcastEpisodesInput, type SpotifyPodcastInput, type SpotifySearchAlbum, type SpotifySearchArtist, type SpotifySearchData, type SpotifySearchInput, type SpotifySearchPodcast, type SpotifySearchTrack, type SpotifyTrackData, type SpotifyTrackInput, type StartOptions, SubstackNamespace, type SubstackPostsData, type SubstackPostsInput, type SubstackPostsItem, ThreadsNamespace, type ThreadsPostData, type ThreadsPostInput, type ThreadsProfileData, type ThreadsProfileInput, type ThreadsSearchData, type ThreadsSearchInput, type ThreadsSearchPost, type ThreadsSearchUsersData, type ThreadsSearchUsersInput, type ThreadsSearchUsersUser, type ThreadsUserPostsData, type ThreadsUserPostsInput, type ThreadsUserPostsPost, type TiktokAdLibraryAdData, type TiktokAdLibraryAdInput, type TiktokAdLibrarySearchAd, type TiktokAdLibrarySearchData, type TiktokAdLibrarySearchInput, type TiktokAdTransparencySearchAd, type TiktokAdTransparencySearchData, type TiktokAdTransparencySearchInput, type TiktokAudienceDemographicsAudienceLocation, type TiktokAudienceDemographicsData, type TiktokAudienceDemographicsInput, type TiktokCommentRepliesComment, type TiktokCommentRepliesData, type TiktokCommentRepliesInput, type TiktokFollowersData, type TiktokFollowersFollower, type TiktokFollowersInput, type TiktokFollowingData, type TiktokFollowingFollowing, type TiktokFollowingInput, type TiktokHashtagVideosData, type TiktokHashtagVideosInput, type TiktokHashtagVideosItem, type TiktokLiveData, type TiktokLiveInput, TiktokNamespace, type TiktokProfileData, type TiktokProfileInput, type TiktokProfileRegionData, type TiktokProfileRegionInput, type TiktokProfileVideosData, type TiktokProfileVideosInput, type TiktokProfileVideosVideo, type TiktokSearchHashtagData, type TiktokSearchHashtagInput, type TiktokSearchHashtagVideo, type TiktokSearchKeywordData, type TiktokSearchKeywordInput, type TiktokSearchKeywordVideo, type TiktokSearchTopData, type TiktokSearchTopInput, type TiktokSearchTopItem, type TiktokSearchUsersData, type TiktokSearchUsersInput, type TiktokSearchUsersUser, TiktokShopNamespace, type TiktokShopProductData, type TiktokShopProductInput, type TiktokShopProductReviewsData, type TiktokShopProductReviewsInput, type TiktokShopProductReviewsReview, type TiktokShopSearchData, type TiktokShopSearchInput, type TiktokShopSearchItem, type TiktokShopShopProductsData, type TiktokShopShopProductsInput, type TiktokShopShopProductsProduct, type TiktokShopUserShowcaseData, type TiktokShopUserShowcaseInput, type TiktokShopUserShowcaseProduct, type TiktokSongData, type TiktokSongInput, type TiktokSongVideosData, type TiktokSongVideosInput, type TiktokSongVideosVideo, type TiktokTopAdsSearchAd, type TiktokTopAdsSearchData, type TiktokTopAdsSearchInput, type TiktokTrendingFeedData, type TiktokTrendingFeedInput, type TiktokTrendingFeedVideo, type TiktokVideoCommentsComment, type TiktokVideoCommentsData, type TiktokVideoCommentsInput, type TiktokVideoData, type TiktokVideoInput, type TiktokVideoTranscriptData, type TiktokVideoTranscriptInput, TimeoutError, TripadvisorNamespace, type TripadvisorReviewsData, type TripadvisorReviewsInput, type TripadvisorReviewsItem, type TripadvisorSearchData, type TripadvisorSearchInput, type TripadvisorSearchItem, TrustpilotNamespace, type TrustpilotReviewsData, type TrustpilotReviewsInput, type TrustpilotReviewsItem, TruthsocialNamespace, type TruthsocialPostData, type TruthsocialPostInput, type TruthsocialProfileData, type TruthsocialProfileInput, type TruthsocialUserPostsData, type TruthsocialUserPostsInput, type TruthsocialUserPostsPost, type TwitterArticleContentBlock, type TwitterArticleData, type TwitterArticleEntitie, type TwitterArticleInlineStyle, type TwitterArticleInput, type TwitterCommunityData, type TwitterCommunityInput, type TwitterCommunityTweetsData, type TwitterCommunityTweetsInput, type TwitterCommunityTweetsTweet, type TwitterFollowersData, type TwitterFollowersInput, type TwitterFollowersItem, type TwitterFollowingData, type TwitterFollowingInput, type TwitterFollowingItem, TwitterNamespace, type TwitterProfileData, type TwitterProfileInput, type TwitterRepliesData, type TwitterRepliesInput, type TwitterRepliesItem, type TwitterSearchData, type TwitterSearchInput, type TwitterSearchItem, type TwitterThreadData, type TwitterThreadInput, type TwitterThreadTweet, type TwitterTrendsData, type TwitterTrendsInput, type TwitterTrendsItem, type TwitterTweetData, type TwitterTweetInput, type TwitterTweetTranscriptData, type TwitterTweetTranscriptInput, type TwitterUserPostsData, type TwitterUserPostsInput, type TwitterUserPostsTweet, type TwitterUserTweetsData, type TwitterUserTweetsInput, type TwitterUserTweetsTweet, UpstreamError, type UpworkJobsData, type UpworkJobsInput, type UpworkJobsItem, UpworkNamespace, WalmartNamespace, type WalmartProductData, type WalmartProductInput, type WalmartProductItem, type WebCrawlData, type WebCrawlInput, type WebCrawlItem, type WebMapData, type WebMapInput, type WebMapResult, WebNamespace, type WebScrapeData, type WebScrapeInput, type WebScreenshotData, type WebScreenshotInput, type WebScreenshotItem, type WeiboHotSearchData, type WeiboHotSearchInput, type WeiboHotSearchTopic, WeiboNamespace, type WeiboPostCommentsComment, type WeiboPostCommentsData, type WeiboPostCommentsInput, type WeiboPostData, type WeiboPostInput, type WeiboProfileData, type WeiboProfileInput, type WeiboSearchData, type WeiboSearchInput, type WeiboSearchPost, type WeiboUserPostsData, type WeiboUserPostsInput, type WeiboUserPostsPost, YahooFinanceNamespace, type YahooFinanceQuoteData, type YahooFinanceQuoteInput, type YahooFinanceQuoteItem, YelpNamespace, type YelpSearchCategorie, type YelpSearchData, type YelpSearchInput, type YelpSearchItem, type YoutubeChannelCommunityPostsData, type YoutubeChannelCommunityPostsInput, type YoutubeChannelCommunityPostsPost, type YoutubeChannelData, type YoutubeChannelInput, type YoutubeChannelLivesData, type YoutubeChannelLivesInput, type YoutubeChannelLivesLive, type YoutubeChannelPlaylistsData, type YoutubeChannelPlaylistsInput, type YoutubeChannelPlaylistsPlaylist, type YoutubeChannelShortsData, type YoutubeChannelShortsInput, type YoutubeChannelShortsShort, type YoutubeChannelVideosData, type YoutubeChannelVideosInput, type YoutubeChannelVideosVideo, type YoutubeCommentRepliesComment, type YoutubeCommentRepliesData, type YoutubeCommentRepliesInput, type YoutubeCommunityPostData, type YoutubeCommunityPostInput, YoutubeNamespace, type YoutubePlaylistData, type YoutubePlaylistInput, type YoutubePlaylistVideo, type YoutubeSearchData, type YoutubeSearchHashtagData, type YoutubeSearchHashtagInput, type YoutubeSearchHashtagVideo, type YoutubeSearchInput, type YoutubeSearchVideo, type YoutubeTrendingShortsData, type YoutubeTrendingShortsInput, type YoutubeTrendingShortsShort, type YoutubeVideoCommentsComment, type YoutubeVideoCommentsData, type YoutubeVideoCommentsInput, type YoutubeVideoData, type YoutubeVideoInput, type YoutubeVideoSponsorsData, type YoutubeVideoSponsorsInput, type YoutubeVideoSponsorsSuspectedSponsor, type YoutubeVideoTranscriptData, type YoutubeVideoTranscriptInput, type ZhihuAnswerData, type ZhihuAnswerInput, ZhihuNamespace, type ZhihuProfileData, type ZhihuProfileInput, type ZhihuQuestionAnswersAnswer, type ZhihuQuestionAnswersData, type ZhihuQuestionAnswersInput, type ZhihuQuestionData, type ZhihuQuestionInput, type ZhihuSearchArticlesArticle, type ZhihuSearchArticlesData, type ZhihuSearchArticlesInput, ZillowNamespace, type ZillowPropertyData, type ZillowPropertyInput, type ZillowPropertyItem, type ZillowSearchData, type ZillowSearchInput, type ZillowSearchItem, agentSignup, paginate, unwrap };
29088
+ export { type AccountProfile, type AgentSignupOptions, type AgentSignupResult, type AhrefsBacklinksData, type AhrefsBacklinksInput, type AhrefsBacklinksItem, type AhrefsKeywordIdeasData, type AhrefsKeywordIdeasIdea, type AhrefsKeywordIdeasInput, type AhrefsKeywordIdeasItem, type AhrefsKeywordsData, type AhrefsKeywordsInput, type AhrefsKeywordsItem, AhrefsNamespace, type AhrefsOverviewData, type AhrefsOverviewInput, type AhrefsOverviewItem, AirbnbNamespace, type AirbnbSearchData, type AirbnbSearchInput, type AirbnbSearchItem, AlibabaNamespace, type AlibabaSearchData, type AlibabaSearchInput, type AlibabaSearchItem, type AmazonAsinsData, type AmazonAsinsInput, type AmazonAsinsItem, type AmazonBestsellersData, type AmazonBestsellersInput, type AmazonBestsellersItem, AmazonNamespace, type AmazonProductData, type AmazonProductInput, type AmazonProductItem, type AmazonReviewsData, type AmazonReviewsInput, type AmazonReviewsItem, type AmazonSearchData, type AmazonSearchInput, type AmazonSearchItem, AnyAPI, AnyAPIError, ApolloNamespace, type ApolloOrganizationData, type ApolloOrganizationEnrichData, type ApolloOrganizationEnrichInput, type ApolloOrganizationInput, type ApolloOrganizationJobsData, type ApolloOrganizationJobsInput, type ApolloOrganizationJobsJob, type ApolloOrganizationNewsArticle, type ApolloOrganizationNewsData, type ApolloOrganizationNewsInput, type ApolloOrganizationsBulkEnrichData, type ApolloOrganizationsBulkEnrichInput, type ApolloOrganizationsBulkEnrichOrganization, type ApolloOrganizationsSearchData, type ApolloOrganizationsSearchInput, type ApolloOrganizationsSearchOrganization, type ApolloPeopleSearchData, type ApolloPeopleSearchInput, type ApolloPeopleSearchPeople, type ApolloPersonEnrichData, type ApolloPersonEnrichEmploymentHistory, type ApolloPersonEnrichInput, AppstoreNamespace, type AppstoreReviewsData, type AppstoreReviewsInput, type AppstoreReviewsItem, AuthenticationError, BadRequestError, type BareRunResult, BlueskyNamespace, type BlueskyPostData, type BlueskyPostInput, type BlueskyProfileData, type BlueskyProfileInput, type BlueskyUserPostsData, type BlueskyUserPostsInput, type BlueskyUserPostsPost, BookingNamespace, type BookingSearchData, type BookingSearchInput, type BookingSearchItem, type CatalogEntry, type CatalogOptions, type CatalogSearchResult, type CatalogSearchResults, type ChatgptBrandVisibilityCitation, type ChatgptBrandVisibilityCompetitor, type ChatgptBrandVisibilityData, type ChatgptBrandVisibilityInput, ChatgptNamespace, type ChatgptSearchCitation, type ChatgptSearchData, type ChatgptSearchInput, type ClientCore, type ClientOptions, type CoinmarketcapListingsData, type CoinmarketcapListingsInput, type CoinmarketcapListingsItem, CoinmarketcapNamespace, type CompanyEnrichmentCrustdataV3Data, type CompanyEnrichmentCrustdataV3Input, CompanyEnrichmentNamespace, type CompanySearchAiArkCompanie, type CompanySearchAiArkData, type CompanySearchAiArkInput, type CompanySearchCrustdataV3Companie, type CompanySearchCrustdataV3Data, type CompanySearchCrustdataV3Input, type CompanySearchCrustdataV3Sort, CompanySearchNamespace, CongressNamespace, type CongressTradesData, type CongressTradesInput, type CongressTradesItem, ConnectionError, DexscreenerNamespace, type DexscreenerTokensData, type DexscreenerTokensInput, type DexscreenerTokensItem, type DiscoveryLane, type DiscoveryPricing, DouyinNamespace, type DouyinProfileData, type DouyinProfileInput, type DouyinSearchVideosData, type DouyinSearchVideosInput, type DouyinSearchVideosVideo, type DouyinUserPostsData, type DouyinUserPostsInput, type DouyinUserPostsPost, type DouyinVideoCommentsComment, type DouyinVideoCommentsData, type DouyinVideoCommentsInput, type DouyinVideoData, type DouyinVideoInput, EbayNamespace, type EbaySearchData, type EbaySearchInput, type EbaySearchItem, type EbaySoldListingsData, type EbaySoldListingsInput, type EbaySoldListingsItem, type EmailFindData, type EmailFindInput, type EmailFindItem, type EmailFindingDropleadsData, type EmailFindingDropleadsInput, type EmailFindingIcypeasData, type EmailFindingIcypeasInput, EmailFindingNamespace, EmailNamespace, type EmailVerificationAllegrowData, type EmailVerificationAllegrowInput, type EmailVerificationBouncebanData, type EmailVerificationBouncebanInput, type EmailVerificationIcypeasData, type EmailVerificationIcypeasInput, EmailVerificationNamespace, type EmailVerifyData, type EmailVerifyInput, type EmailVerifyItem, type FacebookAdDetailsData, type FacebookAdDetailsInput, type FacebookAdTranscriptData, type FacebookAdTranscriptInput, type FacebookAdsSearchAd, type FacebookAdsSearchData, type FacebookAdsSearchInput, type FacebookCommentRepliesData, type FacebookCommentRepliesInput, type FacebookCommentRepliesReplie, type FacebookCompanyAdsAd, type FacebookCompanyAdsData, type FacebookCompanyAdsInput, type FacebookEventDetailsData, type FacebookEventDetailsInput, type FacebookEventsData, type FacebookEventsEvent, type FacebookEventsInput, type FacebookEventsSearchData, type FacebookEventsSearchEvent, type FacebookEventsSearchInput, type FacebookFollowersData, type FacebookFollowersInput, type FacebookFollowersItem, type FacebookGroupPostsData, type FacebookGroupPostsInput, type FacebookGroupPostsPost, type FacebookMarketplaceData, type FacebookMarketplaceInput, type FacebookMarketplaceItemData, type FacebookMarketplaceItemInput, type FacebookMarketplaceListing, type FacebookMarketplaceLocationSearchData, type FacebookMarketplaceLocationSearchInput, type FacebookMarketplaceLocationSearchLocation, FacebookNamespace, type FacebookPageContactData, type FacebookPageContactInput, type FacebookPageContactItem, type FacebookPhotosData, type FacebookPhotosInput, type FacebookPhotosPhoto, type FacebookPostCommentsComment, type FacebookPostCommentsData, type FacebookPostCommentsInput, type FacebookPostData, type FacebookPostInput, type FacebookPostTranscriptData, type FacebookPostTranscriptInput, type FacebookProfileData, type FacebookProfileEventsData, type FacebookProfileEventsEvent, type FacebookProfileEventsInput, type FacebookProfileInput, type FacebookProfilePostsData, type FacebookProfilePostsInput, type FacebookProfilePostsPost, type FacebookProfileReelsData, type FacebookProfileReelsInput, type FacebookProfileReelsReel, type FacebookSearchCompaniesCompanie, type FacebookSearchCompaniesData, type FacebookSearchCompaniesInput, type FacebookSearchPagesData, type FacebookSearchPagesInput, type FacebookSearchPagesItem, type FacebookSearchPostsData, type FacebookSearchPostsInput, type FacebookSearchPostsItem, FiverrNamespace, type FiverrSearchData, type FiverrSearchInput, type FiverrSearchItem, type FlatPricingOffer, type GeminiBrandVisibilityCitation, type GeminiBrandVisibilityCompetitor, type GeminiBrandVisibilityData, type GeminiBrandVisibilityInput, GeminiNamespace, type GeminiSearchCitation, type GeminiSearchData, type GeminiSearchInput, GithubNamespace, type GithubRepositoryData, type GithubRepositoryInput, type GithubTrendingDevelopersData, type GithubTrendingDevelopersDeveloper, type GithubTrendingDevelopersInput, type GithubTrendingRepositoriesData, type GithubTrendingRepositoriesInput, type GithubTrendingRepositoriesRepo, type GithubUserActivityActivity, type GithubUserActivityData, type GithubUserActivityInput, type GithubUserContributionsData, type GithubUserContributionsDay, type GithubUserContributionsInput, type GithubUserData, type GithubUserFollowersData, type GithubUserFollowersFollower, type GithubUserFollowersInput, type GithubUserFollowingData, type GithubUserFollowingFollowing, type GithubUserFollowingInput, type GithubUserInput, type GithubUserPullRequestsData, type GithubUserPullRequestsInput, type GithubUserPullRequestsPullRequest, type GithubUserRepositoriesData, type GithubUserRepositoriesInput, type GithubUserRepositoriesRepo, type GlassdoorJobsData, type GlassdoorJobsInput, type GlassdoorJobsItem, GlassdoorNamespace, type GoogleAdsAdDetailsData, type GoogleAdsAdDetailsInput, type GoogleAdsAdDetailsVariation, type GoogleAdsAdvertiserSearchAdvertiser, type GoogleAdsAdvertiserSearchData, type GoogleAdsAdvertiserSearchInput, type GoogleAdsCompanyAdsAd, type GoogleAdsCompanyAdsData, type GoogleAdsCompanyAdsInput, GoogleAdsNamespace, type GoogleAdsSearchData, type GoogleAdsSearchInput, type GoogleAdsSearchItem, type GoogleAdsSearchVariation, type GoogleAiModeCitation, type GoogleAiModeData, type GoogleAiModeInput, type GoogleAiOverviewCitation, type GoogleAiOverviewData, type GoogleAiOverviewInput, type GoogleAutocompleteData, type GoogleAutocompleteInput, type GoogleAutocompleteSuggestion, GoogleFinanceNamespace, type GoogleFinanceQuoteData, type GoogleFinanceQuoteInput, type GoogleFinanceQuoteItem, type GoogleImagesData, type GoogleImagesInput, type GoogleImagesItem, type GoogleLensData, type GoogleLensInput, type GoogleLensResult, GoogleNamespace, type GoogleNewsData, type GoogleNewsInput, type GoogleNewsItem, type GooglePatentsData, type GooglePatentsInput, type GooglePatentsResult, type GoogleScholarData, type GoogleScholarInput, type GoogleScholarResult, type GoogleSearchData, type GoogleSearchInput, type GoogleSearchResult, GoogleShoppingNamespace, type GoogleShoppingSearchData, type GoogleShoppingSearchInput, type GoogleShoppingSearchItem, type GoogleVideosData, type GoogleVideosInput, type GoogleVideosResult, HackernewsNamespace, type HackernewsProfileData, type HackernewsProfileInput, type HackernewsSearchData, type HackernewsSearchInput, type HackernewsSearchResult, type HackernewsStoryCommentsComment, type HackernewsStoryCommentsData, type HackernewsStoryCommentsInput, type HackernewsStoryData, type HackernewsStoryInput, type HighlightField, type IndeedJobsData, type IndeedJobsInput, type IndeedJobsItem, IndeedNamespace, type InstagramAudioReelsData, type InstagramAudioReelsInput, type InstagramAudioReelsReel, type InstagramBasicProfileData, type InstagramBasicProfileInput, type InstagramCommentRepliesComment, type InstagramCommentRepliesData, type InstagramCommentRepliesInput, type InstagramEmbedData, type InstagramEmbedInput, type InstagramFollowersData, type InstagramFollowersInput, type InstagramFollowersItem, type InstagramFollowingData, type InstagramFollowingInput, type InstagramFollowingItem, type InstagramHashtagAnalyticsData, type InstagramHashtagAnalyticsInput, type InstagramHashtagAnalyticsItem, type InstagramHighlightDetailData, type InstagramHighlightDetailInput, type InstagramMediaTranscriptData, type InstagramMediaTranscriptInput, type InstagramMediaTranscriptTranscript, InstagramNamespace, type InstagramPostCommentsComment, type InstagramPostCommentsData, type InstagramPostCommentsInput, type InstagramPostData, type InstagramPostInput, type InstagramProfileData, type InstagramProfileInput, type InstagramReelTranscriptData, type InstagramReelTranscriptInput, type InstagramReelTranscriptItem, type InstagramReelTranscriptSegment, type InstagramReelsSearchData, type InstagramReelsSearchInput, type InstagramReelsSearchReel, type InstagramSearchData, type InstagramSearchHashtagData, type InstagramSearchHashtagInput, type InstagramSearchHashtagPost, type InstagramSearchInput, type InstagramSearchItem, type InstagramSearchProfilesData, type InstagramSearchProfilesInput, type InstagramSearchProfilesProfile, type InstagramStoriesFullData, type InstagramStoriesFullInput, type InstagramStoriesFullItem, type InstagramStoriesThinData, type InstagramStoriesThinInput, type InstagramStoriesThinItem, type InstagramTaggedPostsData, type InstagramTaggedPostsInput, type InstagramTaggedPostsPost, type InstagramTrendingReelsData, type InstagramTrendingReelsInput, type InstagramTrendingReelsReel, type InstagramUserHighlightsData, type InstagramUserHighlightsHighlight, type InstagramUserHighlightsInput, type InstagramUserPostsData, type InstagramUserPostsInput, type InstagramUserPostsPost, type InstagramUserReelsData, type InstagramUserReelsInput, type InstagramUserReelsReel, InsufficientBalanceError, type LaneHealth, type LinearPricingOffer, type LinkedinAdData, type LinkedinAdInput, type LinkedinAdsData, type LinkedinAdsInput, type LinkedinAdsItem, type LinkedinAdsSearchAd, type LinkedinAdsSearchData, type LinkedinAdsSearchInput, type LinkedinCompanyData, type LinkedinCompanyEmployeesData, type LinkedinCompanyEmployeesInput, type LinkedinCompanyEmployeesItem, type LinkedinCompanyInput, type LinkedinCompanyLocation, type LinkedinCompanyPostsContentAttribute, type LinkedinCompanyPostsData, type LinkedinCompanyPostsInput, type LinkedinCompanyPostsItem, type LinkedinCompanyPostsPostImage, type LinkedinCompanyPostsReaction, type LinkedinCompanyPostsThinData, type LinkedinCompanyPostsThinInput, type LinkedinCompanyPostsThinItem, type LinkedinCompanyThinData, type LinkedinCompanyThinInput, type LinkedinEmailData, type LinkedinEmailEmail, type LinkedinEmailInput, type LinkedinJobsData, type LinkedinJobsInput, type LinkedinJobsItem, type LinkedinJobsThinData, type LinkedinJobsThinInput, type LinkedinJobsThinItem, LinkedinNamespace, type LinkedinPostCommentsData, type LinkedinPostCommentsInput, type LinkedinPostCommentsItem, type LinkedinPostData, type LinkedinPostInput, type LinkedinPostReactionsData, type LinkedinPostReactionsInput, type LinkedinPostReactionsItem, type LinkedinPostTranscriptData, type LinkedinPostTranscriptInput, type LinkedinProfileCertification, type LinkedinProfileCurrentPosition, type LinkedinProfileData, type LinkedinProfileEducation, type LinkedinProfileExperience, type LinkedinProfileHonorsAndAward, type LinkedinProfileInput, type LinkedinProfilePostsFullBreakdown, type LinkedinProfilePostsFullContentAnnotation, type LinkedinProfilePostsFullData, type LinkedinProfilePostsFullImage, type LinkedinProfilePostsFullInput, type LinkedinProfilePostsFullItem, type LinkedinProfilePostsFullRepostImage, type LinkedinProfilePostsThinData, type LinkedinProfilePostsThinImage, type LinkedinProfilePostsThinInput, type LinkedinProfilePostsThinItem, type LinkedinProfilePublication, type LinkedinProfileThinArticle, type LinkedinProfileThinData, type LinkedinProfileThinEducation, type LinkedinProfileThinExperience, type LinkedinProfileThinInput, type LinkedinProfileThinRecentPost, type LinkedinSearchCompaniesData, type LinkedinSearchCompaniesInput, type LinkedinSearchCompaniesItem, type LinkedinSearchPostsData, type LinkedinSearchPostsFullBreakdown, type LinkedinSearchPostsFullData, type LinkedinSearchPostsFullInput, type LinkedinSearchPostsFullPollOption, type LinkedinSearchPostsFullPost, type LinkedinSearchPostsInput, type LinkedinSearchPostsPost, type LinkedinSearchProfilesCurrentPosition, type LinkedinSearchProfilesData, type LinkedinSearchProfilesEducation, type LinkedinSearchProfilesEmailCurrentPosition, type LinkedinSearchProfilesEmailData, type LinkedinSearchProfilesEmailEducation, type LinkedinSearchProfilesEmailEmail, type LinkedinSearchProfilesEmailExperience, type LinkedinSearchProfilesEmailInput, type LinkedinSearchProfilesEmailItem, type LinkedinSearchProfilesExperience, type LinkedinSearchProfilesInput, type LinkedinSearchProfilesItem, type LinkedinSearchProfilesThinData, type LinkedinSearchProfilesThinInput, type LinkedinSearchProfilesThinItem, type MapsContactsData, type MapsContactsInput, type MapsContactsItem, MapsNamespace, type MapsPlaceData, type MapsPlaceHour, type MapsPlaceInput, type MapsPlaceItem, type MapsReviewsData, type MapsReviewsInput, type MapsReviewsItem, type MapsSearchData, type MapsSearchInput, type MapsSearchItem, type MobilePhoneAiArkData, type MobilePhoneAiArkInput, type MobilePhoneLeadmagicData, type MobilePhoneLeadmagicInput, MobilePhoneNamespace, NotFoundError, type Output, type Paginator, type PandaexpressLocationsData, type PandaexpressLocationsInput, type PandaexpressLocationsRestaurant, type PandaexpressMenuCategorie, type PandaexpressMenuData, type PandaexpressMenuInput, type PandaexpressMenuItem, PandaexpressNamespace, type PandaexpressNutritionData, type PandaexpressNutritionInput, type PandaexpressNutritionItem, type PeopleSearchAiArkData, type PeopleSearchAiArkInput, type PeopleSearchAiArkPeople, type PeopleSearchCrustdataV3Data, type PeopleSearchCrustdataV3Input, type PeopleSearchCrustdataV3Profile, PeopleSearchNamespace, type PerplexityBrandVisibilityCitation, type PerplexityBrandVisibilityCompetitor, type PerplexityBrandVisibilityData, type PerplexityBrandVisibilityInput, PerplexityNamespace, type PerplexitySearchCitation, type PerplexitySearchData, type PerplexitySearchInput, type PersonEnrichmentAviatoData, type PersonEnrichmentAviatoInput, PersonEnrichmentNamespace, PersonNamespace, type PersonSkipTraceAssociate, type PersonSkipTraceData, type PersonSkipTraceInput, type PersonSkipTraceItem, type PersonSkipTracePreviousAddresse, type PersonSkipTraceRelative, PinterestNamespace, type PinterestSearchData, type PinterestSearchInput, type PinterestSearchItem, PlaystoreNamespace, type PlaystoreReviewsData, type PlaystoreReviewsInput, type PlaystoreReviewsItem, type PolymarketMarketsData, type PolymarketMarketsInput, type PolymarketMarketsItem, type PolymarketMarketsOutcome, PolymarketNamespace, type PricingOffer, RateLimitedError, RealtorNamespace, type RealtorSearchData, type RealtorSearchInput, type RealtorSearchItem, RedditNamespace, type RedditPostCommentsComment, type RedditPostCommentsData, type RedditPostCommentsInput, type RedditPostData, type RedditPostInput, type RedditPostTranscriptData, type RedditPostTranscriptInput, type RedditProfileData, type RedditProfileInput, type RedditSearchData, type RedditSearchInput, type RedditSearchPost, type RedditSubredditDetailsData, type RedditSubredditDetailsInput, type RedditSubredditPostsData, type RedditSubredditPostsInput, type RedditSubredditPostsPost, type RedditSubredditSearchData, type RedditSubredditSearchInput, type RedditSubredditSearchPost, type RedditTrendingPostsData, type RedditTrendingPostsInput, type RedditTrendingPostsPost, type RedditUserCommentsComment, type RedditUserCommentsData, type RedditUserCommentsInput, type RedditUserPostsData, type RedditUserPostsInput, type RedditUserPostsPost, RedfinNamespace, type RedfinSearchData, type RedfinSearchInput, type RedfinSearchItem, RednoteNamespace, type RednoteNoteCommentsComment, type RednoteNoteCommentsData, type RednoteNoteCommentsInput, type RednoteNoteData, type RednoteNoteInput, type RednoteProfileData, type RednoteProfileInput, type RednoteSearchData, type RednoteSearchInput, type RednoteSearchNote, type RednoteSearchUsersData, type RednoteSearchUsersInput, type RednoteSearchUsersUser, type RednoteUserNotesData, type RednoteUserNotesInput, type RednoteUserNotesNote, type RequestOptions, RequestPendingError, type RequestSnapshot, type RequestStatus, ResultNotFoundError, type RunResult, type SearchOptions, type SecFilingsData, type SecFilingsInput, type SecFilingsItem, SecNamespace, type SemrushKeywordsData, type SemrushKeywordsInput, type SemrushKeywordsItem, type SemrushKeywordsQuestion, type SemrushKeywordsRelatedKeyword, SemrushNamespace, type SemrushOverviewData, type SemrushOverviewInput, type SemrushOverviewItem, type SemrushOverviewTopKeyword, type SeoCompetitorsDomainCompetitor, type SeoCompetitorsDomainData, type SeoCompetitorsDomainInput, type SeoDomainIntersectionData, type SeoDomainIntersectionInput, type SeoDomainIntersectionKeyword, type SeoDomainRankOverviewData, type SeoDomainRankOverviewInput, type SeoKeywordDifficultyData, type SeoKeywordDifficultyDifficultie, type SeoKeywordDifficultyInput, type SeoKeywordIdeasData, type SeoKeywordIdeasIdea, type SeoKeywordIdeasInput, type SeoKeywordOverviewData, type SeoKeywordOverviewInput, type SeoKeywordOverviewKeyword, type SeoKeywordOverviewMonthlySearche, type SeoKeywordSuggestionsData, type SeoKeywordSuggestionsInput, type SeoKeywordSuggestionsSuggestion, type SeoLocalPackData, type SeoLocalPackInput, type SeoLocalPackPlace, SeoNamespace, type SeoRankedKeywordsData, type SeoRankedKeywordsInput, type SeoRankedKeywordsRankedKeyword, type SeoRelatedKeywordsData, type SeoRelatedKeywordsInput, type SeoRelatedKeywordsRelatedKeyword, type SeoSearchIntentData, type SeoSearchIntentInput, type SeoSearchIntentIntent, type SeoSearchVolumeData, type SeoSearchVolumeInput, type SeoSearchVolumeKeyword, type SeoSearchVolumeMonthlySearche, type SkuMap, SnapchatNamespace, type SnapchatProfileData, type SnapchatProfileInput, type SnapchatProfileItem, type SnapchatProfileStorie, type SocialFinderData, type SocialFinderInput, type SocialFinderItem, SocialNamespace, type SpotifyAlbumData, type SpotifyAlbumInput, type SpotifyAlbumTrack, type SpotifyArtistAlbum, type SpotifyArtistData, type SpotifyArtistInput, type SpotifyArtistTopTrack, SpotifyNamespace, type SpotifyPlayCountData, type SpotifyPlayCountInput, type SpotifyPlayCountItem, type SpotifyPodcastData, type SpotifyPodcastEpisodesData, type SpotifyPodcastEpisodesEpisode, type SpotifyPodcastEpisodesInput, type SpotifyPodcastInput, type SpotifySearchAlbum, type SpotifySearchArtist, type SpotifySearchData, type SpotifySearchInput, type SpotifySearchPodcast, type SpotifySearchTrack, type SpotifyTrackData, type SpotifyTrackInput, type StartOptions, SubstackNamespace, type SubstackPostsData, type SubstackPostsInput, type SubstackPostsItem, ThreadsNamespace, type ThreadsPostData, type ThreadsPostInput, type ThreadsProfileData, type ThreadsProfileInput, type ThreadsSearchData, type ThreadsSearchInput, type ThreadsSearchPost, type ThreadsSearchUsersData, type ThreadsSearchUsersInput, type ThreadsSearchUsersUser, type ThreadsUserPostsData, type ThreadsUserPostsInput, type ThreadsUserPostsPost, type TiktokAdLibraryAdData, type TiktokAdLibraryAdInput, type TiktokAdLibrarySearchAd, type TiktokAdLibrarySearchData, type TiktokAdLibrarySearchInput, type TiktokAdTransparencySearchAd, type TiktokAdTransparencySearchData, type TiktokAdTransparencySearchInput, type TiktokAudienceDemographicsAudienceLocation, type TiktokAudienceDemographicsData, type TiktokAudienceDemographicsInput, type TiktokCommentRepliesComment, type TiktokCommentRepliesData, type TiktokCommentRepliesInput, type TiktokFollowersData, type TiktokFollowersFollower, type TiktokFollowersInput, type TiktokFollowingData, type TiktokFollowingFollowing, type TiktokFollowingInput, type TiktokHashtagVideosData, type TiktokHashtagVideosInput, type TiktokHashtagVideosItem, type TiktokLiveData, type TiktokLiveInput, TiktokNamespace, type TiktokProfileData, type TiktokProfileInput, type TiktokProfileRegionData, type TiktokProfileRegionInput, type TiktokProfileVideosData, type TiktokProfileVideosInput, type TiktokProfileVideosVideo, type TiktokSearchHashtagData, type TiktokSearchHashtagInput, type TiktokSearchHashtagVideo, type TiktokSearchKeywordData, type TiktokSearchKeywordInput, type TiktokSearchKeywordVideo, type TiktokSearchTopData, type TiktokSearchTopInput, type TiktokSearchTopItem, type TiktokSearchUsersData, type TiktokSearchUsersInput, type TiktokSearchUsersUser, TiktokShopNamespace, type TiktokShopProductData, type TiktokShopProductInput, type TiktokShopProductReviewsData, type TiktokShopProductReviewsInput, type TiktokShopProductReviewsReview, type TiktokShopSearchData, type TiktokShopSearchInput, type TiktokShopSearchItem, type TiktokShopShopProductsData, type TiktokShopShopProductsInput, type TiktokShopShopProductsProduct, type TiktokShopUserShowcaseData, type TiktokShopUserShowcaseInput, type TiktokShopUserShowcaseProduct, type TiktokSongData, type TiktokSongInput, type TiktokSongVideosData, type TiktokSongVideosInput, type TiktokSongVideosVideo, type TiktokTopAdsSearchAd, type TiktokTopAdsSearchData, type TiktokTopAdsSearchInput, type TiktokTrendingFeedData, type TiktokTrendingFeedInput, type TiktokTrendingFeedVideo, type TiktokVideoCommentsComment, type TiktokVideoCommentsData, type TiktokVideoCommentsInput, type TiktokVideoData, type TiktokVideoInput, type TiktokVideoTranscriptData, type TiktokVideoTranscriptInput, TimeoutError, TripadvisorNamespace, type TripadvisorReviewsData, type TripadvisorReviewsInput, type TripadvisorReviewsItem, type TripadvisorSearchData, type TripadvisorSearchInput, type TripadvisorSearchItem, TrustpilotNamespace, type TrustpilotReviewsData, type TrustpilotReviewsInput, type TrustpilotReviewsItem, TruthsocialNamespace, type TruthsocialPostData, type TruthsocialPostInput, type TruthsocialProfileData, type TruthsocialProfileInput, type TruthsocialUserPostsData, type TruthsocialUserPostsInput, type TruthsocialUserPostsPost, type TwitterArticleContentBlock, type TwitterArticleData, type TwitterArticleEntitie, type TwitterArticleInlineStyle, type TwitterArticleInput, type TwitterCommunityData, type TwitterCommunityInput, type TwitterCommunityTweetsData, type TwitterCommunityTweetsInput, type TwitterCommunityTweetsTweet, type TwitterFollowersData, type TwitterFollowersInput, type TwitterFollowersItem, type TwitterFollowingData, type TwitterFollowingInput, type TwitterFollowingItem, TwitterNamespace, type TwitterProfileData, type TwitterProfileInput, type TwitterRepliesData, type TwitterRepliesInput, type TwitterRepliesItem, type TwitterSearchData, type TwitterSearchInput, type TwitterSearchItem, type TwitterThreadData, type TwitterThreadInput, type TwitterThreadTweet, type TwitterTrendsData, type TwitterTrendsInput, type TwitterTrendsItem, type TwitterTweetData, type TwitterTweetInput, type TwitterTweetTranscriptData, type TwitterTweetTranscriptInput, type TwitterUserPostsData, type TwitterUserPostsInput, type TwitterUserPostsTweet, type TwitterUserTweetsData, type TwitterUserTweetsInput, type TwitterUserTweetsTweet, UpstreamError, type UpworkJobsData, type UpworkJobsInput, type UpworkJobsItem, UpworkNamespace, WalmartNamespace, type WalmartProductData, type WalmartProductInput, type WalmartProductItem, type WebCrawlData, type WebCrawlInput, type WebCrawlItem, type WebMapData, type WebMapInput, type WebMapResult, WebNamespace, type WebScrapeData, type WebScrapeInput, type WebScreenshotData, type WebScreenshotInput, type WebScreenshotItem, type WeiboHotSearchData, type WeiboHotSearchInput, type WeiboHotSearchTopic, WeiboNamespace, type WeiboPostCommentsComment, type WeiboPostCommentsData, type WeiboPostCommentsInput, type WeiboPostData, type WeiboPostInput, type WeiboProfileData, type WeiboProfileInput, type WeiboSearchData, type WeiboSearchInput, type WeiboSearchPost, type WeiboUserPostsData, type WeiboUserPostsInput, type WeiboUserPostsPost, YahooFinanceNamespace, type YahooFinanceQuoteData, type YahooFinanceQuoteInput, type YahooFinanceQuoteItem, YelpNamespace, type YelpSearchCategorie, type YelpSearchData, type YelpSearchInput, type YelpSearchItem, type YoutubeChannelCommunityPostsData, type YoutubeChannelCommunityPostsInput, type YoutubeChannelCommunityPostsPost, type YoutubeChannelData, type YoutubeChannelInput, type YoutubeChannelLivesData, type YoutubeChannelLivesInput, type YoutubeChannelLivesLive, type YoutubeChannelPlaylistsData, type YoutubeChannelPlaylistsInput, type YoutubeChannelPlaylistsPlaylist, type YoutubeChannelShortsData, type YoutubeChannelShortsInput, type YoutubeChannelShortsShort, type YoutubeChannelVideosData, type YoutubeChannelVideosInput, type YoutubeChannelVideosVideo, type YoutubeCommentRepliesComment, type YoutubeCommentRepliesData, type YoutubeCommentRepliesInput, type YoutubeCommunityPostData, type YoutubeCommunityPostInput, YoutubeNamespace, type YoutubePlaylistData, type YoutubePlaylistInput, type YoutubePlaylistVideo, type YoutubeSearchData, type YoutubeSearchHashtagData, type YoutubeSearchHashtagInput, type YoutubeSearchHashtagVideo, type YoutubeSearchInput, type YoutubeSearchVideo, type YoutubeTrendingShortsData, type YoutubeTrendingShortsInput, type YoutubeTrendingShortsShort, type YoutubeVideoCommentsComment, type YoutubeVideoCommentsData, type YoutubeVideoCommentsInput, type YoutubeVideoData, type YoutubeVideoInput, type YoutubeVideoSponsorsData, type YoutubeVideoSponsorsInput, type YoutubeVideoSponsorsSuspectedSponsor, type YoutubeVideoTranscriptData, type YoutubeVideoTranscriptInput, type ZhihuAnswerData, type ZhihuAnswerInput, ZhihuNamespace, type ZhihuProfileData, type ZhihuProfileInput, type ZhihuQuestionAnswersAnswer, type ZhihuQuestionAnswersData, type ZhihuQuestionAnswersInput, type ZhihuQuestionData, type ZhihuQuestionInput, type ZhihuSearchArticlesArticle, type ZhihuSearchArticlesData, type ZhihuSearchArticlesInput, ZillowNamespace, type ZillowPropertyData, type ZillowPropertyInput, type ZillowPropertyItem, type ZillowSearchData, type ZillowSearchInput, type ZillowSearchItem, agentSignup, paginate, unwrap };