@getanyapi/sdk 0.19.0 → 0.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -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
  */
@@ -6637,6 +6924,279 @@ declare class FiverrNamespace {
6637
6924
  search(input: FiverrSearchInput, options?: RequestOptions): Promise<RunResult<FiverrSearchData>>;
6638
6925
  }
6639
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.
7110
+ */
7111
+ positionScore?: number;
7112
+ /**
7113
+ * Prompt answered for the visibility analysis.
7114
+ */
7115
+ prompt: string;
7116
+ /**
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.
7119
+ */
7120
+ shareOfVoicePct?: number;
7121
+ /**
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.
7124
+ */
7125
+ webSearchTriggered?: boolean;
7126
+ }
7127
+ /**
7128
+ * Input for Gemini Search (gemini.search).
7129
+ */
7130
+ interface GeminiSearchInput {
7131
+ /**
7132
+ * Question or research prompt for Gemini to answer using web search.
7133
+ */
7134
+ prompt: string;
7135
+ }
7136
+ interface GeminiSearchCitation {
7137
+ /**
7138
+ * Source page title when supplied by the search engine.
7139
+ */
7140
+ title: string;
7141
+ /**
7142
+ * Source page URL.
7143
+ * Format: uri.
7144
+ */
7145
+ url: string;
7146
+ [extra: string]: unknown;
7147
+ }
7148
+ /**
7149
+ * The `data` payload of Gemini Search (gemini.search).
7150
+ */
7151
+ interface GeminiSearchData {
7152
+ /**
7153
+ * The web-grounded answer as text. Populated whenever the provider has data for the entity.
7154
+ */
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;
7168
+ }
7169
+ /**
7170
+ * Typed methods for the gemini platform. Attached to the AnyAPI client as
7171
+ * `client.gemini`.
7172
+ */
7173
+ declare class GeminiNamespace {
7174
+ private readonly _core;
7175
+ constructor(_core: ClientCore);
7176
+ /**
7177
+ * Gemini Brand Visibility
7178
+ *
7179
+ * Analyze how Gemini mentions and cites a brand relative to its competitors.
7180
+ *
7181
+ * Price: $0.0045 per request.
7182
+ *
7183
+ * @example
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" });
7185
+ */
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>>;
7198
+ }
7199
+
6640
7200
  /**
6641
7201
  * Input for GitHub Repository (github.repository).
6642
7202
  */
@@ -7464,40 +8024,122 @@ interface GlassdoorJobsItem {
7464
8024
  */
7465
8025
  title: string;
7466
8026
  /**
7467
- * Absolute Glassdoor job listing URL. Populated whenever the provider has data for the entity.
8027
+ * Absolute Glassdoor job listing URL. Populated whenever the provider has data for the entity.
8028
+ */
8029
+ url: string;
8030
+ [extra: string]: unknown;
8031
+ }
8032
+ /**
8033
+ * The `data` payload of Glassdoor Jobs (glassdoor.jobs).
8034
+ */
8035
+ interface GlassdoorJobsData {
8036
+ /**
8037
+ * Job listing records for the search or company page. Populated whenever the provider has data for the entity.
8038
+ */
8039
+ items: GlassdoorJobsItem[];
8040
+ }
8041
+ /**
8042
+ * Typed methods for the glassdoor platform. Attached to the AnyAPI client as
8043
+ * `client.glassdoor`.
8044
+ */
8045
+ declare class GlassdoorNamespace {
8046
+ private readonly _core;
8047
+ constructor(_core: ClientCore);
8048
+ /**
8049
+ * Glassdoor Jobs
8050
+ *
8051
+ * Search Glassdoor job listings by keyword and location, or scrape any Glassdoor company or job search page URL - up to 20 normalized job records per request.
8052
+ *
8053
+ * Price: $0.00525 per request plus $0.00499 per result (maximum $0.105).
8054
+ *
8055
+ * @example
8056
+ * const res = await client.glassdoor.jobs({ limit: 3, location: "United States", postedLimit: "month", query: "software engineer" });
8057
+ */
8058
+ jobs(input: GlassdoorJobsInput, options?: RequestOptions): Promise<RunResult<GlassdoorJobsData>>;
8059
+ }
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.
7468
8077
  */
7469
8078
  url: string;
7470
8079
  [extra: string]: unknown;
7471
8080
  }
7472
8081
  /**
7473
- * The `data` payload of Glassdoor Jobs (glassdoor.jobs).
8082
+ * The `data` payload of Google AI Mode (google.ai_mode).
7474
8083
  */
