@getanyapi/sdk 0.16.1 → 0.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +408 -11
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1238 -155
- package/dist/index.d.ts +1238 -155
- package/dist/index.js +400 -11
- 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
|
*/
|
|
@@ -4140,92 +4434,355 @@ declare class EmailNamespace {
|
|
|
4140
4434
|
}
|
|
4141
4435
|
|
|
4142
4436
|
/**
|
|
4143
|
-
* Input for
|
|
4437
|
+
* Input for Email Finding - DropLeads (email_finding.dropleads).
|
|
4144
4438
|
*/
|
|
4145
|
-
interface
|
|
4146
|
-
/**
|
|
4147
|
-
* Meta Ad Library ad ID (e.g. "702369045530963"). Provide either id or url.
|
|
4148
|
-
*/
|
|
4149
|
-
id?: string;
|
|
4439
|
+
interface EmailFindingDropleadsInput {
|
|
4150
4440
|
/**
|
|
4151
|
-
*
|
|
4441
|
+
* Company domain without a path.
|
|
4152
4442
|
*/
|
|
4153
|
-
|
|
4154
|
-
}
|
|
4155
|
-
/**
|
|
4156
|
-
* The `data` payload of Facebook Ad Details (facebook.ad_details).
|
|
4157
|
-
*/
|
|
4158
|
-
interface FacebookAdDetailsData {
|
|
4443
|
+
companyDomain?: string;
|
|
4159
4444
|
/**
|
|
4160
|
-
*
|
|
4445
|
+
* Company name when the domain is unavailable.
|
|
4161
4446
|
*/
|
|
4162
|
-
|
|
4447
|
+
companyName?: string;
|
|
4163
4448
|
/**
|
|
4164
|
-
*
|
|
4449
|
+
* Person's first name.
|
|
4165
4450
|
*/
|
|
4166
|
-
|
|
4451
|
+
firstName: string;
|
|
4167
4452
|
/**
|
|
4168
|
-
*
|
|
4169
|
-
* Present whenever the upstream returns this record.
|
|
4453
|
+
* Person's last name.
|
|
4170
4454
|
*/
|
|
4171
|
-
|
|
4455
|
+
lastName: string;
|
|
4456
|
+
}
|
|
4457
|
+
/**
|
|
4458
|
+
* The `data` payload of Email Finding - DropLeads (email_finding.dropleads).
|
|
4459
|
+
*/
|
|
4460
|
+
interface EmailFindingDropleadsData {
|
|
4172
4461
|
/**
|
|
4173
|
-
*
|
|
4462
|
+
* Matched company domain.
|
|
4174
4463
|
*/
|
|
4175
|
-
|
|
4464
|
+
companyDomain?: string;
|
|
4176
4465
|
/**
|
|
4177
|
-
*
|
|
4178
|
-
* Present whenever the upstream returns this record.
|
|
4466
|
+
* Matched company name.
|
|
4179
4467
|
*/
|
|
4180
|
-
|
|
4468
|
+
companyName?: string;
|
|
4181
4469
|
/**
|
|
4182
|
-
*
|
|
4470
|
+
* Company size when available.
|
|
4183
4471
|
*/
|
|
4184
|
-
|
|
4472
|
+
companySize?: unknown;
|
|
4185
4473
|
/**
|
|
4186
|
-
*
|
|
4187
|
-
*
|
|
4474
|
+
* Matched email address.
|
|
4475
|
+
* Format: email.
|
|
4188
4476
|
*/
|
|
4189
|
-
|
|
4477
|
+
email: string;
|
|
4190
4478
|
/**
|
|
4191
|
-
*
|
|
4479
|
+
* Matched first name.
|
|
4192
4480
|
*/
|
|
4193
|
-
|
|
4481
|
+
firstName?: string;
|
|
4194
4482
|
/**
|
|
4195
|
-
*
|
|
4196
|
-
* Present whenever the upstream returns this record.
|
|
4483
|
+
* Company industry when available.
|
|
4197
4484
|
*/
|
|
4198
|
-
|
|
4485
|
+
industry?: string;
|
|
4199
4486
|
/**
|
|
4200
|
-
*
|
|
4201
|
-
* Present whenever the upstream returns this record.
|
|
4487
|
+
* Matched last name.
|
|
4202
4488
|
*/
|
|
4203
|
-
|
|
4489
|
+
lastName?: string;
|
|
4204
4490
|
/**
|
|
4205
|
-
*
|
|
4206
|
-
* Present whenever the upstream returns this record.
|
|
4491
|
+
* Detected mail provider.
|
|
4207
4492
|
*/
|
|
4208
|
-
|
|
4493
|
+
mxProvider?: string;
|
|
4209
4494
|
/**
|
|
4210
|
-
*
|
|
4211
|
-
* Present whenever the upstream returns this record.
|
|
4495
|
+
* Selected mail exchange record.
|
|
4212
4496
|
*/
|
|
4213
|
-
|
|
4497
|
+
mxRecord?: string;
|
|
4214
4498
|
/**
|
|
4215
|
-
*
|
|
4216
|
-
* Present whenever the upstream returns this record.
|
|
4499
|
+
* Source validation status for the matched email.
|
|
4217
4500
|
*/
|
|
4218
|
-
|
|
4501
|
+
status: string;
|
|
4219
4502
|
[extra: string]: unknown;
|
|
4220
4503
|
}
|
|
4221
4504
|
/**
|
|
4222
|
-
* Input for
|
|
4505
|
+
* Input for Email Finding - Icypeas (email_finding.icypeas).
|
|
4223
4506
|
*/
|
|
4224
|
-
interface
|
|
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;
|
|
4225
4517
|
/**
|
|
4226
|
-
*
|
|
4518
|
+
* Format: email.
|
|
4227
4519
|
*/
|
|
4228
|
-
|
|
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
|
+
* @example
|
|
4554
|
+
* const res = await client.emailFinding.icypeas({ domainOrCompany: "apollo.io", firstname: "Tim", lastname: "Zheng" });
|
|
4555
|
+
*/
|
|
4556
|
+
icypeas(input: EmailFindingIcypeasInput, options?: RequestOptions): Promise<RunResult<EmailFindingIcypeasData>>;
|
|
4557
|
+
}
|
|
4558
|
+
|
|
4559
|
+
/**
|
|
4560
|
+
* Input for Email Verification - Allegrow (email_verification.allegrow).
|
|
4561
|
+
*/
|
|
4562
|
+
interface EmailVerificationAllegrowInput {
|
|
4563
|
+
/**
|
|
4564
|
+
* Email address to validate.
|
|
4565
|
+
* Format: email.
|
|
4566
|
+
*/
|
|
4567
|
+
email: string;
|
|
4568
|
+
}
|
|
4569
|
+
/**
|
|
4570
|
+
* The `data` payload of Email Verification - Allegrow (email_verification.allegrow).
|
|
4571
|
+
*/
|
|
4572
|
+
interface EmailVerificationAllegrowData {
|
|
4573
|
+
/**
|
|
4574
|
+
* Email domain.
|
|
4575
|
+
*/
|
|
4576
|
+
domain?: string;
|
|
4577
|
+
/**
|
|
4578
|
+
* Validated email address.
|
|
4579
|
+
* Format: email.
|
|
4580
|
+
*/
|
|
4581
|
+
email: string;
|
|
4582
|
+
/**
|
|
4583
|
+
* Whether the domain accepts mail for arbitrary recipients.
|
|
4584
|
+
*/
|
|
4585
|
+
isCatchAll?: boolean;
|
|
4586
|
+
/**
|
|
4587
|
+
* Whether the mailbox appears to be a role account.
|
|
4588
|
+
*/
|
|
4589
|
+
isRoleAccount?: boolean;
|
|
4590
|
+
/**
|
|
4591
|
+
* Detected mail provider.
|
|
4592
|
+
*/
|
|
4593
|
+
mxProvider?: string;
|
|
4594
|
+
/**
|
|
4595
|
+
* Deliverability verdict; negative verdicts are successful billable results.
|
|
4596
|
+
* One of: safe, do_not_mail_abuse, some_risk, block_bounce_risk, dead_email, spamtrap, more_time_required, missing_email.
|
|
4597
|
+
*/
|
|
4598
|
+
status: "safe" | "do_not_mail_abuse" | "some_risk" | "block_bounce_risk" | "dead_email" | "spamtrap" | "more_time_required" | "missing_email";
|
|
4599
|
+
/**
|
|
4600
|
+
* More specific validation result when available.
|
|
4601
|
+
*/
|
|
4602
|
+
subStatus?: string;
|
|
4603
|
+
/**
|
|
4604
|
+
* UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
|
|
4605
|
+
*/
|
|
4606
|
+
validatedUtc?: number;
|
|
4607
|
+
[extra: string]: unknown;
|
|
4608
|
+
}
|
|
4609
|
+
/**
|
|
4610
|
+
* Input for Email Verification - BounceBan (email_verification.bounceban).
|
|
4611
|
+
*/
|
|
4612
|
+
interface EmailVerificationBouncebanInput {
|
|
4613
|
+
disableCatchallVerify?: boolean;
|
|
4614
|
+
/**
|
|
4615
|
+
* Format: email.
|
|
4616
|
+
*/
|
|
4617
|
+
email: string;
|
|
4618
|
+
/**
|
|
4619
|
+
* One of: regular, deepverify.
|
|
4620
|
+
*/
|
|
4621
|
+
mode?: "regular" | "deepverify";
|
|
4622
|
+
}
|
|
4623
|
+
/**
|
|
4624
|
+
* The `data` payload of Email Verification - BounceBan (email_verification.bounceban).
|
|
4625
|
+
*/
|
|
4626
|
+
interface EmailVerificationBouncebanData {
|
|
4627
|
+
email: string;
|
|
4628
|
+
isCatchAll?: boolean;
|
|
4629
|
+
isDisposable?: boolean;
|
|
4630
|
+
isFree?: boolean;
|
|
4631
|
+
isRole?: boolean;
|
|
4632
|
+
mode?: string;
|
|
4633
|
+
mxRecords?: string[];
|
|
4634
|
+
reason?: string;
|
|
4635
|
+
/**
|
|
4636
|
+
* Deliverability verdict; negative verdicts are successful results.
|
|
4637
|
+
*/
|
|
4638
|
+
result: string;
|
|
4639
|
+
score?: number;
|
|
4640
|
+
smtpProvider?: string;
|
|
4641
|
+
verifiedAt?: string;
|
|
4642
|
+
[extra: string]: unknown;
|
|
4643
|
+
}
|
|
4644
|
+
/**
|
|
4645
|
+
* Input for Email Verification - Icypeas (email_verification.icypeas).
|
|
4646
|
+
*/
|
|
4647
|
+
interface EmailVerificationIcypeasInput {
|
|
4648
|
+
/**
|
|
4649
|
+
* Format: email.
|
|
4650
|
+
*/
|
|
4651
|
+
email: string;
|
|
4652
|
+
}
|
|
4653
|
+
/**
|
|
4654
|
+
* The `data` payload of Email Verification - Icypeas (email_verification.icypeas).
|
|
4655
|
+
*/
|
|
4656
|
+
interface EmailVerificationIcypeasData {
|
|
4657
|
+
status: string;
|
|
4658
|
+
[extra: string]: unknown;
|
|
4659
|
+
}
|
|
4660
|
+
/**
|
|
4661
|
+
* Typed methods for the email_verification platform. Attached to the AnyAPI client as
|
|
4662
|
+
* `client.emailVerification`.
|
|
4663
|
+
*/
|
|
4664
|
+
declare class EmailVerificationNamespace {
|
|
4665
|
+
private readonly _core;
|
|
4666
|
+
constructor(_core: ClientCore);
|
|
4667
|
+
/**
|
|
4668
|
+
* Email Verification - Allegrow
|
|
4669
|
+
*
|
|
4670
|
+
* Validate an email address and return its deliverability verdict and mailbox signals.
|
|
4671
|
+
*
|
|
4672
|
+
* Price: $0.0144 per request.
|
|
4673
|
+
*
|
|
4674
|
+
* @example
|
|
4675
|
+
* const res = await client.emailVerification.allegrow({ email: "tim@apollo.io" });
|
|
4676
|
+
*/
|
|
4677
|
+
allegrow(input: EmailVerificationAllegrowInput, options?: RequestOptions): Promise<RunResult<EmailVerificationAllegrowData>>;
|
|
4678
|
+
/**
|
|
4679
|
+
* Email Verification - BounceBan
|
|
4680
|
+
*
|
|
4681
|
+
* Verify an email address, including catch-all handling. Completion uses the durable Request lifecycle; a negative verdict is a successful result.
|
|
4682
|
+
*
|
|
4683
|
+
* Price: $0.0072 per request.
|
|
4684
|
+
*
|
|
4685
|
+
* @example
|
|
4686
|
+
* const res = await client.emailVerification.bounceban({ email: "tim@apollo.io", mode: "regular" });
|
|
4687
|
+
*/
|
|
4688
|
+
bounceban(input: EmailVerificationBouncebanInput, options?: RequestOptions): Promise<RunResult<EmailVerificationBouncebanData>>;
|
|
4689
|
+
/**
|
|
4690
|
+
* Email Verification - Icypeas
|
|
4691
|
+
*
|
|
4692
|
+
* Verify an email address. A valid negative verdict is a successful, billable result.
|
|
4693
|
+
*
|
|
4694
|
+
* Price: $0.0024 per request.
|
|
4695
|
+
*/
|
|
4696
|
+
icypeas(input: EmailVerificationIcypeasInput, options?: RequestOptions): Promise<RunResult<EmailVerificationIcypeasData>>;
|
|
4697
|
+
}
|
|
4698
|
+
|
|
4699
|
+
/**
|
|
4700
|
+
* Input for Facebook Ad Details (facebook.ad_details).
|
|
4701
|
+
*/
|
|
4702
|
+
interface FacebookAdDetailsInput {
|
|
4703
|
+
/**
|
|
4704
|
+
* Meta Ad Library ad ID (e.g. "702369045530963"). Provide either id or url.
|
|
4705
|
+
*/
|
|
4706
|
+
id?: string;
|
|
4707
|
+
/**
|
|
4708
|
+
* Meta Ad Library ad URL (e.g. "https://www.facebook.com/ads/library?id=1185617869915074"). Provide either id or url.
|
|
4709
|
+
*/
|
|
4710
|
+
url?: string;
|
|
4711
|
+
}
|
|
4712
|
+
/**
|
|
4713
|
+
* The `data` payload of Facebook Ad Details (facebook.ad_details).
|
|
4714
|
+
*/
|
|
4715
|
+
interface FacebookAdDetailsData {
|
|
4716
|
+
/**
|
|
4717
|
+
* Whether the ad is currently running.
|
|
4718
|
+
*/
|
|
4719
|
+
active?: boolean | null;
|
|
4720
|
+
/**
|
|
4721
|
+
* Ad Library archive ID (stable identity). Populated whenever the provider has data for the entity.
|
|
4722
|
+
*/
|
|
4723
|
+
adArchiveId: string;
|
|
4724
|
+
/**
|
|
4725
|
+
* Call-to-action label. Populated whenever the provider has data for the entity.
|
|
4726
|
+
* Present whenever the upstream returns this record.
|
|
4727
|
+
*/
|
|
4728
|
+
ctaText?: string | null;
|
|
4729
|
+
/**
|
|
4730
|
+
* Spend currency, may be empty.
|
|
4731
|
+
*/
|
|
4732
|
+
currency?: string | null;
|
|
4733
|
+
/**
|
|
4734
|
+
* Ad creative format. Populated whenever the provider has data for the entity.
|
|
4735
|
+
* Present whenever the upstream returns this record.
|
|
4736
|
+
*/
|
|
4737
|
+
displayFormat?: string | null;
|
|
4738
|
+
/**
|
|
4739
|
+
* Run end, epoch seconds.
|
|
4740
|
+
*/
|
|
4741
|
+
endDate?: number | null;
|
|
4742
|
+
/**
|
|
4743
|
+
* Creative destination URL. Populated whenever the provider has data for the entity.
|
|
4744
|
+
* Present whenever the upstream returns this record.
|
|
4745
|
+
*/
|
|
4746
|
+
linkUrl?: string | null;
|
|
4747
|
+
/**
|
|
4748
|
+
* Advertiser page ID (stable identity). Populated whenever the provider has data for the entity.
|
|
4749
|
+
*/
|
|
4750
|
+
pageId: string;
|
|
4751
|
+
/**
|
|
4752
|
+
* Advertiser page name. Populated whenever the provider has data for the entity.
|
|
4753
|
+
* Present whenever the upstream returns this record.
|
|
4754
|
+
*/
|
|
4755
|
+
pageName?: string | null;
|
|
4756
|
+
/**
|
|
4757
|
+
* Publisher platforms the ad runs on. Populated whenever the provider has data for the entity.
|
|
4758
|
+
* Present whenever the upstream returns this record.
|
|
4759
|
+
*/
|
|
4760
|
+
platforms?: string[] | null;
|
|
4761
|
+
/**
|
|
4762
|
+
* Run start, epoch seconds. Populated whenever the provider has data for the entity.
|
|
4763
|
+
* Present whenever the upstream returns this record.
|
|
4764
|
+
*/
|
|
4765
|
+
startDate?: number | null;
|
|
4766
|
+
/**
|
|
4767
|
+
* Ad body text. Populated whenever the provider has data for the entity.
|
|
4768
|
+
* Present whenever the upstream returns this record.
|
|
4769
|
+
*/
|
|
4770
|
+
text?: string | null;
|
|
4771
|
+
/**
|
|
4772
|
+
* Creative title. Populated whenever the provider has data for the entity.
|
|
4773
|
+
* Present whenever the upstream returns this record.
|
|
4774
|
+
*/
|
|
4775
|
+
title?: string | null;
|
|
4776
|
+
[extra: string]: unknown;
|
|
4777
|
+
}
|
|
4778
|
+
/**
|
|
4779
|
+
* Input for Facebook Ad Transcript (facebook.ad_transcript).
|
|
4780
|
+
*/
|
|
4781
|
+
interface FacebookAdTranscriptInput {
|
|
4782
|
+
/**
|
|
4783
|
+
* Meta Ad Library ad ID (e.g. "1020359190509080"). Provide either id or url.
|
|
4784
|
+
*/
|
|
4785
|
+
id?: string;
|
|
4229
4786
|
/**
|
|
4230
4787
|
* Meta Ad Library ad URL (e.g. "https://www.facebook.com/ads/library?id=1020359190509080"). Provide either id or url.
|
|
4231
4788
|
*/
|
|
@@ -13579,6 +14136,96 @@ declare class MapsNamespace {
|
|
|
13579
14136
|
search(input: MapsSearchInput, options?: RequestOptions): Promise<RunResult<MapsSearchData>>;
|
|
13580
14137
|
}
|
|
13581
14138
|
|
|
14139
|
+
/**
|
|
14140
|
+
* Input for Mobile Phone - AI Ark (mobile_phone.ai_ark).
|
|
14141
|
+
*/
|
|
14142
|
+
interface MobilePhoneAiArkInput {
|
|
14143
|
+
/**
|
|
14144
|
+
* Person's company domain.
|
|
14145
|
+
*/
|
|
14146
|
+
domain?: string;
|
|
14147
|
+
/**
|
|
14148
|
+
* Person's full name.
|
|
14149
|
+
*/
|
|
14150
|
+
fullName?: string;
|
|
14151
|
+
/**
|
|
14152
|
+
* Person's LinkedIn profile URL.
|
|
14153
|
+
* Format: uri.
|
|
14154
|
+
*/
|
|
14155
|
+
linkedinUrl?: string;
|
|
14156
|
+
}
|
|
14157
|
+
/**
|
|
14158
|
+
* The `data` payload of Mobile Phone - AI Ark (mobile_phone.ai_ark).
|
|
14159
|
+
*/
|
|
14160
|
+
interface MobilePhoneAiArkData {
|
|
14161
|
+
/**
|
|
14162
|
+
* Canonical LinkedIn profile URL returned with the match.
|
|
14163
|
+
* Format: uri.
|
|
14164
|
+
*/
|
|
14165
|
+
linkedinUrl?: string;
|
|
14166
|
+
/**
|
|
14167
|
+
* Matched mobile phone number.
|
|
14168
|
+
*/
|
|
14169
|
+
phone: string;
|
|
14170
|
+
[extra: string]: unknown;
|
|
14171
|
+
}
|
|
14172
|
+
/**
|
|
14173
|
+
* Input for Mobile Phone - LeadMagic (mobile_phone.leadmagic).
|
|
14174
|
+
*/
|
|
14175
|
+
interface MobilePhoneLeadmagicInput {
|
|
14176
|
+
/**
|
|
14177
|
+
* Format: email.
|
|
14178
|
+
*/
|
|
14179
|
+
email?: string;
|
|
14180
|
+
/**
|
|
14181
|
+
* Format: email.
|
|
14182
|
+
*/
|
|
14183
|
+
personalEmail?: string;
|
|
14184
|
+
/**
|
|
14185
|
+
* Format: uri.
|
|
14186
|
+
*/
|
|
14187
|
+
profileUrl?: string;
|
|
14188
|
+
/**
|
|
14189
|
+
* Format: email.
|
|
14190
|
+
*/
|
|
14191
|
+
workEmail?: string;
|
|
14192
|
+
}
|
|
14193
|
+
/**
|
|
14194
|
+
* The `data` payload of Mobile Phone - LeadMagic (mobile_phone.leadmagic).
|
|
14195
|
+
*/
|
|
14196
|
+
interface MobilePhoneLeadmagicData {
|
|
14197
|
+
message?: string;
|
|
14198
|
+
mobile: string;
|
|
14199
|
+
[extra: string]: unknown;
|
|
14200
|
+
}
|
|
14201
|
+
/**
|
|
14202
|
+
* Typed methods for the mobile_phone platform. Attached to the AnyAPI client as
|
|
14203
|
+
* `client.mobilePhone`.
|
|
14204
|
+
*/
|
|
14205
|
+
declare class MobilePhoneNamespace {
|
|
14206
|
+
private readonly _core;
|
|
14207
|
+
constructor(_core: ClientCore);
|
|
14208
|
+
/**
|
|
14209
|
+
* Mobile Phone - AI Ark
|
|
14210
|
+
*
|
|
14211
|
+
* Find a person's mobile phone from a LinkedIn URL or from a domain and full name.
|
|
14212
|
+
*
|
|
14213
|
+
* Price: $0.084 per request.
|
|
14214
|
+
*
|
|
14215
|
+
* @example
|
|
14216
|
+
* const res = await client.mobilePhone.aiArk({ linkedinUrl: "https://www.linkedin.com/in/tim-zheng" });
|
|
14217
|
+
*/
|
|
14218
|
+
aiArk(input: MobilePhoneAiArkInput, options?: RequestOptions): Promise<RunResult<MobilePhoneAiArkData>>;
|
|
14219
|
+
/**
|
|
14220
|
+
* Mobile Phone - LeadMagic
|
|
14221
|
+
*
|
|
14222
|
+
* Find a person's mobile phone from a profile URL or email. No-match responses are not billed.
|
|
14223
|
+
*
|
|
14224
|
+
* Price: $0.2016 per request.
|
|
14225
|
+
*/
|
|
14226
|
+
leadmagic(input: MobilePhoneLeadmagicInput, options?: RequestOptions): Promise<RunResult<MobilePhoneLeadmagicData>>;
|
|
14227
|
+
}
|
|
14228
|
+
|
|
13582
14229
|
/**
|
|
13583
14230
|
* Input for Panda Express Locations (pandaexpress.locations).
|
|
13584
14231
|
*/
|
|
@@ -13617,166 +14264,367 @@ interface PandaexpressLocationsRestaurant {
|
|
|
13617
14264
|
city: string;
|
|
13618
14265
|
distanceMiles: number;
|
|
13619
14266
|
/**
|
|
13620
|
-
* Populated whenever the provider has data for the entity.
|
|
14267
|
+
* Populated whenever the provider has data for the entity.
|
|
14268
|
+
*/
|
|
14269
|
+
id: number;
|
|
14270
|
+
isOpen: boolean;
|
|
14271
|
+
/**
|
|
14272
|
+
* Populated whenever the provider has data for the entity.
|
|
14273
|
+
*/
|
|
14274
|
+
latitude: number;
|
|
14275
|
+
/**
|
|
14276
|
+
* Populated whenever the provider has data for the entity.
|
|
14277
|
+
*/
|
|
14278
|
+
longitude: number;
|
|
14279
|
+
/**
|
|
14280
|
+
* Populated whenever the provider has data for the entity.
|
|
14281
|
+
*/
|
|
14282
|
+
name: string;
|
|
14283
|
+
/**
|
|
14284
|
+
* Populated whenever the provider has data for the entity.
|
|
14285
|
+
*/
|
|
14286
|
+
phone: string;
|
|
14287
|
+
/**
|
|
14288
|
+
* Populated whenever the provider has data for the entity.
|
|
14289
|
+
*/
|
|
14290
|
+
state: string;
|
|
14291
|
+
/**
|
|
14292
|
+
* Populated whenever the provider has data for the entity.
|
|
14293
|
+
*/
|
|
14294
|
+
zip: string;
|
|
14295
|
+
[extra: string]: unknown;
|
|
14296
|
+
}
|
|
14297
|
+
/**
|
|
14298
|
+
* The `data` payload of Panda Express Locations (pandaexpress.locations).
|
|
14299
|
+
*/
|
|
14300
|
+
interface PandaexpressLocationsData {
|
|
14301
|
+
/**
|
|
14302
|
+
* Nearby Panda Express restaurants, nearest first. Populated whenever the provider has data for the entity.
|
|
14303
|
+
*/
|
|
14304
|
+
restaurants: PandaexpressLocationsRestaurant[];
|
|
14305
|
+
}
|
|
14306
|
+
/**
|
|
14307
|
+
* Input for Panda Express Menu (pandaexpress.menu).
|
|
14308
|
+
*/
|
|
14309
|
+
interface PandaexpressMenuInput {
|
|
14310
|
+
/**
|
|
14311
|
+
* Panda Express restaurant id (the `id` from Panda Express Locations).
|
|
14312
|
+
*/
|
|
14313
|
+
restaurantId: string;
|
|
14314
|
+
}
|
|
14315
|
+
/**
|
|
14316
|
+
* Populated whenever the provider has data for the entity.
|
|
14317
|
+
*/
|
|
14318
|
+
interface PandaexpressMenuCategorie {
|
|
14319
|
+
items: PandaexpressMenuItem[];
|
|
14320
|
+
/**
|
|
14321
|
+
* Populated whenever the provider has data for the entity.
|
|
14322
|
+
*/
|
|
14323
|
+
name: string;
|
|
14324
|
+
[extra: string]: unknown;
|
|
14325
|
+
}
|
|
14326
|
+
interface PandaexpressMenuItem {
|
|
14327
|
+
/**
|
|
14328
|
+
* Base calories when published by the restaurant, else 0.
|
|
14329
|
+
*/
|
|
14330
|
+
calories: number;
|
|
14331
|
+
/**
|
|
14332
|
+
* Populated whenever the provider has data for the entity.
|
|
14333
|
+
*/
|
|
14334
|
+
description: string;
|
|
14335
|
+
name: string;
|
|
14336
|
+
/**
|
|
14337
|
+
* Item price in USD (0 for items priced only via size/option selection).
|
|
14338
|
+
*/
|
|
14339
|
+
priceUsd: number;
|
|
14340
|
+
[extra: string]: unknown;
|
|
14341
|
+
}
|
|
14342
|
+
/**
|
|
14343
|
+
* The `data` payload of Panda Express Menu (pandaexpress.menu).
|
|
14344
|
+
*/
|
|
14345
|
+
interface PandaexpressMenuData {
|
|
14346
|
+
/**
|
|
14347
|
+
* Menu categories in display order. Populated whenever the provider has data for the entity.
|
|
14348
|
+
*/
|
|
14349
|
+
categories: PandaexpressMenuCategorie[];
|
|
14350
|
+
}
|
|
14351
|
+
/**
|
|
14352
|
+
* Input for Panda Express Nutrition (pandaexpress.nutrition).
|
|
14353
|
+
*/
|
|
14354
|
+
interface PandaexpressNutritionInput {
|
|
14355
|
+
/**
|
|
14356
|
+
* Menu item name (or substring) to look up, e.g. "orange chicken" or "chow mein".
|
|
14357
|
+
*/
|
|
14358
|
+
query: string;
|
|
14359
|
+
}
|
|
14360
|
+
interface PandaexpressNutritionItem {
|
|
14361
|
+
calories: number;
|
|
14362
|
+
cholesterolMg: number;
|
|
14363
|
+
dietaryFiberG: number;
|
|
14364
|
+
/**
|
|
14365
|
+
* Populated whenever the provider has data for the entity.
|
|
14366
|
+
*/
|
|
14367
|
+
name: string;
|
|
14368
|
+
proteinG: number;
|
|
14369
|
+
saturatedFatG: number;
|
|
14370
|
+
servingSizeOz: number;
|
|
14371
|
+
sodiumMg: number;
|
|
14372
|
+
sugarsG: number;
|
|
14373
|
+
totalCarbG: number;
|
|
14374
|
+
totalFatG: number;
|
|
14375
|
+
transFatG: number;
|
|
14376
|
+
[extra: string]: unknown;
|
|
14377
|
+
}
|
|
14378
|
+
/**
|
|
14379
|
+
* The `data` payload of Panda Express Nutrition (pandaexpress.nutrition).
|
|
14380
|
+
*/
|
|
14381
|
+
interface PandaexpressNutritionData {
|
|
14382
|
+
/**
|
|
14383
|
+
* Matching menu items with official nutrition facts. Populated whenever the provider has data for the entity.
|
|
14384
|
+
*/
|
|
14385
|
+
items: PandaexpressNutritionItem[];
|
|
14386
|
+
}
|
|
14387
|
+
/**
|
|
14388
|
+
* Typed methods for the pandaexpress platform. Attached to the AnyAPI client as
|
|
14389
|
+
* `client.pandaexpress`.
|
|
14390
|
+
*/
|
|
14391
|
+
declare class PandaexpressNamespace {
|
|
14392
|
+
private readonly _core;
|
|
14393
|
+
constructor(_core: ClientCore);
|
|
14394
|
+
/**
|
|
14395
|
+
* Panda Express Locations
|
|
14396
|
+
*
|
|
14397
|
+
* Find Panda Express restaurants near a latitude/longitude, sorted by distance, with address, phone, hours availability, and pickup/delivery support.
|
|
14398
|
+
*
|
|
14399
|
+
* Price: $0.0009 per request.
|
|
14400
|
+
*
|
|
14401
|
+
* @example
|
|
14402
|
+
* const res = await client.pandaexpress.locations({ latitude: 34.0522, longitude: -118.2437, limit: 5 });
|
|
14403
|
+
*/
|
|
14404
|
+
locations(input: PandaexpressLocationsInput, options?: RequestOptions): Promise<RunResult<PandaexpressLocationsData>>;
|
|
14405
|
+
/**
|
|
14406
|
+
* Panda Express Menu
|
|
14407
|
+
*
|
|
14408
|
+
* Get the live menu for a Panda Express restaurant by id: categories with item names, descriptions, and USD prices. Pair with Panda Express Locations to resolve a restaurant id.
|
|
14409
|
+
*
|
|
14410
|
+
* Price: $0.0009 per request.
|
|
14411
|
+
*
|
|
14412
|
+
* @example
|
|
14413
|
+
* const res = await client.pandaexpress.menu({ restaurantId: "112551" });
|
|
14414
|
+
*/
|
|
14415
|
+
menu(input: PandaexpressMenuInput, options?: RequestOptions): Promise<RunResult<PandaexpressMenuData>>;
|
|
14416
|
+
/**
|
|
14417
|
+
* Panda Express Nutrition
|
|
14418
|
+
*
|
|
14419
|
+
* Look up official Panda Express nutrition facts by item name: serving size, calories, fat, cholesterol, sodium, carbs, fiber, sugars, and protein.
|
|
14420
|
+
*
|
|
14421
|
+
* Price: $0.006 per request.
|
|
14422
|
+
*
|
|
14423
|
+
* @example
|
|
14424
|
+
* const res = await client.pandaexpress.nutrition({ query: "orange chicken" });
|
|
14425
|
+
*/
|
|
14426
|
+
nutrition(input: PandaexpressNutritionInput, options?: RequestOptions): Promise<RunResult<PandaexpressNutritionData>>;
|
|
14427
|
+
}
|
|
14428
|
+
|
|
14429
|
+
/**
|
|
14430
|
+
* Input for People Search - AI Ark (people_search.ai_ark).
|
|
14431
|
+
*/
|
|
14432
|
+
interface PeopleSearchAiArkInput {
|
|
14433
|
+
/**
|
|
14434
|
+
* AI Ark account filter expression. Nested generic any/all filter objects are accepted as documented by the source and are not further constrained.
|
|
14435
|
+
*/
|
|
14436
|
+
account?: {};
|
|
14437
|
+
/**
|
|
14438
|
+
* AI Ark contact filter expression. Nested generic any/all filter objects are accepted as documented by the source and are not further constrained.
|
|
14439
|
+
*/
|
|
14440
|
+
contact?: {};
|
|
14441
|
+
/**
|
|
14442
|
+
* AI Ark saved-list filter expression.
|
|
14443
|
+
*/
|
|
14444
|
+
lists?: {};
|
|
14445
|
+
/**
|
|
14446
|
+
* Zero-based result page.
|
|
14447
|
+
* Range: minimum 0.
|
|
14448
|
+
* Default: 0.
|
|
14449
|
+
*/
|
|
14450
|
+
page?: number;
|
|
14451
|
+
/**
|
|
14452
|
+
* Maximum people to return on this page.
|
|
14453
|
+
* Range: minimum 1, maximum 100.
|
|
14454
|
+
* Default: 10.
|
|
14455
|
+
*/
|
|
14456
|
+
size?: number;
|
|
14457
|
+
}
|
|
14458
|
+
interface PeopleSearchAiArkPeople {
|
|
14459
|
+
/**
|
|
14460
|
+
* Location city.
|
|
14461
|
+
*/
|
|
14462
|
+
city?: string;
|
|
14463
|
+
/**
|
|
14464
|
+
* Current company domain.
|
|
14465
|
+
*/
|
|
14466
|
+
companyDomain?: string;
|
|
14467
|
+
/**
|
|
14468
|
+
* Estimated employees at the current company.
|
|
14469
|
+
* Range: minimum 0.
|
|
14470
|
+
*/
|
|
14471
|
+
companyEmployeeCount?: number;
|
|
14472
|
+
/**
|
|
14473
|
+
* Current company's primary industry.
|
|
14474
|
+
*/
|
|
14475
|
+
companyIndustry?: string;
|
|
14476
|
+
/**
|
|
14477
|
+
* Current company's canonical LinkedIn URL.
|
|
14478
|
+
* Format: uri.
|
|
14479
|
+
*/
|
|
14480
|
+
companyLinkedinUrl?: string;
|
|
14481
|
+
/**
|
|
14482
|
+
* Current company name.
|
|
14483
|
+
*/
|
|
14484
|
+
companyName?: string;
|
|
14485
|
+
/**
|
|
14486
|
+
* Location country.
|
|
14487
|
+
*/
|
|
14488
|
+
country?: string;
|
|
14489
|
+
/**
|
|
14490
|
+
* Person's first name.
|
|
13621
14491
|
*/
|
|
13622
|
-
|
|
13623
|
-
isOpen: boolean;
|
|
14492
|
+
firstName?: string;
|
|
13624
14493
|
/**
|
|
13625
|
-
*
|
|
14494
|
+
* Person's full name.
|
|
13626
14495
|
*/
|
|
13627
|
-
|
|
14496
|
+
fullName: string;
|
|
13628
14497
|
/**
|
|
13629
|
-
*
|
|
14498
|
+
* Professional profile headline.
|
|
13630
14499
|
*/
|
|
13631
|
-
|
|
14500
|
+
headline?: string;
|
|
13632
14501
|
/**
|
|
13633
|
-
*
|
|
14502
|
+
* Person's last name.
|
|
13634
14503
|
*/
|
|
13635
|
-
|
|
14504
|
+
lastName?: string;
|
|
13636
14505
|
/**
|
|
13637
|
-
*
|
|
14506
|
+
* Canonical LinkedIn profile URL.
|
|
14507
|
+
* Format: uri.
|
|
13638
14508
|
*/
|
|
13639
|
-
|
|
14509
|
+
linkedinUrl: string;
|
|
13640
14510
|
/**
|
|
13641
|
-
*
|
|
14511
|
+
* Formatted location.
|
|
13642
14512
|
*/
|
|
13643
|
-
|
|
14513
|
+
location?: string;
|
|
13644
14514
|
/**
|
|
13645
|
-
*
|
|
14515
|
+
* Location state or region.
|
|
13646
14516
|
*/
|
|
13647
|
-
|
|
13648
|
-
[extra: string]: unknown;
|
|
13649
|
-
}
|
|
13650
|
-
/**
|
|
13651
|
-
* The `data` payload of Panda Express Locations (pandaexpress.locations).
|
|
13652
|
-
*/
|
|
13653
|
-
interface PandaexpressLocationsData {
|
|
14517
|
+
state?: string;
|
|
13654
14518
|
/**
|
|
13655
|
-
*
|
|
14519
|
+
* Current job title.
|
|
13656
14520
|
*/
|
|
13657
|
-
|
|
14521
|
+
title?: string;
|
|
14522
|
+
[extra: string]: unknown;
|
|
13658
14523
|
}
|
|
13659
14524
|
/**
|
|
13660
|
-
*
|
|
14525
|
+
* The `data` payload of People Search - AI Ark (people_search.ai_ark).
|
|
13661
14526
|
*/
|
|
13662
|
-
interface
|
|
14527
|
+
interface PeopleSearchAiArkData {
|
|
13663
14528
|
/**
|
|
13664
|
-
*
|
|
14529
|
+
* Zero-based page number returned by the source.
|
|
14530
|
+
* Range: minimum 0.
|
|
13665
14531
|
*/
|
|
13666
|
-
|
|
13667
|
-
}
|
|
13668
|
-
/**
|
|
13669
|
-
* Populated whenever the provider has data for the entity.
|
|
13670
|
-
*/
|
|
13671
|
-
interface PandaexpressMenuCategorie {
|
|
13672
|
-
items: PandaexpressMenuItem[];
|
|
14532
|
+
page: number;
|
|
13673
14533
|
/**
|
|
13674
|
-
*
|
|
14534
|
+
* People returned on this page.
|
|
13675
14535
|
*/
|
|
13676
|
-
|
|
13677
|
-
[extra: string]: unknown;
|
|
13678
|
-
}
|
|
13679
|
-
interface PandaexpressMenuItem {
|
|
14536
|
+
people: PeopleSearchAiArkPeople[];
|
|
13680
14537
|
/**
|
|
13681
|
-
*
|
|
14538
|
+
* Configured page size.
|
|
14539
|
+
* Range: minimum 0.
|
|
13682
14540
|
*/
|
|
13683
|
-
|
|
14541
|
+
size: number;
|
|
13684
14542
|
/**
|
|
13685
|
-
*
|
|
14543
|
+
* Total matching people.
|
|
14544
|
+
* Range: minimum 0.
|
|
13686
14545
|
*/
|
|
13687
|
-
|
|
13688
|
-
name: string;
|
|
14546
|
+
total: number;
|
|
13689
14547
|
/**
|
|
13690
|
-
*
|
|
14548
|
+
* Total result pages.
|
|
14549
|
+
* Range: minimum 0.
|
|
13691
14550
|
*/
|
|
13692
|
-
|
|
13693
|
-
[extra: string]: unknown;
|
|
14551
|
+
totalPages: number;
|
|
13694
14552
|
}
|
|
13695
14553
|
/**
|
|
13696
|
-
*
|
|
14554
|
+
* Input for People Search - Crustdata v3 (people_search.crustdata_v3).
|
|
13697
14555
|
*/
|
|
13698
|
-
interface
|
|
14556
|
+
interface PeopleSearchCrustdataV3Input {
|
|
13699
14557
|
/**
|
|
13700
|
-
*
|
|
14558
|
+
* Company domain without a path.
|
|
13701
14559
|
*/
|
|
13702
|
-
|
|
13703
|
-
|
|
13704
|
-
/**
|
|
13705
|
-
* Input for Panda Express Nutrition (pandaexpress.nutrition).
|
|
13706
|
-
*/
|
|
13707
|
-
interface PandaexpressNutritionInput {
|
|
14560
|
+
companyDomain: string;
|
|
14561
|
+
country?: string;
|
|
13708
14562
|
/**
|
|
13709
|
-
*
|
|
14563
|
+
* Default: true.
|
|
13710
14564
|
*/
|
|
13711
|
-
|
|
14565
|
+
fuzzyTitle?: boolean;
|
|
14566
|
+
/**
|
|
14567
|
+
* Range: minimum 1, maximum 100.
|
|
14568
|
+
* Default: 3.
|
|
14569
|
+
*/
|
|
14570
|
+
limit?: number;
|
|
14571
|
+
profileKeywords?: unknown;
|
|
14572
|
+
/**
|
|
14573
|
+
* Default: false.
|
|
14574
|
+
*/
|
|
14575
|
+
requireVerifiedEmail?: boolean;
|
|
14576
|
+
seniority?: unknown;
|
|
14577
|
+
titleKeywords: unknown;
|
|
13712
14578
|
}
|
|
13713
|
-
interface
|
|
13714
|
-
|
|
13715
|
-
|
|
13716
|
-
|
|
14579
|
+
interface PeopleSearchCrustdataV3Profile {
|
|
14580
|
+
emails?: unknown[];
|
|
14581
|
+
firstName?: string;
|
|
14582
|
+
headline?: string;
|
|
14583
|
+
lastName?: string;
|
|
13717
14584
|
/**
|
|
13718
|
-
*
|
|
14585
|
+
* Format: uri.
|
|
13719
14586
|
*/
|
|
14587
|
+
linkedinUrl?: string;
|
|
13720
14588
|
name: string;
|
|
13721
|
-
proteinG: number;
|
|
13722
|
-
saturatedFatG: number;
|
|
13723
|
-
servingSizeOz: number;
|
|
13724
|
-
sodiumMg: number;
|
|
13725
|
-
sugarsG: number;
|
|
13726
|
-
totalCarbG: number;
|
|
13727
|
-
totalFatG: number;
|
|
13728
|
-
transFatG: number;
|
|
13729
14589
|
[extra: string]: unknown;
|
|
13730
14590
|
}
|
|
13731
14591
|
/**
|
|
13732
|
-
* The `data` payload of
|
|
14592
|
+
* The `data` payload of People Search - Crustdata v3 (people_search.crustdata_v3).
|
|
13733
14593
|
*/
|
|
13734
|
-
interface
|
|
14594
|
+
interface PeopleSearchCrustdataV3Data {
|
|
14595
|
+
hasMore?: boolean;
|
|
14596
|
+
profiles: PeopleSearchCrustdataV3Profile[];
|
|
13735
14597
|
/**
|
|
13736
|
-
*
|
|
14598
|
+
* Range: minimum 0.
|
|
13737
14599
|
*/
|
|
13738
|
-
|
|
14600
|
+
totalCount?: number;
|
|
13739
14601
|
}
|
|
13740
14602
|
/**
|
|
13741
|
-
* Typed methods for the
|
|
13742
|
-
* `client.
|
|
14603
|
+
* Typed methods for the people_search platform. Attached to the AnyAPI client as
|
|
14604
|
+
* `client.peopleSearch`.
|
|
13743
14605
|
*/
|
|
13744
|
-
declare class
|
|
14606
|
+
declare class PeopleSearchNamespace {
|
|
13745
14607
|
private readonly _core;
|
|
13746
14608
|
constructor(_core: ClientCore);
|
|
13747
14609
|
/**
|
|
13748
|
-
*
|
|
13749
|
-
*
|
|
13750
|
-
* Find Panda Express restaurants near a latitude/longitude, sorted by distance, with address, phone, hours availability, and pickup/delivery support.
|
|
13751
|
-
*
|
|
13752
|
-
* Price: $0.0009 per request.
|
|
13753
|
-
*
|
|
13754
|
-
* @example
|
|
13755
|
-
* const res = await client.pandaexpress.locations({ latitude: 34.0522, longitude: -118.2437, limit: 5 });
|
|
13756
|
-
*/
|
|
13757
|
-
locations(input: PandaexpressLocationsInput, options?: RequestOptions): Promise<RunResult<PandaexpressLocationsData>>;
|
|
13758
|
-
/**
|
|
13759
|
-
* Panda Express Menu
|
|
14610
|
+
* People Search - AI Ark
|
|
13760
14611
|
*
|
|
13761
|
-
*
|
|
14612
|
+
* Search professional profiles with account, contact, and saved-list filters.
|
|
13762
14613
|
*
|
|
13763
|
-
* Price: $0
|
|
14614
|
+
* Price: $0 per request plus $0.0084 per result (maximum $0.84).
|
|
13764
14615
|
*
|
|
13765
14616
|
* @example
|
|
13766
|
-
* const res = await client.
|
|
14617
|
+
* const res = await client.peopleSearch.aiArk({ page: 0, size: 1 });
|
|
13767
14618
|
*/
|
|
13768
|
-
|
|
14619
|
+
aiArk(input: PeopleSearchAiArkInput, options?: RequestOptions): Promise<RunResult<PeopleSearchAiArkData>>;
|
|
13769
14620
|
/**
|
|
13770
|
-
*
|
|
14621
|
+
* People Search - Crustdata v3
|
|
13771
14622
|
*
|
|
13772
|
-
*
|
|
13773
|
-
*
|
|
13774
|
-
* Price: $0.006 per request.
|
|
14623
|
+
* Find up to 100 professional profiles by company domain and title keywords.
|
|
13775
14624
|
*
|
|
13776
|
-
*
|
|
13777
|
-
* const res = await client.pandaexpress.nutrition({ query: "orange chicken" });
|
|
14625
|
+
* Price: $0.144 per request.
|
|
13778
14626
|
*/
|
|
13779
|
-
|
|
14627
|
+
crustdataV3(input: PeopleSearchCrustdataV3Input, options?: RequestOptions): Promise<RunResult<PeopleSearchCrustdataV3Data>>;
|
|
13780
14628
|
}
|
|
13781
14629
|
|
|
13782
14630
|
/**
|
|
@@ -13925,6 +14773,58 @@ declare class PersonNamespace {
|
|
|
13925
14773
|
skipTrace(input: PersonSkipTraceInput, options?: RequestOptions): Promise<RunResult<PersonSkipTraceData>>;
|
|
13926
14774
|
}
|
|
13927
14775
|
|
|
14776
|
+
/**
|
|
14777
|
+
* Input for Person Enrichment - Aviato (person_enrichment.aviato).
|
|
14778
|
+
*/
|
|
14779
|
+
interface PersonEnrichmentAviatoInput {
|
|
14780
|
+
angelListID?: string;
|
|
14781
|
+
crunchbaseID?: string;
|
|
14782
|
+
/**
|
|
14783
|
+
* Format: email.
|
|
14784
|
+
*/
|
|
14785
|
+
email?: string;
|
|
14786
|
+
id?: string;
|
|
14787
|
+
linkedinEntityId?: string;
|
|
14788
|
+
linkedinID?: string;
|
|
14789
|
+
/**
|
|
14790
|
+
* Format: uri.
|
|
14791
|
+
*/
|
|
14792
|
+
linkedinURL?: string;
|
|
14793
|
+
polyworkID?: string;
|
|
14794
|
+
require?: string[];
|
|
14795
|
+
signalNfxID?: string;
|
|
14796
|
+
twitterID?: string;
|
|
14797
|
+
}
|
|
14798
|
+
/**
|
|
14799
|
+
* The `data` payload of Person Enrichment - Aviato (person_enrichment.aviato).
|
|
14800
|
+
*/
|
|
14801
|
+
interface PersonEnrichmentAviatoData {
|
|
14802
|
+
about?: string;
|
|
14803
|
+
firstName?: string;
|
|
14804
|
+
headline?: string;
|
|
14805
|
+
lastName?: string;
|
|
14806
|
+
linkedinUrl?: string;
|
|
14807
|
+
location?: string;
|
|
14808
|
+
name: string;
|
|
14809
|
+
[extra: string]: unknown;
|
|
14810
|
+
}
|
|
14811
|
+
/**
|
|
14812
|
+
* Typed methods for the person_enrichment platform. Attached to the AnyAPI client as
|
|
14813
|
+
* `client.personEnrichment`.
|
|
14814
|
+
*/
|
|
14815
|
+
declare class PersonEnrichmentNamespace {
|
|
14816
|
+
private readonly _core;
|
|
14817
|
+
constructor(_core: ClientCore);
|
|
14818
|
+
/**
|
|
14819
|
+
* Person Enrichment - Aviato
|
|
14820
|
+
*
|
|
14821
|
+
* Enrich a person from an Aviato or LinkedIn identifier, LinkedIn URL, or email.
|
|
14822
|
+
*
|
|
14823
|
+
* Price: $0.084 per request.
|
|
14824
|
+
*/
|
|
14825
|
+
aviato(input: PersonEnrichmentAviatoInput, options?: RequestOptions): Promise<RunResult<PersonEnrichmentAviatoData>>;
|
|
14826
|
+
}
|
|
14827
|
+
|
|
13928
14828
|
/**
|
|
13929
14829
|
* Input for Pinterest Search (pinterest.search).
|
|
13930
14830
|
*/
|
|
@@ -21312,6 +22212,80 @@ interface TwitterSearchData {
|
|
|
21312
22212
|
*/
|
|
21313
22213
|
nextCursor?: string | null;
|
|
21314
22214
|
}
|
|
22215
|
+
/**
|
|
22216
|
+
* Input for X / Twitter Tweet Thread (twitter.thread).
|
|
22217
|
+
*/
|
|
22218
|
+
interface TwitterThreadInput {
|
|
22219
|
+
/**
|
|
22220
|
+
* Canonical x.com or twitter.com status URL with a numeric tweet ID. Any tweet in the self-thread can be supplied; the provider resolves the thread root.
|
|
22221
|
+
*/
|
|
22222
|
+
url: string;
|
|
22223
|
+
}
|
|
22224
|
+
interface TwitterThreadTweet {
|
|
22225
|
+
/**
|
|
22226
|
+
* Populated whenever the provider has data for the entity.
|
|
22227
|
+
*/
|
|
22228
|
+
authorHandle: string;
|
|
22229
|
+
/**
|
|
22230
|
+
* Populated whenever the provider has data for the entity.
|
|
22231
|
+
*/
|
|
22232
|
+
authorId: string;
|
|
22233
|
+
/**
|
|
22234
|
+
* Populated whenever the provider has data for the entity.
|
|
22235
|
+
*/
|
|
22236
|
+
authorName: string;
|
|
22237
|
+
conversationId: string;
|
|
22238
|
+
/**
|
|
22239
|
+
* Populated whenever the provider has data for the entity.
|
|
22240
|
+
*/
|
|
22241
|
+
id: string;
|
|
22242
|
+
inReplyToId: string | null;
|
|
22243
|
+
/**
|
|
22244
|
+
* Populated whenever the provider has data for the entity.
|
|
22245
|
+
*/
|
|
22246
|
+
text: string;
|
|
22247
|
+
/**
|
|
22248
|
+
* Populated whenever the provider has data for the entity.
|
|
22249
|
+
* Format: uri.
|
|
22250
|
+
*/
|
|
22251
|
+
url: string;
|
|
22252
|
+
[extra: string]: unknown;
|
|
22253
|
+
}
|
|
22254
|
+
/**
|
|
22255
|
+
* The `data` payload of X / Twitter Tweet Thread (twitter.thread).
|
|
22256
|
+
*/
|
|
22257
|
+
interface TwitterThreadData {
|
|
22258
|
+
author: {
|
|
22259
|
+
/**
|
|
22260
|
+
* Populated whenever the provider has data for the entity.
|
|
22261
|
+
*/
|
|
22262
|
+
handle: string;
|
|
22263
|
+
/**
|
|
22264
|
+
* Populated whenever the provider has data for the entity.
|
|
22265
|
+
*/
|
|
22266
|
+
id: string;
|
|
22267
|
+
/**
|
|
22268
|
+
* Populated whenever the provider has data for the entity.
|
|
22269
|
+
*/
|
|
22270
|
+
name: string;
|
|
22271
|
+
};
|
|
22272
|
+
/**
|
|
22273
|
+
* Whether the provider reached the end of the self-thread without hitting its internal cap.
|
|
22274
|
+
*/
|
|
22275
|
+
complete: boolean;
|
|
22276
|
+
/**
|
|
22277
|
+
* Conversation ID shared by the self-thread tweets. Populated whenever the provider has data for the entity.
|
|
22278
|
+
*/
|
|
22279
|
+
conversationId: string;
|
|
22280
|
+
/**
|
|
22281
|
+
* Number of tweets returned in the self-thread.
|
|
22282
|
+
*/
|
|
22283
|
+
threadLength: number;
|
|
22284
|
+
/**
|
|
22285
|
+
* Ordered self-thread tweets. Replies from other users are excluded. Populated whenever the provider has data for the entity.
|
|
22286
|
+
*/
|
|
22287
|
+
tweets: TwitterThreadTweet[];
|
|
22288
|
+
}
|
|
21315
22289
|
/**
|
|
21316
22290
|
* Input for X / Twitter Trends (twitter.trends).
|
|
21317
22291
|
*/
|
|
@@ -21661,12 +22635,12 @@ declare class TwitterNamespace {
|
|
|
21661
22635
|
/**
|
|
21662
22636
|
* X / Twitter Post Replies
|
|
21663
22637
|
*
|
|
21664
|
-
* Fetch the replies to any X (Twitter) post URL as structured records: author, text, and engagement.
|
|
22638
|
+
* Fetch the replies to any X (Twitter) post URL as structured records: author, text, and engagement. An empty result is valid and does not assert whether the target post exists.
|
|
21665
22639
|
*
|
|
21666
|
-
* Price: $0.
|
|
22640
|
+
* Price: $0.00075 per request.
|
|
21667
22641
|
*
|
|
21668
22642
|
* @example
|
|
21669
|
-
* const res = await client.twitter.replies({ url: "https://x.com/jack/status/20"
|
|
22643
|
+
* const res = await client.twitter.replies({ url: "https://x.com/jack/status/20" });
|
|
21670
22644
|
*/
|
|
21671
22645
|
replies(input: TwitterRepliesInput, options?: RequestOptions): Promise<RunResult<TwitterRepliesData>>;
|
|
21672
22646
|
/**
|
|
@@ -21687,6 +22661,17 @@ declare class TwitterNamespace {
|
|
|
21687
22661
|
* result pages instead (each carries its own costUsd).
|
|
21688
22662
|
*/
|
|
21689
22663
|
iterSearch(input: TwitterSearchInput, options?: RequestOptions): Paginator<TwitterSearchItem, RunResult<TwitterSearchData>>;
|
|
22664
|
+
/**
|
|
22665
|
+
* X / Twitter Tweet Thread
|
|
22666
|
+
*
|
|
22667
|
+
* Resolve the linear self-thread containing an X (Twitter) post, from its root through the author's linked continuations. This excludes replies from other users.
|
|
22668
|
+
*
|
|
22669
|
+
* Price: $0.005 per request.
|
|
22670
|
+
*
|
|
22671
|
+
* @example
|
|
22672
|
+
* const res = await client.twitter.thread({ url: "https://x.com/SpaceX/status/1732824684683784516" });
|
|
22673
|
+
*/
|
|
22674
|
+
thread(input: TwitterThreadInput, options?: RequestOptions): Promise<RunResult<TwitterThreadData>>;
|
|
21690
22675
|
/**
|
|
21691
22676
|
* X / Twitter Trends
|
|
21692
22677
|
*
|
|
@@ -24937,6 +25922,21 @@ interface SkuMap {
|
|
|
24937
25922
|
data: CoinmarketcapListingsData;
|
|
24938
25923
|
result: RunResult<CoinmarketcapListingsData>;
|
|
24939
25924
|
};
|
|
25925
|
+
"company_enrichment.crustdata_v3": {
|
|
25926
|
+
input: CompanyEnrichmentCrustdataV3Input;
|
|
25927
|
+
data: CompanyEnrichmentCrustdataV3Data;
|
|
25928
|
+
result: RunResult<CompanyEnrichmentCrustdataV3Data>;
|
|
25929
|
+
};
|
|
25930
|
+
"company_search.ai_ark": {
|
|
25931
|
+
input: CompanySearchAiArkInput;
|
|
25932
|
+
data: CompanySearchAiArkData;
|
|
25933
|
+
result: RunResult<CompanySearchAiArkData>;
|
|
25934
|
+
};
|
|
25935
|
+
"company_search.crustdata_v3": {
|
|
25936
|
+
input: CompanySearchCrustdataV3Input;
|
|
25937
|
+
data: CompanySearchCrustdataV3Data;
|
|
25938
|
+
result: RunResult<CompanySearchCrustdataV3Data>;
|
|
25939
|
+
};
|
|
24940
25940
|
"congress.trades": {
|
|
24941
25941
|
input: CongressTradesInput;
|
|
24942
25942
|
data: CongressTradesData;
|
|
@@ -24992,6 +25992,31 @@ interface SkuMap {
|
|
|
24992
25992
|
data: EmailVerifyData;
|
|
24993
25993
|
result: RunResult<EmailVerifyData>;
|
|
24994
25994
|
};
|
|
25995
|
+
"email_finding.dropleads": {
|
|
25996
|
+
input: EmailFindingDropleadsInput;
|
|
25997
|
+
data: EmailFindingDropleadsData;
|
|
25998
|
+
result: RunResult<EmailFindingDropleadsData>;
|
|
25999
|
+
};
|
|
26000
|
+
"email_finding.icypeas": {
|
|
26001
|
+
input: EmailFindingIcypeasInput;
|
|
26002
|
+
data: EmailFindingIcypeasData;
|
|
26003
|
+
result: RunResult<EmailFindingIcypeasData>;
|
|
26004
|
+
};
|
|
26005
|
+
"email_verification.allegrow": {
|
|
26006
|
+
input: EmailVerificationAllegrowInput;
|
|
26007
|
+
data: EmailVerificationAllegrowData;
|
|
26008
|
+
result: RunResult<EmailVerificationAllegrowData>;
|
|
26009
|
+
};
|
|
26010
|
+
"email_verification.bounceban": {
|
|
26011
|
+
input: EmailVerificationBouncebanInput;
|
|
26012
|
+
data: EmailVerificationBouncebanData;
|
|
26013
|
+
result: RunResult<EmailVerificationBouncebanData>;
|
|
26014
|
+
};
|
|
26015
|
+
"email_verification.icypeas": {
|
|
26016
|
+
input: EmailVerificationIcypeasInput;
|
|
26017
|
+
data: EmailVerificationIcypeasData;
|
|
26018
|
+
result: RunResult<EmailVerificationIcypeasData>;
|
|
26019
|
+
};
|
|
24995
26020
|
"facebook.ad_details": {
|
|
24996
26021
|
input: FacebookAdDetailsInput;
|
|
24997
26022
|
data: FacebookAdDetailsData;
|
|
@@ -25532,6 +26557,16 @@ interface SkuMap {
|
|
|
25532
26557
|
data: MapsSearchData;
|
|
25533
26558
|
result: RunResult<MapsSearchData>;
|
|
25534
26559
|
};
|
|
26560
|
+
"mobile_phone.ai_ark": {
|
|
26561
|
+
input: MobilePhoneAiArkInput;
|
|
26562
|
+
data: MobilePhoneAiArkData;
|
|
26563
|
+
result: RunResult<MobilePhoneAiArkData>;
|
|
26564
|
+
};
|
|
26565
|
+
"mobile_phone.leadmagic": {
|
|
26566
|
+
input: MobilePhoneLeadmagicInput;
|
|
26567
|
+
data: MobilePhoneLeadmagicData;
|
|
26568
|
+
result: RunResult<MobilePhoneLeadmagicData>;
|
|
26569
|
+
};
|
|
25535
26570
|
"pandaexpress.locations": {
|
|
25536
26571
|
input: PandaexpressLocationsInput;
|
|
25537
26572
|
data: PandaexpressLocationsData;
|
|
@@ -25547,11 +26582,26 @@ interface SkuMap {
|
|
|
25547
26582
|
data: PandaexpressNutritionData;
|
|
25548
26583
|
result: RunResult<PandaexpressNutritionData>;
|
|
25549
26584
|
};
|
|
26585
|
+
"people_search.ai_ark": {
|
|
26586
|
+
input: PeopleSearchAiArkInput;
|
|
26587
|
+
data: PeopleSearchAiArkData;
|
|
26588
|
+
result: RunResult<PeopleSearchAiArkData>;
|
|
26589
|
+
};
|
|
26590
|
+
"people_search.crustdata_v3": {
|
|
26591
|
+
input: PeopleSearchCrustdataV3Input;
|
|
26592
|
+
data: PeopleSearchCrustdataV3Data;
|
|
26593
|
+
result: RunResult<PeopleSearchCrustdataV3Data>;
|
|
26594
|
+
};
|
|
25550
26595
|
"person.skip_trace": {
|
|
25551
26596
|
input: PersonSkipTraceInput;
|
|
25552
26597
|
data: PersonSkipTraceData;
|
|
25553
26598
|
result: RunResult<PersonSkipTraceData>;
|
|
25554
26599
|
};
|
|
26600
|
+
"person_enrichment.aviato": {
|
|
26601
|
+
input: PersonEnrichmentAviatoInput;
|
|
26602
|
+
data: PersonEnrichmentAviatoData;
|
|
26603
|
+
result: RunResult<PersonEnrichmentAviatoData>;
|
|
26604
|
+
};
|
|
25555
26605
|
"pinterest.search": {
|
|
25556
26606
|
input: PinterestSearchInput;
|
|
25557
26607
|
data: PinterestSearchData;
|
|
@@ -26012,6 +27062,11 @@ interface SkuMap {
|
|
|
26012
27062
|
data: TwitterSearchData;
|
|
26013
27063
|
result: RunResult<TwitterSearchData>;
|
|
26014
27064
|
};
|
|
27065
|
+
"twitter.thread": {
|
|
27066
|
+
input: TwitterThreadInput;
|
|
27067
|
+
data: TwitterThreadData;
|
|
27068
|
+
result: RunResult<TwitterThreadData>;
|
|
27069
|
+
};
|
|
26015
27070
|
"twitter.trends": {
|
|
26016
27071
|
input: TwitterTrendsInput;
|
|
26017
27072
|
data: TwitterTrendsData;
|
|
@@ -26274,6 +27329,14 @@ declare class AnyAPI extends AnyAPI$1 {
|
|
|
26274
27329
|
* Typed methods for the coinmarketcap platform.
|
|
26275
27330
|
*/
|
|
26276
27331
|
get coinmarketcap(): CoinmarketcapNamespace;
|
|
27332
|
+
/**
|
|
27333
|
+
* Typed methods for the company_enrichment platform.
|
|
27334
|
+
*/
|
|
27335
|
+
get companyEnrichment(): CompanyEnrichmentNamespace;
|
|
27336
|
+
/**
|
|
27337
|
+
* Typed methods for the company_search platform.
|
|
27338
|
+
*/
|
|
27339
|
+
get companySearch(): CompanySearchNamespace;
|
|
26277
27340
|
/**
|
|
26278
27341
|
* Typed methods for the congress platform.
|
|
26279
27342
|
*/
|
|
@@ -26294,6 +27357,14 @@ declare class AnyAPI extends AnyAPI$1 {
|
|
|
26294
27357
|
* Typed methods for the email platform.
|
|
26295
27358
|
*/
|
|
26296
27359
|
get email(): EmailNamespace;
|
|
27360
|
+
/**
|
|
27361
|
+
* Typed methods for the email_finding platform.
|
|
27362
|
+
*/
|
|
27363
|
+
get emailFinding(): EmailFindingNamespace;
|
|
27364
|
+
/**
|
|
27365
|
+
* Typed methods for the email_verification platform.
|
|
27366
|
+
*/
|
|
27367
|
+
get emailVerification(): EmailVerificationNamespace;
|
|
26297
27368
|
/**
|
|
26298
27369
|
* Typed methods for the facebook platform.
|
|
26299
27370
|
*/
|
|
@@ -26346,14 +27417,26 @@ declare class AnyAPI extends AnyAPI$1 {
|
|
|
26346
27417
|
* Typed methods for the maps platform.
|
|
26347
27418
|
*/
|
|
26348
27419
|
get maps(): MapsNamespace;
|
|
27420
|
+
/**
|
|
27421
|
+
* Typed methods for the mobile_phone platform.
|
|
27422
|
+
*/
|
|
27423
|
+
get mobilePhone(): MobilePhoneNamespace;
|
|
26349
27424
|
/**
|
|
26350
27425
|
* Typed methods for the pandaexpress platform.
|
|
26351
27426
|
*/
|
|
26352
27427
|
get pandaexpress(): PandaexpressNamespace;
|
|
27428
|
+
/**
|
|
27429
|
+
* Typed methods for the people_search platform.
|
|
27430
|
+
*/
|
|
27431
|
+
get peopleSearch(): PeopleSearchNamespace;
|
|
26353
27432
|
/**
|
|
26354
27433
|
* Typed methods for the person platform.
|
|
26355
27434
|
*/
|
|
26356
27435
|
get person(): PersonNamespace;
|
|
27436
|
+
/**
|
|
27437
|
+
* Typed methods for the person_enrichment platform.
|
|
27438
|
+
*/
|
|
27439
|
+
get personEnrichment(): PersonEnrichmentNamespace;
|
|
26357
27440
|
/**
|
|
26358
27441
|
* Typed methods for the pinterest platform.
|
|
26359
27442
|
*/
|
|
@@ -26476,4 +27559,4 @@ declare class AnyAPI extends AnyAPI$1 {
|
|
|
26476
27559
|
get zillow(): ZillowNamespace;
|
|
26477
27560
|
}
|
|
26478
27561
|
|
|
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 };
|
|
27562
|
+
export { type AccountProfile, type AgentSignupOptions, type AgentSignupResult, type AhrefsBacklinksData, type AhrefsBacklinksInput, type AhrefsBacklinksItem, type AhrefsKeywordIdeasData, type AhrefsKeywordIdeasIdea, type AhrefsKeywordIdeasInput, type AhrefsKeywordIdeasItem, type AhrefsKeywordsData, type AhrefsKeywordsInput, type AhrefsKeywordsItem, AhrefsNamespace, type AhrefsOverviewData, type AhrefsOverviewInput, type AhrefsOverviewItem, AirbnbNamespace, type AirbnbSearchData, type AirbnbSearchInput, type AirbnbSearchItem, AlibabaNamespace, type AlibabaSearchData, type AlibabaSearchInput, type AlibabaSearchItem, type AmazonAsinsData, type AmazonAsinsInput, type AmazonAsinsItem, type AmazonBestsellersData, type AmazonBestsellersInput, type AmazonBestsellersItem, AmazonNamespace, type AmazonProductData, type AmazonProductInput, type AmazonProductItem, type AmazonReviewsData, type AmazonReviewsInput, type AmazonReviewsItem, type AmazonSearchData, type AmazonSearchInput, type AmazonSearchItem, AnyAPI, AnyAPIError, ApolloNamespace, type ApolloOrganizationData, type ApolloOrganizationEnrichData, type ApolloOrganizationEnrichInput, type ApolloOrganizationInput, type ApolloOrganizationJobsData, type ApolloOrganizationJobsInput, type ApolloOrganizationJobsJob, type ApolloOrganizationNewsArticle, type ApolloOrganizationNewsData, type ApolloOrganizationNewsInput, type ApolloOrganizationsBulkEnrichData, type ApolloOrganizationsBulkEnrichInput, type ApolloOrganizationsBulkEnrichOrganization, type ApolloOrganizationsSearchData, type ApolloOrganizationsSearchInput, type ApolloOrganizationsSearchOrganization, type ApolloPeopleSearchData, type ApolloPeopleSearchInput, type ApolloPeopleSearchPeople, type ApolloPersonEnrichData, type ApolloPersonEnrichEmploymentHistory, type ApolloPersonEnrichInput, AppstoreNamespace, type AppstoreReviewsData, type AppstoreReviewsInput, type AppstoreReviewsItem, AuthenticationError, BadRequestError, type BareRunResult, BlueskyNamespace, type BlueskyPostData, type BlueskyPostInput, type BlueskyProfileData, type BlueskyProfileInput, type BlueskyUserPostsData, type BlueskyUserPostsInput, type BlueskyUserPostsPost, BookingNamespace, type BookingSearchData, type BookingSearchInput, type BookingSearchItem, type CatalogEntry, type CatalogOptions, type CatalogSearchResult, type CatalogSearchResults, type ClientCore, type ClientOptions, type CoinmarketcapListingsData, type CoinmarketcapListingsInput, type CoinmarketcapListingsItem, CoinmarketcapNamespace, type CompanyEnrichmentCrustdataV3Data, type CompanyEnrichmentCrustdataV3Input, CompanyEnrichmentNamespace, type CompanySearchAiArkCompanie, type CompanySearchAiArkData, type CompanySearchAiArkInput, type CompanySearchCrustdataV3Companie, type CompanySearchCrustdataV3Data, type CompanySearchCrustdataV3Input, type CompanySearchCrustdataV3Sort, CompanySearchNamespace, CongressNamespace, type CongressTradesData, type CongressTradesInput, type CongressTradesItem, ConnectionError, DexscreenerNamespace, type DexscreenerTokensData, type DexscreenerTokensInput, type DexscreenerTokensItem, type DiscoveryLane, type DiscoveryPricing, DouyinNamespace, type DouyinProfileData, type DouyinProfileInput, type DouyinSearchVideosData, type DouyinSearchVideosInput, type DouyinSearchVideosVideo, type DouyinUserPostsData, type DouyinUserPostsInput, type DouyinUserPostsPost, type DouyinVideoCommentsComment, type DouyinVideoCommentsData, type DouyinVideoCommentsInput, type DouyinVideoData, type DouyinVideoInput, EbayNamespace, type EbaySearchData, type EbaySearchInput, type EbaySearchItem, type EbaySoldListingsData, type EbaySoldListingsInput, type EbaySoldListingsItem, type EmailFindData, type EmailFindInput, type EmailFindItem, type EmailFindingDropleadsData, type EmailFindingDropleadsInput, type EmailFindingIcypeasData, type EmailFindingIcypeasInput, EmailFindingNamespace, EmailNamespace, type EmailVerificationAllegrowData, type EmailVerificationAllegrowInput, type EmailVerificationBouncebanData, type EmailVerificationBouncebanInput, type EmailVerificationIcypeasData, type EmailVerificationIcypeasInput, EmailVerificationNamespace, type EmailVerifyData, type EmailVerifyInput, type EmailVerifyItem, type FacebookAdDetailsData, type FacebookAdDetailsInput, type FacebookAdTranscriptData, type FacebookAdTranscriptInput, type FacebookAdsSearchAd, type FacebookAdsSearchData, type FacebookAdsSearchInput, type FacebookCommentRepliesData, type FacebookCommentRepliesInput, type FacebookCommentRepliesReplie, type FacebookCompanyAdsAd, type FacebookCompanyAdsData, type FacebookCompanyAdsInput, type FacebookEventDetailsData, type FacebookEventDetailsInput, type FacebookEventsData, type FacebookEventsEvent, type FacebookEventsInput, type FacebookEventsSearchData, type FacebookEventsSearchEvent, type FacebookEventsSearchInput, type FacebookFollowersData, type FacebookFollowersInput, type FacebookFollowersItem, type FacebookGroupPostsData, type FacebookGroupPostsInput, type FacebookGroupPostsPost, type FacebookMarketplaceData, type FacebookMarketplaceInput, type FacebookMarketplaceItemData, type FacebookMarketplaceItemInput, type FacebookMarketplaceListing, type FacebookMarketplaceLocationSearchData, type FacebookMarketplaceLocationSearchInput, type FacebookMarketplaceLocationSearchLocation, FacebookNamespace, type FacebookPageContactData, type FacebookPageContactInput, type FacebookPageContactItem, type FacebookPhotosData, type FacebookPhotosInput, type FacebookPhotosPhoto, type FacebookPostCommentsComment, type FacebookPostCommentsData, type FacebookPostCommentsInput, type FacebookPostData, type FacebookPostInput, type FacebookPostTranscriptData, type FacebookPostTranscriptInput, type FacebookProfileData, type FacebookProfileEventsData, type FacebookProfileEventsEvent, type FacebookProfileEventsInput, type FacebookProfileInput, type FacebookProfilePostsData, type FacebookProfilePostsInput, type FacebookProfilePostsPost, type FacebookProfileReelsData, type FacebookProfileReelsInput, type FacebookProfileReelsReel, type FacebookSearchCompaniesCompanie, type FacebookSearchCompaniesData, type FacebookSearchCompaniesInput, type FacebookSearchPagesData, type FacebookSearchPagesInput, type FacebookSearchPagesItem, type FacebookSearchPostsData, type FacebookSearchPostsInput, type FacebookSearchPostsItem, FiverrNamespace, type FiverrSearchData, type FiverrSearchInput, type FiverrSearchItem, type FlatPricingOffer, GithubNamespace, type GithubRepositoryData, type GithubRepositoryInput, type GithubTrendingDevelopersData, type GithubTrendingDevelopersDeveloper, type GithubTrendingDevelopersInput, type GithubTrendingRepositoriesData, type GithubTrendingRepositoriesInput, type GithubTrendingRepositoriesRepo, type GithubUserActivityActivity, type GithubUserActivityData, type GithubUserActivityInput, type GithubUserContributionsData, type GithubUserContributionsDay, type GithubUserContributionsInput, type GithubUserData, type GithubUserFollowersData, type GithubUserFollowersFollower, type GithubUserFollowersInput, type GithubUserFollowingData, type GithubUserFollowingFollowing, type GithubUserFollowingInput, type GithubUserInput, type GithubUserPullRequestsData, type GithubUserPullRequestsInput, type GithubUserPullRequestsPullRequest, type GithubUserRepositoriesData, type GithubUserRepositoriesInput, type GithubUserRepositoriesRepo, type GlassdoorJobsData, type GlassdoorJobsInput, type GlassdoorJobsItem, GlassdoorNamespace, type GoogleAdsAdDetailsData, type GoogleAdsAdDetailsInput, type GoogleAdsAdDetailsVariation, type GoogleAdsAdvertiserSearchAdvertiser, type GoogleAdsAdvertiserSearchData, type GoogleAdsAdvertiserSearchInput, type GoogleAdsCompanyAdsAd, type GoogleAdsCompanyAdsData, type GoogleAdsCompanyAdsInput, GoogleAdsNamespace, type GoogleAdsSearchData, type GoogleAdsSearchInput, type GoogleAdsSearchItem, type GoogleAdsSearchVariation, type GoogleAutocompleteData, type GoogleAutocompleteInput, type GoogleAutocompleteSuggestion, GoogleFinanceNamespace, type GoogleFinanceQuoteData, type GoogleFinanceQuoteInput, type GoogleFinanceQuoteItem, type GoogleImagesData, type GoogleImagesInput, type GoogleImagesItem, type GoogleLensData, type GoogleLensInput, type GoogleLensResult, GoogleNamespace, type GoogleNewsData, type GoogleNewsInput, type GoogleNewsItem, type GooglePatentsData, type GooglePatentsInput, type GooglePatentsResult, type GoogleScholarData, type GoogleScholarInput, type GoogleScholarResult, type GoogleSearchData, type GoogleSearchInput, type GoogleSearchResult, GoogleShoppingNamespace, type GoogleShoppingSearchData, type GoogleShoppingSearchInput, type GoogleShoppingSearchItem, type GoogleVideosData, type GoogleVideosInput, type GoogleVideosResult, HackernewsNamespace, type HackernewsProfileData, type HackernewsProfileInput, type HackernewsSearchData, type HackernewsSearchInput, type HackernewsSearchResult, type HackernewsStoryCommentsComment, type HackernewsStoryCommentsData, type HackernewsStoryCommentsInput, type HackernewsStoryData, type HackernewsStoryInput, type HighlightField, type IndeedJobsData, type IndeedJobsInput, type IndeedJobsItem, IndeedNamespace, type InstagramAudioReelsData, type InstagramAudioReelsInput, type InstagramAudioReelsReel, type InstagramBasicProfileData, type InstagramBasicProfileInput, type InstagramCommentRepliesComment, type InstagramCommentRepliesData, type InstagramCommentRepliesInput, type InstagramEmbedData, type InstagramEmbedInput, type InstagramFollowersData, type InstagramFollowersInput, type InstagramFollowersItem, type InstagramFollowingData, type InstagramFollowingInput, type InstagramFollowingItem, type InstagramHashtagAnalyticsData, type InstagramHashtagAnalyticsInput, type InstagramHashtagAnalyticsItem, type InstagramHighlightDetailData, type InstagramHighlightDetailInput, type InstagramMediaTranscriptData, type InstagramMediaTranscriptInput, type InstagramMediaTranscriptTranscript, InstagramNamespace, type InstagramPostCommentsComment, type InstagramPostCommentsData, type InstagramPostCommentsInput, type InstagramPostData, type InstagramPostInput, type InstagramProfileData, type InstagramProfileInput, type InstagramReelTranscriptData, type InstagramReelTranscriptInput, type InstagramReelTranscriptItem, type InstagramReelTranscriptSegment, type InstagramReelsSearchData, type InstagramReelsSearchInput, type InstagramReelsSearchReel, type InstagramSearchData, type InstagramSearchHashtagData, type InstagramSearchHashtagInput, type InstagramSearchHashtagPost, type InstagramSearchInput, type InstagramSearchItem, type InstagramSearchProfilesData, type InstagramSearchProfilesInput, type InstagramSearchProfilesProfile, type InstagramStoriesFullData, type InstagramStoriesFullInput, type InstagramStoriesFullItem, type InstagramStoriesThinData, type InstagramStoriesThinInput, type InstagramStoriesThinItem, type InstagramTaggedPostsData, type InstagramTaggedPostsInput, type InstagramTaggedPostsPost, type InstagramTrendingReelsData, type InstagramTrendingReelsInput, type InstagramTrendingReelsReel, type InstagramUserHighlightsData, type InstagramUserHighlightsHighlight, type InstagramUserHighlightsInput, type InstagramUserPostsData, type InstagramUserPostsInput, type InstagramUserPostsPost, type InstagramUserReelsData, type InstagramUserReelsInput, type InstagramUserReelsReel, InsufficientBalanceError, type LaneHealth, type LinearPricingOffer, type LinkedinAdData, type LinkedinAdInput, type LinkedinAdsData, type LinkedinAdsInput, type LinkedinAdsItem, type LinkedinAdsSearchAd, type LinkedinAdsSearchData, type LinkedinAdsSearchInput, type LinkedinCompanyData, type LinkedinCompanyEmployeesData, type LinkedinCompanyEmployeesInput, type LinkedinCompanyEmployeesItem, type LinkedinCompanyInput, type LinkedinCompanyLocation, type LinkedinCompanyPostsContentAttribute, type LinkedinCompanyPostsData, type LinkedinCompanyPostsInput, type LinkedinCompanyPostsItem, type LinkedinCompanyPostsPostImage, type LinkedinCompanyPostsReaction, type LinkedinCompanyPostsThinData, type LinkedinCompanyPostsThinInput, type LinkedinCompanyPostsThinItem, type LinkedinCompanyThinData, type LinkedinCompanyThinInput, type LinkedinEmailData, type LinkedinEmailEmail, type LinkedinEmailInput, type LinkedinJobsData, type LinkedinJobsInput, type LinkedinJobsItem, type LinkedinJobsThinData, type LinkedinJobsThinInput, type LinkedinJobsThinItem, LinkedinNamespace, type LinkedinPostCommentsData, type LinkedinPostCommentsInput, type LinkedinPostCommentsItem, type LinkedinPostData, type LinkedinPostInput, type LinkedinPostReactionsData, type LinkedinPostReactionsInput, type LinkedinPostReactionsItem, type LinkedinPostTranscriptData, type LinkedinPostTranscriptInput, type LinkedinProfileCertification, type LinkedinProfileCurrentPosition, type LinkedinProfileData, type LinkedinProfileEducation, type LinkedinProfileExperience, type LinkedinProfileHonorsAndAward, type LinkedinProfileInput, type LinkedinProfilePostsFullBreakdown, type LinkedinProfilePostsFullContentAnnotation, type LinkedinProfilePostsFullData, type LinkedinProfilePostsFullImage, type LinkedinProfilePostsFullInput, type LinkedinProfilePostsFullItem, type LinkedinProfilePostsFullRepostImage, type LinkedinProfilePostsThinData, type LinkedinProfilePostsThinImage, type LinkedinProfilePostsThinInput, type LinkedinProfilePostsThinItem, type LinkedinProfilePublication, type LinkedinProfileThinArticle, type LinkedinProfileThinData, type LinkedinProfileThinEducation, type LinkedinProfileThinExperience, type LinkedinProfileThinInput, type LinkedinProfileThinRecentPost, type LinkedinSearchCompaniesData, type LinkedinSearchCompaniesInput, type LinkedinSearchCompaniesItem, type LinkedinSearchPostsData, type LinkedinSearchPostsInput, type LinkedinSearchPostsPost, type LinkedinSearchProfilesCurrentPosition, type LinkedinSearchProfilesData, type LinkedinSearchProfilesEducation, type LinkedinSearchProfilesEmailCurrentPosition, type LinkedinSearchProfilesEmailData, type LinkedinSearchProfilesEmailEducation, type LinkedinSearchProfilesEmailEmail, type LinkedinSearchProfilesEmailExperience, type LinkedinSearchProfilesEmailInput, type LinkedinSearchProfilesEmailItem, type LinkedinSearchProfilesExperience, type LinkedinSearchProfilesInput, type LinkedinSearchProfilesItem, type LinkedinSearchProfilesThinData, type LinkedinSearchProfilesThinInput, type LinkedinSearchProfilesThinItem, type MapsContactsData, type MapsContactsInput, type MapsContactsItem, MapsNamespace, type MapsPlaceData, type MapsPlaceHour, type MapsPlaceInput, type MapsPlaceItem, type MapsReviewsData, type MapsReviewsInput, type MapsReviewsItem, type MapsSearchData, type MapsSearchInput, type MapsSearchItem, type MobilePhoneAiArkData, type MobilePhoneAiArkInput, type MobilePhoneLeadmagicData, type MobilePhoneLeadmagicInput, MobilePhoneNamespace, NotFoundError, type Output, type Paginator, type PandaexpressLocationsData, type PandaexpressLocationsInput, type PandaexpressLocationsRestaurant, type PandaexpressMenuCategorie, type PandaexpressMenuData, type PandaexpressMenuInput, type PandaexpressMenuItem, PandaexpressNamespace, type PandaexpressNutritionData, type PandaexpressNutritionInput, type PandaexpressNutritionItem, type PeopleSearchAiArkData, type PeopleSearchAiArkInput, type PeopleSearchAiArkPeople, type PeopleSearchCrustdataV3Data, type PeopleSearchCrustdataV3Input, type PeopleSearchCrustdataV3Profile, PeopleSearchNamespace, type PersonEnrichmentAviatoData, type PersonEnrichmentAviatoInput, PersonEnrichmentNamespace, PersonNamespace, type PersonSkipTraceAssociate, type PersonSkipTraceData, type PersonSkipTraceInput, type PersonSkipTraceItem, type PersonSkipTracePreviousAddresse, type PersonSkipTraceRelative, PinterestNamespace, type PinterestSearchData, type PinterestSearchInput, type PinterestSearchItem, PlaystoreNamespace, type PlaystoreReviewsData, type PlaystoreReviewsInput, type PlaystoreReviewsItem, type PolymarketMarketsData, type PolymarketMarketsInput, type PolymarketMarketsItem, type PolymarketMarketsOutcome, PolymarketNamespace, type PricingOffer, RateLimitedError, RealtorNamespace, type RealtorSearchData, type RealtorSearchInput, type RealtorSearchItem, RedditNamespace, type RedditPostCommentsComment, type RedditPostCommentsData, type RedditPostCommentsInput, type RedditPostData, type RedditPostInput, type RedditPostTranscriptData, type RedditPostTranscriptInput, type RedditProfileData, type RedditProfileInput, type RedditSearchData, type RedditSearchInput, type RedditSearchPost, type RedditSubredditDetailsData, type RedditSubredditDetailsInput, type RedditSubredditPostsData, type RedditSubredditPostsInput, type RedditSubredditPostsPost, type RedditSubredditSearchData, type RedditSubredditSearchInput, type RedditSubredditSearchPost, type RedditTrendingPostsData, type RedditTrendingPostsInput, type RedditTrendingPostsPost, type RedditUserCommentsComment, type RedditUserCommentsData, type RedditUserCommentsInput, type RedditUserPostsData, type RedditUserPostsInput, type RedditUserPostsPost, RedfinNamespace, type RedfinSearchData, type RedfinSearchInput, type RedfinSearchItem, RednoteNamespace, type RednoteNoteCommentsComment, type RednoteNoteCommentsData, type RednoteNoteCommentsInput, type RednoteNoteData, type RednoteNoteInput, type RednoteProfileData, type RednoteProfileInput, type RednoteSearchData, type RednoteSearchInput, type RednoteSearchNote, type RednoteSearchUsersData, type RednoteSearchUsersInput, type RednoteSearchUsersUser, type RednoteUserNotesData, type RednoteUserNotesInput, type RednoteUserNotesNote, type RequestOptions, RequestPendingError, type RequestSnapshot, type RequestStatus, ResultNotFoundError, type RunResult, type SearchOptions, type SecFilingsData, type SecFilingsInput, type SecFilingsItem, SecNamespace, type SemrushKeywordsData, type SemrushKeywordsInput, type SemrushKeywordsItem, type SemrushKeywordsQuestion, type SemrushKeywordsRelatedKeyword, SemrushNamespace, type SemrushOverviewData, type SemrushOverviewInput, type SemrushOverviewItem, type SemrushOverviewTopKeyword, type SeoCompetitorsDomainCompetitor, type SeoCompetitorsDomainData, type SeoCompetitorsDomainInput, type SeoDomainIntersectionData, type SeoDomainIntersectionInput, type SeoDomainIntersectionKeyword, type SeoDomainRankOverviewData, type SeoDomainRankOverviewInput, type SeoKeywordDifficultyData, type SeoKeywordDifficultyDifficultie, type SeoKeywordDifficultyInput, type SeoKeywordIdeasData, type SeoKeywordIdeasIdea, type SeoKeywordIdeasInput, type SeoKeywordOverviewData, type SeoKeywordOverviewInput, type SeoKeywordOverviewKeyword, type SeoKeywordOverviewMonthlySearche, type SeoKeywordSuggestionsData, type SeoKeywordSuggestionsInput, type SeoKeywordSuggestionsSuggestion, type SeoLocalPackData, type SeoLocalPackInput, type SeoLocalPackPlace, SeoNamespace, type SeoRankedKeywordsData, type SeoRankedKeywordsInput, type SeoRankedKeywordsRankedKeyword, type SeoRelatedKeywordsData, type SeoRelatedKeywordsInput, type SeoRelatedKeywordsRelatedKeyword, type SeoSearchIntentData, type SeoSearchIntentInput, type SeoSearchIntentIntent, type SeoSearchVolumeData, type SeoSearchVolumeInput, type SeoSearchVolumeKeyword, type SeoSearchVolumeMonthlySearche, type SkuMap, SnapchatNamespace, type SnapchatProfileData, type SnapchatProfileInput, type SnapchatProfileItem, type SnapchatProfileStorie, type SocialFinderData, type SocialFinderInput, type SocialFinderItem, SocialNamespace, type SpotifyAlbumData, type SpotifyAlbumInput, type SpotifyAlbumTrack, type SpotifyArtistAlbum, type SpotifyArtistData, type SpotifyArtistInput, type SpotifyArtistTopTrack, SpotifyNamespace, type SpotifyPlayCountData, type SpotifyPlayCountInput, type SpotifyPlayCountItem, type SpotifyPodcastData, type SpotifyPodcastEpisodesData, type SpotifyPodcastEpisodesEpisode, type SpotifyPodcastEpisodesInput, type SpotifyPodcastInput, type SpotifySearchAlbum, type SpotifySearchArtist, type SpotifySearchData, type SpotifySearchInput, type SpotifySearchPodcast, type SpotifySearchTrack, type SpotifyTrackData, type SpotifyTrackInput, type StartOptions, SubstackNamespace, type SubstackPostsData, type SubstackPostsInput, type SubstackPostsItem, ThreadsNamespace, type ThreadsPostData, type ThreadsPostInput, type ThreadsProfileData, type ThreadsProfileInput, type ThreadsSearchData, type ThreadsSearchInput, type ThreadsSearchPost, type ThreadsSearchUsersData, type ThreadsSearchUsersInput, type ThreadsSearchUsersUser, type ThreadsUserPostsData, type ThreadsUserPostsInput, type ThreadsUserPostsPost, type TiktokAdLibraryAdData, type TiktokAdLibraryAdInput, type TiktokAdLibrarySearchAd, type TiktokAdLibrarySearchData, type TiktokAdLibrarySearchInput, type TiktokAudienceDemographicsAudienceLocation, type TiktokAudienceDemographicsData, type TiktokAudienceDemographicsInput, type TiktokCommentRepliesComment, type TiktokCommentRepliesData, type TiktokCommentRepliesInput, type TiktokFollowersData, type TiktokFollowersFollower, type TiktokFollowersInput, type TiktokFollowingData, type TiktokFollowingFollowing, type TiktokFollowingInput, type TiktokHashtagVideosData, type TiktokHashtagVideosInput, type TiktokHashtagVideosItem, type TiktokLiveData, type TiktokLiveInput, TiktokNamespace, type TiktokProfileData, type TiktokProfileInput, type TiktokProfileRegionData, type TiktokProfileRegionInput, type TiktokProfileVideosData, type TiktokProfileVideosInput, type TiktokProfileVideosVideo, type TiktokSearchHashtagData, type TiktokSearchHashtagInput, type TiktokSearchHashtagVideo, type TiktokSearchKeywordData, type TiktokSearchKeywordInput, type TiktokSearchKeywordVideo, type TiktokSearchTopData, type TiktokSearchTopInput, type TiktokSearchTopItem, type TiktokSearchUsersData, type TiktokSearchUsersInput, type TiktokSearchUsersUser, TiktokShopNamespace, type TiktokShopProductData, type TiktokShopProductInput, type TiktokShopProductReviewsData, type TiktokShopProductReviewsInput, type TiktokShopProductReviewsReview, type TiktokShopSearchData, type TiktokShopSearchInput, type TiktokShopSearchItem, type TiktokShopShopProductsData, type TiktokShopShopProductsInput, type TiktokShopShopProductsProduct, type TiktokShopUserShowcaseData, type TiktokShopUserShowcaseInput, type TiktokShopUserShowcaseProduct, type TiktokSongData, type TiktokSongInput, type TiktokSongVideosData, type TiktokSongVideosInput, type TiktokSongVideosVideo, type TiktokTrendingFeedData, type TiktokTrendingFeedInput, type TiktokTrendingFeedVideo, type TiktokVideoCommentsComment, type TiktokVideoCommentsData, type TiktokVideoCommentsInput, type TiktokVideoData, type TiktokVideoInput, type TiktokVideoTranscriptData, type TiktokVideoTranscriptInput, TimeoutError, TripadvisorNamespace, type TripadvisorReviewsData, type TripadvisorReviewsInput, type TripadvisorReviewsItem, type TripadvisorSearchData, type TripadvisorSearchInput, type TripadvisorSearchItem, TrustpilotNamespace, type TrustpilotReviewsData, type TrustpilotReviewsInput, type TrustpilotReviewsItem, TruthsocialNamespace, type TruthsocialPostData, type TruthsocialPostInput, type TruthsocialProfileData, type TruthsocialProfileInput, type TruthsocialUserPostsData, type TruthsocialUserPostsInput, type TruthsocialUserPostsPost, type TwitterArticleContentBlock, type TwitterArticleData, type TwitterArticleEntitie, type TwitterArticleInlineStyle, type TwitterArticleInput, type TwitterCommunityData, type TwitterCommunityInput, type TwitterCommunityTweetsData, type TwitterCommunityTweetsInput, type TwitterCommunityTweetsTweet, type TwitterFollowersData, type TwitterFollowersInput, type TwitterFollowersItem, type TwitterFollowingData, type TwitterFollowingInput, type TwitterFollowingItem, TwitterNamespace, type TwitterProfileData, type TwitterProfileInput, type TwitterRepliesData, type TwitterRepliesInput, type TwitterRepliesItem, type TwitterSearchData, type TwitterSearchInput, type TwitterSearchItem, type TwitterThreadData, type TwitterThreadInput, type TwitterThreadTweet, type TwitterTrendsData, type TwitterTrendsInput, type TwitterTrendsItem, type TwitterTweetData, type TwitterTweetInput, type TwitterTweetTranscriptData, type TwitterTweetTranscriptInput, type TwitterUserPostsData, type TwitterUserPostsInput, type TwitterUserPostsTweet, type TwitterUserTweetsData, type TwitterUserTweetsInput, type TwitterUserTweetsTweet, UpstreamError, type UpworkJobsData, type UpworkJobsInput, type UpworkJobsItem, UpworkNamespace, WalmartNamespace, type WalmartProductData, type WalmartProductInput, type WalmartProductItem, type WebCrawlData, type WebCrawlInput, type WebCrawlItem, type WebMapData, type WebMapInput, type WebMapResult, WebNamespace, type WebScrapeData, type WebScrapeInput, type WebScreenshotData, type WebScreenshotInput, type WebScreenshotItem, type WeiboHotSearchData, type WeiboHotSearchInput, type WeiboHotSearchTopic, WeiboNamespace, type WeiboPostCommentsComment, type WeiboPostCommentsData, type WeiboPostCommentsInput, type WeiboPostData, type WeiboPostInput, type WeiboProfileData, type WeiboProfileInput, type WeiboSearchData, type WeiboSearchInput, type WeiboSearchPost, type WeiboUserPostsData, type WeiboUserPostsInput, type WeiboUserPostsPost, YahooFinanceNamespace, type YahooFinanceQuoteData, type YahooFinanceQuoteInput, type YahooFinanceQuoteItem, YelpNamespace, type YelpSearchCategorie, type YelpSearchData, type YelpSearchInput, type YelpSearchItem, type YoutubeChannelCommunityPostsData, type YoutubeChannelCommunityPostsInput, type YoutubeChannelCommunityPostsPost, type YoutubeChannelData, type YoutubeChannelInput, type YoutubeChannelLivesData, type YoutubeChannelLivesInput, type YoutubeChannelLivesLive, type YoutubeChannelPlaylistsData, type YoutubeChannelPlaylistsInput, type YoutubeChannelPlaylistsPlaylist, type YoutubeChannelShortsData, type YoutubeChannelShortsInput, type YoutubeChannelShortsShort, type YoutubeChannelVideosData, type YoutubeChannelVideosInput, type YoutubeChannelVideosVideo, type YoutubeCommentRepliesComment, type YoutubeCommentRepliesData, type YoutubeCommentRepliesInput, type YoutubeCommunityPostData, type YoutubeCommunityPostInput, YoutubeNamespace, type YoutubePlaylistData, type YoutubePlaylistInput, type YoutubePlaylistVideo, type YoutubeSearchData, type YoutubeSearchHashtagData, type YoutubeSearchHashtagInput, type YoutubeSearchHashtagVideo, type YoutubeSearchInput, type YoutubeSearchVideo, type YoutubeTrendingShortsData, type YoutubeTrendingShortsInput, type YoutubeTrendingShortsShort, type YoutubeVideoCommentsComment, type YoutubeVideoCommentsData, type YoutubeVideoCommentsInput, type YoutubeVideoData, type YoutubeVideoInput, type YoutubeVideoSponsorsData, type YoutubeVideoSponsorsInput, type YoutubeVideoSponsorsSuspectedSponsor, type YoutubeVideoTranscriptData, type YoutubeVideoTranscriptInput, type ZhihuAnswerData, type ZhihuAnswerInput, ZhihuNamespace, type ZhihuProfileData, type ZhihuProfileInput, type ZhihuQuestionAnswersAnswer, type ZhihuQuestionAnswersData, type ZhihuQuestionAnswersInput, type ZhihuQuestionData, type ZhihuQuestionInput, type ZhihuSearchArticlesArticle, type ZhihuSearchArticlesData, type ZhihuSearchArticlesInput, ZillowNamespace, type ZillowPropertyData, type ZillowPropertyInput, type ZillowPropertyItem, type ZillowSearchData, type ZillowSearchInput, type ZillowSearchItem, agentSignup, paginate, unwrap };
|