@bubblelab/bubble-core 0.1.44 → 0.1.45
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/bubble-bundle.d.ts +67 -67
- package/dist/bubbles/service-bubble/agi-inc.d.ts +24 -24
- package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
- package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +48 -48
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +10 -10
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +16 -16
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +6 -6
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +80 -80
- package/dist/bubbles/service-bubble/firecrawl.d.ts +268 -268
- package/dist/bubbles/service-bubble/followupboss.d.ts +172 -172
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +233 -233
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.js +59 -2
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.js.map +1 -1
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +341 -341
- package/dist/bubbles/service-bubble/github.d.ts +28 -28
- package/dist/bubbles/service-bubble/gmail.d.ts +104 -104
- package/dist/bubbles/service-bubble/google-drive.d.ts +32 -32
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
- package/dist/bubbles/service-bubble/http.d.ts +4 -4
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/notion/notion.d.ts +80 -80
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +88 -88
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +5 -5
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +50 -50
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +6 -6
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +330 -330
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +90 -90
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +16 -16
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -53,20 +53,20 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
53
53
|
custom: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
54
54
|
}, "strip", import("zod").ZodTypeAny, {
|
|
55
55
|
enrich_fields: ("contact.emails" | "contact.personal_emails")[];
|
|
56
|
-
custom?: Record<string, string> | undefined;
|
|
57
|
-
domain?: string | undefined;
|
|
58
|
-
linkedin_url?: string | undefined;
|
|
59
56
|
firstname?: string | undefined;
|
|
60
57
|
lastname?: string | undefined;
|
|
61
|
-
company_name?: string | undefined;
|
|
62
|
-
}, {
|
|
63
|
-
custom?: Record<string, string> | undefined;
|
|
64
58
|
domain?: string | undefined;
|
|
59
|
+
company_name?: string | undefined;
|
|
65
60
|
linkedin_url?: string | undefined;
|
|
61
|
+
custom?: Record<string, string> | undefined;
|
|
62
|
+
}, {
|
|
66
63
|
firstname?: string | undefined;
|
|
67
64
|
lastname?: string | undefined;
|
|
65
|
+
domain?: string | undefined;
|
|
68
66
|
company_name?: string | undefined;
|
|
67
|
+
linkedin_url?: string | undefined;
|
|
69
68
|
enrich_fields?: ("contact.emails" | "contact.personal_emails")[] | undefined;
|
|
69
|
+
custom?: Record<string, string> | undefined;
|
|
70
70
|
}>, "many">;
|
|
71
71
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
72
72
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -74,29 +74,29 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
74
74
|
name: string;
|
|
75
75
|
contacts: {
|
|
76
76
|
enrich_fields: ("contact.emails" | "contact.personal_emails")[];
|
|
77
|
-
custom?: Record<string, string> | undefined;
|
|
78
|
-
domain?: string | undefined;
|
|
79
|
-
linkedin_url?: string | undefined;
|
|
80
77
|
firstname?: string | undefined;
|
|
81
78
|
lastname?: string | undefined;
|
|
79
|
+
domain?: string | undefined;
|
|
82
80
|
company_name?: string | undefined;
|
|
81
|
+
linkedin_url?: string | undefined;
|
|
82
|
+
custom?: Record<string, string> | undefined;
|
|
83
83
|
}[];
|
|
84
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
85
84
|
webhook_url?: string | undefined;
|
|
85
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
86
86
|
}, {
|
|
87
87
|
operation: "start_bulk_enrichment";
|
|
88
88
|
name: string;
|
|
89
89
|
contacts: {
|
|
90
|
-
custom?: Record<string, string> | undefined;
|
|
91
|
-
domain?: string | undefined;
|
|
92
|
-
linkedin_url?: string | undefined;
|
|
93
90
|
firstname?: string | undefined;
|
|
94
91
|
lastname?: string | undefined;
|
|
92
|
+
domain?: string | undefined;
|
|
95
93
|
company_name?: string | undefined;
|
|
94
|
+
linkedin_url?: string | undefined;
|
|
96
95
|
enrich_fields?: ("contact.emails" | "contact.personal_emails")[] | undefined;
|
|
96
|
+
custom?: Record<string, string> | undefined;
|
|
97
97
|
}[];
|
|
98
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
99
98
|
webhook_url?: string | undefined;
|
|
99
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
100
100
|
}>, import("zod").ZodObject<{
|
|
101
101
|
operation: import("zod").ZodLiteral<"get_enrichment_result">;
|
|
102
102
|
enrichment_id: import("zod").ZodString;
|
|
@@ -122,14 +122,14 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
122
122
|
operation: "start_reverse_email_lookup";
|
|
123
123
|
name: string;
|
|
124
124
|
emails: string[];
|
|
125
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
126
125
|
webhook_url?: string | undefined;
|
|
126
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
127
127
|
}, {
|
|
128
128
|
operation: "start_reverse_email_lookup";
|
|
129
129
|
name: string;
|
|
130
130
|
emails: string[];
|
|
131
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
132
131
|
webhook_url?: string | undefined;
|
|
132
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
133
133
|
}>, import("zod").ZodObject<{
|
|
134
134
|
operation: import("zod").ZodLiteral<"get_reverse_email_result">;
|
|
135
135
|
reverse_email_id: import("zod").ZodString;
|
|
@@ -310,11 +310,11 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
310
310
|
end_date?: string | undefined;
|
|
311
311
|
}>>;
|
|
312
312
|
}, "strip", import("zod").ZodTypeAny, {
|
|
313
|
-
headline?: string | undefined;
|
|
314
|
-
location?: string | undefined;
|
|
315
313
|
linkedin_url?: string | undefined;
|
|
316
314
|
linkedin_id?: string | undefined;
|
|
317
315
|
linkedin_handle?: string | undefined;
|
|
316
|
+
headline?: string | undefined;
|
|
317
|
+
location?: string | undefined;
|
|
318
318
|
current_position?: {
|
|
319
319
|
title?: string | undefined;
|
|
320
320
|
company?: {
|
|
@@ -332,11 +332,11 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
332
332
|
end_date?: string | undefined;
|
|
333
333
|
} | undefined;
|
|
334
334
|
}, {
|
|
335
|
-
headline?: string | undefined;
|
|
336
|
-
location?: string | undefined;
|
|
337
335
|
linkedin_url?: string | undefined;
|
|
338
336
|
linkedin_id?: string | number | undefined;
|
|
339
337
|
linkedin_handle?: string | undefined;
|
|
338
|
+
headline?: string | undefined;
|
|
339
|
+
location?: string | undefined;
|
|
340
340
|
current_position?: {
|
|
341
341
|
title?: string | undefined;
|
|
342
342
|
company?: {
|
|
@@ -355,12 +355,34 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
355
355
|
} | undefined;
|
|
356
356
|
}>>;
|
|
357
357
|
}, "strip", import("zod").ZodTypeAny, {
|
|
358
|
+
firstname?: string | undefined;
|
|
359
|
+
lastname?: string | undefined;
|
|
360
|
+
domain?: string | undefined;
|
|
361
|
+
emails?: {
|
|
362
|
+
status?: string | undefined;
|
|
363
|
+
email?: string | undefined;
|
|
364
|
+
}[] | undefined;
|
|
365
|
+
most_probable_email?: string | undefined;
|
|
366
|
+
most_probable_personal_email?: string | undefined;
|
|
367
|
+
personal_emails?: {
|
|
368
|
+
status?: string | undefined;
|
|
369
|
+
email?: string | undefined;
|
|
370
|
+
}[] | undefined;
|
|
371
|
+
most_probable_phone?: string | undefined;
|
|
372
|
+
phones?: {
|
|
373
|
+
phone?: string | undefined;
|
|
374
|
+
region?: string | undefined;
|
|
375
|
+
}[] | undefined;
|
|
376
|
+
social_medias?: {
|
|
377
|
+
type?: string | undefined;
|
|
378
|
+
url?: string | undefined;
|
|
379
|
+
}[] | undefined;
|
|
358
380
|
profile?: {
|
|
359
|
-
headline?: string | undefined;
|
|
360
|
-
location?: string | undefined;
|
|
361
381
|
linkedin_url?: string | undefined;
|
|
362
382
|
linkedin_id?: string | undefined;
|
|
363
383
|
linkedin_handle?: string | undefined;
|
|
384
|
+
headline?: string | undefined;
|
|
385
|
+
location?: string | undefined;
|
|
364
386
|
current_position?: {
|
|
365
387
|
title?: string | undefined;
|
|
366
388
|
company?: {
|
|
@@ -378,17 +400,14 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
378
400
|
end_date?: string | undefined;
|
|
379
401
|
} | undefined;
|
|
380
402
|
} | undefined;
|
|
403
|
+
}, {
|
|
404
|
+
firstname?: string | undefined;
|
|
405
|
+
lastname?: string | undefined;
|
|
381
406
|
domain?: string | undefined;
|
|
382
407
|
emails?: {
|
|
383
408
|
status?: string | undefined;
|
|
384
409
|
email?: string | undefined;
|
|
385
410
|
}[] | undefined;
|
|
386
|
-
phones?: {
|
|
387
|
-
phone?: string | undefined;
|
|
388
|
-
region?: string | undefined;
|
|
389
|
-
}[] | undefined;
|
|
390
|
-
firstname?: string | undefined;
|
|
391
|
-
lastname?: string | undefined;
|
|
392
411
|
most_probable_email?: string | undefined;
|
|
393
412
|
most_probable_personal_email?: string | undefined;
|
|
394
413
|
personal_emails?: {
|
|
@@ -396,17 +415,20 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
396
415
|
email?: string | undefined;
|
|
397
416
|
}[] | undefined;
|
|
398
417
|
most_probable_phone?: string | undefined;
|
|
418
|
+
phones?: {
|
|
419
|
+
phone?: string | undefined;
|
|
420
|
+
region?: string | undefined;
|
|
421
|
+
}[] | undefined;
|
|
399
422
|
social_medias?: {
|
|
400
423
|
type?: string | undefined;
|
|
401
424
|
url?: string | undefined;
|
|
402
425
|
}[] | undefined;
|
|
403
|
-
}, {
|
|
404
426
|
profile?: {
|
|
405
|
-
headline?: string | undefined;
|
|
406
|
-
location?: string | undefined;
|
|
407
427
|
linkedin_url?: string | undefined;
|
|
408
428
|
linkedin_id?: string | number | undefined;
|
|
409
429
|
linkedin_handle?: string | undefined;
|
|
430
|
+
headline?: string | undefined;
|
|
431
|
+
location?: string | undefined;
|
|
410
432
|
current_position?: {
|
|
411
433
|
title?: string | undefined;
|
|
412
434
|
company?: {
|
|
@@ -424,17 +446,17 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
424
446
|
end_date?: string | undefined;
|
|
425
447
|
} | undefined;
|
|
426
448
|
} | undefined;
|
|
449
|
+
}>>;
|
|
450
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
451
|
+
custom?: Record<string, string> | undefined;
|
|
452
|
+
contact?: {
|
|
453
|
+
firstname?: string | undefined;
|
|
454
|
+
lastname?: string | undefined;
|
|
427
455
|
domain?: string | undefined;
|
|
428
456
|
emails?: {
|
|
429
457
|
status?: string | undefined;
|
|
430
458
|
email?: string | undefined;
|
|
431
459
|
}[] | undefined;
|
|
432
|
-
phones?: {
|
|
433
|
-
phone?: string | undefined;
|
|
434
|
-
region?: string | undefined;
|
|
435
|
-
}[] | undefined;
|
|
436
|
-
firstname?: string | undefined;
|
|
437
|
-
lastname?: string | undefined;
|
|
438
460
|
most_probable_email?: string | undefined;
|
|
439
461
|
most_probable_personal_email?: string | undefined;
|
|
440
462
|
personal_emails?: {
|
|
@@ -442,20 +464,20 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
442
464
|
email?: string | undefined;
|
|
443
465
|
}[] | undefined;
|
|
444
466
|
most_probable_phone?: string | undefined;
|
|
467
|
+
phones?: {
|
|
468
|
+
phone?: string | undefined;
|
|
469
|
+
region?: string | undefined;
|
|
470
|
+
}[] | undefined;
|
|
445
471
|
social_medias?: {
|
|
446
472
|
type?: string | undefined;
|
|
447
473
|
url?: string | undefined;
|
|
448
474
|
}[] | undefined;
|
|
449
|
-
}>>;
|
|
450
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
451
|
-
custom?: Record<string, string> | undefined;
|
|
452
|
-
contact?: {
|
|
453
475
|
profile?: {
|
|
454
|
-
headline?: string | undefined;
|
|
455
|
-
location?: string | undefined;
|
|
456
476
|
linkedin_url?: string | undefined;
|
|
457
477
|
linkedin_id?: string | undefined;
|
|
458
478
|
linkedin_handle?: string | undefined;
|
|
479
|
+
headline?: string | undefined;
|
|
480
|
+
location?: string | undefined;
|
|
459
481
|
current_position?: {
|
|
460
482
|
title?: string | undefined;
|
|
461
483
|
company?: {
|
|
@@ -473,17 +495,17 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
473
495
|
end_date?: string | undefined;
|
|
474
496
|
} | undefined;
|
|
475
497
|
} | undefined;
|
|
498
|
+
} | undefined;
|
|
499
|
+
}, {
|
|
500
|
+
custom?: Record<string, string> | undefined;
|
|
501
|
+
contact?: {
|
|
502
|
+
firstname?: string | undefined;
|
|
503
|
+
lastname?: string | undefined;
|
|
476
504
|
domain?: string | undefined;
|
|
477
505
|
emails?: {
|
|
478
506
|
status?: string | undefined;
|
|
479
507
|
email?: string | undefined;
|
|
480
508
|
}[] | undefined;
|
|
481
|
-
phones?: {
|
|
482
|
-
phone?: string | undefined;
|
|
483
|
-
region?: string | undefined;
|
|
484
|
-
}[] | undefined;
|
|
485
|
-
firstname?: string | undefined;
|
|
486
|
-
lastname?: string | undefined;
|
|
487
509
|
most_probable_email?: string | undefined;
|
|
488
510
|
most_probable_personal_email?: string | undefined;
|
|
489
511
|
personal_emails?: {
|
|
@@ -491,20 +513,20 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
491
513
|
email?: string | undefined;
|
|
492
514
|
}[] | undefined;
|
|
493
515
|
most_probable_phone?: string | undefined;
|
|
516
|
+
phones?: {
|
|
517
|
+
phone?: string | undefined;
|
|
518
|
+
region?: string | undefined;
|
|
519
|
+
}[] | undefined;
|
|
494
520
|
social_medias?: {
|
|
495
521
|
type?: string | undefined;
|
|
496
522
|
url?: string | undefined;
|
|
497
523
|
}[] | undefined;
|
|
498
|
-
} | undefined;
|
|
499
|
-
}, {
|
|
500
|
-
custom?: Record<string, string> | undefined;
|
|
501
|
-
contact?: {
|
|
502
524
|
profile?: {
|
|
503
|
-
headline?: string | undefined;
|
|
504
|
-
location?: string | undefined;
|
|
505
525
|
linkedin_url?: string | undefined;
|
|
506
526
|
linkedin_id?: string | number | undefined;
|
|
507
527
|
linkedin_handle?: string | undefined;
|
|
528
|
+
headline?: string | undefined;
|
|
529
|
+
location?: string | undefined;
|
|
508
530
|
current_position?: {
|
|
509
531
|
title?: string | undefined;
|
|
510
532
|
company?: {
|
|
@@ -522,28 +544,6 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
522
544
|
end_date?: string | undefined;
|
|
523
545
|
} | undefined;
|
|
524
546
|
} | undefined;
|
|
525
|
-
domain?: string | undefined;
|
|
526
|
-
emails?: {
|
|
527
|
-
status?: string | undefined;
|
|
528
|
-
email?: string | undefined;
|
|
529
|
-
}[] | undefined;
|
|
530
|
-
phones?: {
|
|
531
|
-
phone?: string | undefined;
|
|
532
|
-
region?: string | undefined;
|
|
533
|
-
}[] | undefined;
|
|
534
|
-
firstname?: string | undefined;
|
|
535
|
-
lastname?: string | undefined;
|
|
536
|
-
most_probable_email?: string | undefined;
|
|
537
|
-
most_probable_personal_email?: string | undefined;
|
|
538
|
-
personal_emails?: {
|
|
539
|
-
status?: string | undefined;
|
|
540
|
-
email?: string | undefined;
|
|
541
|
-
}[] | undefined;
|
|
542
|
-
most_probable_phone?: string | undefined;
|
|
543
|
-
social_medias?: {
|
|
544
|
-
type?: string | undefined;
|
|
545
|
-
url?: string | undefined;
|
|
546
|
-
}[] | undefined;
|
|
547
547
|
} | undefined;
|
|
548
548
|
}>, "many">>;
|
|
549
549
|
cost: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
@@ -564,12 +564,34 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
564
564
|
results?: {
|
|
565
565
|
custom?: Record<string, string> | undefined;
|
|
566
566
|
contact?: {
|
|
567
|
+
firstname?: string | undefined;
|
|
568
|
+
lastname?: string | undefined;
|
|
569
|
+
domain?: string | undefined;
|
|
570
|
+
emails?: {
|
|
571
|
+
status?: string | undefined;
|
|
572
|
+
email?: string | undefined;
|
|
573
|
+
}[] | undefined;
|
|
574
|
+
most_probable_email?: string | undefined;
|
|
575
|
+
most_probable_personal_email?: string | undefined;
|
|
576
|
+
personal_emails?: {
|
|
577
|
+
status?: string | undefined;
|
|
578
|
+
email?: string | undefined;
|
|
579
|
+
}[] | undefined;
|
|
580
|
+
most_probable_phone?: string | undefined;
|
|
581
|
+
phones?: {
|
|
582
|
+
phone?: string | undefined;
|
|
583
|
+
region?: string | undefined;
|
|
584
|
+
}[] | undefined;
|
|
585
|
+
social_medias?: {
|
|
586
|
+
type?: string | undefined;
|
|
587
|
+
url?: string | undefined;
|
|
588
|
+
}[] | undefined;
|
|
567
589
|
profile?: {
|
|
568
|
-
headline?: string | undefined;
|
|
569
|
-
location?: string | undefined;
|
|
570
590
|
linkedin_url?: string | undefined;
|
|
571
591
|
linkedin_id?: string | undefined;
|
|
572
592
|
linkedin_handle?: string | undefined;
|
|
593
|
+
headline?: string | undefined;
|
|
594
|
+
location?: string | undefined;
|
|
573
595
|
current_position?: {
|
|
574
596
|
title?: string | undefined;
|
|
575
597
|
company?: {
|
|
@@ -587,17 +609,28 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
587
609
|
end_date?: string | undefined;
|
|
588
610
|
} | undefined;
|
|
589
611
|
} | undefined;
|
|
612
|
+
} | undefined;
|
|
613
|
+
}[] | undefined;
|
|
614
|
+
cost?: {
|
|
615
|
+
credits?: number | undefined;
|
|
616
|
+
} | undefined;
|
|
617
|
+
}, {
|
|
618
|
+
operation: "get_enrichment_result";
|
|
619
|
+
success: boolean;
|
|
620
|
+
error: string;
|
|
621
|
+
status?: "CREATED" | "IN_PROGRESS" | "CANCELED" | "CREDITS_INSUFFICIENT" | "FINISHED" | "RATE_LIMIT" | "UNKNOWN" | undefined;
|
|
622
|
+
name?: string | undefined;
|
|
623
|
+
id?: string | undefined;
|
|
624
|
+
results?: {
|
|
625
|
+
custom?: Record<string, string> | undefined;
|
|
626
|
+
contact?: {
|
|
627
|
+
firstname?: string | undefined;
|
|
628
|
+
lastname?: string | undefined;
|
|
590
629
|
domain?: string | undefined;
|
|
591
630
|
emails?: {
|
|
592
631
|
status?: string | undefined;
|
|
593
632
|
email?: string | undefined;
|
|
594
633
|
}[] | undefined;
|
|
595
|
-
phones?: {
|
|
596
|
-
phone?: string | undefined;
|
|
597
|
-
region?: string | undefined;
|
|
598
|
-
}[] | undefined;
|
|
599
|
-
firstname?: string | undefined;
|
|
600
|
-
lastname?: string | undefined;
|
|
601
634
|
most_probable_email?: string | undefined;
|
|
602
635
|
most_probable_personal_email?: string | undefined;
|
|
603
636
|
personal_emails?: {
|
|
@@ -605,31 +638,20 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
605
638
|
email?: string | undefined;
|
|
606
639
|
}[] | undefined;
|
|
607
640
|
most_probable_phone?: string | undefined;
|
|
641
|
+
phones?: {
|
|
642
|
+
phone?: string | undefined;
|
|
643
|
+
region?: string | undefined;
|
|
644
|
+
}[] | undefined;
|
|
608
645
|
social_medias?: {
|
|
609
646
|
type?: string | undefined;
|
|
610
647
|
url?: string | undefined;
|
|
611
648
|
}[] | undefined;
|
|
612
|
-
} | undefined;
|
|
613
|
-
}[] | undefined;
|
|
614
|
-
cost?: {
|
|
615
|
-
credits?: number | undefined;
|
|
616
|
-
} | undefined;
|
|
617
|
-
}, {
|
|
618
|
-
operation: "get_enrichment_result";
|
|
619
|
-
success: boolean;
|
|
620
|
-
error: string;
|
|
621
|
-
status?: "CREATED" | "IN_PROGRESS" | "CANCELED" | "CREDITS_INSUFFICIENT" | "FINISHED" | "RATE_LIMIT" | "UNKNOWN" | undefined;
|
|
622
|
-
name?: string | undefined;
|
|
623
|
-
id?: string | undefined;
|
|
624
|
-
results?: {
|
|
625
|
-
custom?: Record<string, string> | undefined;
|
|
626
|
-
contact?: {
|
|
627
649
|
profile?: {
|
|
628
|
-
headline?: string | undefined;
|
|
629
|
-
location?: string | undefined;
|
|
630
650
|
linkedin_url?: string | undefined;
|
|
631
651
|
linkedin_id?: string | number | undefined;
|
|
632
652
|
linkedin_handle?: string | undefined;
|
|
653
|
+
headline?: string | undefined;
|
|
654
|
+
location?: string | undefined;
|
|
633
655
|
current_position?: {
|
|
634
656
|
title?: string | undefined;
|
|
635
657
|
company?: {
|
|
@@ -647,28 +669,6 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
647
669
|
end_date?: string | undefined;
|
|
648
670
|
} | undefined;
|
|
649
671
|
} | undefined;
|
|
650
|
-
domain?: string | undefined;
|
|
651
|
-
emails?: {
|
|
652
|
-
status?: string | undefined;
|
|
653
|
-
email?: string | undefined;
|
|
654
|
-
}[] | undefined;
|
|
655
|
-
phones?: {
|
|
656
|
-
phone?: string | undefined;
|
|
657
|
-
region?: string | undefined;
|
|
658
|
-
}[] | undefined;
|
|
659
|
-
firstname?: string | undefined;
|
|
660
|
-
lastname?: string | undefined;
|
|
661
|
-
most_probable_email?: string | undefined;
|
|
662
|
-
most_probable_personal_email?: string | undefined;
|
|
663
|
-
personal_emails?: {
|
|
664
|
-
status?: string | undefined;
|
|
665
|
-
email?: string | undefined;
|
|
666
|
-
}[] | undefined;
|
|
667
|
-
most_probable_phone?: string | undefined;
|
|
668
|
-
social_medias?: {
|
|
669
|
-
type?: string | undefined;
|
|
670
|
-
url?: string | undefined;
|
|
671
|
-
}[] | undefined;
|
|
672
672
|
} | undefined;
|
|
673
673
|
}[] | undefined;
|
|
674
674
|
cost?: {
|
|
@@ -823,11 +823,11 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
823
823
|
end_date?: string | undefined;
|
|
824
824
|
}>>;
|
|
825
825
|
}, "strip", import("zod").ZodTypeAny, {
|
|
826
|
-
headline?: string | undefined;
|
|
827
|
-
location?: string | undefined;
|
|
828
826
|
linkedin_url?: string | undefined;
|
|
829
827
|
linkedin_id?: string | undefined;
|
|
830
828
|
linkedin_handle?: string | undefined;
|
|
829
|
+
headline?: string | undefined;
|
|
830
|
+
location?: string | undefined;
|
|
831
831
|
current_position?: {
|
|
832
832
|
title?: string | undefined;
|
|
833
833
|
company?: {
|
|
@@ -845,11 +845,11 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
845
845
|
end_date?: string | undefined;
|
|
846
846
|
} | undefined;
|
|
847
847
|
}, {
|
|
848
|
-
headline?: string | undefined;
|
|
849
|
-
location?: string | undefined;
|
|
850
848
|
linkedin_url?: string | undefined;
|
|
851
849
|
linkedin_id?: string | number | undefined;
|
|
852
850
|
linkedin_handle?: string | undefined;
|
|
851
|
+
headline?: string | undefined;
|
|
852
|
+
location?: string | undefined;
|
|
853
853
|
current_position?: {
|
|
854
854
|
title?: string | undefined;
|
|
855
855
|
company?: {
|
|
@@ -868,12 +868,34 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
868
868
|
} | undefined;
|
|
869
869
|
}>>;
|
|
870
870
|
}, "strip", import("zod").ZodTypeAny, {
|
|
871
|
+
firstname?: string | undefined;
|
|
872
|
+
lastname?: string | undefined;
|
|
873
|
+
domain?: string | undefined;
|
|
874
|
+
emails?: {
|
|
875
|
+
status?: string | undefined;
|
|
876
|
+
email?: string | undefined;
|
|
877
|
+
}[] | undefined;
|
|
878
|
+
most_probable_email?: string | undefined;
|
|
879
|
+
most_probable_personal_email?: string | undefined;
|
|
880
|
+
personal_emails?: {
|
|
881
|
+
status?: string | undefined;
|
|
882
|
+
email?: string | undefined;
|
|
883
|
+
}[] | undefined;
|
|
884
|
+
most_probable_phone?: string | undefined;
|
|
885
|
+
phones?: {
|
|
886
|
+
phone?: string | undefined;
|
|
887
|
+
region?: string | undefined;
|
|
888
|
+
}[] | undefined;
|
|
889
|
+
social_medias?: {
|
|
890
|
+
type?: string | undefined;
|
|
891
|
+
url?: string | undefined;
|
|
892
|
+
}[] | undefined;
|
|
871
893
|
profile?: {
|
|
872
|
-
headline?: string | undefined;
|
|
873
|
-
location?: string | undefined;
|
|
874
894
|
linkedin_url?: string | undefined;
|
|
875
895
|
linkedin_id?: string | undefined;
|
|
876
896
|
linkedin_handle?: string | undefined;
|
|
897
|
+
headline?: string | undefined;
|
|
898
|
+
location?: string | undefined;
|
|
877
899
|
current_position?: {
|
|
878
900
|
title?: string | undefined;
|
|
879
901
|
company?: {
|
|
@@ -891,17 +913,14 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
891
913
|
end_date?: string | undefined;
|
|
892
914
|
} | undefined;
|
|
893
915
|
} | undefined;
|
|
916
|
+
}, {
|
|
917
|
+
firstname?: string | undefined;
|
|
918
|
+
lastname?: string | undefined;
|
|
894
919
|
domain?: string | undefined;
|
|
895
920
|
emails?: {
|
|
896
921
|
status?: string | undefined;
|
|
897
922
|
email?: string | undefined;
|
|
898
923
|
}[] | undefined;
|
|
899
|
-
phones?: {
|
|
900
|
-
phone?: string | undefined;
|
|
901
|
-
region?: string | undefined;
|
|
902
|
-
}[] | undefined;
|
|
903
|
-
firstname?: string | undefined;
|
|
904
|
-
lastname?: string | undefined;
|
|
905
924
|
most_probable_email?: string | undefined;
|
|
906
925
|
most_probable_personal_email?: string | undefined;
|
|
907
926
|
personal_emails?: {
|
|
@@ -909,17 +928,20 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
909
928
|
email?: string | undefined;
|
|
910
929
|
}[] | undefined;
|
|
911
930
|
most_probable_phone?: string | undefined;
|
|
931
|
+
phones?: {
|
|
932
|
+
phone?: string | undefined;
|
|
933
|
+
region?: string | undefined;
|
|
934
|
+
}[] | undefined;
|
|
912
935
|
social_medias?: {
|
|
913
936
|
type?: string | undefined;
|
|
914
937
|
url?: string | undefined;
|
|
915
938
|
}[] | undefined;
|
|
916
|
-
}, {
|
|
917
939
|
profile?: {
|
|
918
|
-
headline?: string | undefined;
|
|
919
|
-
location?: string | undefined;
|
|
920
940
|
linkedin_url?: string | undefined;
|
|
921
941
|
linkedin_id?: string | number | undefined;
|
|
922
942
|
linkedin_handle?: string | undefined;
|
|
943
|
+
headline?: string | undefined;
|
|
944
|
+
location?: string | undefined;
|
|
923
945
|
current_position?: {
|
|
924
946
|
title?: string | undefined;
|
|
925
947
|
company?: {
|
|
@@ -937,17 +959,16 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
937
959
|
end_date?: string | undefined;
|
|
938
960
|
} | undefined;
|
|
939
961
|
} | undefined;
|
|
962
|
+
}>>;
|
|
963
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
964
|
+
contact?: {
|
|
965
|
+
firstname?: string | undefined;
|
|
966
|
+
lastname?: string | undefined;
|
|
940
967
|
domain?: string | undefined;
|
|
941
968
|
emails?: {
|
|
942
969
|
status?: string | undefined;
|
|
943
970
|
email?: string | undefined;
|
|
944
971
|
}[] | undefined;
|
|
945
|
-
phones?: {
|
|
946
|
-
phone?: string | undefined;
|
|
947
|
-
region?: string | undefined;
|
|
948
|
-
}[] | undefined;
|
|
949
|
-
firstname?: string | undefined;
|
|
950
|
-
lastname?: string | undefined;
|
|
951
972
|
most_probable_email?: string | undefined;
|
|
952
973
|
most_probable_personal_email?: string | undefined;
|
|
953
974
|
personal_emails?: {
|
|
@@ -955,20 +976,20 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
955
976
|
email?: string | undefined;
|
|
956
977
|
}[] | undefined;
|
|
957
978
|
most_probable_phone?: string | undefined;
|
|
979
|
+
phones?: {
|
|
980
|
+
phone?: string | undefined;
|
|
981
|
+
region?: string | undefined;
|
|
982
|
+
}[] | undefined;
|
|
958
983
|
social_medias?: {
|
|
959
984
|
type?: string | undefined;
|
|
960
985
|
url?: string | undefined;
|
|
961
986
|
}[] | undefined;
|
|
962
|
-
}>>;
|
|
963
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
964
|
-
input?: string | undefined;
|
|
965
|
-
contact?: {
|
|
966
987
|
profile?: {
|
|
967
|
-
headline?: string | undefined;
|
|
968
|
-
location?: string | undefined;
|
|
969
988
|
linkedin_url?: string | undefined;
|
|
970
989
|
linkedin_id?: string | undefined;
|
|
971
990
|
linkedin_handle?: string | undefined;
|
|
991
|
+
headline?: string | undefined;
|
|
992
|
+
location?: string | undefined;
|
|
972
993
|
current_position?: {
|
|
973
994
|
title?: string | undefined;
|
|
974
995
|
company?: {
|
|
@@ -986,17 +1007,17 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
986
1007
|
end_date?: string | undefined;
|
|
987
1008
|
} | undefined;
|
|
988
1009
|
} | undefined;
|
|
1010
|
+
} | undefined;
|
|
1011
|
+
input?: string | undefined;
|
|
1012
|
+
}, {
|
|
1013
|
+
contact?: {
|
|
1014
|
+
firstname?: string | undefined;
|
|
1015
|
+
lastname?: string | undefined;
|
|
989
1016
|
domain?: string | undefined;
|
|
990
1017
|
emails?: {
|
|
991
1018
|
status?: string | undefined;
|
|
992
1019
|
email?: string | undefined;
|
|
993
1020
|
}[] | undefined;
|
|
994
|
-
phones?: {
|
|
995
|
-
phone?: string | undefined;
|
|
996
|
-
region?: string | undefined;
|
|
997
|
-
}[] | undefined;
|
|
998
|
-
firstname?: string | undefined;
|
|
999
|
-
lastname?: string | undefined;
|
|
1000
1021
|
most_probable_email?: string | undefined;
|
|
1001
1022
|
most_probable_personal_email?: string | undefined;
|
|
1002
1023
|
personal_emails?: {
|
|
@@ -1004,20 +1025,20 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
1004
1025
|
email?: string | undefined;
|
|
1005
1026
|
}[] | undefined;
|
|
1006
1027
|
most_probable_phone?: string | undefined;
|
|
1028
|
+
phones?: {
|
|
1029
|
+
phone?: string | undefined;
|
|
1030
|
+
region?: string | undefined;
|
|
1031
|
+
}[] | undefined;
|
|
1007
1032
|
social_medias?: {
|
|
1008
1033
|
type?: string | undefined;
|
|
1009
1034
|
url?: string | undefined;
|
|
1010
1035
|
}[] | undefined;
|
|
1011
|
-
} | undefined;
|
|
1012
|
-
}, {
|
|
1013
|
-
input?: string | undefined;
|
|
1014
|
-
contact?: {
|
|
1015
1036
|
profile?: {
|
|
1016
|
-
headline?: string | undefined;
|
|
1017
|
-
location?: string | undefined;
|
|
1018
1037
|
linkedin_url?: string | undefined;
|
|
1019
1038
|
linkedin_id?: string | number | undefined;
|
|
1020
1039
|
linkedin_handle?: string | undefined;
|
|
1040
|
+
headline?: string | undefined;
|
|
1041
|
+
location?: string | undefined;
|
|
1021
1042
|
current_position?: {
|
|
1022
1043
|
title?: string | undefined;
|
|
1023
1044
|
company?: {
|
|
@@ -1035,29 +1056,8 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
1035
1056
|
end_date?: string | undefined;
|
|
1036
1057
|
} | undefined;
|
|
1037
1058
|
} | undefined;
|
|
1038
|
-
domain?: string | undefined;
|
|
1039
|
-
emails?: {
|
|
1040
|
-
status?: string | undefined;
|
|
1041
|
-
email?: string | undefined;
|
|
1042
|
-
}[] | undefined;
|
|
1043
|
-
phones?: {
|
|
1044
|
-
phone?: string | undefined;
|
|
1045
|
-
region?: string | undefined;
|
|
1046
|
-
}[] | undefined;
|
|
1047
|
-
firstname?: string | undefined;
|
|
1048
|
-
lastname?: string | undefined;
|
|
1049
|
-
most_probable_email?: string | undefined;
|
|
1050
|
-
most_probable_personal_email?: string | undefined;
|
|
1051
|
-
personal_emails?: {
|
|
1052
|
-
status?: string | undefined;
|
|
1053
|
-
email?: string | undefined;
|
|
1054
|
-
}[] | undefined;
|
|
1055
|
-
most_probable_phone?: string | undefined;
|
|
1056
|
-
social_medias?: {
|
|
1057
|
-
type?: string | undefined;
|
|
1058
|
-
url?: string | undefined;
|
|
1059
|
-
}[] | undefined;
|
|
1060
1059
|
} | undefined;
|
|
1060
|
+
input?: string | undefined;
|
|
1061
1061
|
}>, "many">>;
|
|
1062
1062
|
cost: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1063
1063
|
credits: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -1075,14 +1075,35 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
1075
1075
|
name?: string | undefined;
|
|
1076
1076
|
id?: string | undefined;
|
|
1077
1077
|
results?: {
|
|
1078
|
-
input?: string | undefined;
|
|
1079
1078
|
contact?: {
|
|
1079
|
+
firstname?: string | undefined;
|
|
1080
|
+
lastname?: string | undefined;
|
|
1081
|
+
domain?: string | undefined;
|
|
1082
|
+
emails?: {
|
|
1083
|
+
status?: string | undefined;
|
|
1084
|
+
email?: string | undefined;
|
|
1085
|
+
}[] | undefined;
|
|
1086
|
+
most_probable_email?: string | undefined;
|
|
1087
|
+
most_probable_personal_email?: string | undefined;
|
|
1088
|
+
personal_emails?: {
|
|
1089
|
+
status?: string | undefined;
|
|
1090
|
+
email?: string | undefined;
|
|
1091
|
+
}[] | undefined;
|
|
1092
|
+
most_probable_phone?: string | undefined;
|
|
1093
|
+
phones?: {
|
|
1094
|
+
phone?: string | undefined;
|
|
1095
|
+
region?: string | undefined;
|
|
1096
|
+
}[] | undefined;
|
|
1097
|
+
social_medias?: {
|
|
1098
|
+
type?: string | undefined;
|
|
1099
|
+
url?: string | undefined;
|
|
1100
|
+
}[] | undefined;
|
|
1080
1101
|
profile?: {
|
|
1081
|
-
headline?: string | undefined;
|
|
1082
|
-
location?: string | undefined;
|
|
1083
1102
|
linkedin_url?: string | undefined;
|
|
1084
1103
|
linkedin_id?: string | undefined;
|
|
1085
1104
|
linkedin_handle?: string | undefined;
|
|
1105
|
+
headline?: string | undefined;
|
|
1106
|
+
location?: string | undefined;
|
|
1086
1107
|
current_position?: {
|
|
1087
1108
|
title?: string | undefined;
|
|
1088
1109
|
company?: {
|
|
@@ -1100,17 +1121,28 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
1100
1121
|
end_date?: string | undefined;
|
|
1101
1122
|
} | undefined;
|
|
1102
1123
|
} | undefined;
|
|
1124
|
+
} | undefined;
|
|
1125
|
+
input?: string | undefined;
|
|
1126
|
+
}[] | undefined;
|
|
1127
|
+
cost?: {
|
|
1128
|
+
credits?: number | undefined;
|
|
1129
|
+
} | undefined;
|
|
1130
|
+
}, {
|
|
1131
|
+
operation: "get_reverse_email_result";
|
|
1132
|
+
success: boolean;
|
|
1133
|
+
error: string;
|
|
1134
|
+
status?: "CREATED" | "IN_PROGRESS" | "CANCELED" | "CREDITS_INSUFFICIENT" | "FINISHED" | "RATE_LIMIT" | "UNKNOWN" | undefined;
|
|
1135
|
+
name?: string | undefined;
|
|
1136
|
+
id?: string | undefined;
|
|
1137
|
+
results?: {
|
|
1138
|
+
contact?: {
|
|
1139
|
+
firstname?: string | undefined;
|
|
1140
|
+
lastname?: string | undefined;
|
|
1103
1141
|
domain?: string | undefined;
|
|
1104
1142
|
emails?: {
|
|
1105
1143
|
status?: string | undefined;
|
|
1106
1144
|
email?: string | undefined;
|
|
1107
1145
|
}[] | undefined;
|
|
1108
|
-
phones?: {
|
|
1109
|
-
phone?: string | undefined;
|
|
1110
|
-
region?: string | undefined;
|
|
1111
|
-
}[] | undefined;
|
|
1112
|
-
firstname?: string | undefined;
|
|
1113
|
-
lastname?: string | undefined;
|
|
1114
1146
|
most_probable_email?: string | undefined;
|
|
1115
1147
|
most_probable_personal_email?: string | undefined;
|
|
1116
1148
|
personal_emails?: {
|
|
@@ -1118,31 +1150,20 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
1118
1150
|
email?: string | undefined;
|
|
1119
1151
|
}[] | undefined;
|
|
1120
1152
|
most_probable_phone?: string | undefined;
|
|
1153
|
+
phones?: {
|
|
1154
|
+
phone?: string | undefined;
|
|
1155
|
+
region?: string | undefined;
|
|
1156
|
+
}[] | undefined;
|
|
1121
1157
|
social_medias?: {
|
|
1122
1158
|
type?: string | undefined;
|
|
1123
1159
|
url?: string | undefined;
|
|
1124
1160
|
}[] | undefined;
|
|
1125
|
-
} | undefined;
|
|
1126
|
-
}[] | undefined;
|
|
1127
|
-
cost?: {
|
|
1128
|
-
credits?: number | undefined;
|
|
1129
|
-
} | undefined;
|
|
1130
|
-
}, {
|
|
1131
|
-
operation: "get_reverse_email_result";
|
|
1132
|
-
success: boolean;
|
|
1133
|
-
error: string;
|
|
1134
|
-
status?: "CREATED" | "IN_PROGRESS" | "CANCELED" | "CREDITS_INSUFFICIENT" | "FINISHED" | "RATE_LIMIT" | "UNKNOWN" | undefined;
|
|
1135
|
-
name?: string | undefined;
|
|
1136
|
-
id?: string | undefined;
|
|
1137
|
-
results?: {
|
|
1138
|
-
input?: string | undefined;
|
|
1139
|
-
contact?: {
|
|
1140
1161
|
profile?: {
|
|
1141
|
-
headline?: string | undefined;
|
|
1142
|
-
location?: string | undefined;
|
|
1143
1162
|
linkedin_url?: string | undefined;
|
|
1144
1163
|
linkedin_id?: string | number | undefined;
|
|
1145
1164
|
linkedin_handle?: string | undefined;
|
|
1165
|
+
headline?: string | undefined;
|
|
1166
|
+
location?: string | undefined;
|
|
1146
1167
|
current_position?: {
|
|
1147
1168
|
title?: string | undefined;
|
|
1148
1169
|
company?: {
|
|
@@ -1160,29 +1181,8 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
1160
1181
|
end_date?: string | undefined;
|
|
1161
1182
|
} | undefined;
|
|
1162
1183
|
} | undefined;
|
|
1163
|
-
domain?: string | undefined;
|
|
1164
|
-
emails?: {
|
|
1165
|
-
status?: string | undefined;
|
|
1166
|
-
email?: string | undefined;
|
|
1167
|
-
}[] | undefined;
|
|
1168
|
-
phones?: {
|
|
1169
|
-
phone?: string | undefined;
|
|
1170
|
-
region?: string | undefined;
|
|
1171
|
-
}[] | undefined;
|
|
1172
|
-
firstname?: string | undefined;
|
|
1173
|
-
lastname?: string | undefined;
|
|
1174
|
-
most_probable_email?: string | undefined;
|
|
1175
|
-
most_probable_personal_email?: string | undefined;
|
|
1176
|
-
personal_emails?: {
|
|
1177
|
-
status?: string | undefined;
|
|
1178
|
-
email?: string | undefined;
|
|
1179
|
-
}[] | undefined;
|
|
1180
|
-
most_probable_phone?: string | undefined;
|
|
1181
|
-
social_medias?: {
|
|
1182
|
-
type?: string | undefined;
|
|
1183
|
-
url?: string | undefined;
|
|
1184
|
-
}[] | undefined;
|
|
1185
1184
|
} | undefined;
|
|
1185
|
+
input?: string | undefined;
|
|
1186
1186
|
}[] | undefined;
|
|
1187
1187
|
cost?: {
|
|
1188
1188
|
credits?: number | undefined;
|