7475
- interface GlassdoorJobsData {
8084
+ interface GoogleAiModeData {
7476
8085
  /**
7477
- * Job listing records for the search or company page. Populated whenever the provider has data for the entity.
8086
+ * The answer as plain text. Populated whenever the provider has data for the entity.
7478
8087
  */
7479
- items: GlassdoorJobsItem[];
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;
7480
8101
  }
7481
8102
  /**
7482
- * Typed methods for the glassdoor platform. Attached to the AnyAPI client as
7483
- * `client.glassdoor`.
8103
+ * Input for Google AI Overview (google.ai_overview).
7484
8104
  */
7485
- declare class GlassdoorNamespace {
7486
- private readonly _core;
7487
- constructor(_core: ClientCore);
8105
+ interface GoogleAiOverviewInput {
7488
8106
  /**
7489
- * Glassdoor Jobs
7490
- *
7491
- * Search Glassdoor job listings by keyword and location, or scrape any Glassdoor company or job search page URL - up to 20 normalized job records per request.
7492
- *
7493
- * Price: $0.00525 per request plus $0.00499 per result (maximum $0.105).
7494
- *
7495
- * @example
7496
- * const res = await client.glassdoor.jobs({ limit: 3, location: "United States", postedLimit: "month", query: "software engineer" });
8107
+ * The question or prompt to answer with a Google AI Overview.
7497
8108
  */
7498
- jobs(input: GlassdoorJobsInput, options?: RequestOptions): Promise<RunResult<GlassdoorJobsData>>;
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;
7499
8142
  }
7500
-
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
  *
@@ -14622,6 +15286,300 @@ declare class PeopleSearchNamespace {
14622
15286
  crustdataV3(input: PeopleSearchCrustdataV3Input, options?: RequestOptions): Promise<RunResult<PeopleSearchCrustdataV3Data>>;
14623
15287
  }
14624
15288
 
15289
+ /**
15290
+ * Input for Perplexity Brand Visibility (perplexity.brand_visibility).
15291
+ */
15292
+ interface PerplexityBrandVisibilityInput {
15293
+ /**
15294
+ * Alternative brand names to include in mention analysis.
15295
+ */
15296
+ aliases?: string[];
15297
+ /**
15298
+ * Brand name to measure in the answer.
15299
+ */
15300
+ brand: string;
15301
+ /**
15302
+ * Competitor brand names to compare against the target brand.
15303
+ */
15304
+ competitors?: string[];
15305
+ /**
15306
+ * Country context for the answer and web search (default US).
15307
+ * Default: US.
15308
+ */
15309
+ country?: string;
15310
+ /**
15311
+ * Brand domain used to attribute citations when supplied.
15312
+ */
15313
+ domain?: string;
15314
+ /**
15315
+ * Question or topic Perplexity should answer while measuring brand visibility.
15316
+ */
15317
+ prompt: string;
15318
+ }
15319
+ interface PerplexityBrandVisibilityCitation {
15320
+ /**
15321
+ * Source domain. Populated whenever the provider has data for the entity.
15322
+ * Present whenever the upstream returns this record.
15323
+ */
15324
+ domain?: string;
15325
+ /**
15326
+ * End character offset of the citation evidence. Populated whenever the provider has data for the entity.
15327
+ * Present whenever the upstream returns this record.
15328
+ */
15329
+ endIndex?: number;
15330
+ /**
15331
+ * Source last-updated UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
15332
+ */
15333
+ lastUpdatedUtc?: number;
15334
+ /**
15335
+ * Answer text matched to the citation evidence. Populated whenever the provider has data for the entity.
15336
+ * Present whenever the upstream returns this record.
15337
+ */
15338
+ matchedText?: string;
15339
+ /**
15340
+ * Source publication UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
15341
+ */
15342
+ pubDateUtc?: number;
15343
+ /**
15344
+ * 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.
15345
+ * Present whenever the upstream returns this record.
15346
+ */
15347
+ publishedUtc?: number;
15348
+ /**
15349
+ * One-based citation reference index used in the answer. Populated whenever the provider has data for the entity.
15350
+ * Present whenever the upstream returns this record.
15351
+ */
15352
+ refIndex?: number;
15353
+ /**
15354
+ * Source evidence snippet when supplied. Populated whenever the provider has data for the entity.
15355
+ * Present whenever the upstream returns this record.
15356
+ */
15357
+ snippet?: string;
15358
+ /**
15359
+ * Source evidence type. Populated whenever the provider has data for the entity.
15360
+ * Present whenever the upstream returns this record.
15361
+ */
15362
+ sourceType?: string;
15363
+ /**
15364
+ * Start character offset of the citation evidence. Populated whenever the provider has data for the entity.
15365
+ * Present whenever the upstream returns this record.
15366
+ */
15367
+ startIndex?: number;
15368
+ /**
15369
+ * Source page title when supplied. Populated whenever the provider has data for the entity.
15370
+ * Present whenever the upstream returns this record.
15371
+ */
15372
+ title?: string;
15373
+ /**
15374
+ * Canonical source URL. Populated whenever the provider has data for the entity.
15375
+ * Format: uri.
15376
+ */
15377
+ url: string;
15378
+ [extra: string]: unknown;
15379
+ }
15380
+ interface PerplexityBrandVisibilityCompetitor {
15381
+ /**
15382
+ * Whether the answer cites the competitor. Populated whenever the provider has data for the entity.
15383
+ * Present whenever the upstream returns this record.
15384
+ */
15385
+ cited?: boolean;
15386
+ /**
15387
+ * URLs attributed to the competitor.
15388
+ */
15389
+ citedUrls?: string[];
15390
+ /**
15391
+ * Character position of the first competitor mention when present.
15392
+ */
15393
+ firstPosition?: number;
15394
+ /**
15395
+ * Number of competitor mentions in the answer. Populated whenever the provider has data for the entity.
15396
+ * Present whenever the upstream returns this record.
15397
+ */
15398
+ mentionCount?: number;
15399
+ /**
15400
+ * Whether the answer mentions the competitor. Populated whenever the provider has data for the entity.
15401
+ * Present whenever the upstream returns this record.
15402
+ */
15403
+ mentioned?: boolean;
15404
+ /**
15405
+ * Competitor brand name.
15406
+ */
15407
+ name: string;
15408
+ [extra: string]: unknown;
15409
+ }
15410
+ /**
15411
+ * The `data` payload of Perplexity Brand Visibility (perplexity.brand_visibility).
15412
+ */
15413
+ interface PerplexityBrandVisibilityData {
15414
+ /**
15415
+ * Full answer used for the visibility analysis. Populated whenever the provider has data for the entity.
15416
+ * Present whenever the upstream returns this record.
15417
+ */
15418
+ answer?: string;
15419
+ /**
15420
+ * Brand measured in the answer.
15421
+ */
15422
+ brand: string;
15423
+ /**
15424
+ * One-based citation rank for the brand, or null when it was not cited.
15425
+ */
15426
+ citationRank?: number | null;
15427
+ /**
15428
+ * Sources cited by the answer. Populated whenever the provider has data for the entity.
15429
+ * Present whenever the upstream returns this record.
15430
+ */
15431
+ citations?: PerplexityBrandVisibilityCitation[];
15432
+ /**
15433
+ * Whether the answer cites the brand domain. Populated whenever the provider has data for the entity.
15434
+ * Present whenever the upstream returns this record.
15435
+ */
15436
+ cited?: boolean;
15437
+ /**
15438
+ * URLs attributed to the brand domain.
15439
+ */
15440
+ citedUrls?: string[];
15441
+ /**
15442
+ * Visibility metrics for requested competitors. Populated whenever the provider has data for the entity.
15443
+ * Present whenever the upstream returns this record.
15444
+ */
15445
+ competitors?: PerplexityBrandVisibilityCompetitor[];
15446
+ /**
15447
+ * Country context used for the answer. Populated whenever the provider has data for the entity.
15448
+ * Present whenever the upstream returns this record.
15449
+ */
15450
+ country?: string;
15451
+ /**
15452
+ * UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
15453
+ */
15454
+ createdUtc?: number;
15455
+ /**
15456
+ * Brand domain used for citation attribution. Populated whenever the provider has data for the entity.
15457
+ * Present whenever the upstream returns this record.
15458
+ */
15459
+ domain?: string;
15460
+ /**
15461
+ * Leading excerpt from the answer. Populated whenever the provider has data for the entity.
15462
+ * Present whenever the upstream returns this record.
15463
+ */
15464
+ excerpt?: string;
15465
+ /**
15466
+ * Character position of the first brand mention. Populated whenever the provider has data for the entity.
15467
+ * Present whenever the upstream returns this record.
15468
+ */
15469
+ firstPosition?: number;
15470
+ /**
15471
+ * Upstream processing latency in milliseconds. Populated whenever the provider has data for the entity.
15472
+ * Present whenever the upstream returns this record.
15473
+ */
15474
+ latencyMs?: number;
15475
+ /**
15476
+ * Number of brand mentions in the answer. Populated whenever the provider has data for the entity.
15477
+ * Present whenever the upstream returns this record.
15478
+ */
15479
+ mentionCount?: number;
15480
+ /**
15481
+ * Whether the answer mentions the brand. Populated whenever the provider has data for the entity.
15482
+ * Present whenever the upstream returns this record.
15483
+ */
15484
+ mentioned?: boolean;
15485
+ /**
15486
+ * Perplexity model that generated the answer. Populated whenever the provider has data for the entity.
15487
+ * Present whenever the upstream returns this record.
15488
+ */
15489
+ model?: string;
15490
+ /**
15491
+ * Visibility score derived from the first mention position. Populated whenever the provider has data for the entity.
15492
+ * Present whenever the upstream returns this record.
15493
+ */
15494
+ positionScore?: number;
15495
+ /**
15496
+ * Prompt answered for the visibility analysis.
15497
+ */
15498
+ prompt: string;
15499
+ /**
15500
+ * Brand share of voice among the measured brands, as a percentage. Populated whenever the provider has data for the entity.
15501
+ * Present whenever the upstream returns this record.
15502
+ */
15503
+ shareOfVoicePct?: number;
15504
+ /**
15505
+ * Whether Perplexity used web search for the answer. Populated whenever the provider has data for the entity.
15506
+ * Present whenever the upstream returns this record.
15507
+ */
15508
+ webSearchTriggered?: boolean;
15509
+ }
15510
+ /**
15511
+ * Input for Perplexity Search (perplexity.search).
15512
+ */
15513
+ interface PerplexitySearchInput {
15514
+ /**
15515
+ * Question or research prompt for Perplexity to answer using web search.
15516
+ */
15517
+ prompt: string;
15518
+ }
15519
+ interface PerplexitySearchCitation {
15520
+ /**
15521
+ * Source page title when supplied by the search engine.
15522
+ */
15523
+ title: string;
15524
+ /**
15525
+ * Source page URL.
15526
+ * Format: uri.
15527
+ */
15528
+ url: string;
15529
+ [extra: string]: unknown;
15530
+ }
15531
+ /**
15532
+ * The `data` payload of Perplexity Search (perplexity.search).
15533
+ */
15534
+ interface PerplexitySearchData {
15535
+ /**
15536
+ * The web-grounded answer as text. Populated whenever the provider has data for the entity.
15537
+ */
15538
+ answer: string;
15539
+ /**
15540
+ * The web-grounded answer with Markdown formatting. Populated whenever the provider has data for the entity.
15541
+ */
15542
+ answerMarkdown: string;
15543
+ /**
15544
+ * Sources cited by the answer. Populated whenever the provider has data for the entity.
15545
+ */
15546
+ citations: PerplexitySearchCitation[];
15547
+ /**
15548
+ * The prompt answered by Perplexity.
15549
+ */
15550
+ prompt: string;
15551
+ }
15552
+ /**
15553
+ * Typed methods for the perplexity platform. Attached to the AnyAPI client as
15554
+ * `client.perplexity`.
15555
+ */
15556
+ declare class PerplexityNamespace {
15557
+ private readonly _core;
15558
+ constructor(_core: ClientCore);
15559
+ /**
15560
+ * Perplexity Brand Visibility
15561
+ *
15562
+ * Analyze how Perplexity mentions and cites a brand relative to its competitors.
15563
+ *
15564
+ * Price: $0.0045 per request.
15565
+ *
15566
+ * @example
15567
+ * 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" });
15568
+ */
15569
+ brandVisibility(input: PerplexityBrandVisibilityInput, options?: RequestOptions): Promise<RunResult<PerplexityBrandVisibilityData>>;
15570
+ /**
15571
+ * Perplexity Search
15572
+ *
15573
+ * Ask Perplexity a web-grounded question and receive an answer with source citations.
15574
+ *
15575
+ * Price: $0.0036 per request.
15576
+ *
15577
+ * @example
15578
+ * const res = await client.perplexity.search({ prompt: "What is AnyAPI at getanyapi.com, and what does it offer?" });
15579
+ */
15580
+ search(input: PerplexitySearchInput, options?: RequestOptions): Promise<RunResult<PerplexitySearchData>>;
15581
+ }
15582
+
14625
15583
  /**
14626
15584
  * Input for Skip Trace (person.skip_trace).
14627
15585
  */
@@ -26208,6 +27166,16 @@ interface SkuMap {
26208
27166
  data: BookingSearchData;
26209
27167
  result: RunResult<BookingSearchData>;
26210
27168
  };
27169
+ "chatgpt.brand_visibility": {
27170
+ input: ChatgptBrandVisibilityInput;
27171
+ data: ChatgptBrandVisibilityData;
27172
+ result: RunResult<ChatgptBrandVisibilityData>;
27173
+ };
27174
+ "chatgpt.search": {
27175
+ input: ChatgptSearchInput;
27176
+ data: ChatgptSearchData;
27177
+ result: RunResult<ChatgptSearchData>;
27178
+ };
26211
27179
  "coinmarketcap.listings": {
26212
27180
  input: CoinmarketcapListingsInput;
26213
27181
  data: CoinmarketcapListingsData;
@@ -26438,6 +27406,16 @@ interface SkuMap {
26438
27406
  data: FiverrSearchData;
26439
27407
  result: RunResult<FiverrSearchData>;
26440
27408
  };
27409
+ "gemini.brand_visibility": {
27410
+ input: GeminiBrandVisibilityInput;
27411
+ data: GeminiBrandVisibilityData;
27412
+ result: RunResult<GeminiBrandVisibilityData>;
27413
+ };
27414
+ "gemini.search": {
27415
+ input: GeminiSearchInput;
27416
+ data: GeminiSearchData;
27417
+ result: RunResult<GeminiSearchData>;
27418
+ };
26441
27419
  "github.repository": {
26442
27420
  input: GithubRepositoryInput;
26443
27421
  data: GithubRepositoryData;
@@ -26493,6 +27471,16 @@ interface SkuMap {
26493
27471
  data: GlassdoorJobsData;
26494
27472
  result: RunResult<GlassdoorJobsData>;
26495
27473
  };
27474
+ "google.ai_mode": {
27475
+ input: GoogleAiModeInput;
27476
+ data: GoogleAiModeData;
27477
+ result: RunResult<GoogleAiModeData>;
27478
+ };
27479
+ "google.ai_overview": {
27480
+ input: GoogleAiOverviewInput;
27481
+ data: GoogleAiOverviewData;
27482
+ result: RunResult<GoogleAiOverviewData>;
27483
+ };
26496
27484
  "google.autocomplete": {
26497
27485
  input: GoogleAutocompleteInput;
26498
27486
  data: GoogleAutocompleteData;
@@ -26883,6 +27871,16 @@ interface SkuMap {
26883
27871
  data: PeopleSearchCrustdataV3Data;
26884
27872
  result: RunResult<PeopleSearchCrustdataV3Data>;
26885
27873
  };
27874
+ "perplexity.brand_visibility": {
27875
+ input: PerplexityBrandVisibilityInput;
27876
+ data: PerplexityBrandVisibilityData;
27877
+ result: RunResult<PerplexityBrandVisibilityData>;
27878
+ };
27879
+ "perplexity.search": {
27880
+ input: PerplexitySearchInput;
27881
+ data: PerplexitySearchData;
27882
+ result: RunResult<PerplexitySearchData>;
27883
+ };
26886
27884
  "person.skip_trace": {
26887
27885
  input: PersonSkipTraceInput;
26888
27886
  data: PersonSkipTraceData;
@@ -27626,6 +28624,10 @@ declare class AnyAPI extends AnyAPI$1 {
27626
28624
  * Typed methods for the booking platform.
27627
28625
  */
27628
28626
  get booking(): BookingNamespace;
28627
+ /**
28628
+ * Typed methods for the chatgpt platform.
28629
+ */
28630
+ get chatgpt(): ChatgptNamespace;
27629
28631
  /**
27630
28632
  * Typed methods for the coinmarketcap platform.
27631
28633
  */
@@ -27674,6 +28676,10 @@ declare class AnyAPI extends AnyAPI$1 {
27674
28676
  * Typed methods for the fiverr platform.
27675
28677
  */
27676
28678
  get fiverr(): FiverrNamespace;
28679
+ /**
28680
+ * Typed methods for the gemini platform.
28681
+ */
28682
+ get gemini(): GeminiNamespace;
27677
28683
  /**
27678
28684
  * Typed methods for the github platform.
27679
28685
  */
@@ -27730,6 +28736,10 @@ declare class AnyAPI extends AnyAPI$1 {
27730
28736
  * Typed methods for the people_search platform.
27731
28737
  */
27732
28738
  get peopleSearch(): PeopleSearchNamespace;
28739
+ /**
28740
+ * Typed methods for the perplexity platform.
28741
+ */
28742
+ get perplexity(): PerplexityNamespace;
27733
28743
  /**
27734
28744
  * Typed methods for the person platform.
27735
28745
  */
@@ -27860,4 +28870,4 @@ declare class AnyAPI extends AnyAPI$1 {
27860
28870
  get zillow(): ZillowNamespace;
27861
28871
  }
27862
28872
 
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 };
28873
+ 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 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 };