@getanyapi/sdk 0.16.1 → 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 +386 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +989 -2
- package/dist/index.d.ts +989 -2
- package/dist/index.js +378 -8
- 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).
|
|
@@ -2974,6 +3008,266 @@ declare class CoinmarketcapNamespace {
|
|
|
2974
3008
|
listings(input: CoinmarketcapListingsInput, options?: RequestOptions): Promise<RunResult<CoinmarketcapListingsData>>;
|
|
2975
3009
|
}
|
|
2976
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
|
+
|
|
2977
3271
|
/**
|
|
2978
3272
|
* Input for Congress Stock Trades (congress.trades).
|
|
2979
3273
|
*/
|
|
@@ -4136,7 +4430,264 @@ declare class EmailNamespace {
|
|
|
4136
4430
|
* @example
|
|
4137
4431
|
* const res = await client.email.verify({ email: "patrick@stripe.com" });
|
|
4138
4432
|
*/
|
|
4139
|
-
verify(input: EmailVerifyInput, options?: RequestOptions): Promise<RunResult<EmailVerifyData>>;
|
|
4433
|
+
verify(input: EmailVerifyInput, options?: RequestOptions): Promise<RunResult<EmailVerifyData>>;
|
|
4434
|
+
}
|
|
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>>;
|
|
4140
4691
|
}
|
|
4141
4692
|
|
|
4142
4693
|
/**
|
|
@@ -13579,6 +14130,96 @@ declare class MapsNamespace {
|
|
|
13579
14130
|
search(input: MapsSearchInput, options?: RequestOptions): Promise<RunResult<MapsSearchData>>;
|
|
13580
14131
|
}
|
|
13581
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.
|
|
14176
|
+
*/
|
|
14177
|
+
personalEmail?: string;
|
|
14178
|
+
/**
|
|
14179
|
+
* Format: uri.
|
|
14180
|
+
*/
|
|
14181
|
+
profileUrl?: string;
|
|
14182
|
+
/**
|
|
14183
|
+
* Format: email.
|
|
14184
|
+
*/
|
|
14185
|
+
workEmail?: string;
|
|
14186
|
+
}
|
|
14187
|
+
/**
|
|
14188
|
+
* The `data` payload of Mobile Phone - LeadMagic (mobile_phone.leadmagic).
|
|
14189
|
+
*/
|
|
14190
|
+
interface MobilePhoneLeadmagicData {
|
|
14191
|
+
message?: string;
|
|
14192
|
+
mobile: string;
|
|
14193
|
+
[extra: string]: unknown;
|
|
14194
|
+
}
|
|
14195
|
+
/**
|
|
14196
|
+
* Typed methods for the mobile_phone platform. Attached to the AnyAPI client as
|
|
14197
|
+
* `client.mobilePhone`.
|
|
14198
|
+
*/
|
|
14199
|
+
declare class MobilePhoneNamespace {
|
|
14200
|
+
private readonly _core;
|
|
14201
|
+
constructor(_core: ClientCore);
|
|
14202
|
+
/**
|
|
14203
|
+
* Mobile Phone - AI Ark
|
|
14204
|
+
*
|
|
14205
|
+
* Find a person's mobile phone from a LinkedIn URL or from a domain and full name.
|
|
14206
|
+
*
|
|
14207
|
+
* Price: $0.084 per request.
|
|
14208
|
+
*
|
|
14209
|
+
* @example
|
|
14210
|
+
* const res = await client.mobilePhone.aiArk({ linkedinUrl: "https://www.linkedin.com/in/tim-zheng" });
|
|
14211
|
+
*/
|
|
14212
|
+
aiArk(input: MobilePhoneAiArkInput, options?: RequestOptions): Promise<RunResult<MobilePhoneAiArkData>>;
|
|
14213
|
+
/**
|
|
14214
|
+
* Mobile Phone - LeadMagic
|
|
14215
|
+
*
|
|
14216
|
+
* Find a person's mobile phone from a profile URL or email. No-match responses are not billed.
|
|
14217
|
+
*
|
|
14218
|
+
* Price: $0.2016 per request.
|
|
14219
|
+
*/
|
|
14220
|
+
leadmagic(input: MobilePhoneLeadmagicInput, options?: RequestOptions): Promise<RunResult<MobilePhoneLeadmagicData>>;
|
|
14221
|
+
}
|
|
14222
|
+
|
|
13582
14223
|
/**
|
|
13583
14224
|
* Input for Panda Express Locations (pandaexpress.locations).
|
|
13584
14225
|
*/
|
|
@@ -13779,6 +14420,207 @@ declare class PandaexpressNamespace {
|
|
|
13779
14420
|
nutrition(input: PandaexpressNutritionInput, options?: RequestOptions): Promise<RunResult<PandaexpressNutritionData>>;
|
|
13780
14421
|
}
|
|
13781
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
|
+
|
|
13782
14624
|
/**
|
|
13783
14625
|
* Input for Skip Trace (person.skip_trace).
|
|
13784
14626
|
*/
|
|
@@ -13925,6 +14767,58 @@ declare class PersonNamespace {
|
|
|
13925
14767
|
skipTrace(input: PersonSkipTraceInput, options?: RequestOptions): Promise<RunResult<PersonSkipTraceData>>;
|
|
13926
14768
|
}
|
|
13927
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
|
+
|
|
13928
14822
|
/**
|
|
13929
14823
|
* Input for Pinterest Search (pinterest.search).
|
|
13930
14824
|
*/
|
|
@@ -24937,6 +25831,21 @@ interface SkuMap {
|
|
|
24937
25831
|
data: CoinmarketcapListingsData;
|
|
24938
25832
|
result: RunResult<CoinmarketcapListingsData>;
|
|
24939
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
|
+
};
|
|
24940
25849
|
"congress.trades": {
|
|
24941
25850
|
input: CongressTradesInput;
|
|
24942
25851
|
data: CongressTradesData;
|
|
@@ -24992,6 +25901,31 @@ interface SkuMap {
|
|
|
24992
25901
|
data: EmailVerifyData;
|
|
24993
25902
|
result: RunResult<EmailVerifyData>;
|
|
24994
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
|
+
};
|
|
24995
25929
|
"facebook.ad_details": {
|
|
24996
25930
|
input: FacebookAdDetailsInput;
|
|
24997
25931
|
data: FacebookAdDetailsData;
|
|
@@ -25532,6 +26466,16 @@ interface SkuMap {
|
|
|
25532
26466
|
data: MapsSearchData;
|
|
25533
26467
|
result: RunResult<MapsSearchData>;
|
|
25534
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
|
+
};
|
|
25535
26479
|
"pandaexpress.locations": {
|
|
25536
26480
|
input: PandaexpressLocationsInput;
|
|
25537
26481
|
data: PandaexpressLocationsData;
|
|
@@ -25547,11 +26491,26 @@ interface SkuMap {
|
|
|
25547
26491
|
data: PandaexpressNutritionData;
|
|
25548
26492
|
result: RunResult<PandaexpressNutritionData>;
|
|
25549
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
|
+
};
|
|
25550
26504
|
"person.skip_trace": {
|
|
25551
26505
|
input: PersonSkipTraceInput;
|
|
25552
26506
|
data: PersonSkipTraceData;
|
|
25553
26507
|
result: RunResult<PersonSkipTraceData>;
|
|
25554
26508
|
};
|
|
26509
|
+
"person_enrichment.aviato": {
|
|
26510
|
+
input: PersonEnrichmentAviatoInput;
|
|
26511
|
+
data: PersonEnrichmentAviatoData;
|
|
26512
|
+
result: RunResult<PersonEnrichmentAviatoData>;
|
|
26513
|
+
};
|
|
25555
26514
|
"pinterest.search": {
|
|
25556
26515
|
input: PinterestSearchInput;
|
|
25557
26516
|
data: PinterestSearchData;
|
|
@@ -26274,6 +27233,14 @@ declare class AnyAPI extends AnyAPI$1 {
|
|
|
26274
27233
|
* Typed methods for the coinmarketcap platform.
|
|
26275
27234
|
*/
|
|
26276
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;
|
|
26277
27244
|
/**
|
|
26278
27245
|
* Typed methods for the congress platform.
|
|
26279
27246
|
*/
|
|
@@ -26294,6 +27261,14 @@ declare class AnyAPI extends AnyAPI$1 {
|
|
|
26294
27261
|
* Typed methods for the email platform.
|
|
26295
27262
|
*/
|
|
26296
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;
|
|
26297
27272
|
/**
|
|
26298
27273
|
* Typed methods for the facebook platform.
|
|
26299
27274
|
*/
|
|
@@ -26346,14 +27321,26 @@ declare class AnyAPI extends AnyAPI$1 {
|
|
|
26346
27321
|
* Typed methods for the maps platform.
|
|
26347
27322
|
*/
|
|
26348
27323
|
get maps(): MapsNamespace;
|
|
27324
|
+
/**
|
|
27325
|
+
* Typed methods for the mobile_phone platform.
|
|
27326
|
+
*/
|
|
27327
|
+
get mobilePhone(): MobilePhoneNamespace;
|
|
26349
27328
|
/**
|
|
26350
27329
|
* Typed methods for the pandaexpress platform.
|
|
26351
27330
|
*/
|
|
26352
27331
|
get pandaexpress(): PandaexpressNamespace;
|
|
27332
|
+
/**
|
|
27333
|
+
* Typed methods for the people_search platform.
|
|
27334
|
+
*/
|
|
27335
|
+
get peopleSearch(): PeopleSearchNamespace;
|
|
26353
27336
|
/**
|
|
26354
27337
|
* Typed methods for the person platform.
|
|
26355
27338
|
*/
|
|
26356
27339
|
get person(): PersonNamespace;
|
|
27340
|
+
/**
|
|
27341
|
+
* Typed methods for the person_enrichment platform.
|
|
27342
|
+
*/
|
|
27343
|
+
get personEnrichment(): PersonEnrichmentNamespace;
|
|
26357
27344
|
/**
|
|
26358
27345
|
* Typed methods for the pinterest platform.
|
|
26359
27346
|
*/
|
|
@@ -26476,4 +27463,4 @@ declare class AnyAPI extends AnyAPI$1 {
|
|
|
26476
27463
|
get zillow(): ZillowNamespace;
|
|
26477
27464
|
}
|
|
26478
27465
|
|
|
26479
|
-
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 };
|