@getanyapi/sdk 0.18.1 → 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
  */
@@ -3659,11 +3946,9 @@ interface DouyinSearchVideosInput {
3659
3946
  */
3660
3947
  duration?: "0" | "0-1" | "1-5" | "5-10000";
3661
3948
  /**
3662
- * Publication window in days: 0 any time, 1 day, 7 days, or 180 days.
3663
- * One of: 0, 1, 7, 180.
3664
- * Default: 0.
3949
+ * Publication window in days. Use the canonical JSON integer 0 for any time, 1 for one day, 7 for seven days, or 180 for 180 days; legacy numeric strings remain accepted.
3665
3950
  */
3666
- publishedWithin?: "0" | "1" | "7" | "180";
3951
+ publishedWithin?: unknown;
3667
3952
  /**
3668
3953
  * Keyword to search for.
3669
3954
  */
@@ -3673,11 +3958,9 @@ interface DouyinSearchVideosInput {
3673
3958
  */
3674
3959
  searchId?: string;
3675
3960
  /**
3676
- * Sort order: 0 comprehensive, 1 most liked, or 2 newest.
3677
- * One of: 0, 1, 2.
3678
- * Default: 0.
3961
+ * Sort order. Use the canonical JSON integer 0 for comprehensive, 1 for most liked, or 2 for newest; legacy numeric strings remain accepted.
3679
3962
  */
3680
- sort?: "0" | "1" | "2";
3963
+ sort?: unknown;
3681
3964
  }
3682
3965
  interface DouyinSearchVideosVideo {
3683
3966
  /**
@@ -3780,10 +4063,9 @@ interface DouyinUserPostsInput {
3780
4063
  */
3781
4064
  secUserId: string;
3782
4065
  /**
3783
- * Post order: 0 for newest or 1 for most popular.
3784
- * Default: 0.
4066
+ * Post order. Use the canonical JSON integer 0 for newest or 1 for most popular; legacy numeric strings remain accepted.
3785
4067
  */
3786
- sort?: number;
4068
+ sort?: unknown;
3787
4069
  }
3788
4070
  interface DouyinUserPostsPost {
3789
4071
  /**
@@ -4063,7 +4345,7 @@ declare class DouyinNamespace {
4063
4345
  * Price: $0.012 per request.
4064
4346
  *
4065
4347
  * @example
4066
- * const res = await client.douyin.searchVideos({ query: "机器人", duration: "0", publishedWithin: "0", sort: "0" });
4348
+ * const res = await client.douyin.searchVideos({ query: "机器人", duration: "0", publishedWithin: 0, sort: 0 });
4067
4349
  */
4068
4350
  searchVideos(input: DouyinSearchVideosInput, options?: RequestOptions): Promise<RunResult<DouyinSearchVideosData>>;
4069
4351
  /**
@@ -6637,9 +6919,282 @@ declare class FiverrNamespace {
6637
6919
  * Price: $0 per request plus $0.00158 per result (maximum $0.0315).
6638
6920
  *
6639
6921
  * @example
6640
- * const res = await client.fiverr.search({ url: "https://www.fiverr.com/search/gigs?query=logo%20design", limit: 3 });
6922
+ * const res = await client.fiverr.search({ url: "https://www.fiverr.com/search/gigs?query=logo%20design", limit: 3 });
6923
+ */
6924
+ search(input: FiverrSearchInput, options?: RequestOptions): Promise<RunResult<FiverrSearchData>>;
6925
+ }
6926
+
6927
+ /**
6928
+ * Input for Gemini Brand Visibility (gemini.brand_visibility).
6929
+ */
6930
+ interface GeminiBrandVisibilityInput {
6931
+ /**
6932
+ * Alternative brand names to include in mention analysis.
6933
+ */
6934
+ aliases?: string[];
6935
+ /**
6936
+ * Brand name to measure in the answer.
6937
+ */
6938
+ brand: string;
6939
+ /**
6940
+ * Competitor brand names to compare against the target brand.
6941
+ */
6942
+ competitors?: string[];
6943
+ /**
6944
+ * Country context for the answer and web search (default US).
6945
+ * Default: US.
6946
+ */
6947
+ country?: string;
6948
+ /**
6949
+ * Brand domain used to attribute citations when supplied.
6950
+ */
6951
+ domain?: string;
6952
+ /**
6953
+ * Question or topic Gemini should answer while measuring brand visibility.
6954
+ */
6955
+ prompt: string;
6956
+ }
6957
+ interface GeminiBrandVisibilityCitation {
6958
+ /**
6959
+ * Source attribution label when supplied. Populated whenever the provider has data for the entity.
6960
+ * Present whenever the upstream returns this record.
6961
+ */
6962
+ attribution?: string;
6963
+ /**
6964
+ * Source domain. Populated whenever the provider has data for the entity.
6965
+ * Present whenever the upstream returns this record.
6966
+ */
6967
+ domain?: string;
6968
+ /**
6969
+ * End character offset of the citation evidence.
6970
+ */
6971
+ endIndex?: number;
6972
+ /**
6973
+ * Answer text matched to the citation evidence.
6974
+ */
6975
+ matchedText?: string;
6976
+ /**
6977
+ * Source evidence snippet when supplied.
6978
+ */
6979
+ snippet?: string;
6980
+ /**
6981
+ * Start character offset of the citation evidence.
6982
+ */
6983
+ startIndex?: number;
6984
+ /**
6985
+ * Source page title when supplied. Populated whenever the provider has data for the entity.
6986
+ * Present whenever the upstream returns this record.
6987
+ */
6988
+ title?: string;
6989
+ /**
6990
+ * Canonical source URL. Populated whenever the provider has data for the entity.
6991
+ * Format: uri.
6992
+ */
6993
+ url: string;
6994
+ [extra: string]: unknown;
6995
+ }
6996
+ interface GeminiBrandVisibilityCompetitor {
6997
+ /**
6998
+ * Whether the answer cites the competitor. Populated whenever the provider has data for the entity.
6999
+ * Present whenever the upstream returns this record.
7000
+ */
7001
+ cited?: boolean;
7002
+ /**
7003
+ * URLs attributed to the competitor.
7004
+ */
7005
+ citedUrls?: string[];
7006
+ /**
7007
+ * Character position of the first competitor mention. Populated whenever the provider has data for the entity.
7008
+ * Present whenever the upstream returns this record.
7009
+ */
7010
+ firstPosition?: number;
7011
+ /**
7012
+ * Number of competitor mentions in the answer. Populated whenever the provider has data for the entity.
7013
+ * Present whenever the upstream returns this record.
7014
+ */
7015
+ mentionCount?: number;
7016
+ /**
7017
+ * Whether the answer mentions the competitor. Populated whenever the provider has data for the entity.
7018
+ * Present whenever the upstream returns this record.
7019
+ */
7020
+ mentioned?: boolean;
7021
+ /**
7022
+ * Competitor brand name.
7023
+ */
7024
+ name: string;
7025
+ [extra: string]: unknown;
7026
+ }
7027
+ /**
7028
+ * The `data` payload of Gemini Brand Visibility (gemini.brand_visibility).
7029
+ */
7030
+ interface GeminiBrandVisibilityData {
7031
+ /**
7032
+ * Full answer used for the visibility analysis. Populated whenever the provider has data for the entity.
7033
+ * Present whenever the upstream returns this record.
7034
+ */
7035
+ answer?: string;
7036
+ /**
7037
+ * Brand measured in the answer.
7038
+ */
7039
+ brand: string;
7040
+ /**
7041
+ * One-based citation rank for the brand, or null when it was not cited.
7042
+ */
7043
+ citationRank?: number | null;
7044
+ /**
7045
+ * Sources cited by the answer. Populated whenever the provider has data for the entity.
7046
+ * Present whenever the upstream returns this record.
7047
+ */
7048
+ citations?: GeminiBrandVisibilityCitation[];
7049
+ /**
7050
+ * Whether the answer cites the brand domain. Populated whenever the provider has data for the entity.
7051
+ * Present whenever the upstream returns this record.
7052
+ */
7053
+ cited?: boolean;
7054
+ /**
7055
+ * URLs attributed to the brand domain.
7056
+ */
7057
+ citedUrls?: string[];
7058
+ /**
7059
+ * Visibility metrics for requested competitors. Populated whenever the provider has data for the entity.
7060
+ * Present whenever the upstream returns this record.
7061
+ */
7062
+ competitors?: GeminiBrandVisibilityCompetitor[];
7063
+ /**
7064
+ * Country context used for the answer. Populated whenever the provider has data for the entity.
7065
+ * Present whenever the upstream returns this record.
7066
+ */
7067
+ country?: string;
7068
+ /**
7069
+ * UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
7070
+ */
7071
+ createdUtc?: number;
7072
+ /**
7073
+ * Brand domain used for citation attribution. Populated whenever the provider has data for the entity.
7074
+ * Present whenever the upstream returns this record.
7075
+ */
7076
+ domain?: string;
7077
+ /**
7078
+ * Leading excerpt from the answer. Populated whenever the provider has data for the entity.
7079
+ * Present whenever the upstream returns this record.
7080
+ */
7081
+ excerpt?: string;
7082
+ /**
7083
+ * Character position of the first brand mention. Populated whenever the provider has data for the entity.
7084
+ * Present whenever the upstream returns this record.
7085
+ */
7086
+ firstPosition?: number;
7087
+ /**
7088
+ * Upstream processing latency in milliseconds. Populated whenever the provider has data for the entity.
7089
+ * Present whenever the upstream returns this record.
7090
+ */
7091
+ latencyMs?: number;
7092
+ /**
7093
+ * Number of brand mentions in the answer. Populated whenever the provider has data for the entity.
7094
+ * Present whenever the upstream returns this record.
7095
+ */
7096
+ mentionCount?: number;
7097
+ /**
7098
+ * Whether the answer mentions the brand. Populated whenever the provider has data for the entity.
7099
+ * Present whenever the upstream returns this record.
7100
+ */
7101
+ mentioned?: boolean;
7102
+ /**
7103
+ * Gemini model that generated the answer. Populated whenever the provider has data for the entity.
7104
+ * Present whenever the upstream returns this record.
7105
+ */
7106
+ model?: string;
7107
+ /**
7108
+ * Visibility score derived from the first mention position. Populated whenever the provider has data for the entity.
7109
+ * Present whenever the upstream returns this record.
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?" });
6641
7196
  */
6642
- search(input: FiverrSearchInput, options?: RequestOptions): Promise<RunResult<FiverrSearchData>>;
7197
+ search(input: GeminiSearchInput, options?: RequestOptions): Promise<RunResult<GeminiSearchData>>;
6643
7198
  }
6644
7199
 
6645
7200
  /**
@@ -7503,6 +8058,88 @@ declare class GlassdoorNamespace {
7503
8058
  jobs(input: GlassdoorJobsInput, options?: RequestOptions): Promise<RunResult<GlassdoorJobsData>>;
7504
8059
  }
7505
8060
 
8061
+ /**
8062
+ * Input for Google AI Mode (google.ai_mode).
8063
+ */
8064
+ interface GoogleAiModeInput {
8065
+ /**
8066
+ * The question or prompt to answer with Google AI Mode.
8067
+ */
8068
+ prompt: string;
8069
+ }
8070
+ interface GoogleAiModeCitation {
8071
+ /**
8072
+ * The cited source title.
8073
+ */
8074
+ title: string;
8075
+ /**
8076
+ * The cited source URL.
8077
+ */
8078
+ url: string;
8079
+ [extra: string]: unknown;
8080
+ }
8081
+ /**
8082
+ * The `data` payload of Google AI Mode (google.ai_mode).
8083
+ */
8084
+ interface GoogleAiModeData {
8085
+ /**
8086
+ * The answer as plain text. Populated whenever the provider has data for the entity.
8087
+ */
8088
+ answer: string;
8089
+ /**
8090
+ * The answer in Markdown form. Populated whenever the provider has data for the entity.
8091
+ */
8092
+ answerMarkdown: string;
8093
+ /**
8094
+ * Sources cited by the answer when the upstream returns them.
8095
+ */
8096
+ citations: GoogleAiModeCitation[];
8097
+ /**
8098
+ * The prompt answered by the upstream search experience. Populated whenever the provider has data for the entity.
8099
+ */
8100
+ prompt: string;
8101
+ }
8102
+ /**
8103
+ * Input for Google AI Overview (google.ai_overview).
8104
+ */
8105
+ interface GoogleAiOverviewInput {
8106
+ /**
8107
+ * The question or prompt to answer with a Google AI Overview.
8108
+ */
8109
+ prompt: string;
8110
+ }
8111
+ interface GoogleAiOverviewCitation {
8112
+ /**
8113
+ * The cited source title.
8114
+ */
8115
+ title: string;
8116
+ /**
8117
+ * The cited source URL.
8118
+ */
8119
+ url: string;
8120
+ [extra: string]: unknown;
8121
+ }
8122
+ /**
8123
+ * The `data` payload of Google AI Overview (google.ai_overview).
8124
+ */
8125
+ interface GoogleAiOverviewData {
8126
+ /**
8127
+ * The AI Overview answer as plain text. Populated whenever the provider has data for the entity.
8128
+ */
8129
+ answer: string;
8130
+ /**
8131
+ * The AI Overview answer in Markdown form. Populated whenever the provider has data for the entity.
8132
+ */
8133
+ answerMarkdown: string;
8134
+ /**
8135
+ * Sources cited by the AI Overview when Google returns them.
8136
+ */
8137
+ citations: GoogleAiOverviewCitation[];
8138
+ /**
8139
+ * The prompt answered by the upstream search experience. Populated whenever the provider has data for the entity.
8140
+ */
8141
+ prompt: string;
8142
+ }
7506
8143
  /**
7507
8144
  * Input for Google Autocomplete (google.autocomplete).
7508
8145
  */
@@ -8015,6 +8652,28 @@ interface GoogleVideosData {
8015
8652
  declare class GoogleNamespace {
8016
8653
  private readonly _core;
8017
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>>;
8018
8677
  /**
8019
8678
  * Google Autocomplete
8020
8679
  *
@@ -14584,47 +15243,341 @@ interface PeopleSearchCrustdataV3Profile {
14584
15243
  /**
14585
15244
  * Format: uri.
14586
15245
  */
14587
- linkedinUrl?: string;
14588
- name: string;
15246
+ linkedinUrl?: string;
15247
+ name: string;
15248
+ [extra: string]: unknown;
15249
+ }
15250
+ /**
15251
+ * The `data` payload of People Search - Crustdata v3 (people_search.crustdata_v3).
15252
+ */
15253
+ interface PeopleSearchCrustdataV3Data {
15254
+ hasMore?: boolean;
15255
+ profiles: PeopleSearchCrustdataV3Profile[];
15256
+ /**
15257
+ * Range: minimum 0.
15258
+ */
15259
+ totalCount?: number;
15260
+ }
15261
+ /**
15262
+ * Typed methods for the people_search platform. Attached to the AnyAPI client as
15263
+ * `client.peopleSearch`.
15264
+ */
15265
+ declare class PeopleSearchNamespace {
15266
+ private readonly _core;
15267
+ constructor(_core: ClientCore);
15268
+ /**
15269
+ * People Search - AI Ark
15270
+ *
15271
+ * Search professional profiles with account, contact, and saved-list filters.
15272
+ *
15273
+ * Price: $0 per request plus $0.0084 per result (maximum $0.84).
15274
+ *
15275
+ * @example
15276
+ * const res = await client.peopleSearch.aiArk({ page: 0, size: 1 });
15277
+ */
15278
+ aiArk(input: PeopleSearchAiArkInput, options?: RequestOptions): Promise<RunResult<PeopleSearchAiArkData>>;
15279
+ /**
15280
+ * People Search - Crustdata v3
15281
+ *
15282
+ * Find up to 100 professional profiles by company domain and title keywords.
15283
+ *
15284
+ * Price: $0.144 per request.
15285
+ */
15286
+ crustdataV3(input: PeopleSearchCrustdataV3Input, options?: RequestOptions): Promise<RunResult<PeopleSearchCrustdataV3Data>>;
15287
+ }
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;
14589
15529
  [extra: string]: unknown;
14590
15530
  }
14591
15531
  /**
14592
- * The `data` payload of People Search - Crustdata v3 (people_search.crustdata_v3).
15532
+ * The `data` payload of Perplexity Search (perplexity.search).
14593
15533
  */
14594
- interface PeopleSearchCrustdataV3Data {
14595
- hasMore?: boolean;
14596
- profiles: PeopleSearchCrustdataV3Profile[];
15534
+ interface PerplexitySearchData {
14597
15535
  /**
14598
- * Range: minimum 0.
15536
+ * The web-grounded answer as text. Populated whenever the provider has data for the entity.
14599
15537
  */
14600
- totalCount?: number;
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;
14601
15551
  }
14602
15552
  /**
14603
- * Typed methods for the people_search platform. Attached to the AnyAPI client as
14604
- * `client.peopleSearch`.
15553
+ * Typed methods for the perplexity platform. Attached to the AnyAPI client as
15554
+ * `client.perplexity`.
14605
15555
  */
14606
- declare class PeopleSearchNamespace {
15556
+ declare class PerplexityNamespace {
14607
15557
  private readonly _core;
14608
15558
  constructor(_core: ClientCore);
14609
15559
  /**
14610
- * People Search - AI Ark
15560
+ * Perplexity Brand Visibility
14611
15561
  *
14612
- * Search professional profiles with account, contact, and saved-list filters.
15562
+ * Analyze how Perplexity mentions and cites a brand relative to its competitors.
14613
15563
  *
14614
- * Price: $0 per request plus $0.0084 per result (maximum $0.84).
15564
+ * Price: $0.0045 per request.
14615
15565
  *
14616
15566
  * @example
14617
- * const res = await client.peopleSearch.aiArk({ page: 0, size: 1 });
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" });
14618
15568
  */
14619
- aiArk(input: PeopleSearchAiArkInput, options?: RequestOptions): Promise<RunResult<PeopleSearchAiArkData>>;
15569
+ brandVisibility(input: PerplexityBrandVisibilityInput, options?: RequestOptions): Promise<RunResult<PerplexityBrandVisibilityData>>;
14620
15570
  /**
14621
- * People Search - Crustdata v3
15571
+ * Perplexity Search
14622
15572
  *
14623
- * Find up to 100 professional profiles by company domain and title keywords.
15573
+ * Ask Perplexity a web-grounded question and receive an answer with source citations.
14624
15574
  *
14625
- * Price: $0.144 per request.
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?" });
14626
15579
  */
14627
- crustdataV3(input: PeopleSearchCrustdataV3Input, options?: RequestOptions): Promise<RunResult<PeopleSearchCrustdataV3Data>>;
15580
+ search(input: PerplexitySearchInput, options?: RequestOptions): Promise<RunResult<PerplexitySearchData>>;
14628
15581
  }
14629
15582
 
14630
15583
  /**
@@ -19525,9 +20478,9 @@ interface TiktokAdLibrarySearchInput {
19525
20478
  */
19526
20479
  likes?: "top_1_20" | "top_21_40" | "top_41_60" | "top_61_80" | "top_81_100";
19527
20480
  /**
19528
- * Results per page, max 50 (defaults to 20).
20481
+ * Results per page, with an existing maximum of 50 (default 20). Use a canonical JSON integer; legacy numeric strings remain accepted.
19529
20482
  */
19530
- limit?: string;
20483
+ limit?: unknown;
19531
20484
  /**
19532
20485
  * Campaign objective filter.
19533
20486
  * One of: app_installs, conversions, lead_generation, product_sales, reach, traffic, video_views.
@@ -19538,9 +20491,9 @@ interface TiktokAdLibrarySearchInput {
19538
20491
  */
19539
20492
  orderBy?: string;
19540
20493
  /**
19541
- * Time window for top ads: 7, 30, or 180 days.
20494
+ * Time window for top ads. Use the canonical JSON integer 7, 30, or 180; legacy numeric strings remain accepted.
19542
20495
  */
19543
- period?: string;
20496
+ period?: unknown;
19544
20497
  /**
19545
20498
  * Keyword to search ad titles and content (e.g. spotify).
19546
20499
  */
@@ -19596,6 +20549,124 @@ interface TiktokAdLibrarySearchData {
19596
20549
  nextCursor: string | null;
19597
20550
  total: number;
19598
20551
  }
20552
+ /**
20553
+ * Input for TikTok Ad Transparency Search (tiktok.ad_transparency_search).
20554
+ */
20555
+ interface TiktokAdTransparencySearchInput {
20556
+ /**
20557
+ * TikTok Commercial Content Library advertiser ID. Provide advertiserId or query.
20558
+ */
20559
+ advertiserId?: string;
20560
+ /**
20561
+ * Search cursor from a previous response's nextCursor.
20562
+ */
20563
+ cursor?: string;
20564
+ /**
20565
+ * Number of days of Commercial Content Library history to search, from 1 to 365. Defaults to 30.
20566
+ * Range: minimum 1, maximum 365.
20567
+ * Default: 30.
20568
+ */
20569
+ days?: number;
20570
+ /**
20571
+ * Maximum number of ads to return, from 1 to 50. Defaults to 20. Billing is flat per request.
20572
+ * Range: minimum 1, maximum 50.
20573
+ * Default: 20.
20574
+ */
20575
+ limit?: number;
20576
+ /**
20577
+ * Zero-based result offset. Defaults to 0.
20578
+ * Range: minimum 0.
20579
+ * Default: 0.
20580
+ */
20581
+ offset?: number;
20582
+ /**
20583
+ * Keyword to search in TikTok's EU Commercial Content Library. Provide query or advertiserId.
20584
+ */
20585
+ query?: string;
20586
+ /**
20587
+ * Region code for the transparency search. Defaults to DE.
20588
+ * Default: DE.
20589
+ */
20590
+ region?: string;
20591
+ /**
20592
+ * Upstream sort expression. Defaults to last_shown_date,desc.
20593
+ * Default: last_shown_date,desc.
20594
+ */
20595
+ sort?: string;
20596
+ }
20597
+ interface TiktokAdTransparencySearchAd {
20598
+ /**
20599
+ * Advertiser display name associated with the ad. Populated whenever the provider has data for the entity.
20600
+ * Present whenever the upstream returns this record.
20601
+ */
20602
+ advertiserName?: string;
20603
+ /**
20604
+ * UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. When the ad was first shown. Populated whenever the provider has data for the entity.
20605
+ * Present whenever the upstream returns this record.
20606
+ */
20607
+ firstShownUtc?: number;
20608
+ /**
20609
+ * Commercial Content Library creative format code for the ad. Populated whenever the provider has data for the entity.
20610
+ * Present whenever the upstream returns this record.
20611
+ */
20612
+ format?: string;
20613
+ /**
20614
+ * TikTok Commercial Content Library ad identifier. Populated whenever the provider has data for the entity.
20615
+ */
20616
+ id: string;
20617
+ /**
20618
+ * Signed cover image URL exactly as returned by the Commercial Content Library. Populated whenever the provider has data for the entity.
20619
+ * Format: uri.
20620
+ * Present whenever the upstream returns this record.
20621
+ */
20622
+ image?: string;
20623
+ /**
20624
+ * UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. When the ad was last shown. Populated whenever the provider has data for the entity.
20625
+ * Present whenever the upstream returns this record.
20626
+ */
20627
+ lastShownUtc?: number;
20628
+ /**
20629
+ * Commercial Content Library audit status code for the ad. Populated whenever the provider has data for the entity.
20630
+ * Present whenever the upstream returns this record.
20631
+ */
20632
+ status?: string;
20633
+ /**
20634
+ * Signed video asset URL exactly as returned by the Commercial Content Library. Populated whenever the provider has data for the entity.
20635
+ * Format: uri.
20636
+ * Present whenever the upstream returns this record.
20637
+ */
20638
+ videoUrl?: string;
20639
+ [extra: string]: unknown;
20640
+ }
20641
+ /**
20642
+ * The `data` payload of TikTok Ad Transparency Search (tiktok.ad_transparency_search).
20643
+ */
20644
+ interface TiktokAdTransparencySearchData {
20645
+ /**
20646
+ * Commercial Content Library ad records returned for the search. Populated whenever the provider has data for the entity.
20647
+ */
20648
+ ads: TiktokAdTransparencySearchAd[];
20649
+ /**
20650
+ * Whether the Commercial Content Library reports more matching ads. Populated whenever the provider has data for the entity.
20651
+ */
20652
+ hasMore: boolean;
20653
+ /**
20654
+ * Search cursor to pass as cursor on a subsequent request, or null when there is no next page. Populated whenever the provider has data for the entity.
20655
+ */
20656
+ nextCursor: string | null;
20657
+ /**
20658
+ * Zero-based result offset reported for this page.
20659
+ */
20660
+ offset: number;
20661
+ /**
20662
+ * Region code applied to this transparency search. Populated whenever the provider has data for the entity.
20663
+ */
20664
+ region: string;
20665
+ /**
20666
+ * Total number of matching ads reported by the Commercial Content Library. Populated whenever the provider has data for the entity.
20667
+ */
20668
+ total: number;
20669
+ }
19599
20670
  /**
19600
20671
  * Input for TikTok Audience Demographics (tiktok.audience_demographics).
19601
20672
  */
@@ -20032,17 +21103,17 @@ interface TiktokSearchKeywordInput {
20032
21103
  */
20033
21104
  cursor?: string;
20034
21105
  /**
20035
- * Time frame filter (e.g. 0=any, 1=past 24h, 7=past week).
21106
+ * Time frame filter. Use a canonical JSON integer that is nonnegative; common values are 0 for any time, 1 for the past 24 hours, 7 for the past week, and 30 for the past month. Legacy numeric strings remain accepted.
20036
21107
  */
20037
- datePosted?: string;
21108
+ datePosted?: unknown;
20038
21109
  /**
20039
21110
  * The keyword to search TikTok for.
20040
21111
  */
20041
21112
  query: string;
20042
21113
  /**
20043
- * Sort order (e.g. 0=relevance, 1=most liked).
21114
+ * Sort order. Use the canonical JSON integer 0 for relevance or 1 for most liked; legacy numeric strings remain accepted.
20044
21115
  */
20045
- sortBy?: string;
21116
+ sortBy?: unknown;
20046
21117
  }
20047
21118
  interface TiktokSearchKeywordVideo {
20048
21119
  /**
@@ -20267,6 +21338,155 @@ interface TiktokSongVideosData {
20267
21338
  */
20268
21339
  videos: TiktokSongVideosVideo[];
20269
21340
  }
21341
+ /**
21342
+ * Input for TikTok Top Ads Search (tiktok.top_ads_search).
21343
+ */
21344
+ interface TiktokTopAdsSearchInput {
21345
+ /**
21346
+ * Language code for returned ads (default en).
21347
+ * One of: en, es, ar, vi, th, de, id, pt, fr, ms, nl, ja, it, ro, zh-Hant, ko.
21348
+ * Default: en.
21349
+ */
21350
+ adLanguage?: "en" | "es" | "ar" | "vi" | "th" | "de" | "id" | "pt" | "fr" | "ms" | "nl" | "ja" | "it" | "ro" | "zh-Hant" | "ko";
21351
+ /**
21352
+ * Maximum number of ads requested for this page, from 1 through 20 (default 20).
21353
+ * Range: minimum 1, maximum 20.
21354
+ * Default: 20.
21355
+ */
21356
+ limit?: number;
21357
+ /**
21358
+ * Campaign objective filter (default traffic).
21359
+ * One of: traffic, app_installs, conversions, video_views, reach, lead_generation, product_sales.
21360
+ * Default: traffic.
21361
+ */
21362
+ objective?: "traffic" | "app_installs" | "conversions" | "video_views" | "reach" | "lead_generation" | "product_sales";
21363
+ /**
21364
+ * Result ordering: Creative Center recommendations or like count (default for_you).
21365
+ * One of: for_you, likes.
21366
+ * Default: for_you.
21367
+ */
21368
+ orderBy?: "for_you" | "likes";
21369
+ /**
21370
+ * One-based provider page number (default 1).
21371
+ * Range: minimum 1.
21372
+ * Default: 1.
21373
+ */
21374
+ page?: number;
21375
+ /**
21376
+ * Ad performance percentile bucket, where top_1_20 is the highest-performing 20 percent (default top_1_20).
21377
+ * One of: top_1_20, top_21_40, top_41_60, top_61_80.
21378
+ * Default: top_1_20.
21379
+ */
21380
+ performanceRank?: "top_1_20" | "top_21_40" | "top_41_60" | "top_61_80";
21381
+ /**
21382
+ * Lookback period in days (default 180).
21383
+ * Default: 180.
21384
+ */
21385
+ period?: number;
21386
+ /**
21387
+ * Keyword to search in TikTok Creative Center top video ads.
21388
+ */
21389
+ query: string;
21390
+ /**
21391
+ * Country code used to select the Creative Center market (default US).
21392
+ * Default: US.
21393
+ */
21394
+ region?: string;
21395
+ }
21396
+ interface TiktokTopAdsSearchAd {
21397
+ /**
21398
+ * TikTok Creative Center ad material identifier. Populated whenever the provider has data for the entity.
21399
+ */
21400
+ adId: string;
21401
+ /**
21402
+ * Title or primary copy shown for the ad. Populated whenever the provider has data for the entity.
21403
+ * Present whenever the upstream returns this record.
21404
+ */
21405
+ adTitle?: string;
21406
+ /**
21407
+ * Advertiser brand name when supplied by TikTok Creative Center. Populated whenever the provider has data for the entity.
21408
+ * Present whenever the upstream returns this record.
21409
+ */
21410
+ brandName?: string;
21411
+ /**
21412
+ * TikTok Creative Center's relative cost ranking value for the ad. Populated whenever the provider has data for the entity.
21413
+ * Present whenever the upstream returns this record.
21414
+ */
21415
+ cost?: number;
21416
+ /**
21417
+ * TikTok Creative Center's click-through rate value for the ad. Populated whenever the provider has data for the entity.
21418
+ * Present whenever the upstream returns this record.
21419
+ */
21420
+ ctr?: number;
21421
+ /**
21422
+ * Video duration in seconds. Populated whenever the provider has data for the entity.
21423
+ * Present whenever the upstream returns this record.
21424
+ */
21425
+ durationSeconds?: number;
21426
+ /**
21427
+ * Video height in pixels. Populated whenever the provider has data for the entity.
21428
+ * Present whenever the upstream returns this record.
21429
+ */
21430
+ height?: number;
21431
+ /**
21432
+ * Signed video cover image URL exactly as returned by TikTok Creative Center. Populated whenever the provider has data for the entity.
21433
+ * Format: uri.
21434
+ * Present whenever the upstream returns this record.
21435
+ */
21436
+ image?: string;
21437
+ /**
21438
+ * TikTok Creative Center industry classification key. Populated whenever the provider has data for the entity.
21439
+ * Present whenever the upstream returns this record.
21440
+ */
21441
+ industry?: string;
21442
+ /**
21443
+ * Number of likes reported for the ad. Populated whenever the provider has data for the entity.
21444
+ * Present whenever the upstream returns this record.
21445
+ */
21446
+ likes?: number;
21447
+ /**
21448
+ * TikTok Creative Center campaign objective key. Populated whenever the provider has data for the entity.
21449
+ * Present whenever the upstream returns this record.
21450
+ */
21451
+ objective?: string;
21452
+ /**
21453
+ * Signed 720p video asset URL exactly as returned by TikTok Creative Center. Populated whenever the provider has data for the entity.
21454
+ * Format: uri.
21455
+ * Present whenever the upstream returns this record.
21456
+ */
21457
+ videoUrl?: string;
21458
+ /**
21459
+ * Video width in pixels. Populated whenever the provider has data for the entity.
21460
+ * Present whenever the upstream returns this record.
21461
+ */
21462
+ width?: number;
21463
+ [extra: string]: unknown;
21464
+ }
21465
+ /**
21466
+ * The `data` payload of TikTok Top Ads Search (tiktok.top_ads_search).
21467
+ */
21468
+ interface TiktokTopAdsSearchData {
21469
+ /**
21470
+ * TikTok Creative Center top-ad records returned for this page. Populated whenever the provider has data for the entity.
21471
+ */
21472
+ ads: TiktokTopAdsSearchAd[];
21473
+ /**
21474
+ * Whether TikTok Creative Center reports another page of matching ads. Populated whenever the provider has data for the entity.
21475
+ */
21476
+ hasMore: boolean;
21477
+ /**
21478
+ * One-based page number reported by TikTok Creative Center. Populated whenever the provider has data for the entity.
21479
+ */
21480
+ page: number;
21481
+ /**
21482
+ * Page size reported by TikTok Creative Center. Populated whenever the provider has data for the entity.
21483
+ */
21484
+ pageSize: number;
21485
+ /**
21486
+ * Total number of matching top ads reported by TikTok Creative Center. Populated whenever the provider has data for the entity.
21487
+ */
21488
+ total: number;
21489
+ }
20270
21490
  /**
20271
21491
  * Input for TikTok Trending Feed (tiktok.trending_feed).
20272
21492
  */
@@ -20426,7 +21646,7 @@ declare class TiktokNamespace {
20426
21646
  *
20427
21647
  * Fetch full details for a single TikTok ad (brand, title, spend, CTR, objectives, landing page, and video info).
20428
21648
  *
20429
- * Price: $0.002 per request.
21649
+ * Price: $0.0012 per request.
20430
21650
  *
20431
21651
  * @example
20432
21652
  * const res = await client.tiktok.adLibraryAd({ adId: "7648493525660270600" });
@@ -20440,7 +21660,7 @@ declare class TiktokNamespace {
20440
21660
  * Price: $0.002 per request.
20441
21661
  *
20442
21662
  * @example
20443
- * const res = await client.tiktok.adLibrarySearch({ query: "spotify", objective: "conversions" });
21663
+ * const res = await client.tiktok.adLibrarySearch({ query: "spotify", limit: 20, objective: "conversions", period: 30 });
20444
21664
  */
20445
21665
  adLibrarySearch(input: TiktokAdLibrarySearchInput, options?: RequestOptions): Promise<RunResult<TiktokAdLibrarySearchData>>;
20446
21666
  /**
@@ -20450,6 +21670,24 @@ declare class TiktokNamespace {
20450
21670
  * result pages instead (each carries its own costUsd).
20451
21671
  */
20452
21672
  iterAdLibrarySearch(input: TiktokAdLibrarySearchInput, options?: RequestOptions): Paginator<TiktokAdLibrarySearchAd, RunResult<TiktokAdLibrarySearchData>>;
21673
+ /**
21674
+ * TikTok Ad Transparency Search
21675
+ *
21676
+ * Search TikTok's EU Commercial Content Library by keyword or advertiser ID.
21677
+ *
21678
+ * Price: $0.0009 per request.
21679
+ *
21680
+ * @example
21681
+ * const res = await client.tiktok.adTransparencySearch({ days: 30, limit: 20, query: "nike", region: "DE" });
21682
+ */
21683
+ adTransparencySearch(input: TiktokAdTransparencySearchInput, options?: RequestOptions): Promise<RunResult<TiktokAdTransparencySearchData>>;
21684
+ /**
21685
+ * Iterate every result of TikTok Ad Transparency Search across pages.
21686
+ *
21687
+ * Yields items directly; call `.pages()` on the return value to walk whole
21688
+ * result pages instead (each carries its own costUsd).
21689
+ */
21690
+ iterAdTransparencySearch(input: TiktokAdTransparencySearchInput, options?: RequestOptions): Paginator<TiktokAdTransparencySearchAd, RunResult<TiktokAdTransparencySearchData>>;
20453
21691
  /**
20454
21692
  * TikTok Audience Demographics
20455
21693
  *
@@ -20589,7 +21827,7 @@ declare class TiktokNamespace {
20589
21827
  * Price: $0.0012 per request.
20590
21828
  *
20591
21829
  * @example
20592
- * const res = await client.tiktok.searchKeyword({ query: "cooking" });
21830
+ * const res = await client.tiktok.searchKeyword({ query: "cooking", datePosted: 0, sortBy: 0 });
20593
21831
  */
20594
21832
  searchKeyword(input: TiktokSearchKeywordInput, options?: RequestOptions): Promise<RunResult<TiktokSearchKeywordData>>;
20595
21833
  /**
@@ -20657,6 +21895,17 @@ declare class TiktokNamespace {
20657
21895
  * result pages instead (each carries its own costUsd).
20658
21896
  */
20659
21897
  iterSongVideos(input: TiktokSongVideosInput, options?: RequestOptions): Paginator<TiktokSongVideosVideo, RunResult<TiktokSongVideosData>>;
21898
+ /**
21899
+ * TikTok Top Ads Search
21900
+ *
21901
+ * Search TikTok Creative Center top video ads by keyword with explicit performance, objective, region, language, and time-window filters.
21902
+ *
21903
+ * Price: $0.0012 per request.
21904
+ *
21905
+ * @example
21906
+ * const res = await client.tiktok.topAdsSearch({ query: "glasses" });
21907
+ */
21908
+ topAdsSearch(input: TiktokTopAdsSearchInput, options?: RequestOptions): Promise<RunResult<TiktokTopAdsSearchData>>;
20660
21909
  /**
20661
21910
  * TikTok Trending Feed
20662
21911
  *
@@ -25917,6 +27166,16 @@ interface SkuMap {
25917
27166
  data: BookingSearchData;
25918
27167
  result: RunResult<BookingSearchData>;
25919
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
+ };
25920
27179
  "coinmarketcap.listings": {
25921
27180
  input: CoinmarketcapListingsInput;
25922
27181
  data: CoinmarketcapListingsData;
@@ -26147,6 +27406,16 @@ interface SkuMap {
26147
27406
  data: FiverrSearchData;
26148
27407
  result: RunResult<FiverrSearchData>;
26149
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
+ };
26150
27419
  "github.repository": {
26151
27420
  input: GithubRepositoryInput;
26152
27421
  data: GithubRepositoryData;
@@ -26202,6 +27471,16 @@ interface SkuMap {
26202
27471
  data: GlassdoorJobsData;
26203
27472
  result: RunResult<GlassdoorJobsData>;
26204
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
+ };
26205
27484
  "google.autocomplete": {
26206
27485
  input: GoogleAutocompleteInput;
26207
27486
  data: GoogleAutocompleteData;
@@ -26592,6 +27871,16 @@ interface SkuMap {
26592
27871
  data: PeopleSearchCrustdataV3Data;
26593
27872
  result: RunResult<PeopleSearchCrustdataV3Data>;
26594
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
+ };
26595
27884
  "person.skip_trace": {
26596
27885
  input: PersonSkipTraceInput;
26597
27886
  data: PersonSkipTraceData;
@@ -26872,6 +28161,11 @@ interface SkuMap {
26872
28161
  data: TiktokAdLibrarySearchData;
26873
28162
  result: RunResult<TiktokAdLibrarySearchData>;
26874
28163
  };
28164
+ "tiktok.ad_transparency_search": {
28165
+ input: TiktokAdTransparencySearchInput;
28166
+ data: TiktokAdTransparencySearchData;
28167
+ result: RunResult<TiktokAdTransparencySearchData>;
28168
+ };
26875
28169
  "tiktok.audience_demographics": {
26876
28170
  input: TiktokAudienceDemographicsInput;
26877
28171
  data: TiktokAudienceDemographicsData;
@@ -26947,6 +28241,11 @@ interface SkuMap {
26947
28241
  data: TiktokSongVideosData;
26948
28242
  result: RunResult<TiktokSongVideosData>;
26949
28243
  };
28244
+ "tiktok.top_ads_search": {
28245
+ input: TiktokTopAdsSearchInput;
28246
+ data: TiktokTopAdsSearchData;
28247
+ result: RunResult<TiktokTopAdsSearchData>;
28248
+ };
26950
28249
  "tiktok.trending_feed": {
26951
28250
  input: TiktokTrendingFeedInput;
26952
28251
  data: TiktokTrendingFeedData;
@@ -27325,6 +28624,10 @@ declare class AnyAPI extends AnyAPI$1 {
27325
28624
  * Typed methods for the booking platform.
27326
28625
  */
27327
28626
  get booking(): BookingNamespace;
28627
+ /**
28628
+ * Typed methods for the chatgpt platform.
28629
+ */
28630
+ get chatgpt(): ChatgptNamespace;
27328
28631
  /**
27329
28632
  * Typed methods for the coinmarketcap platform.
27330
28633
  */
@@ -27373,6 +28676,10 @@ declare class AnyAPI extends AnyAPI$1 {
27373
28676
  * Typed methods for the fiverr platform.
27374
28677
  */
27375
28678
  get fiverr(): FiverrNamespace;
28679
+ /**
28680
+ * Typed methods for the gemini platform.
28681
+ */
28682
+ get gemini(): GeminiNamespace;
27376
28683
  /**
27377
28684
  * Typed methods for the github platform.
27378
28685
  */
@@ -27429,6 +28736,10 @@ declare class AnyAPI extends AnyAPI$1 {
27429
28736
  * Typed methods for the people_search platform.
27430
28737
  */
27431
28738
  get peopleSearch(): PeopleSearchNamespace;
28739
+ /**
28740
+ * Typed methods for the perplexity platform.
28741
+ */
28742
+ get perplexity(): PerplexityNamespace;
27432
28743
  /**
27433
28744
  * Typed methods for the person platform.
27434
28745
  */
@@ -27559,4 +28870,4 @@ declare class AnyAPI extends AnyAPI$1 {
27559
28870
  get zillow(): ZillowNamespace;
27560
28871
  }
27561
28872
 
27562
- 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 TiktokAudienceDemographicsAudienceLocation, type TiktokAudienceDemographicsData, type TiktokAudienceDemographicsInput, type TiktokCommentRepliesComment, type TiktokCommentRepliesData, type TiktokCommentRepliesInput, type TiktokFollowersData, type TiktokFollowersFollower, type TiktokFollowersInput, type TiktokFollowingData, type TiktokFollowingFollowing, type TiktokFollowingInput, type TiktokHashtagVideosData, type TiktokHashtagVideosInput, type TiktokHashtagVideosItem, type TiktokLiveData, type TiktokLiveInput, TiktokNamespace, type TiktokProfileData, type TiktokProfileInput, type TiktokProfileRegionData, type TiktokProfileRegionInput, type TiktokProfileVideosData, type TiktokProfileVideosInput, type TiktokProfileVideosVideo, type TiktokSearchHashtagData, type TiktokSearchHashtagInput, type TiktokSearchHashtagVideo, type TiktokSearchKeywordData, type TiktokSearchKeywordInput, type TiktokSearchKeywordVideo, type TiktokSearchTopData, type TiktokSearchTopInput, type TiktokSearchTopItem, type TiktokSearchUsersData, type TiktokSearchUsersInput, type TiktokSearchUsersUser, TiktokShopNamespace, type TiktokShopProductData, type TiktokShopProductInput, type TiktokShopProductReviewsData, type TiktokShopProductReviewsInput, type TiktokShopProductReviewsReview, type TiktokShopSearchData, type TiktokShopSearchInput, type TiktokShopSearchItem, type TiktokShopShopProductsData, type TiktokShopShopProductsInput, type TiktokShopShopProductsProduct, type TiktokShopUserShowcaseData, type TiktokShopUserShowcaseInput, type TiktokShopUserShowcaseProduct, type TiktokSongData, type TiktokSongInput, type TiktokSongVideosData, type TiktokSongVideosInput, type TiktokSongVideosVideo, type TiktokTrendingFeedData, type TiktokTrendingFeedInput, type TiktokTrendingFeedVideo, type TiktokVideoCommentsComment, type TiktokVideoCommentsData, type TiktokVideoCommentsInput, type TiktokVideoData, type TiktokVideoInput, type TiktokVideoTranscriptData, type TiktokVideoTranscriptInput, TimeoutError, TripadvisorNamespace, type TripadvisorReviewsData, type TripadvisorReviewsInput, type TripadvisorReviewsItem, type TripadvisorSearchData, type TripadvisorSearchInput, type TripadvisorSearchItem, TrustpilotNamespace, type TrustpilotReviewsData, type TrustpilotReviewsInput, type TrustpilotReviewsItem, TruthsocialNamespace, type TruthsocialPostData, type TruthsocialPostInput, type TruthsocialProfileData, type TruthsocialProfileInput, type TruthsocialUserPostsData, type TruthsocialUserPostsInput, type TruthsocialUserPostsPost, type TwitterArticleContentBlock, type TwitterArticleData, type TwitterArticleEntitie, type TwitterArticleInlineStyle, type TwitterArticleInput, type TwitterCommunityData, type TwitterCommunityInput, type TwitterCommunityTweetsData, type TwitterCommunityTweetsInput, type TwitterCommunityTweetsTweet, type TwitterFollowersData, type TwitterFollowersInput, type TwitterFollowersItem, type TwitterFollowingData, type TwitterFollowingInput, type TwitterFollowingItem, TwitterNamespace, type TwitterProfileData, type TwitterProfileInput, type TwitterRepliesData, type TwitterRepliesInput, type TwitterRepliesItem, type TwitterSearchData, type TwitterSearchInput, type TwitterSearchItem, type 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 };