@bubblelab/bubble-core 0.1.55 → 0.1.56
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 +102 -102
- package/dist/bubbles/service-bubble/agi-inc.d.ts +60 -60
- package/dist/bubbles/service-bubble/ai-agent.d.ts +68 -68
- package/dist/bubbles/service-bubble/airtable.d.ts +86 -86
- package/dist/bubbles/service-bubble/apify/apify.d.ts +24 -24
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +128 -128
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +180 -180
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +28 -28
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +36 -36
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +88 -88
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +118 -118
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +8 -8
- package/dist/bubbles/service-bubble/firecrawl.d.ts +879 -879
- package/dist/bubbles/service-bubble/followupboss.d.ts +254 -254
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +233 -233
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +341 -341
- package/dist/bubbles/service-bubble/github.d.ts +112 -112
- package/dist/bubbles/service-bubble/gmail.d.ts +555 -555
- package/dist/bubbles/service-bubble/google-calendar.d.ts +20 -20
- package/dist/bubbles/service-bubble/google-drive.d.ts +16 -16
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +10 -10
- package/dist/bubbles/service-bubble/http.d.ts +20 -20
- package/dist/bubbles/service-bubble/insforge-db.d.ts +12 -12
- package/dist/bubbles/service-bubble/jira/jira.d.ts +35 -35
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +37 -37
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1365 -1365
- package/dist/bubbles/service-bubble/postgresql.d.ts +12 -12
- package/dist/bubbles/service-bubble/resend.d.ts +24 -24
- package/dist/bubbles/service-bubble/slack/slack.d.ts +320 -320
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +91 -91
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +107 -107
- package/dist/bubbles/service-bubble/telegram.d.ts +1491 -1491
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +16 -16
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +126 -126
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +10 -10
- 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 +421 -421
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +150 -150
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +64 -64
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +146 -146
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +86 -86
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +44 -44
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- 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;
|
|
56
59
|
firstname?: string | undefined;
|
|
57
60
|
lastname?: string | undefined;
|
|
58
|
-
domain?: string | undefined;
|
|
59
61
|
company_name?: string | undefined;
|
|
60
|
-
linkedin_url?: string | undefined;
|
|
61
|
-
custom?: Record<string, string> | undefined;
|
|
62
62
|
}, {
|
|
63
|
+
custom?: Record<string, string> | undefined;
|
|
64
|
+
domain?: string | undefined;
|
|
65
|
+
linkedin_url?: string | undefined;
|
|
63
66
|
firstname?: string | undefined;
|
|
64
67
|
lastname?: string | undefined;
|
|
65
|
-
domain?: string | undefined;
|
|
66
68
|
company_name?: string | undefined;
|
|
67
|
-
linkedin_url?: string | undefined;
|
|
68
69
|
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
|
operation: "start_bulk_enrichment";
|
|
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;
|
|
77
80
|
firstname?: string | undefined;
|
|
78
81
|
lastname?: string | undefined;
|
|
79
|
-
domain?: string | undefined;
|
|
80
82
|
company_name?: string | undefined;
|
|
81
|
-
linkedin_url?: string | undefined;
|
|
82
|
-
custom?: Record<string, string> | undefined;
|
|
83
83
|
}[];
|
|
84
|
-
webhook_url?: string | undefined;
|
|
85
84
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
85
|
+
webhook_url?: string | undefined;
|
|
86
86
|
}, {
|
|
87
87
|
name: string;
|
|
88
88
|
operation: "start_bulk_enrichment";
|
|
89
89
|
contacts: {
|
|
90
|
+
custom?: Record<string, string> | undefined;
|
|
91
|
+
domain?: string | undefined;
|
|
92
|
+
linkedin_url?: string | undefined;
|
|
90
93
|
firstname?: string | undefined;
|
|
91
94
|
lastname?: string | undefined;
|
|
92
|
-
domain?: string | undefined;
|
|
93
95
|
company_name?: string | undefined;
|
|
94
|
-
linkedin_url?: string | undefined;
|
|
95
96
|
enrich_fields?: ("contact.emails" | "contact.personal_emails")[] | undefined;
|
|
96
|
-
custom?: Record<string, string> | undefined;
|
|
97
97
|
}[];
|
|
98
|
-
webhook_url?: string | undefined;
|
|
99
98
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
99
|
+
webhook_url?: 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
|
name: string;
|
|
123
123
|
operation: "start_reverse_email_lookup";
|
|
124
124
|
emails: string[];
|
|
125
|
-
webhook_url?: string | undefined;
|
|
126
125
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
126
|
+
webhook_url?: string | undefined;
|
|
127
127
|
}, {
|
|
128
128
|
name: string;
|
|
129
129
|
operation: "start_reverse_email_lookup";
|
|
130
130
|
emails: string[];
|
|
131
|
-
webhook_url?: string | undefined;
|
|
132
131
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
132
|
+
webhook_url?: 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
|
+
location?: string | undefined;
|
|
314
|
+
headline?: string | undefined;
|
|
313
315
|
linkedin_url?: string | undefined;
|
|
314
316
|
linkedin_id?: string | undefined;
|
|
315
317
|
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
|
+
location?: string | undefined;
|
|
336
|
+
headline?: string | undefined;
|
|
335
337
|
linkedin_url?: string | undefined;
|
|
336
338
|
linkedin_id?: string | number | undefined;
|
|
337
339
|
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,34 +355,12 @@ 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;
|
|
380
358
|
profile?: {
|
|
359
|
+
location?: string | undefined;
|
|
360
|
+
headline?: string | undefined;
|
|
381
361
|
linkedin_url?: string | undefined;
|
|
382
362
|
linkedin_id?: string | undefined;
|
|
383
363
|
linkedin_handle?: string | undefined;
|
|
384
|
-
headline?: string | undefined;
|
|
385
|
-
location?: string | undefined;
|
|
386
364
|
current_position?: {
|
|
387
365
|
title?: string | undefined;
|
|
388
366
|
company?: {
|
|
@@ -400,14 +378,17 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
400
378
|
end_date?: string | undefined;
|
|
401
379
|
} | undefined;
|
|
402
380
|
} | undefined;
|
|
403
|
-
}, {
|
|
404
|
-
firstname?: string | undefined;
|
|
405
|
-
lastname?: string | undefined;
|
|
406
381
|
domain?: string | undefined;
|
|
407
382
|
emails?: {
|
|
408
383
|
status?: string | undefined;
|
|
409
384
|
email?: string | undefined;
|
|
410
385
|
}[] | undefined;
|
|
386
|
+
phones?: {
|
|
387
|
+
phone?: string | undefined;
|
|
388
|
+
region?: string | undefined;
|
|
389
|
+
}[] | undefined;
|
|
390
|
+
firstname?: string | undefined;
|
|
391
|
+
lastname?: string | undefined;
|
|
411
392
|
most_probable_email?: string | undefined;
|
|
412
393
|
most_probable_personal_email?: string | undefined;
|
|
413
394
|
personal_emails?: {
|
|
@@ -415,20 +396,17 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
415
396
|
email?: string | undefined;
|
|
416
397
|
}[] | undefined;
|
|
417
398
|
most_probable_phone?: string | undefined;
|
|
418
|
-
phones?: {
|
|
419
|
-
phone?: string | undefined;
|
|
420
|
-
region?: string | undefined;
|
|
421
|
-
}[] | undefined;
|
|
422
399
|
social_medias?: {
|
|
423
400
|
type?: string | undefined;
|
|
424
401
|
url?: string | undefined;
|
|
425
402
|
}[] | undefined;
|
|
403
|
+
}, {
|
|
426
404
|
profile?: {
|
|
405
|
+
location?: string | undefined;
|
|
406
|
+
headline?: string | undefined;
|
|
427
407
|
linkedin_url?: string | undefined;
|
|
428
408
|
linkedin_id?: string | number | undefined;
|
|
429
409
|
linkedin_handle?: string | undefined;
|
|
430
|
-
headline?: string | undefined;
|
|
431
|
-
location?: string | undefined;
|
|
432
410
|
current_position?: {
|
|
433
411
|
title?: string | undefined;
|
|
434
412
|
company?: {
|
|
@@ -446,17 +424,17 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
446
424
|
end_date?: string | undefined;
|
|
447
425
|
} | undefined;
|
|
448
426
|
} | undefined;
|
|
449
|
-
}>>;
|
|
450
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
451
|
-
custom?: Record<string, string> | undefined;
|
|
452
|
-
contact?: {
|
|
453
|
-
firstname?: string | undefined;
|
|
454
|
-
lastname?: string | undefined;
|
|
455
427
|
domain?: string | undefined;
|
|
456
428
|
emails?: {
|
|
457
429
|
status?: string | undefined;
|
|
458
430
|
email?: string | undefined;
|
|
459
431
|
}[] | undefined;
|
|
432
|
+
phones?: {
|
|
433
|
+
phone?: string | undefined;
|
|
434
|
+
region?: string | undefined;
|
|
435
|
+
}[] | undefined;
|
|
436
|
+
firstname?: string | undefined;
|
|
437
|
+
lastname?: string | undefined;
|
|
460
438
|
most_probable_email?: string | undefined;
|
|
461
439
|
most_probable_personal_email?: string | undefined;
|
|
462
440
|
personal_emails?: {
|
|
@@ -464,20 +442,20 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
464
442
|
email?: string | undefined;
|
|
465
443
|
}[] | undefined;
|
|
466
444
|
most_probable_phone?: string | undefined;
|
|
467
|
-
phones?: {
|
|
468
|
-
phone?: string | undefined;
|
|
469
|
-
region?: string | undefined;
|
|
470
|
-
}[] | undefined;
|
|
471
445
|
social_medias?: {
|
|
472
446
|
type?: string | undefined;
|
|
473
447
|
url?: string | undefined;
|
|
474
448
|
}[] | undefined;
|
|
449
|
+
}>>;
|
|
450
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
451
|
+
custom?: Record<string, string> | undefined;
|
|
452
|
+
contact?: {
|
|
475
453
|
profile?: {
|
|
454
|
+
location?: string | undefined;
|
|
455
|
+
headline?: string | undefined;
|
|
476
456
|
linkedin_url?: string | undefined;
|
|
477
457
|
linkedin_id?: string | undefined;
|
|
478
458
|
linkedin_handle?: string | undefined;
|
|
479
|
-
headline?: string | undefined;
|
|
480
|
-
location?: string | undefined;
|
|
481
459
|
current_position?: {
|
|
482
460
|
title?: string | undefined;
|
|
483
461
|
company?: {
|
|
@@ -495,17 +473,17 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
495
473
|
end_date?: string | undefined;
|
|
496
474
|
} | undefined;
|
|
497
475
|
} | undefined;
|
|
498
|
-
} | undefined;
|
|
499
|
-
}, {
|
|
500
|
-
custom?: Record<string, string> | undefined;
|
|
501
|
-
contact?: {
|
|
502
|
-
firstname?: string | undefined;
|
|
503
|
-
lastname?: string | undefined;
|
|
504
476
|
domain?: string | undefined;
|
|
505
477
|
emails?: {
|
|
506
478
|
status?: string | undefined;
|
|
507
479
|
email?: string | undefined;
|
|
508
480
|
}[] | undefined;
|
|
481
|
+
phones?: {
|
|
482
|
+
phone?: string | undefined;
|
|
483
|
+
region?: string | undefined;
|
|
484
|
+
}[] | undefined;
|
|
485
|
+
firstname?: string | undefined;
|
|
486
|
+
lastname?: string | undefined;
|
|
509
487
|
most_probable_email?: string | undefined;
|
|
510
488
|
most_probable_personal_email?: string | undefined;
|
|
511
489
|
personal_emails?: {
|
|
@@ -513,20 +491,20 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
513
491
|
email?: string | undefined;
|
|
514
492
|
}[] | undefined;
|
|
515
493
|
most_probable_phone?: string | undefined;
|
|
516
|
-
phones?: {
|
|
517
|
-
phone?: string | undefined;
|
|
518
|
-
region?: string | undefined;
|
|
519
|
-
}[] | undefined;
|
|
520
494
|
social_medias?: {
|
|
521
495
|
type?: string | undefined;
|
|
522
496
|
url?: string | undefined;
|
|
523
497
|
}[] | undefined;
|
|
498
|
+
} | undefined;
|
|
499
|
+
}, {
|
|
500
|
+
custom?: Record<string, string> | undefined;
|
|
501
|
+
contact?: {
|
|
524
502
|
profile?: {
|
|
503
|
+
location?: string | undefined;
|
|
504
|
+
headline?: string | undefined;
|
|
525
505
|
linkedin_url?: string | undefined;
|
|
526
506
|
linkedin_id?: string | number | undefined;
|
|
527
507
|
linkedin_handle?: string | undefined;
|
|
528
|
-
headline?: string | undefined;
|
|
529
|
-
location?: string | undefined;
|
|
530
508
|
current_position?: {
|
|
531
509
|
title?: string | undefined;
|
|
532
510
|
company?: {
|
|
@@ -544,6 +522,28 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
544
522
|
end_date?: string | undefined;
|
|
545
523
|
} | undefined;
|
|
546
524
|
} | 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,34 +564,12 @@ 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;
|
|
589
567
|
profile?: {
|
|
568
|
+
location?: string | undefined;
|
|
569
|
+
headline?: string | undefined;
|
|
590
570
|
linkedin_url?: string | undefined;
|
|
591
571
|
linkedin_id?: string | undefined;
|
|
592
572
|
linkedin_handle?: string | undefined;
|
|
593
|
-
headline?: string | undefined;
|
|
594
|
-
location?: string | undefined;
|
|
595
573
|
current_position?: {
|
|
596
574
|
title?: string | undefined;
|
|
597
575
|
company?: {
|
|
@@ -609,28 +587,17 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
609
587
|
end_date?: string | undefined;
|
|
610
588
|
} | undefined;
|
|
611
589
|
} | undefined;
|
|
612
|
-
} | undefined;
|
|
613
|
-
}[] | undefined;
|
|
614
|
-
cost?: {
|
|
615
|
-
credits?: number | undefined;
|
|
616
|
-
} | undefined;
|
|
617
|
-
}, {
|
|
618
|
-
error: string;
|
|
619
|
-
success: boolean;
|
|
620
|
-
operation: "get_enrichment_result";
|
|
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;
|
|
629
590
|
domain?: string | undefined;
|
|
630
591
|
emails?: {
|
|
631
592
|
status?: string | undefined;
|
|
632
593
|
email?: string | undefined;
|
|
633
594
|
}[] | undefined;
|
|
595
|
+
phones?: {
|
|
596
|
+
phone?: string | undefined;
|
|
597
|
+
region?: string | undefined;
|
|
598
|
+
}[] | undefined;
|
|
599
|
+
firstname?: string | undefined;
|
|
600
|
+
lastname?: string | undefined;
|
|
634
601
|
most_probable_email?: string | undefined;
|
|
635
602
|
most_probable_personal_email?: string | undefined;
|
|
636
603
|
personal_emails?: {
|
|
@@ -638,20 +605,31 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
638
605
|
email?: string | undefined;
|
|
639
606
|
}[] | undefined;
|
|
640
607
|
most_probable_phone?: string | undefined;
|
|
641
|
-
phones?: {
|
|
642
|
-
phone?: string | undefined;
|
|
643
|
-
region?: string | undefined;
|
|
644
|
-
}[] | undefined;
|
|
645
608
|
social_medias?: {
|
|
646
609
|
type?: string | undefined;
|
|
647
610
|
url?: string | undefined;
|
|
648
611
|
}[] | undefined;
|
|
612
|
+
} | undefined;
|
|
613
|
+
}[] | undefined;
|
|
614
|
+
cost?: {
|
|
615
|
+
credits?: number | undefined;
|
|
616
|
+
} | undefined;
|
|
617
|
+
}, {
|
|
618
|
+
error: string;
|
|
619
|
+
success: boolean;
|
|
620
|
+
operation: "get_enrichment_result";
|
|
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?: {
|
|
649
627
|
profile?: {
|
|
628
|
+
location?: string | undefined;
|
|
629
|
+
headline?: string | undefined;
|
|
650
630
|
linkedin_url?: string | undefined;
|
|
651
631
|
linkedin_id?: string | number | undefined;
|
|
652
632
|
linkedin_handle?: string | undefined;
|
|
653
|
-
headline?: string | undefined;
|
|
654
|
-
location?: string | undefined;
|
|
655
633
|
current_position?: {
|
|
656
634
|
title?: string | undefined;
|
|
657
635
|
company?: {
|
|
@@ -669,6 +647,28 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
669
647
|
end_date?: string | undefined;
|
|
670
648
|
} | undefined;
|
|
671
649
|
} | 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
|
+
location?: string | undefined;
|
|
827
|
+
headline?: string | undefined;
|
|
826
828
|
linkedin_url?: string | undefined;
|
|
827
829
|
linkedin_id?: string | undefined;
|
|
828
830
|
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
|
+
location?: string | undefined;
|
|
849
|
+
headline?: string | undefined;
|
|
848
850
|
linkedin_url?: string | undefined;
|
|
849
851
|
linkedin_id?: string | number | undefined;
|
|
850
852
|
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,34 +868,12 @@ 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;
|
|
893
871
|
profile?: {
|
|
872
|
+
location?: string | undefined;
|
|
873
|
+
headline?: string | undefined;
|
|
894
874
|
linkedin_url?: string | undefined;
|
|
895
875
|
linkedin_id?: string | undefined;
|
|
896
876
|
linkedin_handle?: string | undefined;
|
|
897
|
-
headline?: string | undefined;
|
|
898
|
-
location?: string | undefined;
|
|
899
877
|
current_position?: {
|
|
900
878
|
title?: string | undefined;
|
|
901
879
|
company?: {
|
|
@@ -913,14 +891,17 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
913
891
|
end_date?: string | undefined;
|
|
914
892
|
} | undefined;
|
|
915
893
|
} | undefined;
|
|
916
|
-
}, {
|
|
917
|
-
firstname?: string | undefined;
|
|
918
|
-
lastname?: string | undefined;
|
|
919
894
|
domain?: string | undefined;
|
|
920
895
|
emails?: {
|
|
921
896
|
status?: string | undefined;
|
|
922
897
|
email?: string | undefined;
|
|
923
898
|
}[] | undefined;
|
|
899
|
+
phones?: {
|
|
900
|
+
phone?: string | undefined;
|
|
901
|
+
region?: string | undefined;
|
|
902
|
+
}[] | undefined;
|
|
903
|
+
firstname?: string | undefined;
|
|
904
|
+
lastname?: string | undefined;
|
|
924
905
|
most_probable_email?: string | undefined;
|
|
925
906
|
most_probable_personal_email?: string | undefined;
|
|
926
907
|
personal_emails?: {
|
|
@@ -928,20 +909,17 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
928
909
|
email?: string | undefined;
|
|
929
910
|
}[] | undefined;
|
|
930
911
|
most_probable_phone?: string | undefined;
|
|
931
|
-
phones?: {
|
|
932
|
-
phone?: string | undefined;
|
|
933
|
-
region?: string | undefined;
|
|
934
|
-
}[] | undefined;
|
|
935
912
|
social_medias?: {
|
|
936
913
|
type?: string | undefined;
|
|
937
914
|
url?: string | undefined;
|
|
938
915
|
}[] | undefined;
|
|
916
|
+
}, {
|
|
939
917
|
profile?: {
|
|
918
|
+
location?: string | undefined;
|
|
919
|
+
headline?: string | undefined;
|
|
940
920
|
linkedin_url?: string | undefined;
|
|
941
921
|
linkedin_id?: string | number | undefined;
|
|
942
922
|
linkedin_handle?: string | undefined;
|
|
943
|
-
headline?: string | undefined;
|
|
944
|
-
location?: string | undefined;
|
|
945
923
|
current_position?: {
|
|
946
924
|
title?: string | undefined;
|
|
947
925
|
company?: {
|
|
@@ -959,16 +937,17 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
959
937
|
end_date?: string | undefined;
|
|
960
938
|
} | undefined;
|
|
961
939
|
} | undefined;
|
|
962
|
-
}>>;
|
|
963
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
964
|
-
contact?: {
|
|
965
|
-
firstname?: string | undefined;
|
|
966
|
-
lastname?: string | undefined;
|
|
967
940
|
domain?: string | undefined;
|
|
968
941
|
emails?: {
|
|
969
942
|
status?: string | undefined;
|
|
970
943
|
email?: string | undefined;
|
|
971
944
|
}[] | undefined;
|
|
945
|
+
phones?: {
|
|
946
|
+
phone?: string | undefined;
|
|
947
|
+
region?: string | undefined;
|
|
948
|
+
}[] | undefined;
|
|
949
|
+
firstname?: string | undefined;
|
|
950
|
+
lastname?: string | undefined;
|
|
972
951
|
most_probable_email?: string | undefined;
|
|
973
952
|
most_probable_personal_email?: string | undefined;
|
|
974
953
|
personal_emails?: {
|
|
@@ -976,20 +955,20 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
976
955
|
email?: string | undefined;
|
|
977
956
|
}[] | undefined;
|
|
978
957
|
most_probable_phone?: string | undefined;
|
|
979
|
-
phones?: {
|
|
980
|
-
phone?: string | undefined;
|
|
981
|
-
region?: string | undefined;
|
|
982
|
-
}[] | undefined;
|
|
983
958
|
social_medias?: {
|
|
984
959
|
type?: string | undefined;
|
|
985
960
|
url?: string | undefined;
|
|
986
961
|
}[] | undefined;
|
|
962
|
+
}>>;
|
|
963
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
964
|
+
input?: string | undefined;
|
|
965
|
+
contact?: {
|
|
987
966
|
profile?: {
|
|
967
|
+
location?: string | undefined;
|
|
968
|
+
headline?: string | undefined;
|
|
988
969
|
linkedin_url?: string | undefined;
|
|
989
970
|
linkedin_id?: string | undefined;
|
|
990
971
|
linkedin_handle?: string | undefined;
|
|
991
|
-
headline?: string | undefined;
|
|
992
|
-
location?: string | undefined;
|
|
993
972
|
current_position?: {
|
|
994
973
|
title?: string | undefined;
|
|
995
974
|
company?: {
|
|
@@ -1007,17 +986,17 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
1007
986
|
end_date?: string | undefined;
|
|
1008
987
|
} | undefined;
|
|
1009
988
|
} | undefined;
|
|
1010
|
-
} | undefined;
|
|
1011
|
-
input?: string | undefined;
|
|
1012
|
-
}, {
|
|
1013
|
-
contact?: {
|
|
1014
|
-
firstname?: string | undefined;
|
|
1015
|
-
lastname?: string | undefined;
|
|
1016
989
|
domain?: string | undefined;
|
|
1017
990
|
emails?: {
|
|
1018
991
|
status?: string | undefined;
|
|
1019
992
|
email?: string | undefined;
|
|
1020
993
|
}[] | undefined;
|
|
994
|
+
phones?: {
|
|
995
|
+
phone?: string | undefined;
|
|
996
|
+
region?: string | undefined;
|
|
997
|
+
}[] | undefined;
|
|
998
|
+
firstname?: string | undefined;
|
|
999
|
+
lastname?: string | undefined;
|
|
1021
1000
|
most_probable_email?: string | undefined;
|
|
1022
1001
|
most_probable_personal_email?: string | undefined;
|
|
1023
1002
|
personal_emails?: {
|
|
@@ -1025,20 +1004,20 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
1025
1004
|
email?: string | undefined;
|
|
1026
1005
|
}[] | undefined;
|
|
1027
1006
|
most_probable_phone?: string | undefined;
|
|
1028
|
-
phones?: {
|
|
1029
|
-
phone?: string | undefined;
|
|
1030
|
-
region?: string | undefined;
|
|
1031
|
-
}[] | undefined;
|
|
1032
1007
|
social_medias?: {
|
|
1033
1008
|
type?: string | undefined;
|
|
1034
1009
|
url?: string | undefined;
|
|
1035
1010
|
}[] | undefined;
|
|
1011
|
+
} | undefined;
|
|
1012
|
+
}, {
|
|
1013
|
+
input?: string | undefined;
|
|
1014
|
+
contact?: {
|
|
1036
1015
|
profile?: {
|
|
1016
|
+
location?: string | undefined;
|
|
1017
|
+
headline?: string | undefined;
|
|
1037
1018
|
linkedin_url?: string | undefined;
|
|
1038
1019
|
linkedin_id?: string | number | undefined;
|
|
1039
1020
|
linkedin_handle?: string | undefined;
|
|
1040
|
-
headline?: string | undefined;
|
|
1041
|
-
location?: string | undefined;
|
|
1042
1021
|
current_position?: {
|
|
1043
1022
|
title?: string | undefined;
|
|
1044
1023
|
company?: {
|
|
@@ -1056,8 +1035,29 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
1056
1035
|
end_date?: string | undefined;
|
|
1057
1036
|
} | undefined;
|
|
1058
1037
|
} | 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;
|
|
1059
1060
|
} | 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,35 +1075,14 @@ 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;
|
|
1078
1079
|
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;
|
|
1101
1080
|
profile?: {
|
|
1081
|
+
location?: string | undefined;
|
|
1082
|
+
headline?: string | undefined;
|
|
1102
1083
|
linkedin_url?: string | undefined;
|
|
1103
1084
|
linkedin_id?: string | undefined;
|
|
1104
1085
|
linkedin_handle?: string | undefined;
|
|
1105
|
-
headline?: string | undefined;
|
|
1106
|
-
location?: string | undefined;
|
|
1107
1086
|
current_position?: {
|
|
1108
1087
|
title?: string | undefined;
|
|
1109
1088
|
company?: {
|
|
@@ -1121,28 +1100,17 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
1121
1100
|
end_date?: string | undefined;
|
|
1122
1101
|
} | undefined;
|
|
1123
1102
|
} | undefined;
|
|
1124
|
-
} | undefined;
|
|
1125
|
-
input?: string | undefined;
|
|
1126
|
-
}[] | undefined;
|
|
1127
|
-
cost?: {
|
|
1128
|
-
credits?: number | undefined;
|
|
1129
|
-
} | undefined;
|
|
1130
|
-
}, {
|
|
1131
|
-
error: string;
|
|
1132
|
-
success: boolean;
|
|
1133
|
-
operation: "get_reverse_email_result";
|
|
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;
|
|
1141
1103
|
domain?: string | undefined;
|
|
1142
1104
|
emails?: {
|
|
1143
1105
|
status?: string | undefined;
|
|
1144
1106
|
email?: string | undefined;
|
|
1145
1107
|
}[] | undefined;
|
|
1108
|
+
phones?: {
|
|
1109
|
+
phone?: string | undefined;
|
|
1110
|
+
region?: string | undefined;
|
|
1111
|
+
}[] | undefined;
|
|
1112
|
+
firstname?: string | undefined;
|
|
1113
|
+
lastname?: string | undefined;
|
|
1146
1114
|
most_probable_email?: string | undefined;
|
|
1147
1115
|
most_probable_personal_email?: string | undefined;
|
|
1148
1116
|
personal_emails?: {
|
|
@@ -1150,20 +1118,31 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
1150
1118
|
email?: string | undefined;
|
|
1151
1119
|
}[] | undefined;
|
|
1152
1120
|
most_probable_phone?: string | undefined;
|
|
1153
|
-
phones?: {
|
|
1154
|
-
phone?: string | undefined;
|
|
1155
|
-
region?: string | undefined;
|
|
1156
|
-
}[] | undefined;
|
|
1157
1121
|
social_medias?: {
|
|
1158
1122
|
type?: string | undefined;
|
|
1159
1123
|
url?: string | undefined;
|
|
1160
1124
|
}[] | undefined;
|
|
1125
|
+
} | undefined;
|
|
1126
|
+
}[] | undefined;
|
|
1127
|
+
cost?: {
|
|
1128
|
+
credits?: number | undefined;
|
|
1129
|
+
} | undefined;
|
|
1130
|
+
}, {
|
|
1131
|
+
error: string;
|
|
1132
|
+
success: boolean;
|
|
1133
|
+
operation: "get_reverse_email_result";
|
|
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?: {
|
|
1161
1140
|
profile?: {
|
|
1141
|
+
location?: string | undefined;
|
|
1142
|
+
headline?: string | undefined;
|
|
1162
1143
|
linkedin_url?: string | undefined;
|
|
1163
1144
|
linkedin_id?: string | number | undefined;
|
|
1164
1145
|
linkedin_handle?: string | undefined;
|
|
1165
|
-
headline?: string | undefined;
|
|
1166
|
-
location?: string | undefined;
|
|
1167
1146
|
current_position?: {
|
|
1168
1147
|
title?: string | undefined;
|
|
1169
1148
|
company?: {
|
|
@@ -1181,8 +1160,29 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
1181
1160
|
end_date?: string | undefined;
|
|
1182
1161
|
} | undefined;
|
|
1183
1162
|
} | 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;
|
|
1184
1185
|
} | undefined;
|
|
1185
|
-
input?: string | undefined;
|
|
1186
1186
|
}[] | undefined;
|
|
1187
1187
|
cost?: {
|
|
1188
1188
|
credits?: number | undefined;
|