@getanyapi/sdk 0.16.0 → 0.17.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +397 -19
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1057 -66
- package/dist/index.d.ts +1057 -66
- package/dist/index.js +389 -19
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -36,6 +36,21 @@ interface RunResult<T> {
|
|
|
36
36
|
/** Optional server nudge when a large result was returned untrimmed. */
|
|
37
37
|
hint?: string;
|
|
38
38
|
}
|
|
39
|
+
type RequestStatus = "queued" | "running" | "succeeded" | "failed" | "expired";
|
|
40
|
+
interface RequestSnapshot<T = unknown> {
|
|
41
|
+
requestId: string;
|
|
42
|
+
sku: string;
|
|
43
|
+
status: RequestStatus;
|
|
44
|
+
createdAt: string;
|
|
45
|
+
completedAt?: string;
|
|
46
|
+
expiresAt?: string;
|
|
47
|
+
retryAfterSeconds?: number;
|
|
48
|
+
result?: RunResult<T>;
|
|
49
|
+
error?: {
|
|
50
|
+
code: string;
|
|
51
|
+
};
|
|
52
|
+
resultExpired?: boolean;
|
|
53
|
+
}
|
|
39
54
|
/**
|
|
40
55
|
* Discriminated union on `found`. When found is false, data is null.
|
|
41
56
|
*/
|
|
@@ -119,6 +134,7 @@ interface RequestOptions {
|
|
|
119
134
|
/** Override the generated Idempotency-Key for this billed POST. */
|
|
120
135
|
idempotencyKey?: string;
|
|
121
136
|
}
|
|
137
|
+
type StartOptions = RequestOptions;
|
|
122
138
|
/**
|
|
123
139
|
* Client construction options. See SPEC 2.1.
|
|
124
140
|
*/
|
|
@@ -292,6 +308,17 @@ declare class AnyAPI$1 implements ClientCore {
|
|
|
292
308
|
* base signature is the fallback that returns RunResult<unknown> for an unknown slug.
|
|
293
309
|
*/
|
|
294
310
|
run<T = unknown>(slug: string, input: unknown, options?: RequestOptions): Promise<RunResult<T>>;
|
|
311
|
+
/** Start durable work. A same-key completed replay returns its terminal result immediately. */
|
|
312
|
+
start<T = unknown>(slug: string, input: unknown, options?: StartOptions): Promise<RequestSnapshot<T> | RunResult<T>>;
|
|
313
|
+
readonly requests: {
|
|
314
|
+
get: <T = unknown>(requestId: string) => Promise<RequestSnapshot<T>>;
|
|
315
|
+
wait: <T = unknown>(requestId: string, options?: {
|
|
316
|
+
timeoutMs?: number;
|
|
317
|
+
signal?: AbortSignal;
|
|
318
|
+
}) => Promise<RunResult<T>>;
|
|
319
|
+
};
|
|
320
|
+
private getRequest;
|
|
321
|
+
private waitRequest;
|
|
295
322
|
/** Current wallet balance in USD. GET /v1/balance. See SPEC 2.7. */
|
|
296
323
|
balance(): Promise<{
|
|
297
324
|
usd: number;
|
|
@@ -317,6 +344,8 @@ declare class AnyAPI$1 implements ClientCore {
|
|
|
317
344
|
maxInProgressWaitMs?: number;
|
|
318
345
|
signal?: AbortSignal;
|
|
319
346
|
idempotencyKey?: string;
|
|
347
|
+
headers?: Record<string, string>;
|
|
348
|
+
accept202?: boolean;
|
|
320
349
|
}): Promise<T>;
|
|
321
350
|
/** Internal accessor for GET helpers in account.ts (same base URL / machinery). */
|
|
322
351
|
protected get gatewayBaseUrl(): string;
|
|
@@ -401,6 +430,11 @@ declare class ConnectionError extends AnyAPIError {
|
|
|
401
430
|
/** status 0, request timed out. */
|
|
402
431
|
declare class TimeoutError extends AnyAPIError {
|
|
403
432
|
}
|
|
433
|
+
/** The SDK deadline elapsed while durable work was still resumable. */
|
|
434
|
+
declare class RequestPendingError extends TimeoutError {
|
|
435
|
+
readonly durableRequestId: string;
|
|
436
|
+
constructor(requestId: string);
|
|
437
|
+
}
|
|
404
438
|
|
|
405
439
|
/**
|
|
406
440
|
* Input for Ahrefs Backlinks (ahrefs.backlinks).
|
|
@@ -977,6 +1011,7 @@ interface AmazonBestsellersInput {
|
|
|
977
1011
|
/**
|
|
978
1012
|
* Maximum number of results to return (1-20, default 20). You are billed per result returned, so a lower limit costs less.
|
|
979
1013
|
* Range: minimum 1, maximum 20.
|
|
1014
|
+
* Default: 20.
|
|
980
1015
|
*/
|
|
981
1016
|
limit?: number;
|
|
982
1017
|
/**
|
|
@@ -1142,6 +1177,7 @@ interface AmazonReviewsInput {
|
|
|
1142
1177
|
/**
|
|
1143
1178
|
* Maximum number of results to return (1-50, default 50). You are billed per result returned, so a lower limit costs less.
|
|
1144
1179
|
* Range: minimum 1, maximum 50.
|
|
1180
|
+
* Default: 50.
|
|
1145
1181
|
*/
|
|
1146
1182
|
limit?: number;
|
|
1147
1183
|
/**
|
|
@@ -1221,6 +1257,7 @@ interface AmazonSearchInput {
|
|
|
1221
1257
|
/**
|
|
1222
1258
|
* Maximum number of results to return (1-20, default 20). You are billed per result returned, so a lower limit costs less.
|
|
1223
1259
|
* Range: minimum 1, maximum 20.
|
|
1260
|
+
* Default: 20.
|
|
1224
1261
|
*/
|
|
1225
1262
|
limit?: number;
|
|
1226
1263
|
/**
|
|
@@ -1307,7 +1344,7 @@ declare class AmazonNamespace {
|
|
|
1307
1344
|
*
|
|
1308
1345
|
* List the top-ranked products of any Amazon Best Sellers category (rank, title, price, and rating) in one normalized request.
|
|
1309
1346
|
*
|
|
1310
|
-
* Price: $0 per request
|
|
1347
|
+
* Price: $0.0009 per request.
|
|
1311
1348
|
*
|
|
1312
1349
|
* @example
|
|
1313
1350
|
* const res = await client.amazon.bestsellers({ url: "https://www.amazon.com/gp/bestsellers/electronics", limit: 3 });
|
|
@@ -1329,7 +1366,7 @@ declare class AmazonNamespace {
|
|
|
1329
1366
|
*
|
|
1330
1367
|
* Pull up to 50 customer reviews for any Amazon product by ASIN or URL: rating, title, text, date, and verified-purchase badge.
|
|
1331
1368
|
*
|
|
1332
|
-
* Price: $0.
|
|
1369
|
+
* Price: $0.0018 per request.
|
|
1333
1370
|
*
|
|
1334
1371
|
* @example
|
|
1335
1372
|
* const res = await client.amazon.reviews({ product: "B07PXGQC1Q", limit: 3 });
|
|
@@ -1340,7 +1377,7 @@ declare class AmazonNamespace {
|
|
|
1340
1377
|
*
|
|
1341
1378
|
* Search Amazon from any search or category URL and get up to 20 matching products (title, price, rating, and thumbnail) in one normalized response.
|
|
1342
1379
|
*
|
|
1343
|
-
* Price: $0 per request
|
|
1380
|
+
* Price: $0.0009 per request.
|
|
1344
1381
|
*
|
|
1345
1382
|
* @example
|
|
1346
1383
|
* const res = await client.amazon.search({ url: "https://www.amazon.com/s?k=laptop", limit: 3 });
|
|
@@ -2971,6 +3008,266 @@ declare class CoinmarketcapNamespace {
|
|
|
2971
3008
|
listings(input: CoinmarketcapListingsInput, options?: RequestOptions): Promise<RunResult<CoinmarketcapListingsData>>;
|
|
2972
3009
|
}
|
|
2973
3010
|
|
|
3011
|
+
/**
|
|
3012
|
+
* Input for Company Enrichment - Crustdata v3 (company_enrichment.crustdata_v3).
|
|
3013
|
+
*/
|
|
3014
|
+
interface CompanyEnrichmentCrustdataV3Input {
|
|
3015
|
+
companyDomain?: string;
|
|
3016
|
+
companyId?: unknown;
|
|
3017
|
+
/**
|
|
3018
|
+
* Format: uri.
|
|
3019
|
+
*/
|
|
3020
|
+
companyLinkedinUrl?: string;
|
|
3021
|
+
companyName?: string;
|
|
3022
|
+
exactMatch?: boolean;
|
|
3023
|
+
fields?: unknown;
|
|
3024
|
+
}
|
|
3025
|
+
/**
|
|
3026
|
+
* The `data` payload of Company Enrichment - Crustdata v3 (company_enrichment.crustdata_v3).
|
|
3027
|
+
*/
|
|
3028
|
+
interface CompanyEnrichmentCrustdataV3Data {
|
|
3029
|
+
description?: string;
|
|
3030
|
+
domain: string;
|
|
3031
|
+
employeeCount?: number;
|
|
3032
|
+
foundedYear?: number;
|
|
3033
|
+
industry?: string;
|
|
3034
|
+
/**
|
|
3035
|
+
* Format: uri.
|
|
3036
|
+
*/
|
|
3037
|
+
linkedinUrl?: string;
|
|
3038
|
+
location?: string;
|
|
3039
|
+
name: string;
|
|
3040
|
+
[extra: string]: unknown;
|
|
3041
|
+
}
|
|
3042
|
+
/**
|
|
3043
|
+
* Typed methods for the company_enrichment platform. Attached to the AnyAPI client as
|
|
3044
|
+
* `client.companyEnrichment`.
|
|
3045
|
+
*/
|
|
3046
|
+
declare class CompanyEnrichmentNamespace {
|
|
3047
|
+
private readonly _core;
|
|
3048
|
+
constructor(_core: ClientCore);
|
|
3049
|
+
/**
|
|
3050
|
+
* Company Enrichment - Crustdata v3
|
|
3051
|
+
*
|
|
3052
|
+
* Enrich a company by domain, name, LinkedIn URL, or Crustdata identifier.
|
|
3053
|
+
*
|
|
3054
|
+
* Price: $0.0972 per request.
|
|
3055
|
+
*/
|
|
3056
|
+
crustdataV3(input: CompanyEnrichmentCrustdataV3Input, options?: RequestOptions): Promise<RunResult<CompanyEnrichmentCrustdataV3Data>>;
|
|
3057
|
+
}
|
|
3058
|
+
|
|
3059
|
+
/**
|
|
3060
|
+
* Input for Company Search - AI Ark (company_search.ai_ark).
|
|
3061
|
+
*/
|
|
3062
|
+
interface CompanySearchAiArkInput {
|
|
3063
|
+
/**
|
|
3064
|
+
* AI Ark account filter expression. Nested generic any/all filter objects are accepted as documented by the source and are not further constrained.
|
|
3065
|
+
*/
|
|
3066
|
+
account?: {};
|
|
3067
|
+
/**
|
|
3068
|
+
* AI Ark saved-list filter expression.
|
|
3069
|
+
*/
|
|
3070
|
+
lists?: {};
|
|
3071
|
+
/**
|
|
3072
|
+
* Domains whose company characteristics should guide the search.
|
|
3073
|
+
*/
|
|
3074
|
+
lookalikeDomains?: string[];
|
|
3075
|
+
/**
|
|
3076
|
+
* Company-name search text.
|
|
3077
|
+
*/
|
|
3078
|
+
name?: string;
|
|
3079
|
+
/**
|
|
3080
|
+
* Zero-based result page.
|
|
3081
|
+
* Range: minimum 0.
|
|
3082
|
+
* Default: 0.
|
|
3083
|
+
*/
|
|
3084
|
+
page?: number;
|
|
3085
|
+
/**
|
|
3086
|
+
* Maximum companies to return on this page.
|
|
3087
|
+
* Range: minimum 1, maximum 100.
|
|
3088
|
+
* Default: 10.
|
|
3089
|
+
*/
|
|
3090
|
+
size?: number;
|
|
3091
|
+
}
|
|
3092
|
+
interface CompanySearchAiArkCompanie {
|
|
3093
|
+
/**
|
|
3094
|
+
* Headquarters city.
|
|
3095
|
+
*/
|
|
3096
|
+
city?: string;
|
|
3097
|
+
/**
|
|
3098
|
+
* Headquarters country.
|
|
3099
|
+
*/
|
|
3100
|
+
country?: string;
|
|
3101
|
+
/**
|
|
3102
|
+
* Company description when available.
|
|
3103
|
+
*/
|
|
3104
|
+
description?: string;
|
|
3105
|
+
/**
|
|
3106
|
+
* Company website domain.
|
|
3107
|
+
*/
|
|
3108
|
+
domain: string;
|
|
3109
|
+
/**
|
|
3110
|
+
* Public company contact email.
|
|
3111
|
+
* Format: email.
|
|
3112
|
+
*/
|
|
3113
|
+
email?: string;
|
|
3114
|
+
/**
|
|
3115
|
+
* Estimated total employees.
|
|
3116
|
+
* Range: minimum 0.
|
|
3117
|
+
*/
|
|
3118
|
+
employeeCount?: number;
|
|
3119
|
+
/**
|
|
3120
|
+
* Year the company was founded.
|
|
3121
|
+
*/
|
|
3122
|
+
foundedYear?: number;
|
|
3123
|
+
/**
|
|
3124
|
+
* Additional company industries.
|
|
3125
|
+
*/
|
|
3126
|
+
industries?: string[];
|
|
3127
|
+
/**
|
|
3128
|
+
* Primary company industry.
|
|
3129
|
+
*/
|
|
3130
|
+
industry?: string;
|
|
3131
|
+
/**
|
|
3132
|
+
* Registered company name when available.
|
|
3133
|
+
*/
|
|
3134
|
+
legalName?: string;
|
|
3135
|
+
/**
|
|
3136
|
+
* Canonical company LinkedIn URL.
|
|
3137
|
+
* Format: uri.
|
|
3138
|
+
*/
|
|
3139
|
+
linkedinUrl?: string;
|
|
3140
|
+
/**
|
|
3141
|
+
* Company name.
|
|
3142
|
+
*/
|
|
3143
|
+
name: string;
|
|
3144
|
+
/**
|
|
3145
|
+
* Sanitized public company phone number.
|
|
3146
|
+
*/
|
|
3147
|
+
phone?: string;
|
|
3148
|
+
/**
|
|
3149
|
+
* Headquarters state or region.
|
|
3150
|
+
*/
|
|
3151
|
+
state?: string;
|
|
3152
|
+
/**
|
|
3153
|
+
* Company organization type.
|
|
3154
|
+
*/
|
|
3155
|
+
type?: string;
|
|
3156
|
+
/**
|
|
3157
|
+
* Canonical company website URL.
|
|
3158
|
+
* Format: uri.
|
|
3159
|
+
*/
|
|
3160
|
+
websiteUrl?: string;
|
|
3161
|
+
[extra: string]: unknown;
|
|
3162
|
+
}
|
|
3163
|
+
/**
|
|
3164
|
+
* The `data` payload of Company Search - AI Ark (company_search.ai_ark).
|
|
3165
|
+
*/
|
|
3166
|
+
interface CompanySearchAiArkData {
|
|
3167
|
+
/**
|
|
3168
|
+
* Companies returned on this page.
|
|
3169
|
+
*/
|
|
3170
|
+
companies: CompanySearchAiArkCompanie[];
|
|
3171
|
+
/**
|
|
3172
|
+
* Zero-based page number returned by the source.
|
|
3173
|
+
* Range: minimum 0.
|
|
3174
|
+
*/
|
|
3175
|
+
page: number;
|
|
3176
|
+
/**
|
|
3177
|
+
* Configured page size.
|
|
3178
|
+
* Range: minimum 0.
|
|
3179
|
+
*/
|
|
3180
|
+
size: number;
|
|
3181
|
+
/**
|
|
3182
|
+
* Total matching companies.
|
|
3183
|
+
* Range: minimum 0.
|
|
3184
|
+
*/
|
|
3185
|
+
total: number;
|
|
3186
|
+
/**
|
|
3187
|
+
* Total result pages.
|
|
3188
|
+
* Range: minimum 0.
|
|
3189
|
+
*/
|
|
3190
|
+
totalPages: number;
|
|
3191
|
+
}
|
|
3192
|
+
interface CompanySearchCrustdataV3Sort {
|
|
3193
|
+
[extra: string]: unknown;
|
|
3194
|
+
}
|
|
3195
|
+
/**
|
|
3196
|
+
* Input for Company Search - Crustdata v3 (company_search.crustdata_v3).
|
|
3197
|
+
*/
|
|
3198
|
+
interface CompanySearchCrustdataV3Input {
|
|
3199
|
+
cursor?: string;
|
|
3200
|
+
fields?: unknown;
|
|
3201
|
+
/**
|
|
3202
|
+
* Crustdata company-database filter expression.
|
|
3203
|
+
*/
|
|
3204
|
+
filters: unknown;
|
|
3205
|
+
/**
|
|
3206
|
+
* Range: minimum 1, maximum 1000.
|
|
3207
|
+
* Default: 10.
|
|
3208
|
+
*/
|
|
3209
|
+
limit?: number;
|
|
3210
|
+
sorts?: CompanySearchCrustdataV3Sort[];
|
|
3211
|
+
}
|
|
3212
|
+
interface CompanySearchCrustdataV3Companie {
|
|
3213
|
+
domain?: string;
|
|
3214
|
+
employeeCount?: number;
|
|
3215
|
+
headquarters?: string;
|
|
3216
|
+
industry?: string;
|
|
3217
|
+
/**
|
|
3218
|
+
* Format: uri.
|
|
3219
|
+
*/
|
|
3220
|
+
linkedinUrl?: string;
|
|
3221
|
+
name: string;
|
|
3222
|
+
[extra: string]: unknown;
|
|
3223
|
+
}
|
|
3224
|
+
/**
|
|
3225
|
+
* The `data` payload of Company Search - Crustdata v3 (company_search.crustdata_v3).
|
|
3226
|
+
*/
|
|
3227
|
+
interface CompanySearchCrustdataV3Data {
|
|
3228
|
+
companies: CompanySearchCrustdataV3Companie[];
|
|
3229
|
+
hasMore?: boolean;
|
|
3230
|
+
nextCursor?: string | null;
|
|
3231
|
+
/**
|
|
3232
|
+
* Range: minimum 0.
|
|
3233
|
+
*/
|
|
3234
|
+
totalCount?: number;
|
|
3235
|
+
}
|
|
3236
|
+
/**
|
|
3237
|
+
* Typed methods for the company_search platform. Attached to the AnyAPI client as
|
|
3238
|
+
* `client.companySearch`.
|
|
3239
|
+
*/
|
|
3240
|
+
declare class CompanySearchNamespace {
|
|
3241
|
+
private readonly _core;
|
|
3242
|
+
constructor(_core: ClientCore);
|
|
3243
|
+
/**
|
|
3244
|
+
* Company Search - AI Ark
|
|
3245
|
+
*
|
|
3246
|
+
* Search companies by name, lookalike domains, account filters, and saved-list filters.
|
|
3247
|
+
*
|
|
3248
|
+
* Price: $0 per request plus $0.0024 per result (maximum $0.24).
|
|
3249
|
+
*
|
|
3250
|
+
* @example
|
|
3251
|
+
* const res = await client.companySearch.aiArk({ name: "OpenAI", page: 0, size: 1 });
|
|
3252
|
+
*/
|
|
3253
|
+
aiArk(input: CompanySearchAiArkInput, options?: RequestOptions): Promise<RunResult<CompanySearchAiArkData>>;
|
|
3254
|
+
/**
|
|
3255
|
+
* Company Search - Crustdata v3
|
|
3256
|
+
*
|
|
3257
|
+
* Search companies by structured filters with cursor pagination.
|
|
3258
|
+
*
|
|
3259
|
+
* Price: $0 per request plus $0.048 per result (maximum $48).
|
|
3260
|
+
*/
|
|
3261
|
+
crustdataV3(input: CompanySearchCrustdataV3Input, options?: RequestOptions): Promise<RunResult<CompanySearchCrustdataV3Data>>;
|
|
3262
|
+
/**
|
|
3263
|
+
* Iterate every result of Company Search - Crustdata v3 across pages.
|
|
3264
|
+
*
|
|
3265
|
+
* Yields items directly; call `.pages()` on the return value to walk whole
|
|
3266
|
+
* result pages instead (each carries its own costUsd).
|
|
3267
|
+
*/
|
|
3268
|
+
iterCrustdataV3(input: CompanySearchCrustdataV3Input, options?: RequestOptions): Paginator<CompanySearchCrustdataV3Companie, RunResult<CompanySearchCrustdataV3Data>>;
|
|
3269
|
+
}
|
|
3270
|
+
|
|
2974
3271
|
/**
|
|
2975
3272
|
* Input for Congress Stock Trades (congress.trades).
|
|
2976
3273
|
*/
|
|
@@ -4136,6 +4433,263 @@ declare class EmailNamespace {
|
|
|
4136
4433
|
verify(input: EmailVerifyInput, options?: RequestOptions): Promise<RunResult<EmailVerifyData>>;
|
|
4137
4434
|
}
|
|
4138
4435
|
|
|
4436
|
+
/**
|
|
4437
|
+
* Input for Email Finding - DropLeads (email_finding.dropleads).
|
|
4438
|
+
*/
|
|
4439
|
+
interface EmailFindingDropleadsInput {
|
|
4440
|
+
/**
|
|
4441
|
+
* Company domain without a path.
|
|
4442
|
+
*/
|
|
4443
|
+
companyDomain?: string;
|
|
4444
|
+
/**
|
|
4445
|
+
* Company name when the domain is unavailable.
|
|
4446
|
+
*/
|
|
4447
|
+
companyName?: string;
|
|
4448
|
+
/**
|
|
4449
|
+
* Person's first name.
|
|
4450
|
+
*/
|
|
4451
|
+
firstName: string;
|
|
4452
|
+
/**
|
|
4453
|
+
* Person's last name.
|
|
4454
|
+
*/
|
|
4455
|
+
lastName: string;
|
|
4456
|
+
}
|
|
4457
|
+
/**
|
|
4458
|
+
* The `data` payload of Email Finding - DropLeads (email_finding.dropleads).
|
|
4459
|
+
*/
|
|
4460
|
+
interface EmailFindingDropleadsData {
|
|
4461
|
+
/**
|
|
4462
|
+
* Matched company domain.
|
|
4463
|
+
*/
|
|
4464
|
+
companyDomain?: string;
|
|
4465
|
+
/**
|
|
4466
|
+
* Matched company name.
|
|
4467
|
+
*/
|
|
4468
|
+
companyName?: string;
|
|
4469
|
+
/**
|
|
4470
|
+
* Company size when available.
|
|
4471
|
+
*/
|
|
4472
|
+
companySize?: unknown;
|
|
4473
|
+
/**
|
|
4474
|
+
* Matched email address.
|
|
4475
|
+
* Format: email.
|
|
4476
|
+
*/
|
|
4477
|
+
email: string;
|
|
4478
|
+
/**
|
|
4479
|
+
* Matched first name.
|
|
4480
|
+
*/
|
|
4481
|
+
firstName?: string;
|
|
4482
|
+
/**
|
|
4483
|
+
* Company industry when available.
|
|
4484
|
+
*/
|
|
4485
|
+
industry?: string;
|
|
4486
|
+
/**
|
|
4487
|
+
* Matched last name.
|
|
4488
|
+
*/
|
|
4489
|
+
lastName?: string;
|
|
4490
|
+
/**
|
|
4491
|
+
* Detected mail provider.
|
|
4492
|
+
*/
|
|
4493
|
+
mxProvider?: string;
|
|
4494
|
+
/**
|
|
4495
|
+
* Selected mail exchange record.
|
|
4496
|
+
*/
|
|
4497
|
+
mxRecord?: string;
|
|
4498
|
+
/**
|
|
4499
|
+
* Source validation status for the matched email.
|
|
4500
|
+
*/
|
|
4501
|
+
status: string;
|
|
4502
|
+
[extra: string]: unknown;
|
|
4503
|
+
}
|
|
4504
|
+
/**
|
|
4505
|
+
* Input for Email Finding - Icypeas (email_finding.icypeas).
|
|
4506
|
+
*/
|
|
4507
|
+
interface EmailFindingIcypeasInput {
|
|
4508
|
+
domainOrCompany: string;
|
|
4509
|
+
firstname?: string;
|
|
4510
|
+
lastname?: string;
|
|
4511
|
+
}
|
|
4512
|
+
/**
|
|
4513
|
+
* The `data` payload of Email Finding - Icypeas (email_finding.icypeas).
|
|
4514
|
+
*/
|
|
4515
|
+
interface EmailFindingIcypeasData {
|
|
4516
|
+
certainty?: string;
|
|
4517
|
+
/**
|
|
4518
|
+
* Format: email.
|
|
4519
|
+
*/
|
|
4520
|
+
email: string;
|
|
4521
|
+
firstname?: string;
|
|
4522
|
+
fullname?: string;
|
|
4523
|
+
lastname?: string;
|
|
4524
|
+
mxProvider?: string;
|
|
4525
|
+
mxRecords?: string[];
|
|
4526
|
+
[extra: string]: unknown;
|
|
4527
|
+
}
|
|
4528
|
+
/**
|
|
4529
|
+
* Typed methods for the email_finding platform. Attached to the AnyAPI client as
|
|
4530
|
+
* `client.emailFinding`.
|
|
4531
|
+
*/
|
|
4532
|
+
declare class EmailFindingNamespace {
|
|
4533
|
+
private readonly _core;
|
|
4534
|
+
constructor(_core: ClientCore);
|
|
4535
|
+
/**
|
|
4536
|
+
* Email Finding - DropLeads
|
|
4537
|
+
*
|
|
4538
|
+
* Find a professional email from a person's name and company domain or company name.
|
|
4539
|
+
*
|
|
4540
|
+
* Price: $0.0312 per request.
|
|
4541
|
+
*
|
|
4542
|
+
* @example
|
|
4543
|
+
* const res = await client.emailFinding.dropleads({ firstName: "Tim", lastName: "Zheng", companyDomain: "apollo.io" });
|
|
4544
|
+
*/
|
|
4545
|
+
dropleads(input: EmailFindingDropleadsInput, options?: RequestOptions): Promise<RunResult<EmailFindingDropleadsData>>;
|
|
4546
|
+
/**
|
|
4547
|
+
* Email Finding - Icypeas
|
|
4548
|
+
*
|
|
4549
|
+
* Find a professional email from a person and company through the durable Request lifecycle.
|
|
4550
|
+
*
|
|
4551
|
+
* Price: $0.0168 per request.
|
|
4552
|
+
*/
|
|
4553
|
+
icypeas(input: EmailFindingIcypeasInput, options?: RequestOptions): Promise<RunResult<EmailFindingIcypeasData>>;
|
|
4554
|
+
}
|
|
4555
|
+
|
|
4556
|
+
/**
|
|
4557
|
+
* Input for Email Verification - Allegrow (email_verification.allegrow).
|
|
4558
|
+
*/
|
|
4559
|
+
interface EmailVerificationAllegrowInput {
|
|
4560
|
+
/**
|
|
4561
|
+
* Email address to validate.
|
|
4562
|
+
* Format: email.
|
|
4563
|
+
*/
|
|
4564
|
+
email: string;
|
|
4565
|
+
}
|
|
4566
|
+
/**
|
|
4567
|
+
* The `data` payload of Email Verification - Allegrow (email_verification.allegrow).
|
|
4568
|
+
*/
|
|
4569
|
+
interface EmailVerificationAllegrowData {
|
|
4570
|
+
/**
|
|
4571
|
+
* Email domain.
|
|
4572
|
+
*/
|
|
4573
|
+
domain?: string;
|
|
4574
|
+
/**
|
|
4575
|
+
* Validated email address.
|
|
4576
|
+
* Format: email.
|
|
4577
|
+
*/
|
|
4578
|
+
email: string;
|
|
4579
|
+
/**
|
|
4580
|
+
* Whether the domain accepts mail for arbitrary recipients.
|
|
4581
|
+
*/
|
|
4582
|
+
isCatchAll?: boolean;
|
|
4583
|
+
/**
|
|
4584
|
+
* Whether the mailbox appears to be a role account.
|
|
4585
|
+
*/
|
|
4586
|
+
isRoleAccount?: boolean;
|
|
4587
|
+
/**
|
|
4588
|
+
* Detected mail provider.
|
|
4589
|
+
*/
|
|
4590
|
+
mxProvider?: string;
|
|
4591
|
+
/**
|
|
4592
|
+
* Deliverability verdict; negative verdicts are successful billable results.
|
|
4593
|
+
* One of: safe, do_not_mail_abuse, some_risk, block_bounce_risk, dead_email, spamtrap, more_time_required, missing_email.
|
|
4594
|
+
*/
|
|
4595
|
+
status: "safe" | "do_not_mail_abuse" | "some_risk" | "block_bounce_risk" | "dead_email" | "spamtrap" | "more_time_required" | "missing_email";
|
|
4596
|
+
/**
|
|
4597
|
+
* More specific validation result when available.
|
|
4598
|
+
*/
|
|
4599
|
+
subStatus?: string;
|
|
4600
|
+
/**
|
|
4601
|
+
* UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
|
|
4602
|
+
*/
|
|
4603
|
+
validatedUtc?: number;
|
|
4604
|
+
[extra: string]: unknown;
|
|
4605
|
+
}
|
|
4606
|
+
/**
|
|
4607
|
+
* Input for Email Verification - BounceBan (email_verification.bounceban).
|
|
4608
|
+
*/
|
|
4609
|
+
interface EmailVerificationBouncebanInput {
|
|
4610
|
+
disableCatchallVerify?: boolean;
|
|
4611
|
+
/**
|
|
4612
|
+
* Format: email.
|
|
4613
|
+
*/
|
|
4614
|
+
email: string;
|
|
4615
|
+
/**
|
|
4616
|
+
* One of: regular, deepverify.
|
|
4617
|
+
*/
|
|
4618
|
+
mode?: "regular" | "deepverify";
|
|
4619
|
+
}
|
|
4620
|
+
/**
|
|
4621
|
+
* The `data` payload of Email Verification - BounceBan (email_verification.bounceban).
|
|
4622
|
+
*/
|
|
4623
|
+
interface EmailVerificationBouncebanData {
|
|
4624
|
+
email: string;
|
|
4625
|
+
isCatchAll?: boolean;
|
|
4626
|
+
isDisposable?: boolean;
|
|
4627
|
+
isFree?: boolean;
|
|
4628
|
+
isRole?: boolean;
|
|
4629
|
+
mode?: string;
|
|
4630
|
+
mxRecords?: string[];
|
|
4631
|
+
reason?: string;
|
|
4632
|
+
/**
|
|
4633
|
+
* Deliverability verdict; negative verdicts are successful results.
|
|
4634
|
+
*/
|
|
4635
|
+
result: string;
|
|
4636
|
+
score?: number;
|
|
4637
|
+
smtpProvider?: string;
|
|
4638
|
+
verifiedAt?: string;
|
|
4639
|
+
[extra: string]: unknown;
|
|
4640
|
+
}
|
|
4641
|
+
/**
|
|
4642
|
+
* Input for Email Verification - Icypeas (email_verification.icypeas).
|
|
4643
|
+
*/
|
|
4644
|
+
interface EmailVerificationIcypeasInput {
|
|
4645
|
+
/**
|
|
4646
|
+
* Format: email.
|
|
4647
|
+
*/
|
|
4648
|
+
email: string;
|
|
4649
|
+
}
|
|
4650
|
+
/**
|
|
4651
|
+
* The `data` payload of Email Verification - Icypeas (email_verification.icypeas).
|
|
4652
|
+
*/
|
|
4653
|
+
interface EmailVerificationIcypeasData {
|
|
4654
|
+
status: string;
|
|
4655
|
+
[extra: string]: unknown;
|
|
4656
|
+
}
|
|
4657
|
+
/**
|
|
4658
|
+
* Typed methods for the email_verification platform. Attached to the AnyAPI client as
|
|
4659
|
+
* `client.emailVerification`.
|
|
4660
|
+
*/
|
|
4661
|
+
declare class EmailVerificationNamespace {
|
|
4662
|
+
private readonly _core;
|
|
4663
|
+
constructor(_core: ClientCore);
|
|
4664
|
+
/**
|
|
4665
|
+
* Email Verification - Allegrow
|
|
4666
|
+
*
|
|
4667
|
+
* Validate an email address and return its deliverability verdict and mailbox signals.
|
|
4668
|
+
*
|
|
4669
|
+
* Price: $0.0144 per request.
|
|
4670
|
+
*
|
|
4671
|
+
* @example
|
|
4672
|
+
* const res = await client.emailVerification.allegrow({ email: "tim@apollo.io" });
|
|
4673
|
+
*/
|
|
4674
|
+
allegrow(input: EmailVerificationAllegrowInput, options?: RequestOptions): Promise<RunResult<EmailVerificationAllegrowData>>;
|
|
4675
|
+
/**
|
|
4676
|
+
* Email Verification - BounceBan
|
|
4677
|
+
*
|
|
4678
|
+
* Verify an email address, including catch-all handling. Completion uses the durable Request lifecycle; a negative verdict is a successful result.
|
|
4679
|
+
*
|
|
4680
|
+
* Price: $0.0072 per request.
|
|
4681
|
+
*/
|
|
4682
|
+
bounceban(input: EmailVerificationBouncebanInput, options?: RequestOptions): Promise<RunResult<EmailVerificationBouncebanData>>;
|
|
4683
|
+
/**
|
|
4684
|
+
* Email Verification - Icypeas
|
|
4685
|
+
*
|
|
4686
|
+
* Verify an email address. A valid negative verdict is a successful, billable result.
|
|
4687
|
+
*
|
|
4688
|
+
* Price: $0.0024 per request.
|
|
4689
|
+
*/
|
|
4690
|
+
icypeas(input: EmailVerificationIcypeasInput, options?: RequestOptions): Promise<RunResult<EmailVerificationIcypeasData>>;
|
|
4691
|
+
}
|
|
4692
|
+
|
|
4139
4693
|
/**
|
|
4140
4694
|
* Input for Facebook Ad Details (facebook.ad_details).
|
|
4141
4695
|
*/
|
|
@@ -13501,79 +14055,169 @@ interface MapsSearchItem {
|
|
|
13501
14055
|
*/
|
|
13502
14056
|
state?: string;
|
|
13503
14057
|
/**
|
|
13504
|
-
* Street line of the address.
|
|
14058
|
+
* Street line of the address.
|
|
14059
|
+
*/
|
|
14060
|
+
street?: string;
|
|
14061
|
+
/**
|
|
14062
|
+
* Canonical Google Maps URL for the place. Populated whenever the provider has data for the entity.
|
|
14063
|
+
*/
|
|
14064
|
+
url: string;
|
|
14065
|
+
/**
|
|
14066
|
+
* The place's own website URL, when listed.
|
|
14067
|
+
*/
|
|
14068
|
+
website?: string;
|
|
14069
|
+
[extra: string]: unknown;
|
|
14070
|
+
}
|
|
14071
|
+
/**
|
|
14072
|
+
* The `data` payload of Google Maps Search (maps.search).
|
|
14073
|
+
*/
|
|
14074
|
+
interface MapsSearchData {
|
|
14075
|
+
/**
|
|
14076
|
+
* Matching Google Maps place records. Populated whenever the provider has data for the entity.
|
|
14077
|
+
*/
|
|
14078
|
+
items: MapsSearchItem[];
|
|
14079
|
+
}
|
|
14080
|
+
/**
|
|
14081
|
+
* Typed methods for the maps platform. Attached to the AnyAPI client as
|
|
14082
|
+
* `client.maps`.
|
|
14083
|
+
*/
|
|
14084
|
+
declare class MapsNamespace {
|
|
14085
|
+
private readonly _core;
|
|
14086
|
+
constructor(_core: ClientCore);
|
|
14087
|
+
/**
|
|
14088
|
+
* Google Maps Contacts
|
|
14089
|
+
*
|
|
14090
|
+
* Search Google Maps for businesses and enrich each result with contact details (emails, phones, and social profiles from their websites), up to 20 records per request.
|
|
14091
|
+
*
|
|
14092
|
+
* Price: $0.00006 per request plus $0.00473 per result (maximum $0.0946).
|
|
14093
|
+
*
|
|
14094
|
+
* @example
|
|
14095
|
+
* const res = await client.maps.contacts({ location: "Austin, TX", query: "coffee shop", limit: 3, placeMinimumStars: "four", website: "withWebsite" });
|
|
14096
|
+
*/
|
|
14097
|
+
contacts(input: MapsContactsInput, options?: RequestOptions): Promise<RunResult<MapsContactsData>>;
|
|
14098
|
+
/**
|
|
14099
|
+
* Google Maps Place Lookup
|
|
14100
|
+
*
|
|
14101
|
+
* Look up a place on Google Maps by name or search query (optionally scoped to a location) and get the best-matching place with available address, contact, rating, and coordinate details as normalized JSON.
|
|
14102
|
+
*
|
|
14103
|
+
* Price: $0.00297 per request.
|
|
14104
|
+
*
|
|
14105
|
+
* @example
|
|
14106
|
+
* const res = await client.maps.place({ query: "Blue Bottle Coffee", location: "San Francisco, CA", website: "withWebsite" });
|
|
14107
|
+
*/
|
|
14108
|
+
place(input: MapsPlaceInput, options?: RequestOptions): Promise<RunResult<MapsPlaceData>>;
|
|
14109
|
+
/**
|
|
14110
|
+
* Google Maps Reviews
|
|
14111
|
+
*
|
|
14112
|
+
* Fetch up to 100 Google Maps reviews for a place by place ID, sorted the way you need, in one normalized response.
|
|
14113
|
+
*
|
|
14114
|
+
* Price: $0.00006 per request plus $0.00042 per result (maximum $0.0421).
|
|
14115
|
+
*
|
|
14116
|
+
* @example
|
|
14117
|
+
* const res = await client.maps.reviews({ placeId: "ChIJN1t_tDeuEmsRUsoyG83frY4", limit: 3, postedLimit: "year" });
|
|
14118
|
+
*/
|
|
14119
|
+
reviews(input: MapsReviewsInput, options?: RequestOptions): Promise<RunResult<MapsReviewsData>>;
|
|
14120
|
+
/**
|
|
14121
|
+
* Google Maps Search
|
|
14122
|
+
*
|
|
14123
|
+
* Search Google Maps for places matching a query and location: up to 20 normalized place records with ratings, addresses, and contact basics per request.
|
|
14124
|
+
*
|
|
14125
|
+
* Price: $0.00297 per request.
|
|
14126
|
+
*
|
|
14127
|
+
* @example
|
|
14128
|
+
* const res = await client.maps.search({ location: "Austin, TX", query: "coffee", limit: 3, placeMinimumStars: "four", website: "withWebsite" });
|
|
14129
|
+
*/
|
|
14130
|
+
search(input: MapsSearchInput, options?: RequestOptions): Promise<RunResult<MapsSearchData>>;
|
|
14131
|
+
}
|
|
14132
|
+
|
|
14133
|
+
/**
|
|
14134
|
+
* Input for Mobile Phone - AI Ark (mobile_phone.ai_ark).
|
|
14135
|
+
*/
|
|
14136
|
+
interface MobilePhoneAiArkInput {
|
|
14137
|
+
/**
|
|
14138
|
+
* Person's company domain.
|
|
14139
|
+
*/
|
|
14140
|
+
domain?: string;
|
|
14141
|
+
/**
|
|
14142
|
+
* Person's full name.
|
|
14143
|
+
*/
|
|
14144
|
+
fullName?: string;
|
|
14145
|
+
/**
|
|
14146
|
+
* Person's LinkedIn profile URL.
|
|
14147
|
+
* Format: uri.
|
|
14148
|
+
*/
|
|
14149
|
+
linkedinUrl?: string;
|
|
14150
|
+
}
|
|
14151
|
+
/**
|
|
14152
|
+
* The `data` payload of Mobile Phone - AI Ark (mobile_phone.ai_ark).
|
|
14153
|
+
*/
|
|
14154
|
+
interface MobilePhoneAiArkData {
|
|
14155
|
+
/**
|
|
14156
|
+
* Canonical LinkedIn profile URL returned with the match.
|
|
14157
|
+
* Format: uri.
|
|
14158
|
+
*/
|
|
14159
|
+
linkedinUrl?: string;
|
|
14160
|
+
/**
|
|
14161
|
+
* Matched mobile phone number.
|
|
14162
|
+
*/
|
|
14163
|
+
phone: string;
|
|
14164
|
+
[extra: string]: unknown;
|
|
14165
|
+
}
|
|
14166
|
+
/**
|
|
14167
|
+
* Input for Mobile Phone - LeadMagic (mobile_phone.leadmagic).
|
|
14168
|
+
*/
|
|
14169
|
+
interface MobilePhoneLeadmagicInput {
|
|
14170
|
+
/**
|
|
14171
|
+
* Format: email.
|
|
14172
|
+
*/
|
|
14173
|
+
email?: string;
|
|
14174
|
+
/**
|
|
14175
|
+
* Format: email.
|
|
13505
14176
|
*/
|
|
13506
|
-
|
|
14177
|
+
personalEmail?: string;
|
|
13507
14178
|
/**
|
|
13508
|
-
*
|
|
14179
|
+
* Format: uri.
|
|
13509
14180
|
*/
|
|
13510
|
-
|
|
14181
|
+
profileUrl?: string;
|
|
13511
14182
|
/**
|
|
13512
|
-
*
|
|
14183
|
+
* Format: email.
|
|
13513
14184
|
*/
|
|
13514
|
-
|
|
13515
|
-
[extra: string]: unknown;
|
|
14185
|
+
workEmail?: string;
|
|
13516
14186
|
}
|
|
13517
14187
|
/**
|
|
13518
|
-
* The `data` payload of
|
|
14188
|
+
* The `data` payload of Mobile Phone - LeadMagic (mobile_phone.leadmagic).
|
|
13519
14189
|
*/
|
|
13520
|
-
interface
|
|
13521
|
-
|
|
13522
|
-
|
|
13523
|
-
|
|
13524
|
-
items: MapsSearchItem[];
|
|
14190
|
+
interface MobilePhoneLeadmagicData {
|
|
14191
|
+
message?: string;
|
|
14192
|
+
mobile: string;
|
|
14193
|
+
[extra: string]: unknown;
|
|
13525
14194
|
}
|
|
13526
14195
|
/**
|
|
13527
|
-
* Typed methods for the
|
|
13528
|
-
* `client.
|
|
14196
|
+
* Typed methods for the mobile_phone platform. Attached to the AnyAPI client as
|
|
14197
|
+
* `client.mobilePhone`.
|
|
13529
14198
|
*/
|
|
13530
|
-
declare class
|
|
14199
|
+
declare class MobilePhoneNamespace {
|
|
13531
14200
|
private readonly _core;
|
|
13532
14201
|
constructor(_core: ClientCore);
|
|
13533
14202
|
/**
|
|
13534
|
-
*
|
|
13535
|
-
*
|
|
13536
|
-
* Search Google Maps for businesses and enrich each result with contact details (emails, phones, and social profiles from their websites), up to 20 records per request.
|
|
13537
|
-
*
|
|
13538
|
-
* Price: $0.00006 per request plus $0.00473 per result (maximum $0.0946).
|
|
13539
|
-
*
|
|
13540
|
-
* @example
|
|
13541
|
-
* const res = await client.maps.contacts({ location: "Austin, TX", query: "coffee shop", limit: 3, placeMinimumStars: "four", website: "withWebsite" });
|
|
13542
|
-
*/
|
|
13543
|
-
contacts(input: MapsContactsInput, options?: RequestOptions): Promise<RunResult<MapsContactsData>>;
|
|
13544
|
-
/**
|
|
13545
|
-
* Google Maps Place Lookup
|
|
13546
|
-
*
|
|
13547
|
-
* Look up a place on Google Maps by name or search query (optionally scoped to a location) and get the best-matching place with available address, contact, rating, and coordinate details as normalized JSON.
|
|
13548
|
-
*
|
|
13549
|
-
* Price: $0.00297 per request.
|
|
13550
|
-
*
|
|
13551
|
-
* @example
|
|
13552
|
-
* const res = await client.maps.place({ query: "Blue Bottle Coffee", location: "San Francisco, CA", website: "withWebsite" });
|
|
13553
|
-
*/
|
|
13554
|
-
place(input: MapsPlaceInput, options?: RequestOptions): Promise<RunResult<MapsPlaceData>>;
|
|
13555
|
-
/**
|
|
13556
|
-
* Google Maps Reviews
|
|
14203
|
+
* Mobile Phone - AI Ark
|
|
13557
14204
|
*
|
|
13558
|
-
*
|
|
14205
|
+
* Find a person's mobile phone from a LinkedIn URL or from a domain and full name.
|
|
13559
14206
|
*
|
|
13560
|
-
* Price: $0.
|
|
14207
|
+
* Price: $0.084 per request.
|
|
13561
14208
|
*
|
|
13562
14209
|
* @example
|
|
13563
|
-
* const res = await client.
|
|
14210
|
+
* const res = await client.mobilePhone.aiArk({ linkedinUrl: "https://www.linkedin.com/in/tim-zheng" });
|
|
13564
14211
|
*/
|
|
13565
|
-
|
|
14212
|
+
aiArk(input: MobilePhoneAiArkInput, options?: RequestOptions): Promise<RunResult<MobilePhoneAiArkData>>;
|
|
13566
14213
|
/**
|
|
13567
|
-
*
|
|
13568
|
-
*
|
|
13569
|
-
* Search Google Maps for places matching a query and location: up to 20 normalized place records with ratings, addresses, and contact basics per request.
|
|
14214
|
+
* Mobile Phone - LeadMagic
|
|
13570
14215
|
*
|
|
13571
|
-
*
|
|
14216
|
+
* Find a person's mobile phone from a profile URL or email. No-match responses are not billed.
|
|
13572
14217
|
*
|
|
13573
|
-
*
|
|
13574
|
-
* const res = await client.maps.search({ location: "Austin, TX", query: "coffee", limit: 3, placeMinimumStars: "four", website: "withWebsite" });
|
|
14218
|
+
* Price: $0.2016 per request.
|
|
13575
14219
|
*/
|
|
13576
|
-
|
|
14220
|
+
leadmagic(input: MobilePhoneLeadmagicInput, options?: RequestOptions): Promise<RunResult<MobilePhoneLeadmagicData>>;
|
|
13577
14221
|
}
|
|
13578
14222
|
|
|
13579
14223
|
/**
|
|
@@ -13776,6 +14420,207 @@ declare class PandaexpressNamespace {
|
|
|
13776
14420
|
nutrition(input: PandaexpressNutritionInput, options?: RequestOptions): Promise<RunResult<PandaexpressNutritionData>>;
|
|
13777
14421
|
}
|
|
13778
14422
|
|
|
14423
|
+
/**
|
|
14424
|
+
* Input for People Search - AI Ark (people_search.ai_ark).
|
|
14425
|
+
*/
|
|
14426
|
+
interface PeopleSearchAiArkInput {
|
|
14427
|
+
/**
|
|
14428
|
+
* AI Ark account filter expression. Nested generic any/all filter objects are accepted as documented by the source and are not further constrained.
|
|
14429
|
+
*/
|
|
14430
|
+
account?: {};
|
|
14431
|
+
/**
|
|
14432
|
+
* AI Ark contact filter expression. Nested generic any/all filter objects are accepted as documented by the source and are not further constrained.
|
|
14433
|
+
*/
|
|
14434
|
+
contact?: {};
|
|
14435
|
+
/**
|
|
14436
|
+
* AI Ark saved-list filter expression.
|
|
14437
|
+
*/
|
|
14438
|
+
lists?: {};
|
|
14439
|
+
/**
|
|
14440
|
+
* Zero-based result page.
|
|
14441
|
+
* Range: minimum 0.
|
|
14442
|
+
* Default: 0.
|
|
14443
|
+
*/
|
|
14444
|
+
page?: number;
|
|
14445
|
+
/**
|
|
14446
|
+
* Maximum people to return on this page.
|
|
14447
|
+
* Range: minimum 1, maximum 100.
|
|
14448
|
+
* Default: 10.
|
|
14449
|
+
*/
|
|
14450
|
+
size?: number;
|
|
14451
|
+
}
|
|
14452
|
+
interface PeopleSearchAiArkPeople {
|
|
14453
|
+
/**
|
|
14454
|
+
* Location city.
|
|
14455
|
+
*/
|
|
14456
|
+
city?: string;
|
|
14457
|
+
/**
|
|
14458
|
+
* Current company domain.
|
|
14459
|
+
*/
|
|
14460
|
+
companyDomain?: string;
|
|
14461
|
+
/**
|
|
14462
|
+
* Estimated employees at the current company.
|
|
14463
|
+
* Range: minimum 0.
|
|
14464
|
+
*/
|
|
14465
|
+
companyEmployeeCount?: number;
|
|
14466
|
+
/**
|
|
14467
|
+
* Current company's primary industry.
|
|
14468
|
+
*/
|
|
14469
|
+
companyIndustry?: string;
|
|
14470
|
+
/**
|
|
14471
|
+
* Current company's canonical LinkedIn URL.
|
|
14472
|
+
* Format: uri.
|
|
14473
|
+
*/
|
|
14474
|
+
companyLinkedinUrl?: string;
|
|
14475
|
+
/**
|
|
14476
|
+
* Current company name.
|
|
14477
|
+
*/
|
|
14478
|
+
companyName?: string;
|
|
14479
|
+
/**
|
|
14480
|
+
* Location country.
|
|
14481
|
+
*/
|
|
14482
|
+
country?: string;
|
|
14483
|
+
/**
|
|
14484
|
+
* Person's first name.
|
|
14485
|
+
*/
|
|
14486
|
+
firstName?: string;
|
|
14487
|
+
/**
|
|
14488
|
+
* Person's full name.
|
|
14489
|
+
*/
|
|
14490
|
+
fullName: string;
|
|
14491
|
+
/**
|
|
14492
|
+
* Professional profile headline.
|
|
14493
|
+
*/
|
|
14494
|
+
headline?: string;
|
|
14495
|
+
/**
|
|
14496
|
+
* Person's last name.
|
|
14497
|
+
*/
|
|
14498
|
+
lastName?: string;
|
|
14499
|
+
/**
|
|
14500
|
+
* Canonical LinkedIn profile URL.
|
|
14501
|
+
* Format: uri.
|
|
14502
|
+
*/
|
|
14503
|
+
linkedinUrl: string;
|
|
14504
|
+
/**
|
|
14505
|
+
* Formatted location.
|
|
14506
|
+
*/
|
|
14507
|
+
location?: string;
|
|
14508
|
+
/**
|
|
14509
|
+
* Location state or region.
|
|
14510
|
+
*/
|
|
14511
|
+
state?: string;
|
|
14512
|
+
/**
|
|
14513
|
+
* Current job title.
|
|
14514
|
+
*/
|
|
14515
|
+
title?: string;
|
|
14516
|
+
[extra: string]: unknown;
|
|
14517
|
+
}
|
|
14518
|
+
/**
|
|
14519
|
+
* The `data` payload of People Search - AI Ark (people_search.ai_ark).
|
|
14520
|
+
*/
|
|
14521
|
+
interface PeopleSearchAiArkData {
|
|
14522
|
+
/**
|
|
14523
|
+
* Zero-based page number returned by the source.
|
|
14524
|
+
* Range: minimum 0.
|
|
14525
|
+
*/
|
|
14526
|
+
page: number;
|
|
14527
|
+
/**
|
|
14528
|
+
* People returned on this page.
|
|
14529
|
+
*/
|
|
14530
|
+
people: PeopleSearchAiArkPeople[];
|
|
14531
|
+
/**
|
|
14532
|
+
* Configured page size.
|
|
14533
|
+
* Range: minimum 0.
|
|
14534
|
+
*/
|
|
14535
|
+
size: number;
|
|
14536
|
+
/**
|
|
14537
|
+
* Total matching people.
|
|
14538
|
+
* Range: minimum 0.
|
|
14539
|
+
*/
|
|
14540
|
+
total: number;
|
|
14541
|
+
/**
|
|
14542
|
+
* Total result pages.
|
|
14543
|
+
* Range: minimum 0.
|
|
14544
|
+
*/
|
|
14545
|
+
totalPages: number;
|
|
14546
|
+
}
|
|
14547
|
+
/**
|
|
14548
|
+
* Input for People Search - Crustdata v3 (people_search.crustdata_v3).
|
|
14549
|
+
*/
|
|
14550
|
+
interface PeopleSearchCrustdataV3Input {
|
|
14551
|
+
/**
|
|
14552
|
+
* Company domain without a path.
|
|
14553
|
+
*/
|
|
14554
|
+
companyDomain: string;
|
|
14555
|
+
country?: string;
|
|
14556
|
+
/**
|
|
14557
|
+
* Default: true.
|
|
14558
|
+
*/
|
|
14559
|
+
fuzzyTitle?: boolean;
|
|
14560
|
+
/**
|
|
14561
|
+
* Range: minimum 1, maximum 100.
|
|
14562
|
+
* Default: 3.
|
|
14563
|
+
*/
|
|
14564
|
+
limit?: number;
|
|
14565
|
+
profileKeywords?: unknown;
|
|
14566
|
+
/**
|
|
14567
|
+
* Default: false.
|
|
14568
|
+
*/
|
|
14569
|
+
requireVerifiedEmail?: boolean;
|
|
14570
|
+
seniority?: unknown;
|
|
14571
|
+
titleKeywords: unknown;
|
|
14572
|
+
}
|
|
14573
|
+
interface PeopleSearchCrustdataV3Profile {
|
|
14574
|
+
emails?: unknown[];
|
|
14575
|
+
firstName?: string;
|
|
14576
|
+
headline?: string;
|
|
14577
|
+
lastName?: string;
|
|
14578
|
+
/**
|
|
14579
|
+
* Format: uri.
|
|
14580
|
+
*/
|
|
14581
|
+
linkedinUrl?: string;
|
|
14582
|
+
name: string;
|
|
14583
|
+
[extra: string]: unknown;
|
|
14584
|
+
}
|
|
14585
|
+
/**
|
|
14586
|
+
* The `data` payload of People Search - Crustdata v3 (people_search.crustdata_v3).
|
|
14587
|
+
*/
|
|
14588
|
+
interface PeopleSearchCrustdataV3Data {
|
|
14589
|
+
hasMore?: boolean;
|
|
14590
|
+
profiles: PeopleSearchCrustdataV3Profile[];
|
|
14591
|
+
/**
|
|
14592
|
+
* Range: minimum 0.
|
|
14593
|
+
*/
|
|
14594
|
+
totalCount?: number;
|
|
14595
|
+
}
|
|
14596
|
+
/**
|
|
14597
|
+
* Typed methods for the people_search platform. Attached to the AnyAPI client as
|
|
14598
|
+
* `client.peopleSearch`.
|
|
14599
|
+
*/
|
|
14600
|
+
declare class PeopleSearchNamespace {
|
|
14601
|
+
private readonly _core;
|
|
14602
|
+
constructor(_core: ClientCore);
|
|
14603
|
+
/**
|
|
14604
|
+
* People Search - AI Ark
|
|
14605
|
+
*
|
|
14606
|
+
* Search professional profiles with account, contact, and saved-list filters.
|
|
14607
|
+
*
|
|
14608
|
+
* Price: $0 per request plus $0.0084 per result (maximum $0.84).
|
|
14609
|
+
*
|
|
14610
|
+
* @example
|
|
14611
|
+
* const res = await client.peopleSearch.aiArk({ page: 0, size: 1 });
|
|
14612
|
+
*/
|
|
14613
|
+
aiArk(input: PeopleSearchAiArkInput, options?: RequestOptions): Promise<RunResult<PeopleSearchAiArkData>>;
|
|
14614
|
+
/**
|
|
14615
|
+
* People Search - Crustdata v3
|
|
14616
|
+
*
|
|
14617
|
+
* Find up to 100 professional profiles by company domain and title keywords.
|
|
14618
|
+
*
|
|
14619
|
+
* Price: $0.144 per request.
|
|
14620
|
+
*/
|
|
14621
|
+
crustdataV3(input: PeopleSearchCrustdataV3Input, options?: RequestOptions): Promise<RunResult<PeopleSearchCrustdataV3Data>>;
|
|
14622
|
+
}
|
|
14623
|
+
|
|
13779
14624
|
/**
|
|
13780
14625
|
* Input for Skip Trace (person.skip_trace).
|
|
13781
14626
|
*/
|
|
@@ -13922,6 +14767,58 @@ declare class PersonNamespace {
|
|
|
13922
14767
|
skipTrace(input: PersonSkipTraceInput, options?: RequestOptions): Promise<RunResult<PersonSkipTraceData>>;
|
|
13923
14768
|
}
|
|
13924
14769
|
|
|
14770
|
+
/**
|
|
14771
|
+
* Input for Person Enrichment - Aviato (person_enrichment.aviato).
|
|
14772
|
+
*/
|
|
14773
|
+
interface PersonEnrichmentAviatoInput {
|
|
14774
|
+
angelListID?: string;
|
|
14775
|
+
crunchbaseID?: string;
|
|
14776
|
+
/**
|
|
14777
|
+
* Format: email.
|
|
14778
|
+
*/
|
|
14779
|
+
email?: string;
|
|
14780
|
+
id?: string;
|
|
14781
|
+
linkedinEntityId?: string;
|
|
14782
|
+
linkedinID?: string;
|
|
14783
|
+
/**
|
|
14784
|
+
* Format: uri.
|
|
14785
|
+
*/
|
|
14786
|
+
linkedinURL?: string;
|
|
14787
|
+
polyworkID?: string;
|
|
14788
|
+
require?: string[];
|
|
14789
|
+
signalNfxID?: string;
|
|
14790
|
+
twitterID?: string;
|
|
14791
|
+
}
|
|
14792
|
+
/**
|
|
14793
|
+
* The `data` payload of Person Enrichment - Aviato (person_enrichment.aviato).
|
|
14794
|
+
*/
|
|
14795
|
+
interface PersonEnrichmentAviatoData {
|
|
14796
|
+
about?: string;
|
|
14797
|
+
firstName?: string;
|
|
14798
|
+
headline?: string;
|
|
14799
|
+
lastName?: string;
|
|
14800
|
+
linkedinUrl?: string;
|
|
14801
|
+
location?: string;
|
|
14802
|
+
name: string;
|
|
14803
|
+
[extra: string]: unknown;
|
|
14804
|
+
}
|
|
14805
|
+
/**
|
|
14806
|
+
* Typed methods for the person_enrichment platform. Attached to the AnyAPI client as
|
|
14807
|
+
* `client.personEnrichment`.
|
|
14808
|
+
*/
|
|
14809
|
+
declare class PersonEnrichmentNamespace {
|
|
14810
|
+
private readonly _core;
|
|
14811
|
+
constructor(_core: ClientCore);
|
|
14812
|
+
/**
|
|
14813
|
+
* Person Enrichment - Aviato
|
|
14814
|
+
*
|
|
14815
|
+
* Enrich a person from an Aviato or LinkedIn identifier, LinkedIn URL, or email.
|
|
14816
|
+
*
|
|
14817
|
+
* Price: $0.084 per request.
|
|
14818
|
+
*/
|
|
14819
|
+
aviato(input: PersonEnrichmentAviatoInput, options?: RequestOptions): Promise<RunResult<PersonEnrichmentAviatoData>>;
|
|
14820
|
+
}
|
|
14821
|
+
|
|
13925
14822
|
/**
|
|
13926
14823
|
* Input for Pinterest Search (pinterest.search).
|
|
13927
14824
|
*/
|
|
@@ -21159,7 +22056,7 @@ interface TwitterProfileData {
|
|
|
21159
22056
|
*/
|
|
21160
22057
|
interface TwitterRepliesInput {
|
|
21161
22058
|
/**
|
|
21162
|
-
* Maximum number of results to return (1-40, default 40).
|
|
22059
|
+
* Maximum number of results to return (1-40, default 40). Per-result lanes cost less at lower limits; a backup that bills its native page may cost up to the advertised request price.
|
|
21163
22060
|
* Range: minimum 1, maximum 40.
|
|
21164
22061
|
*/
|
|
21165
22062
|
limit?: number;
|
|
@@ -21509,7 +22406,7 @@ interface TwitterUserPostsData {
|
|
|
21509
22406
|
*/
|
|
21510
22407
|
interface TwitterUserTweetsInput {
|
|
21511
22408
|
/**
|
|
21512
|
-
*
|
|
22409
|
+
* Opaque pagination cursor from a previous response's nextCursor. Omit for the first page.
|
|
21513
22410
|
*/
|
|
21514
22411
|
cursor?: string;
|
|
21515
22412
|
/**
|
|
@@ -21523,7 +22420,7 @@ interface TwitterUserTweetsInput {
|
|
|
21523
22420
|
*/
|
|
21524
22421
|
limit?: number;
|
|
21525
22422
|
/**
|
|
21526
|
-
*
|
|
22423
|
+
* Require a lane that can return the requested limit in one response.
|
|
21527
22424
|
*/
|
|
21528
22425
|
requireSinglePage?: boolean;
|
|
21529
22426
|
}
|
|
@@ -21560,7 +22457,7 @@ interface TwitterUserTweetsTweet {
|
|
|
21560
22457
|
*/
|
|
21561
22458
|
interface TwitterUserTweetsData {
|
|
21562
22459
|
/**
|
|
21563
|
-
*
|
|
22460
|
+
* Opaque cursor for the next page when the selected lane supports pagination, otherwise null.
|
|
21564
22461
|
*/
|
|
21565
22462
|
nextCursor?: string | null;
|
|
21566
22463
|
/**
|
|
@@ -21591,7 +22488,7 @@ declare class TwitterNamespace {
|
|
|
21591
22488
|
*
|
|
21592
22489
|
* Fetch a Twitter/X community's public details (name, description, member count, join policy) by URL.
|
|
21593
22490
|
*
|
|
21594
|
-
* Price: $0.
|
|
22491
|
+
* Price: $0.00018 per request.
|
|
21595
22492
|
*
|
|
21596
22493
|
* @example
|
|
21597
22494
|
* const res = await client.twitter.community({ url: "https://x.com/i/communities/1926186499399139650" });
|
|
@@ -21649,7 +22546,7 @@ declare class TwitterNamespace {
|
|
|
21649
22546
|
*
|
|
21650
22547
|
* Fetch a Twitter/X account's public profile (followers, tweets, bio, verification) by handle.
|
|
21651
22548
|
*
|
|
21652
|
-
* Price: $0.
|
|
22549
|
+
* Price: $0.00018 per request.
|
|
21653
22550
|
*
|
|
21654
22551
|
* @example
|
|
21655
22552
|
* const res = await client.twitter.profile({ handle: "nasa" });
|
|
@@ -21660,7 +22557,7 @@ declare class TwitterNamespace {
|
|
|
21660
22557
|
*
|
|
21661
22558
|
* Fetch the replies to any X (Twitter) post URL as structured records: author, text, and engagement.
|
|
21662
22559
|
*
|
|
21663
|
-
* Price: $0.
|
|
22560
|
+
* Price: $0.00018 per request plus $0.00018 per result (maximum $0.00666).
|
|
21664
22561
|
*
|
|
21665
22562
|
* @example
|
|
21666
22563
|
* const res = await client.twitter.replies({ url: "https://x.com/jack/status/20", limit: 3 });
|
|
@@ -21689,7 +22586,7 @@ declare class TwitterNamespace {
|
|
|
21689
22586
|
*
|
|
21690
22587
|
* Get current X (Twitter) trends for worldwide, a country, or a city in X ranking order, including the resolved location.
|
|
21691
22588
|
*
|
|
21692
|
-
* Price: $0.
|
|
22589
|
+
* Price: $0.00018 per request.
|
|
21693
22590
|
*
|
|
21694
22591
|
* @example
|
|
21695
22592
|
* const res = await client.twitter.trends({ limit: 10, location: "US" });
|
|
@@ -21700,7 +22597,7 @@ declare class TwitterNamespace {
|
|
|
21700
22597
|
*
|
|
21701
22598
|
* Fetch a single Twitter/X tweet by URL with its full text and engagement counts (likes, retweets, replies, quotes, bookmarks, views).
|
|
21702
22599
|
*
|
|
21703
|
-
* Price: $0.
|
|
22600
|
+
* Price: $0.00018 per request.
|
|
21704
22601
|
*
|
|
21705
22602
|
* @example
|
|
21706
22603
|
* const res = await client.twitter.tweet({ url: "https://x.com/SpaceX/status/1732824684683784516" });
|
|
@@ -21738,9 +22635,9 @@ declare class TwitterNamespace {
|
|
|
21738
22635
|
/**
|
|
21739
22636
|
* X / Twitter User Tweets and Replies
|
|
21740
22637
|
*
|
|
21741
|
-
* Get up to the requested limit of tweets and replies authored by an X (Twitter) account
|
|
22638
|
+
* Get up to the requested limit of tweets and replies authored by an X (Twitter) account, with engagement, views, language, and cursor pagination where available.
|
|
21742
22639
|
*
|
|
21743
|
-
* Price: $0 per request plus $0.
|
|
22640
|
+
* Price: $0.00018 per request plus $0.00018 per result (maximum $0.01818).
|
|
21744
22641
|
*
|
|
21745
22642
|
* @example
|
|
21746
22643
|
* const res = await client.twitter.userTweets({ handle: "levelsio", limit: 20 });
|
|
@@ -24631,6 +25528,7 @@ interface ZillowSearchInput {
|
|
|
24631
25528
|
/**
|
|
24632
25529
|
* Maximum number of results to return (1-25, default 25). You are billed per result returned, so a lower limit costs less.
|
|
24633
25530
|
* Range: minimum 1, maximum 25.
|
|
25531
|
+
* Default: 25.
|
|
24634
25532
|
*/
|
|
24635
25533
|
limit?: number;
|
|
24636
25534
|
/**
|
|
@@ -24793,7 +25691,7 @@ declare class ZillowNamespace {
|
|
|
24793
25691
|
*
|
|
24794
25692
|
* Search Zillow for-sale, rental, or sold listings by region-level location (city, ZIP, county, or neighborhood) with optional price, bedroom, living-area, home-type, recency, and sort filters and get matching properties (price, address, beds, baths, living area, status, Zestimate) as normalized JSON.
|
|
24795
25693
|
*
|
|
24796
|
-
* Price: $0.
|
|
25694
|
+
* Price: $0.0009 per request.
|
|
24797
25695
|
*
|
|
24798
25696
|
* @example
|
|
24799
25697
|
* const res = await client.zillow.search({ location: "Austin, TX", limit: 3, maxPrice: 900000, minBedrooms: 3, operation: "buy" });
|
|
@@ -24933,6 +25831,21 @@ interface SkuMap {
|
|
|
24933
25831
|
data: CoinmarketcapListingsData;
|
|
24934
25832
|
result: RunResult<CoinmarketcapListingsData>;
|
|
24935
25833
|
};
|
|
25834
|
+
"company_enrichment.crustdata_v3": {
|
|
25835
|
+
input: CompanyEnrichmentCrustdataV3Input;
|
|
25836
|
+
data: CompanyEnrichmentCrustdataV3Data;
|
|
25837
|
+
result: RunResult<CompanyEnrichmentCrustdataV3Data>;
|
|
25838
|
+
};
|
|
25839
|
+
"company_search.ai_ark": {
|
|
25840
|
+
input: CompanySearchAiArkInput;
|
|
25841
|
+
data: CompanySearchAiArkData;
|
|
25842
|
+
result: RunResult<CompanySearchAiArkData>;
|
|
25843
|
+
};
|
|
25844
|
+
"company_search.crustdata_v3": {
|
|
25845
|
+
input: CompanySearchCrustdataV3Input;
|
|
25846
|
+
data: CompanySearchCrustdataV3Data;
|
|
25847
|
+
result: RunResult<CompanySearchCrustdataV3Data>;
|
|
25848
|
+
};
|
|
24936
25849
|
"congress.trades": {
|
|
24937
25850
|
input: CongressTradesInput;
|
|
24938
25851
|
data: CongressTradesData;
|
|
@@ -24988,6 +25901,31 @@ interface SkuMap {
|
|
|
24988
25901
|
data: EmailVerifyData;
|
|
24989
25902
|
result: RunResult<EmailVerifyData>;
|
|
24990
25903
|
};
|
|
25904
|
+
"email_finding.dropleads": {
|
|
25905
|
+
input: EmailFindingDropleadsInput;
|
|
25906
|
+
data: EmailFindingDropleadsData;
|
|
25907
|
+
result: RunResult<EmailFindingDropleadsData>;
|
|
25908
|
+
};
|
|
25909
|
+
"email_finding.icypeas": {
|
|
25910
|
+
input: EmailFindingIcypeasInput;
|
|
25911
|
+
data: EmailFindingIcypeasData;
|
|
25912
|
+
result: RunResult<EmailFindingIcypeasData>;
|
|
25913
|
+
};
|
|
25914
|
+
"email_verification.allegrow": {
|
|
25915
|
+
input: EmailVerificationAllegrowInput;
|
|
25916
|
+
data: EmailVerificationAllegrowData;
|
|
25917
|
+
result: RunResult<EmailVerificationAllegrowData>;
|
|
25918
|
+
};
|
|
25919
|
+
"email_verification.bounceban": {
|
|
25920
|
+
input: EmailVerificationBouncebanInput;
|
|
25921
|
+
data: EmailVerificationBouncebanData;
|
|
25922
|
+
result: RunResult<EmailVerificationBouncebanData>;
|
|
25923
|
+
};
|
|
25924
|
+
"email_verification.icypeas": {
|
|
25925
|
+
input: EmailVerificationIcypeasInput;
|
|
25926
|
+
data: EmailVerificationIcypeasData;
|
|
25927
|
+
result: RunResult<EmailVerificationIcypeasData>;
|
|
25928
|
+
};
|
|
24991
25929
|
"facebook.ad_details": {
|
|
24992
25930
|
input: FacebookAdDetailsInput;
|
|
24993
25931
|
data: FacebookAdDetailsData;
|
|
@@ -25528,6 +26466,16 @@ interface SkuMap {
|
|
|
25528
26466
|
data: MapsSearchData;
|
|
25529
26467
|
result: RunResult<MapsSearchData>;
|
|
25530
26468
|
};
|
|
26469
|
+
"mobile_phone.ai_ark": {
|
|
26470
|
+
input: MobilePhoneAiArkInput;
|
|
26471
|
+
data: MobilePhoneAiArkData;
|
|
26472
|
+
result: RunResult<MobilePhoneAiArkData>;
|
|
26473
|
+
};
|
|
26474
|
+
"mobile_phone.leadmagic": {
|
|
26475
|
+
input: MobilePhoneLeadmagicInput;
|
|
26476
|
+
data: MobilePhoneLeadmagicData;
|
|
26477
|
+
result: RunResult<MobilePhoneLeadmagicData>;
|
|
26478
|
+
};
|
|
25531
26479
|
"pandaexpress.locations": {
|
|
25532
26480
|
input: PandaexpressLocationsInput;
|
|
25533
26481
|
data: PandaexpressLocationsData;
|
|
@@ -25543,11 +26491,26 @@ interface SkuMap {
|
|
|
25543
26491
|
data: PandaexpressNutritionData;
|
|
25544
26492
|
result: RunResult<PandaexpressNutritionData>;
|
|
25545
26493
|
};
|
|
26494
|
+
"people_search.ai_ark": {
|
|
26495
|
+
input: PeopleSearchAiArkInput;
|
|
26496
|
+
data: PeopleSearchAiArkData;
|
|
26497
|
+
result: RunResult<PeopleSearchAiArkData>;
|
|
26498
|
+
};
|
|
26499
|
+
"people_search.crustdata_v3": {
|
|
26500
|
+
input: PeopleSearchCrustdataV3Input;
|
|
26501
|
+
data: PeopleSearchCrustdataV3Data;
|
|
26502
|
+
result: RunResult<PeopleSearchCrustdataV3Data>;
|
|
26503
|
+
};
|
|
25546
26504
|
"person.skip_trace": {
|
|
25547
26505
|
input: PersonSkipTraceInput;
|
|
25548
26506
|
data: PersonSkipTraceData;
|
|
25549
26507
|
result: RunResult<PersonSkipTraceData>;
|
|
25550
26508
|
};
|
|
26509
|
+
"person_enrichment.aviato": {
|
|
26510
|
+
input: PersonEnrichmentAviatoInput;
|
|
26511
|
+
data: PersonEnrichmentAviatoData;
|
|
26512
|
+
result: RunResult<PersonEnrichmentAviatoData>;
|
|
26513
|
+
};
|
|
25551
26514
|
"pinterest.search": {
|
|
25552
26515
|
input: PinterestSearchInput;
|
|
25553
26516
|
data: PinterestSearchData;
|
|
@@ -26270,6 +27233,14 @@ declare class AnyAPI extends AnyAPI$1 {
|
|
|
26270
27233
|
* Typed methods for the coinmarketcap platform.
|
|
26271
27234
|
*/
|
|
26272
27235
|
get coinmarketcap(): CoinmarketcapNamespace;
|
|
27236
|
+
/**
|
|
27237
|
+
* Typed methods for the company_enrichment platform.
|
|
27238
|
+
*/
|
|
27239
|
+
get companyEnrichment(): CompanyEnrichmentNamespace;
|
|
27240
|
+
/**
|
|
27241
|
+
* Typed methods for the company_search platform.
|
|
27242
|
+
*/
|
|
27243
|
+
get companySearch(): CompanySearchNamespace;
|
|
26273
27244
|
/**
|
|
26274
27245
|
* Typed methods for the congress platform.
|
|
26275
27246
|
*/
|
|
@@ -26290,6 +27261,14 @@ declare class AnyAPI extends AnyAPI$1 {
|
|
|
26290
27261
|
* Typed methods for the email platform.
|
|
26291
27262
|
*/
|
|
26292
27263
|
get email(): EmailNamespace;
|
|
27264
|
+
/**
|
|
27265
|
+
* Typed methods for the email_finding platform.
|
|
27266
|
+
*/
|
|
27267
|
+
get emailFinding(): EmailFindingNamespace;
|
|
27268
|
+
/**
|
|
27269
|
+
* Typed methods for the email_verification platform.
|
|
27270
|
+
*/
|
|
27271
|
+
get emailVerification(): EmailVerificationNamespace;
|
|
26293
27272
|
/**
|
|
26294
27273
|
* Typed methods for the facebook platform.
|
|
26295
27274
|
*/
|
|
@@ -26342,14 +27321,26 @@ declare class AnyAPI extends AnyAPI$1 {
|
|
|
26342
27321
|
* Typed methods for the maps platform.
|
|
26343
27322
|
*/
|
|
26344
27323
|
get maps(): MapsNamespace;
|
|
27324
|
+
/**
|
|
27325
|
+
* Typed methods for the mobile_phone platform.
|
|
27326
|
+
*/
|
|
27327
|
+
get mobilePhone(): MobilePhoneNamespace;
|
|
26345
27328
|
/**
|
|
26346
27329
|
* Typed methods for the pandaexpress platform.
|
|
26347
27330
|
*/
|
|
26348
27331
|
get pandaexpress(): PandaexpressNamespace;
|
|
27332
|
+
/**
|
|
27333
|
+
* Typed methods for the people_search platform.
|
|
27334
|
+
*/
|
|
27335
|
+
get peopleSearch(): PeopleSearchNamespace;
|
|
26349
27336
|
/**
|
|
26350
27337
|
* Typed methods for the person platform.
|
|
26351
27338
|
*/
|
|
26352
27339
|
get person(): PersonNamespace;
|
|
27340
|
+
/**
|
|
27341
|
+
* Typed methods for the person_enrichment platform.
|
|
27342
|
+
*/
|
|
27343
|
+
get personEnrichment(): PersonEnrichmentNamespace;
|
|
26353
27344
|
/**
|
|
26354
27345
|
* Typed methods for the pinterest platform.
|
|
26355
27346
|
*/
|
|
@@ -26472,4 +27463,4 @@ declare class AnyAPI extends AnyAPI$1 {
|
|
|
26472
27463
|
get zillow(): ZillowNamespace;
|
|
26473
27464
|
}
|
|
26474
27465
|
|
|
26475
|
-
export { type AccountProfile, type AgentSignupOptions, type AgentSignupResult, type AhrefsBacklinksData, type AhrefsBacklinksInput, type AhrefsBacklinksItem, type AhrefsKeywordIdeasData, type AhrefsKeywordIdeasIdea, type AhrefsKeywordIdeasInput, type AhrefsKeywordIdeasItem, type AhrefsKeywordsData, type AhrefsKeywordsInput, type AhrefsKeywordsItem, AhrefsNamespace, type AhrefsOverviewData, type AhrefsOverviewInput, type AhrefsOverviewItem, AirbnbNamespace, type AirbnbSearchData, type AirbnbSearchInput, type AirbnbSearchItem, AlibabaNamespace, type AlibabaSearchData, type AlibabaSearchInput, type AlibabaSearchItem, type AmazonAsinsData, type AmazonAsinsInput, type AmazonAsinsItem, type AmazonBestsellersData, type AmazonBestsellersInput, type AmazonBestsellersItem, AmazonNamespace, type AmazonProductData, type AmazonProductInput, type AmazonProductItem, type AmazonReviewsData, type AmazonReviewsInput, type AmazonReviewsItem, type AmazonSearchData, type AmazonSearchInput, type AmazonSearchItem, AnyAPI, AnyAPIError, ApolloNamespace, type ApolloOrganizationData, type ApolloOrganizationEnrichData, type ApolloOrganizationEnrichInput, type ApolloOrganizationInput, type ApolloOrganizationJobsData, type ApolloOrganizationJobsInput, type ApolloOrganizationJobsJob, type ApolloOrganizationNewsArticle, type ApolloOrganizationNewsData, type ApolloOrganizationNewsInput, type ApolloOrganizationsBulkEnrichData, type ApolloOrganizationsBulkEnrichInput, type ApolloOrganizationsBulkEnrichOrganization, type ApolloOrganizationsSearchData, type ApolloOrganizationsSearchInput, type ApolloOrganizationsSearchOrganization, type ApolloPeopleSearchData, type ApolloPeopleSearchInput, type ApolloPeopleSearchPeople, type ApolloPersonEnrichData, type ApolloPersonEnrichEmploymentHistory, type ApolloPersonEnrichInput, AppstoreNamespace, type AppstoreReviewsData, type AppstoreReviewsInput, type AppstoreReviewsItem, AuthenticationError, BadRequestError, type BareRunResult, BlueskyNamespace, type BlueskyPostData, type BlueskyPostInput, type BlueskyProfileData, type BlueskyProfileInput, type BlueskyUserPostsData, type BlueskyUserPostsInput, type BlueskyUserPostsPost, BookingNamespace, type BookingSearchData, type BookingSearchInput, type BookingSearchItem, type CatalogEntry, type CatalogOptions, type CatalogSearchResult, type CatalogSearchResults, type ClientCore, type ClientOptions, type CoinmarketcapListingsData, type CoinmarketcapListingsInput, type CoinmarketcapListingsItem, CoinmarketcapNamespace, CongressNamespace, type CongressTradesData, type CongressTradesInput, type CongressTradesItem, ConnectionError, DexscreenerNamespace, type DexscreenerTokensData, type DexscreenerTokensInput, type DexscreenerTokensItem, type DiscoveryLane, type DiscoveryPricing, DouyinNamespace, type DouyinProfileData, type DouyinProfileInput, type DouyinSearchVideosData, type DouyinSearchVideosInput, type DouyinSearchVideosVideo, type DouyinUserPostsData, type DouyinUserPostsInput, type DouyinUserPostsPost, type DouyinVideoCommentsComment, type DouyinVideoCommentsData, type DouyinVideoCommentsInput, type DouyinVideoData, type DouyinVideoInput, EbayNamespace, type EbaySearchData, type EbaySearchInput, type EbaySearchItem, type EbaySoldListingsData, type EbaySoldListingsInput, type EbaySoldListingsItem, type EmailFindData, type EmailFindInput, type EmailFindItem, EmailNamespace, type EmailVerifyData, type EmailVerifyInput, type EmailVerifyItem, type FacebookAdDetailsData, type FacebookAdDetailsInput, type FacebookAdTranscriptData, type FacebookAdTranscriptInput, type FacebookAdsSearchAd, type FacebookAdsSearchData, type FacebookAdsSearchInput, type FacebookCommentRepliesData, type FacebookCommentRepliesInput, type FacebookCommentRepliesReplie, type FacebookCompanyAdsAd, type FacebookCompanyAdsData, type FacebookCompanyAdsInput, type FacebookEventDetailsData, type FacebookEventDetailsInput, type FacebookEventsData, type FacebookEventsEvent, type FacebookEventsInput, type FacebookEventsSearchData, type FacebookEventsSearchEvent, type FacebookEventsSearchInput, type FacebookFollowersData, type FacebookFollowersInput, type FacebookFollowersItem, type FacebookGroupPostsData, type FacebookGroupPostsInput, type FacebookGroupPostsPost, type FacebookMarketplaceData, type FacebookMarketplaceInput, type FacebookMarketplaceItemData, type FacebookMarketplaceItemInput, type FacebookMarketplaceListing, type FacebookMarketplaceLocationSearchData, type FacebookMarketplaceLocationSearchInput, type FacebookMarketplaceLocationSearchLocation, FacebookNamespace, type FacebookPageContactData, type FacebookPageContactInput, type FacebookPageContactItem, type FacebookPhotosData, type FacebookPhotosInput, type FacebookPhotosPhoto, type FacebookPostCommentsComment, type FacebookPostCommentsData, type FacebookPostCommentsInput, type FacebookPostData, type FacebookPostInput, type FacebookPostTranscriptData, type FacebookPostTranscriptInput, type FacebookProfileData, type FacebookProfileEventsData, type FacebookProfileEventsEvent, type FacebookProfileEventsInput, type FacebookProfileInput, type FacebookProfilePostsData, type FacebookProfilePostsInput, type FacebookProfilePostsPost, type FacebookProfileReelsData, type FacebookProfileReelsInput, type FacebookProfileReelsReel, type FacebookSearchCompaniesCompanie, type FacebookSearchCompaniesData, type FacebookSearchCompaniesInput, type FacebookSearchPagesData, type FacebookSearchPagesInput, type FacebookSearchPagesItem, type FacebookSearchPostsData, type FacebookSearchPostsInput, type FacebookSearchPostsItem, FiverrNamespace, type FiverrSearchData, type FiverrSearchInput, type FiverrSearchItem, type FlatPricingOffer, GithubNamespace, type GithubRepositoryData, type GithubRepositoryInput, type GithubTrendingDevelopersData, type GithubTrendingDevelopersDeveloper, type GithubTrendingDevelopersInput, type GithubTrendingRepositoriesData, type GithubTrendingRepositoriesInput, type GithubTrendingRepositoriesRepo, type GithubUserActivityActivity, type GithubUserActivityData, type GithubUserActivityInput, type GithubUserContributionsData, type GithubUserContributionsDay, type GithubUserContributionsInput, type GithubUserData, type GithubUserFollowersData, type GithubUserFollowersFollower, type GithubUserFollowersInput, type GithubUserFollowingData, type GithubUserFollowingFollowing, type GithubUserFollowingInput, type GithubUserInput, type GithubUserPullRequestsData, type GithubUserPullRequestsInput, type GithubUserPullRequestsPullRequest, type GithubUserRepositoriesData, type GithubUserRepositoriesInput, type GithubUserRepositoriesRepo, type GlassdoorJobsData, type GlassdoorJobsInput, type GlassdoorJobsItem, GlassdoorNamespace, type GoogleAdsAdDetailsData, type GoogleAdsAdDetailsInput, type GoogleAdsAdDetailsVariation, type GoogleAdsAdvertiserSearchAdvertiser, type GoogleAdsAdvertiserSearchData, type GoogleAdsAdvertiserSearchInput, type GoogleAdsCompanyAdsAd, type GoogleAdsCompanyAdsData, type GoogleAdsCompanyAdsInput, GoogleAdsNamespace, type GoogleAdsSearchData, type GoogleAdsSearchInput, type GoogleAdsSearchItem, type GoogleAdsSearchVariation, type GoogleAutocompleteData, type GoogleAutocompleteInput, type GoogleAutocompleteSuggestion, GoogleFinanceNamespace, type GoogleFinanceQuoteData, type GoogleFinanceQuoteInput, type GoogleFinanceQuoteItem, type GoogleImagesData, type GoogleImagesInput, type GoogleImagesItem, type GoogleLensData, type GoogleLensInput, type GoogleLensResult, GoogleNamespace, type GoogleNewsData, type GoogleNewsInput, type GoogleNewsItem, type GooglePatentsData, type GooglePatentsInput, type GooglePatentsResult, type GoogleScholarData, type GoogleScholarInput, type GoogleScholarResult, type GoogleSearchData, type GoogleSearchInput, type GoogleSearchResult, GoogleShoppingNamespace, type GoogleShoppingSearchData, type GoogleShoppingSearchInput, type GoogleShoppingSearchItem, type GoogleVideosData, type GoogleVideosInput, type GoogleVideosResult, HackernewsNamespace, type HackernewsProfileData, type HackernewsProfileInput, type HackernewsSearchData, type HackernewsSearchInput, type HackernewsSearchResult, type HackernewsStoryCommentsComment, type HackernewsStoryCommentsData, type HackernewsStoryCommentsInput, type HackernewsStoryData, type HackernewsStoryInput, type HighlightField, type IndeedJobsData, type IndeedJobsInput, type IndeedJobsItem, IndeedNamespace, type InstagramAudioReelsData, type InstagramAudioReelsInput, type InstagramAudioReelsReel, type InstagramBasicProfileData, type InstagramBasicProfileInput, type InstagramCommentRepliesComment, type InstagramCommentRepliesData, type InstagramCommentRepliesInput, type InstagramEmbedData, type InstagramEmbedInput, type InstagramFollowersData, type InstagramFollowersInput, type InstagramFollowersItem, type InstagramFollowingData, type InstagramFollowingInput, type InstagramFollowingItem, type InstagramHashtagAnalyticsData, type InstagramHashtagAnalyticsInput, type InstagramHashtagAnalyticsItem, type InstagramHighlightDetailData, type InstagramHighlightDetailInput, type InstagramMediaTranscriptData, type InstagramMediaTranscriptInput, type InstagramMediaTranscriptTranscript, InstagramNamespace, type InstagramPostCommentsComment, type InstagramPostCommentsData, type InstagramPostCommentsInput, type InstagramPostData, type InstagramPostInput, type InstagramProfileData, type InstagramProfileInput, type InstagramReelTranscriptData, type InstagramReelTranscriptInput, type InstagramReelTranscriptItem, type InstagramReelTranscriptSegment, type InstagramReelsSearchData, type InstagramReelsSearchInput, type InstagramReelsSearchReel, type InstagramSearchData, type InstagramSearchHashtagData, type InstagramSearchHashtagInput, type InstagramSearchHashtagPost, type InstagramSearchInput, type InstagramSearchItem, type InstagramSearchProfilesData, type InstagramSearchProfilesInput, type InstagramSearchProfilesProfile, type InstagramStoriesFullData, type InstagramStoriesFullInput, type InstagramStoriesFullItem, type InstagramStoriesThinData, type InstagramStoriesThinInput, type InstagramStoriesThinItem, type InstagramTaggedPostsData, type InstagramTaggedPostsInput, type InstagramTaggedPostsPost, type InstagramTrendingReelsData, type InstagramTrendingReelsInput, type InstagramTrendingReelsReel, type InstagramUserHighlightsData, type InstagramUserHighlightsHighlight, type InstagramUserHighlightsInput, type InstagramUserPostsData, type InstagramUserPostsInput, type InstagramUserPostsPost, type InstagramUserReelsData, type InstagramUserReelsInput, type InstagramUserReelsReel, InsufficientBalanceError, type LaneHealth, type LinearPricingOffer, type LinkedinAdData, type LinkedinAdInput, type LinkedinAdsData, type LinkedinAdsInput, type LinkedinAdsItem, type LinkedinAdsSearchAd, type LinkedinAdsSearchData, type LinkedinAdsSearchInput, type LinkedinCompanyData, type LinkedinCompanyEmployeesData, type LinkedinCompanyEmployeesInput, type LinkedinCompanyEmployeesItem, type LinkedinCompanyInput, type LinkedinCompanyLocation, type LinkedinCompanyPostsContentAttribute, type LinkedinCompanyPostsData, type LinkedinCompanyPostsInput, type LinkedinCompanyPostsItem, type LinkedinCompanyPostsPostImage, type LinkedinCompanyPostsReaction, type LinkedinCompanyPostsThinData, type LinkedinCompanyPostsThinInput, type LinkedinCompanyPostsThinItem, type LinkedinCompanyThinData, type LinkedinCompanyThinInput, type LinkedinEmailData, type LinkedinEmailEmail, type LinkedinEmailInput, type LinkedinJobsData, type LinkedinJobsInput, type LinkedinJobsItem, type LinkedinJobsThinData, type LinkedinJobsThinInput, type LinkedinJobsThinItem, LinkedinNamespace, type LinkedinPostCommentsData, type LinkedinPostCommentsInput, type LinkedinPostCommentsItem, type LinkedinPostData, type LinkedinPostInput, type LinkedinPostReactionsData, type LinkedinPostReactionsInput, type LinkedinPostReactionsItem, type LinkedinPostTranscriptData, type LinkedinPostTranscriptInput, type LinkedinProfileCertification, type LinkedinProfileCurrentPosition, type LinkedinProfileData, type LinkedinProfileEducation, type LinkedinProfileExperience, type LinkedinProfileHonorsAndAward, type LinkedinProfileInput, type LinkedinProfilePostsFullBreakdown, type LinkedinProfilePostsFullContentAnnotation, type LinkedinProfilePostsFullData, type LinkedinProfilePostsFullImage, type LinkedinProfilePostsFullInput, type LinkedinProfilePostsFullItem, type LinkedinProfilePostsFullRepostImage, type LinkedinProfilePostsThinData, type LinkedinProfilePostsThinImage, type LinkedinProfilePostsThinInput, type LinkedinProfilePostsThinItem, type LinkedinProfilePublication, type LinkedinProfileThinArticle, type LinkedinProfileThinData, type LinkedinProfileThinEducation, type LinkedinProfileThinExperience, type LinkedinProfileThinInput, type LinkedinProfileThinRecentPost, type LinkedinSearchCompaniesData, type LinkedinSearchCompaniesInput, type LinkedinSearchCompaniesItem, type LinkedinSearchPostsData, type LinkedinSearchPostsInput, type LinkedinSearchPostsPost, type LinkedinSearchProfilesCurrentPosition, type LinkedinSearchProfilesData, type LinkedinSearchProfilesEducation, type LinkedinSearchProfilesEmailCurrentPosition, type LinkedinSearchProfilesEmailData, type LinkedinSearchProfilesEmailEducation, type LinkedinSearchProfilesEmailEmail, type LinkedinSearchProfilesEmailExperience, type LinkedinSearchProfilesEmailInput, type LinkedinSearchProfilesEmailItem, type LinkedinSearchProfilesExperience, type LinkedinSearchProfilesInput, type LinkedinSearchProfilesItem, type LinkedinSearchProfilesThinData, type LinkedinSearchProfilesThinInput, type LinkedinSearchProfilesThinItem, type MapsContactsData, type MapsContactsInput, type MapsContactsItem, MapsNamespace, type MapsPlaceData, type MapsPlaceHour, type MapsPlaceInput, type MapsPlaceItem, type MapsReviewsData, type MapsReviewsInput, type MapsReviewsItem, type MapsSearchData, type MapsSearchInput, type MapsSearchItem, NotFoundError, type Output, type Paginator, type PandaexpressLocationsData, type PandaexpressLocationsInput, type PandaexpressLocationsRestaurant, type PandaexpressMenuCategorie, type PandaexpressMenuData, type PandaexpressMenuInput, type PandaexpressMenuItem, PandaexpressNamespace, type PandaexpressNutritionData, type PandaexpressNutritionInput, type PandaexpressNutritionItem, PersonNamespace, type PersonSkipTraceAssociate, type PersonSkipTraceData, type PersonSkipTraceInput, type PersonSkipTraceItem, type PersonSkipTracePreviousAddresse, type PersonSkipTraceRelative, PinterestNamespace, type PinterestSearchData, type PinterestSearchInput, type PinterestSearchItem, PlaystoreNamespace, type PlaystoreReviewsData, type PlaystoreReviewsInput, type PlaystoreReviewsItem, type PolymarketMarketsData, type PolymarketMarketsInput, type PolymarketMarketsItem, type PolymarketMarketsOutcome, PolymarketNamespace, type PricingOffer, RateLimitedError, RealtorNamespace, type RealtorSearchData, type RealtorSearchInput, type RealtorSearchItem, RedditNamespace, type RedditPostCommentsComment, type RedditPostCommentsData, type RedditPostCommentsInput, type RedditPostData, type RedditPostInput, type RedditPostTranscriptData, type RedditPostTranscriptInput, type RedditProfileData, type RedditProfileInput, type RedditSearchData, type RedditSearchInput, type RedditSearchPost, type RedditSubredditDetailsData, type RedditSubredditDetailsInput, type RedditSubredditPostsData, type RedditSubredditPostsInput, type RedditSubredditPostsPost, type RedditSubredditSearchData, type RedditSubredditSearchInput, type RedditSubredditSearchPost, type RedditTrendingPostsData, type RedditTrendingPostsInput, type RedditTrendingPostsPost, type RedditUserCommentsComment, type RedditUserCommentsData, type RedditUserCommentsInput, type RedditUserPostsData, type RedditUserPostsInput, type RedditUserPostsPost, RedfinNamespace, type RedfinSearchData, type RedfinSearchInput, type RedfinSearchItem, RednoteNamespace, type RednoteNoteCommentsComment, type RednoteNoteCommentsData, type RednoteNoteCommentsInput, type RednoteNoteData, type RednoteNoteInput, type RednoteProfileData, type RednoteProfileInput, type RednoteSearchData, type RednoteSearchInput, type RednoteSearchNote, type RednoteSearchUsersData, type RednoteSearchUsersInput, type RednoteSearchUsersUser, type RednoteUserNotesData, type RednoteUserNotesInput, type RednoteUserNotesNote, type RequestOptions, ResultNotFoundError, type RunResult, type SearchOptions, type SecFilingsData, type SecFilingsInput, type SecFilingsItem, SecNamespace, type SemrushKeywordsData, type SemrushKeywordsInput, type SemrushKeywordsItem, type SemrushKeywordsQuestion, type SemrushKeywordsRelatedKeyword, SemrushNamespace, type SemrushOverviewData, type SemrushOverviewInput, type SemrushOverviewItem, type SemrushOverviewTopKeyword, type SeoCompetitorsDomainCompetitor, type SeoCompetitorsDomainData, type SeoCompetitorsDomainInput, type SeoDomainIntersectionData, type SeoDomainIntersectionInput, type SeoDomainIntersectionKeyword, type SeoDomainRankOverviewData, type SeoDomainRankOverviewInput, type SeoKeywordDifficultyData, type SeoKeywordDifficultyDifficultie, type SeoKeywordDifficultyInput, type SeoKeywordIdeasData, type SeoKeywordIdeasIdea, type SeoKeywordIdeasInput, type SeoKeywordOverviewData, type SeoKeywordOverviewInput, type SeoKeywordOverviewKeyword, type SeoKeywordOverviewMonthlySearche, type SeoKeywordSuggestionsData, type SeoKeywordSuggestionsInput, type SeoKeywordSuggestionsSuggestion, type SeoLocalPackData, type SeoLocalPackInput, type SeoLocalPackPlace, SeoNamespace, type SeoRankedKeywordsData, type SeoRankedKeywordsInput, type SeoRankedKeywordsRankedKeyword, type SeoRelatedKeywordsData, type SeoRelatedKeywordsInput, type SeoRelatedKeywordsRelatedKeyword, type SeoSearchIntentData, type SeoSearchIntentInput, type SeoSearchIntentIntent, type SeoSearchVolumeData, type SeoSearchVolumeInput, type SeoSearchVolumeKeyword, type SeoSearchVolumeMonthlySearche, type SkuMap, SnapchatNamespace, type SnapchatProfileData, type SnapchatProfileInput, type SnapchatProfileItem, type SnapchatProfileStorie, type SocialFinderData, type SocialFinderInput, type SocialFinderItem, SocialNamespace, type SpotifyAlbumData, type SpotifyAlbumInput, type SpotifyAlbumTrack, type SpotifyArtistAlbum, type SpotifyArtistData, type SpotifyArtistInput, type SpotifyArtistTopTrack, SpotifyNamespace, type SpotifyPlayCountData, type SpotifyPlayCountInput, type SpotifyPlayCountItem, type SpotifyPodcastData, type SpotifyPodcastEpisodesData, type SpotifyPodcastEpisodesEpisode, type SpotifyPodcastEpisodesInput, type SpotifyPodcastInput, type SpotifySearchAlbum, type SpotifySearchArtist, type SpotifySearchData, type SpotifySearchInput, type SpotifySearchPodcast, type SpotifySearchTrack, type SpotifyTrackData, type SpotifyTrackInput, SubstackNamespace, type SubstackPostsData, type SubstackPostsInput, type SubstackPostsItem, ThreadsNamespace, type ThreadsPostData, type ThreadsPostInput, type ThreadsProfileData, type ThreadsProfileInput, type ThreadsSearchData, type ThreadsSearchInput, type ThreadsSearchPost, type ThreadsSearchUsersData, type ThreadsSearchUsersInput, type ThreadsSearchUsersUser, type ThreadsUserPostsData, type ThreadsUserPostsInput, type ThreadsUserPostsPost, type TiktokAdLibraryAdData, type TiktokAdLibraryAdInput, type TiktokAdLibrarySearchAd, type TiktokAdLibrarySearchData, type TiktokAdLibrarySearchInput, type TiktokAudienceDemographicsAudienceLocation, type TiktokAudienceDemographicsData, type TiktokAudienceDemographicsInput, type TiktokCommentRepliesComment, type TiktokCommentRepliesData, type TiktokCommentRepliesInput, type TiktokFollowersData, type TiktokFollowersFollower, type TiktokFollowersInput, type TiktokFollowingData, type TiktokFollowingFollowing, type TiktokFollowingInput, type TiktokHashtagVideosData, type TiktokHashtagVideosInput, type TiktokHashtagVideosItem, type TiktokLiveData, type TiktokLiveInput, TiktokNamespace, type TiktokProfileData, type TiktokProfileInput, type TiktokProfileRegionData, type TiktokProfileRegionInput, type TiktokProfileVideosData, type TiktokProfileVideosInput, type TiktokProfileVideosVideo, type TiktokSearchHashtagData, type TiktokSearchHashtagInput, type TiktokSearchHashtagVideo, type TiktokSearchKeywordData, type TiktokSearchKeywordInput, type TiktokSearchKeywordVideo, type TiktokSearchTopData, type TiktokSearchTopInput, type TiktokSearchTopItem, type TiktokSearchUsersData, type TiktokSearchUsersInput, type TiktokSearchUsersUser, TiktokShopNamespace, type TiktokShopProductData, type TiktokShopProductInput, type TiktokShopProductReviewsData, type TiktokShopProductReviewsInput, type TiktokShopProductReviewsReview, type TiktokShopSearchData, type TiktokShopSearchInput, type TiktokShopSearchItem, type TiktokShopShopProductsData, type TiktokShopShopProductsInput, type TiktokShopShopProductsProduct, type TiktokShopUserShowcaseData, type TiktokShopUserShowcaseInput, type TiktokShopUserShowcaseProduct, type TiktokSongData, type TiktokSongInput, type TiktokSongVideosData, type TiktokSongVideosInput, type TiktokSongVideosVideo, type TiktokTrendingFeedData, type TiktokTrendingFeedInput, type TiktokTrendingFeedVideo, type TiktokVideoCommentsComment, type TiktokVideoCommentsData, type TiktokVideoCommentsInput, type TiktokVideoData, type TiktokVideoInput, type TiktokVideoTranscriptData, type TiktokVideoTranscriptInput, TimeoutError, TripadvisorNamespace, type TripadvisorReviewsData, type TripadvisorReviewsInput, type TripadvisorReviewsItem, type TripadvisorSearchData, type TripadvisorSearchInput, type TripadvisorSearchItem, TrustpilotNamespace, type TrustpilotReviewsData, type TrustpilotReviewsInput, type TrustpilotReviewsItem, TruthsocialNamespace, type TruthsocialPostData, type TruthsocialPostInput, type TruthsocialProfileData, type TruthsocialProfileInput, type TruthsocialUserPostsData, type TruthsocialUserPostsInput, type TruthsocialUserPostsPost, type TwitterArticleContentBlock, type TwitterArticleData, type TwitterArticleEntitie, type TwitterArticleInlineStyle, type TwitterArticleInput, type TwitterCommunityData, type TwitterCommunityInput, type TwitterCommunityTweetsData, type TwitterCommunityTweetsInput, type TwitterCommunityTweetsTweet, type TwitterFollowersData, type TwitterFollowersInput, type TwitterFollowersItem, type TwitterFollowingData, type TwitterFollowingInput, type TwitterFollowingItem, TwitterNamespace, type TwitterProfileData, type TwitterProfileInput, type TwitterRepliesData, type TwitterRepliesInput, type TwitterRepliesItem, type TwitterSearchData, type TwitterSearchInput, type TwitterSearchItem, type TwitterTrendsData, type TwitterTrendsInput, type TwitterTrendsItem, type TwitterTweetData, type TwitterTweetInput, type TwitterTweetTranscriptData, type TwitterTweetTranscriptInput, type TwitterUserPostsData, type TwitterUserPostsInput, type TwitterUserPostsTweet, type TwitterUserTweetsData, type TwitterUserTweetsInput, type TwitterUserTweetsTweet, UpstreamError, type UpworkJobsData, type UpworkJobsInput, type UpworkJobsItem, UpworkNamespace, WalmartNamespace, type WalmartProductData, type WalmartProductInput, type WalmartProductItem, type WebCrawlData, type WebCrawlInput, type WebCrawlItem, type WebMapData, type WebMapInput, type WebMapResult, WebNamespace, type WebScrapeData, type WebScrapeInput, type WebScreenshotData, type WebScreenshotInput, type WebScreenshotItem, type WeiboHotSearchData, type WeiboHotSearchInput, type WeiboHotSearchTopic, WeiboNamespace, type WeiboPostCommentsComment, type WeiboPostCommentsData, type WeiboPostCommentsInput, type WeiboPostData, type WeiboPostInput, type WeiboProfileData, type WeiboProfileInput, type WeiboSearchData, type WeiboSearchInput, type WeiboSearchPost, type WeiboUserPostsData, type WeiboUserPostsInput, type WeiboUserPostsPost, YahooFinanceNamespace, type YahooFinanceQuoteData, type YahooFinanceQuoteInput, type YahooFinanceQuoteItem, YelpNamespace, type YelpSearchCategorie, type YelpSearchData, type YelpSearchInput, type YelpSearchItem, type YoutubeChannelCommunityPostsData, type YoutubeChannelCommunityPostsInput, type YoutubeChannelCommunityPostsPost, type YoutubeChannelData, type YoutubeChannelInput, type YoutubeChannelLivesData, type YoutubeChannelLivesInput, type YoutubeChannelLivesLive, type YoutubeChannelPlaylistsData, type YoutubeChannelPlaylistsInput, type YoutubeChannelPlaylistsPlaylist, type YoutubeChannelShortsData, type YoutubeChannelShortsInput, type YoutubeChannelShortsShort, type YoutubeChannelVideosData, type YoutubeChannelVideosInput, type YoutubeChannelVideosVideo, type YoutubeCommentRepliesComment, type YoutubeCommentRepliesData, type YoutubeCommentRepliesInput, type YoutubeCommunityPostData, type YoutubeCommunityPostInput, YoutubeNamespace, type YoutubePlaylistData, type YoutubePlaylistInput, type YoutubePlaylistVideo, type YoutubeSearchData, type YoutubeSearchHashtagData, type YoutubeSearchHashtagInput, type YoutubeSearchHashtagVideo, type YoutubeSearchInput, type YoutubeSearchVideo, type YoutubeTrendingShortsData, type YoutubeTrendingShortsInput, type YoutubeTrendingShortsShort, type YoutubeVideoCommentsComment, type YoutubeVideoCommentsData, type YoutubeVideoCommentsInput, type YoutubeVideoData, type YoutubeVideoInput, type YoutubeVideoSponsorsData, type YoutubeVideoSponsorsInput, type YoutubeVideoSponsorsSuspectedSponsor, type YoutubeVideoTranscriptData, type YoutubeVideoTranscriptInput, type ZhihuAnswerData, type ZhihuAnswerInput, ZhihuNamespace, type ZhihuProfileData, type ZhihuProfileInput, type ZhihuQuestionAnswersAnswer, type ZhihuQuestionAnswersData, type ZhihuQuestionAnswersInput, type ZhihuQuestionData, type ZhihuQuestionInput, type ZhihuSearchArticlesArticle, type ZhihuSearchArticlesData, type ZhihuSearchArticlesInput, ZillowNamespace, type ZillowPropertyData, type ZillowPropertyInput, type ZillowPropertyItem, type ZillowSearchData, type ZillowSearchInput, type ZillowSearchItem, agentSignup, paginate, unwrap };
|
|
27466
|
+
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 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 };
|