@bubblelab/bubble-core 0.1.62 → 0.1.64
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 +88 -88
- package/dist/bubbles/service-bubble/agi-inc.d.ts +148 -148
- package/dist/bubbles/service-bubble/ai-agent.d.ts +80 -80
- package/dist/bubbles/service-bubble/airtable.d.ts +214 -214
- package/dist/bubbles/service-bubble/apify/apify.d.ts +24 -24
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +84 -84
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +90 -90
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +106 -106
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +138 -138
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +52 -52
- package/dist/bubbles/service-bubble/firecrawl.d.ts +862 -862
- package/dist/bubbles/service-bubble/followupboss.d.ts +270 -270
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +88 -88
- package/dist/bubbles/service-bubble/github.d.ts +268 -268
- package/dist/bubbles/service-bubble/gmail.d.ts +416 -416
- package/dist/bubbles/service-bubble/google-calendar.d.ts +162 -162
- package/dist/bubbles/service-bubble/google-drive.d.ts +128 -128
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +54 -54
- package/dist/bubbles/service-bubble/hello-world.d.ts +6 -6
- package/dist/bubbles/service-bubble/http.d.ts +12 -12
- package/dist/bubbles/service-bubble/insforge-db.d.ts +12 -12
- package/dist/bubbles/service-bubble/jira/jira.d.ts +74 -74
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1923 -1923
- package/dist/bubbles/service-bubble/postgresql.d.ts +12 -12
- package/dist/bubbles/service-bubble/resend.d.ts +44 -44
- package/dist/bubbles/service-bubble/slack/slack.d.ts +465 -465
- package/dist/bubbles/service-bubble/storage.d.ts +40 -40
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +141 -141
- package/dist/bubbles/service-bubble/telegram.d.ts +1591 -1591
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +29 -29
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +88 -88
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/get-trigger-detail-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +338 -338
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +130 -130
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +80 -80
- package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +182 -182
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +22 -22
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/database-analyzer.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +44 -44
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +114 -114
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +56 -56
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +8 -8
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -53,19 +53,19 @@ 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
|
-
domain?: string | undefined;
|
|
57
56
|
custom?: Record<string, string> | undefined;
|
|
58
|
-
|
|
57
|
+
domain?: string | undefined;
|
|
59
58
|
linkedin_url?: string | undefined;
|
|
60
59
|
firstname?: string | undefined;
|
|
61
60
|
lastname?: string | undefined;
|
|
61
|
+
company_name?: string | undefined;
|
|
62
62
|
}, {
|
|
63
|
-
domain?: string | undefined;
|
|
64
63
|
custom?: Record<string, string> | undefined;
|
|
65
|
-
|
|
64
|
+
domain?: string | undefined;
|
|
66
65
|
linkedin_url?: string | undefined;
|
|
67
66
|
firstname?: string | undefined;
|
|
68
67
|
lastname?: string | undefined;
|
|
68
|
+
company_name?: string | undefined;
|
|
69
69
|
enrich_fields?: ("contact.emails" | "contact.personal_emails")[] | undefined;
|
|
70
70
|
}>, "many">;
|
|
71
71
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
@@ -74,12 +74,12 @@ 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
|
-
domain?: string | undefined;
|
|
78
77
|
custom?: Record<string, string> | undefined;
|
|
79
|
-
|
|
78
|
+
domain?: string | undefined;
|
|
80
79
|
linkedin_url?: string | undefined;
|
|
81
80
|
firstname?: string | undefined;
|
|
82
81
|
lastname?: string | undefined;
|
|
82
|
+
company_name?: string | undefined;
|
|
83
83
|
}[];
|
|
84
84
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
85
85
|
webhook_url?: string | undefined;
|
|
@@ -87,12 +87,12 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
87
87
|
name: string;
|
|
88
88
|
operation: "start_bulk_enrichment";
|
|
89
89
|
contacts: {
|
|
90
|
-
domain?: string | undefined;
|
|
91
90
|
custom?: Record<string, string> | undefined;
|
|
92
|
-
|
|
91
|
+
domain?: string | undefined;
|
|
93
92
|
linkedin_url?: string | undefined;
|
|
94
93
|
firstname?: string | undefined;
|
|
95
94
|
lastname?: string | undefined;
|
|
95
|
+
company_name?: string | undefined;
|
|
96
96
|
enrich_fields?: ("contact.emails" | "contact.personal_emails")[] | undefined;
|
|
97
97
|
}[];
|
|
98
98
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -167,14 +167,14 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
167
167
|
enrichment_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
168
168
|
error: import("zod").ZodString;
|
|
169
169
|
}, "strip", import("zod").ZodTypeAny, {
|
|
170
|
-
operation: "start_bulk_enrichment";
|
|
171
|
-
success: boolean;
|
|
172
170
|
error: string;
|
|
171
|
+
success: boolean;
|
|
172
|
+
operation: "start_bulk_enrichment";
|
|
173
173
|
enrichment_id?: string | undefined;
|
|
174
174
|
}, {
|
|
175
|
-
operation: "start_bulk_enrichment";
|
|
176
|
-
success: boolean;
|
|
177
175
|
error: string;
|
|
176
|
+
success: boolean;
|
|
177
|
+
operation: "start_bulk_enrichment";
|
|
178
178
|
enrichment_id?: string | undefined;
|
|
179
179
|
}>, import("zod").ZodObject<{
|
|
180
180
|
operation: import("zod").ZodLiteral<"get_enrichment_result">;
|
|
@@ -258,9 +258,9 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
258
258
|
}, "strip", import("zod").ZodTypeAny, {
|
|
259
259
|
name?: string | undefined;
|
|
260
260
|
domain?: string | undefined;
|
|
261
|
+
linkedin_url?: string | undefined;
|
|
261
262
|
linkedin_id?: string | undefined;
|
|
262
263
|
industry?: string | undefined;
|
|
263
|
-
linkedin_url?: string | undefined;
|
|
264
264
|
headquarters?: {
|
|
265
265
|
city?: string | undefined;
|
|
266
266
|
country?: string | undefined;
|
|
@@ -268,9 +268,9 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
268
268
|
}, {
|
|
269
269
|
name?: string | undefined;
|
|
270
270
|
domain?: string | undefined;
|
|
271
|
+
linkedin_url?: string | undefined;
|
|
271
272
|
linkedin_id?: string | number | undefined;
|
|
272
273
|
industry?: string | undefined;
|
|
273
|
-
linkedin_url?: string | undefined;
|
|
274
274
|
headquarters?: {
|
|
275
275
|
city?: string | undefined;
|
|
276
276
|
country?: string | undefined;
|
|
@@ -283,9 +283,9 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
283
283
|
company?: {
|
|
284
284
|
name?: string | undefined;
|
|
285
285
|
domain?: string | undefined;
|
|
286
|
+
linkedin_url?: string | undefined;
|
|
286
287
|
linkedin_id?: string | undefined;
|
|
287
288
|
industry?: string | undefined;
|
|
288
|
-
linkedin_url?: string | undefined;
|
|
289
289
|
headquarters?: {
|
|
290
290
|
city?: string | undefined;
|
|
291
291
|
country?: string | undefined;
|
|
@@ -298,9 +298,9 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
298
298
|
company?: {
|
|
299
299
|
name?: string | undefined;
|
|
300
300
|
domain?: string | undefined;
|
|
301
|
+
linkedin_url?: string | undefined;
|
|
301
302
|
linkedin_id?: string | number | undefined;
|
|
302
303
|
industry?: string | undefined;
|
|
303
|
-
linkedin_url?: string | undefined;
|
|
304
304
|
headquarters?: {
|
|
305
305
|
city?: string | undefined;
|
|
306
306
|
country?: string | undefined;
|
|
@@ -312,17 +312,17 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
312
312
|
}, "strip", import("zod").ZodTypeAny, {
|
|
313
313
|
location?: string | undefined;
|
|
314
314
|
headline?: string | undefined;
|
|
315
|
-
linkedin_id?: string | undefined;
|
|
316
315
|
linkedin_url?: string | undefined;
|
|
316
|
+
linkedin_id?: string | undefined;
|
|
317
317
|
linkedin_handle?: string | undefined;
|
|
318
318
|
current_position?: {
|
|
319
319
|
title?: string | undefined;
|
|
320
320
|
company?: {
|
|
321
321
|
name?: string | undefined;
|
|
322
322
|
domain?: string | undefined;
|
|
323
|
+
linkedin_url?: string | undefined;
|
|
323
324
|
linkedin_id?: string | undefined;
|
|
324
325
|
industry?: string | undefined;
|
|
325
|
-
linkedin_url?: string | undefined;
|
|
326
326
|
headquarters?: {
|
|
327
327
|
city?: string | undefined;
|
|
328
328
|
country?: string | undefined;
|
|
@@ -334,17 +334,17 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
334
334
|
}, {
|
|
335
335
|
location?: string | undefined;
|
|
336
336
|
headline?: string | undefined;
|
|
337
|
-
linkedin_id?: string | number | undefined;
|
|
338
337
|
linkedin_url?: string | undefined;
|
|
338
|
+
linkedin_id?: string | number | undefined;
|
|
339
339
|
linkedin_handle?: string | undefined;
|
|
340
340
|
current_position?: {
|
|
341
341
|
title?: string | undefined;
|
|
342
342
|
company?: {
|
|
343
343
|
name?: string | undefined;
|
|
344
344
|
domain?: string | undefined;
|
|
345
|
+
linkedin_url?: string | undefined;
|
|
345
346
|
linkedin_id?: string | number | undefined;
|
|
346
347
|
industry?: string | undefined;
|
|
347
|
-
linkedin_url?: string | undefined;
|
|
348
348
|
headquarters?: {
|
|
349
349
|
city?: string | undefined;
|
|
350
350
|
country?: string | undefined;
|
|
@@ -355,21 +355,20 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
355
355
|
} | undefined;
|
|
356
356
|
}>>;
|
|
357
357
|
}, "strip", import("zod").ZodTypeAny, {
|
|
358
|
-
domain?: string | undefined;
|
|
359
358
|
profile?: {
|
|
360
359
|
location?: string | undefined;
|
|
361
360
|
headline?: string | undefined;
|
|
362
|
-
linkedin_id?: string | undefined;
|
|
363
361
|
linkedin_url?: string | undefined;
|
|
362
|
+
linkedin_id?: string | undefined;
|
|
364
363
|
linkedin_handle?: string | undefined;
|
|
365
364
|
current_position?: {
|
|
366
365
|
title?: string | undefined;
|
|
367
366
|
company?: {
|
|
368
367
|
name?: string | undefined;
|
|
369
368
|
domain?: string | undefined;
|
|
369
|
+
linkedin_url?: string | undefined;
|
|
370
370
|
linkedin_id?: string | undefined;
|
|
371
371
|
industry?: string | undefined;
|
|
372
|
-
linkedin_url?: string | undefined;
|
|
373
372
|
headquarters?: {
|
|
374
373
|
city?: string | undefined;
|
|
375
374
|
country?: string | undefined;
|
|
@@ -379,6 +378,7 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
379
378
|
end_date?: string | undefined;
|
|
380
379
|
} | undefined;
|
|
381
380
|
} | undefined;
|
|
381
|
+
domain?: string | undefined;
|
|
382
382
|
emails?: {
|
|
383
383
|
status?: string | undefined;
|
|
384
384
|
email?: string | undefined;
|
|
@@ -401,21 +401,20 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
401
401
|
url?: string | undefined;
|
|
402
402
|
}[] | undefined;
|
|
403
403
|
}, {
|
|
404
|
-
domain?: string | undefined;
|
|
405
404
|
profile?: {
|
|
406
405
|
location?: string | undefined;
|
|
407
406
|
headline?: string | undefined;
|
|
408
|
-
linkedin_id?: string | number | undefined;
|
|
409
407
|
linkedin_url?: string | undefined;
|
|
408
|
+
linkedin_id?: string | number | undefined;
|
|
410
409
|
linkedin_handle?: string | undefined;
|
|
411
410
|
current_position?: {
|
|
412
411
|
title?: string | undefined;
|
|
413
412
|
company?: {
|
|
414
413
|
name?: string | undefined;
|
|
415
414
|
domain?: string | undefined;
|
|
415
|
+
linkedin_url?: string | undefined;
|
|
416
416
|
linkedin_id?: string | number | undefined;
|
|
417
417
|
industry?: string | undefined;
|
|
418
|
-
linkedin_url?: string | undefined;
|
|
419
418
|
headquarters?: {
|
|
420
419
|
city?: string | undefined;
|
|
421
420
|
country?: string | undefined;
|
|
@@ -425,6 +424,7 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
425
424
|
end_date?: string | undefined;
|
|
426
425
|
} | undefined;
|
|
427
426
|
} | undefined;
|
|
427
|
+
domain?: string | undefined;
|
|
428
428
|
emails?: {
|
|
429
429
|
status?: string | undefined;
|
|
430
430
|
email?: string | undefined;
|
|
@@ -450,21 +450,20 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
450
450
|
}, "strip", import("zod").ZodTypeAny, {
|
|
451
451
|
custom?: Record<string, string> | undefined;
|
|
452
452
|
contact?: {
|
|
453
|
-
domain?: string | undefined;
|
|
454
453
|
profile?: {
|
|
455
454
|
location?: string | undefined;
|
|
456
455
|
headline?: string | undefined;
|
|
457
|
-
linkedin_id?: string | undefined;
|
|
458
456
|
linkedin_url?: string | undefined;
|
|
457
|
+
linkedin_id?: string | undefined;
|
|
459
458
|
linkedin_handle?: string | undefined;
|
|
460
459
|
current_position?: {
|
|
461
460
|
title?: string | undefined;
|
|
462
461
|
company?: {
|
|
463
462
|
name?: string | undefined;
|
|
464
463
|
domain?: string | undefined;
|
|
464
|
+
linkedin_url?: string | undefined;
|
|
465
465
|
linkedin_id?: string | undefined;
|
|
466
466
|
industry?: string | undefined;
|
|
467
|
-
linkedin_url?: string | undefined;
|
|
468
467
|
headquarters?: {
|
|
469
468
|
city?: string | undefined;
|
|
470
469
|
country?: string | undefined;
|
|
@@ -474,6 +473,7 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
474
473
|
end_date?: string | undefined;
|
|
475
474
|
} | undefined;
|
|
476
475
|
} | undefined;
|
|
476
|
+
domain?: string | undefined;
|
|
477
477
|
emails?: {
|
|
478
478
|
status?: string | undefined;
|
|
479
479
|
email?: string | undefined;
|
|
@@ -499,21 +499,20 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
499
499
|
}, {
|
|
500
500
|
custom?: Record<string, string> | undefined;
|
|
501
501
|
contact?: {
|
|
502
|
-
domain?: string | undefined;
|
|
503
502
|
profile?: {
|
|
504
503
|
location?: string | undefined;
|
|
505
504
|
headline?: string | undefined;
|
|
506
|
-
linkedin_id?: string | number | undefined;
|
|
507
505
|
linkedin_url?: string | undefined;
|
|
506
|
+
linkedin_id?: string | number | undefined;
|
|
508
507
|
linkedin_handle?: string | undefined;
|
|
509
508
|
current_position?: {
|
|
510
509
|
title?: string | undefined;
|
|
511
510
|
company?: {
|
|
512
511
|
name?: string | undefined;
|
|
513
512
|
domain?: string | undefined;
|
|
513
|
+
linkedin_url?: string | undefined;
|
|
514
514
|
linkedin_id?: string | number | undefined;
|
|
515
515
|
industry?: string | undefined;
|
|
516
|
-
linkedin_url?: string | undefined;
|
|
517
516
|
headquarters?: {
|
|
518
517
|
city?: string | undefined;
|
|
519
518
|
country?: string | undefined;
|
|
@@ -523,6 +522,7 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
523
522
|
end_date?: string | undefined;
|
|
524
523
|
} | undefined;
|
|
525
524
|
} | undefined;
|
|
525
|
+
domain?: string | undefined;
|
|
526
526
|
emails?: {
|
|
527
527
|
status?: string | undefined;
|
|
528
528
|
email?: string | undefined;
|
|
@@ -555,30 +555,29 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
555
555
|
}>>;
|
|
556
556
|
error: import("zod").ZodString;
|
|
557
557
|
}, "strip", import("zod").ZodTypeAny, {
|
|
558
|
-
operation: "get_enrichment_result";
|
|
559
|
-
success: boolean;
|
|
560
558
|
error: string;
|
|
561
|
-
|
|
559
|
+
success: boolean;
|
|
560
|
+
operation: "get_enrichment_result";
|
|
562
561
|
status?: "CREATED" | "IN_PROGRESS" | "CANCELED" | "CREDITS_INSUFFICIENT" | "FINISHED" | "RATE_LIMIT" | "UNKNOWN" | undefined;
|
|
562
|
+
name?: string | undefined;
|
|
563
563
|
id?: string | undefined;
|
|
564
564
|
results?: {
|
|
565
565
|
custom?: Record<string, string> | undefined;
|
|
566
566
|
contact?: {
|
|
567
|
-
domain?: string | undefined;
|
|
568
567
|
profile?: {
|
|
569
568
|
location?: string | undefined;
|
|
570
569
|
headline?: string | undefined;
|
|
571
|
-
linkedin_id?: string | undefined;
|
|
572
570
|
linkedin_url?: string | undefined;
|
|
571
|
+
linkedin_id?: string | undefined;
|
|
573
572
|
linkedin_handle?: string | undefined;
|
|
574
573
|
current_position?: {
|
|
575
574
|
title?: string | undefined;
|
|
576
575
|
company?: {
|
|
577
576
|
name?: string | undefined;
|
|
578
577
|
domain?: string | undefined;
|
|
578
|
+
linkedin_url?: string | undefined;
|
|
579
579
|
linkedin_id?: string | undefined;
|
|
580
580
|
industry?: string | undefined;
|
|
581
|
-
linkedin_url?: string | undefined;
|
|
582
581
|
headquarters?: {
|
|
583
582
|
city?: string | undefined;
|
|
584
583
|
country?: string | undefined;
|
|
@@ -588,6 +587,7 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
588
587
|
end_date?: string | undefined;
|
|
589
588
|
} | undefined;
|
|
590
589
|
} | undefined;
|
|
590
|
+
domain?: string | undefined;
|
|
591
591
|
emails?: {
|
|
592
592
|
status?: string | undefined;
|
|
593
593
|
email?: string | undefined;
|
|
@@ -615,30 +615,29 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
615
615
|
credits?: number | undefined;
|
|
616
616
|
} | undefined;
|
|
617
617
|
}, {
|
|
618
|
-
operation: "get_enrichment_result";
|
|
619
|
-
success: boolean;
|
|
620
618
|
error: string;
|
|
621
|
-
|
|
619
|
+
success: boolean;
|
|
620
|
+
operation: "get_enrichment_result";
|
|
622
621
|
status?: "CREATED" | "IN_PROGRESS" | "CANCELED" | "CREDITS_INSUFFICIENT" | "FINISHED" | "RATE_LIMIT" | "UNKNOWN" | undefined;
|
|
622
|
+
name?: string | undefined;
|
|
623
623
|
id?: string | undefined;
|
|
624
624
|
results?: {
|
|
625
625
|
custom?: Record<string, string> | undefined;
|
|
626
626
|
contact?: {
|
|
627
|
-
domain?: string | undefined;
|
|
628
627
|
profile?: {
|
|
629
628
|
location?: string | undefined;
|
|
630
629
|
headline?: string | undefined;
|
|
631
|
-
linkedin_id?: string | number | undefined;
|
|
632
630
|
linkedin_url?: string | undefined;
|
|
631
|
+
linkedin_id?: string | number | undefined;
|
|
633
632
|
linkedin_handle?: string | undefined;
|
|
634
633
|
current_position?: {
|
|
635
634
|
title?: string | undefined;
|
|
636
635
|
company?: {
|
|
637
636
|
name?: string | undefined;
|
|
638
637
|
domain?: string | undefined;
|
|
638
|
+
linkedin_url?: string | undefined;
|
|
639
639
|
linkedin_id?: string | number | undefined;
|
|
640
640
|
industry?: string | undefined;
|
|
641
|
-
linkedin_url?: string | undefined;
|
|
642
641
|
headquarters?: {
|
|
643
642
|
city?: string | undefined;
|
|
644
643
|
country?: string | undefined;
|
|
@@ -648,6 +647,7 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
648
647
|
end_date?: string | undefined;
|
|
649
648
|
} | undefined;
|
|
650
649
|
} | undefined;
|
|
650
|
+
domain?: string | undefined;
|
|
651
651
|
emails?: {
|
|
652
652
|
status?: string | undefined;
|
|
653
653
|
email?: string | undefined;
|
|
@@ -680,14 +680,14 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
680
680
|
enrichment_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
681
681
|
error: import("zod").ZodString;
|
|
682
682
|
}, "strip", import("zod").ZodTypeAny, {
|
|
683
|
-
operation: "start_reverse_email_lookup";
|
|
684
|
-
success: boolean;
|
|
685
683
|
error: string;
|
|
684
|
+
success: boolean;
|
|
685
|
+
operation: "start_reverse_email_lookup";
|
|
686
686
|
enrichment_id?: string | undefined;
|
|
687
687
|
}, {
|
|
688
|
-
operation: "start_reverse_email_lookup";
|
|
689
|
-
success: boolean;
|
|
690
688
|
error: string;
|
|
689
|
+
success: boolean;
|
|
690
|
+
operation: "start_reverse_email_lookup";
|
|
691
691
|
enrichment_id?: string | undefined;
|
|
692
692
|
}>, import("zod").ZodObject<{
|
|
693
693
|
operation: import("zod").ZodLiteral<"get_reverse_email_result">;
|
|
@@ -771,9 +771,9 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
771
771
|
}, "strip", import("zod").ZodTypeAny, {
|
|
772
772
|
name?: string | undefined;
|
|
773
773
|
domain?: string | undefined;
|
|
774
|
+
linkedin_url?: string | undefined;
|
|
774
775
|
linkedin_id?: string | undefined;
|
|
775
776
|
industry?: string | undefined;
|
|
776
|
-
linkedin_url?: string | undefined;
|
|
777
777
|
headquarters?: {
|
|
778
778
|
city?: string | undefined;
|
|
779
779
|
country?: string | undefined;
|
|
@@ -781,9 +781,9 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
781
781
|
}, {
|
|
782
782
|
name?: string | undefined;
|
|
783
783
|
domain?: string | undefined;
|
|
784
|
+
linkedin_url?: string | undefined;
|
|
784
785
|
linkedin_id?: string | number | undefined;
|
|
785
786
|
industry?: string | undefined;
|
|
786
|
-
linkedin_url?: string | undefined;
|
|
787
787
|
headquarters?: {
|
|
788
788
|
city?: string | undefined;
|
|
789
789
|
country?: string | undefined;
|
|
@@ -796,9 +796,9 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
796
796
|
company?: {
|
|
797
797
|
name?: string | undefined;
|
|
798
798
|
domain?: string | undefined;
|
|
799
|
+
linkedin_url?: string | undefined;
|
|
799
800
|
linkedin_id?: string | undefined;
|
|
800
801
|
industry?: string | undefined;
|
|
801
|
-
linkedin_url?: string | undefined;
|
|
802
802
|
headquarters?: {
|
|
803
803
|
city?: string | undefined;
|
|
804
804
|
country?: string | undefined;
|
|
@@ -811,9 +811,9 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
811
811
|
company?: {
|
|
812
812
|
name?: string | undefined;
|
|
813
813
|
domain?: string | undefined;
|
|
814
|
+
linkedin_url?: string | undefined;
|
|
814
815
|
linkedin_id?: string | number | undefined;
|
|
815
816
|
industry?: string | undefined;
|
|
816
|
-
linkedin_url?: string | undefined;
|
|
817
817
|
headquarters?: {
|
|
818
818
|
city?: string | undefined;
|
|
819
819
|
country?: string | undefined;
|
|
@@ -825,17 +825,17 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
825
825
|
}, "strip", import("zod").ZodTypeAny, {
|
|
826
826
|
location?: string | undefined;
|
|
827
827
|
headline?: string | undefined;
|
|
828
|
-
linkedin_id?: string | undefined;
|
|
829
828
|
linkedin_url?: string | undefined;
|
|
829
|
+
linkedin_id?: string | undefined;
|
|
830
830
|
linkedin_handle?: string | undefined;
|
|
831
831
|
current_position?: {
|
|
832
832
|
title?: string | undefined;
|
|
833
833
|
company?: {
|
|
834
834
|
name?: string | undefined;
|
|
835
835
|
domain?: string | undefined;
|
|
836
|
+
linkedin_url?: string | undefined;
|
|
836
837
|
linkedin_id?: string | undefined;
|
|
837
838
|
industry?: string | undefined;
|
|
838
|
-
linkedin_url?: string | undefined;
|
|
839
839
|
headquarters?: {
|
|
840
840
|
city?: string | undefined;
|
|
841
841
|
country?: string | undefined;
|
|
@@ -847,17 +847,17 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
847
847
|
}, {
|
|
848
848
|
location?: string | undefined;
|
|
849
849
|
headline?: string | undefined;
|
|
850
|
-
linkedin_id?: string | number | undefined;
|
|
851
850
|
linkedin_url?: string | undefined;
|
|
851
|
+
linkedin_id?: string | number | undefined;
|
|
852
852
|
linkedin_handle?: string | undefined;
|
|
853
853
|
current_position?: {
|
|
854
854
|
title?: string | undefined;
|
|
855
855
|
company?: {
|
|
856
856
|
name?: string | undefined;
|
|
857
857
|
domain?: string | undefined;
|
|
858
|
+
linkedin_url?: string | undefined;
|
|
858
859
|
linkedin_id?: string | number | undefined;
|
|
859
860
|
industry?: string | undefined;
|
|
860
|
-
linkedin_url?: string | undefined;
|
|
861
861
|
headquarters?: {
|
|
862
862
|
city?: string | undefined;
|
|
863
863
|
country?: string | undefined;
|
|
@@ -868,21 +868,20 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
868
868
|
} | undefined;
|
|
869
869
|
}>>;
|
|
870
870
|
}, "strip", import("zod").ZodTypeAny, {
|
|
871
|
-
domain?: string | undefined;
|
|
872
871
|
profile?: {
|
|
873
872
|
location?: string | undefined;
|
|
874
873
|
headline?: string | undefined;
|
|
875
|
-
linkedin_id?: string | undefined;
|
|
876
874
|
linkedin_url?: string | undefined;
|
|
875
|
+
linkedin_id?: string | undefined;
|
|
877
876
|
linkedin_handle?: string | undefined;
|
|
878
877
|
current_position?: {
|
|
879
878
|
title?: string | undefined;
|
|
880
879
|
company?: {
|
|
881
880
|
name?: string | undefined;
|
|
882
881
|
domain?: string | undefined;
|
|
882
|
+
linkedin_url?: string | undefined;
|
|
883
883
|
linkedin_id?: string | undefined;
|
|
884
884
|
industry?: string | undefined;
|
|
885
|
-
linkedin_url?: string | undefined;
|
|
886
885
|
headquarters?: {
|
|
887
886
|
city?: string | undefined;
|
|
888
887
|
country?: string | undefined;
|
|
@@ -892,6 +891,7 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
892
891
|
end_date?: string | undefined;
|
|
893
892
|
} | undefined;
|
|
894
893
|
} | undefined;
|
|
894
|
+
domain?: string | undefined;
|
|
895
895
|
emails?: {
|
|
896
896
|
status?: string | undefined;
|
|
897
897
|
email?: string | undefined;
|
|
@@ -914,21 +914,20 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
914
914
|
url?: string | undefined;
|
|
915
915
|
}[] | undefined;
|
|
916
916
|
}, {
|
|
917
|
-
domain?: string | undefined;
|
|
918
917
|
profile?: {
|
|
919
918
|
location?: string | undefined;
|
|
920
919
|
headline?: string | undefined;
|
|
921
|
-
linkedin_id?: string | number | undefined;
|
|
922
920
|
linkedin_url?: string | undefined;
|
|
921
|
+
linkedin_id?: string | number | undefined;
|
|
923
922
|
linkedin_handle?: string | undefined;
|
|
924
923
|
current_position?: {
|
|
925
924
|
title?: string | undefined;
|
|
926
925
|
company?: {
|
|
927
926
|
name?: string | undefined;
|
|
928
927
|
domain?: string | undefined;
|
|
928
|
+
linkedin_url?: string | undefined;
|
|
929
929
|
linkedin_id?: string | number | undefined;
|
|
930
930
|
industry?: string | undefined;
|
|
931
|
-
linkedin_url?: string | undefined;
|
|
932
931
|
headquarters?: {
|
|
933
932
|
city?: string | undefined;
|
|
934
933
|
country?: string | undefined;
|
|
@@ -938,6 +937,7 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
938
937
|
end_date?: string | undefined;
|
|
939
938
|
} | undefined;
|
|
940
939
|
} | undefined;
|
|
940
|
+
domain?: string | undefined;
|
|
941
941
|
emails?: {
|
|
942
942
|
status?: string | undefined;
|
|
943
943
|
email?: string | undefined;
|
|
@@ -963,21 +963,20 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
963
963
|
}, "strip", import("zod").ZodTypeAny, {
|
|
964
964
|
input?: string | undefined;
|
|
965
965
|
contact?: {
|
|
966
|
-
domain?: string | undefined;
|
|
967
966
|
profile?: {
|
|
968
967
|
location?: string | undefined;
|
|
969
968
|
headline?: string | undefined;
|
|
970
|
-
linkedin_id?: string | undefined;
|
|
971
969
|
linkedin_url?: string | undefined;
|
|
970
|
+
linkedin_id?: string | undefined;
|
|
972
971
|
linkedin_handle?: string | undefined;
|
|
973
972
|
current_position?: {
|
|
974
973
|
title?: string | undefined;
|
|
975
974
|
company?: {
|
|
976
975
|
name?: string | undefined;
|
|
977
976
|
domain?: string | undefined;
|
|
977
|
+
linkedin_url?: string | undefined;
|
|
978
978
|
linkedin_id?: string | undefined;
|
|
979
979
|
industry?: string | undefined;
|
|
980
|
-
linkedin_url?: string | undefined;
|
|
981
980
|
headquarters?: {
|
|
982
981
|
city?: string | undefined;
|
|
983
982
|
country?: string | undefined;
|
|
@@ -987,6 +986,7 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
987
986
|
end_date?: string | undefined;
|
|
988
987
|
} | undefined;
|
|
989
988
|
} | undefined;
|
|
989
|
+
domain?: string | undefined;
|
|
990
990
|
emails?: {
|
|
991
991
|
status?: string | undefined;
|
|
992
992
|
email?: string | undefined;
|
|
@@ -1012,21 +1012,20 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
1012
1012
|
}, {
|
|
1013
1013
|
input?: string | undefined;
|
|
1014
1014
|
contact?: {
|
|
1015
|
-
domain?: string | undefined;
|
|
1016
1015
|
profile?: {
|
|
1017
1016
|
location?: string | undefined;
|
|
1018
1017
|
headline?: string | undefined;
|
|
1019
|
-
linkedin_id?: string | number | undefined;
|
|
1020
1018
|
linkedin_url?: string | undefined;
|
|
1019
|
+
linkedin_id?: string | number | undefined;
|
|
1021
1020
|
linkedin_handle?: string | undefined;
|
|
1022
1021
|
current_position?: {
|
|
1023
1022
|
title?: string | undefined;
|
|
1024
1023
|
company?: {
|
|
1025
1024
|
name?: string | undefined;
|
|
1026
1025
|
domain?: string | undefined;
|
|
1026
|
+
linkedin_url?: string | undefined;
|
|
1027
1027
|
linkedin_id?: string | number | undefined;
|
|
1028
1028
|
industry?: string | undefined;
|
|
1029
|
-
linkedin_url?: string | undefined;
|
|
1030
1029
|
headquarters?: {
|
|
1031
1030
|
city?: string | undefined;
|
|
1032
1031
|
country?: string | undefined;
|
|
@@ -1036,6 +1035,7 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
1036
1035
|
end_date?: string | undefined;
|
|
1037
1036
|
} | undefined;
|
|
1038
1037
|
} | undefined;
|
|
1038
|
+
domain?: string | undefined;
|
|
1039
1039
|
emails?: {
|
|
1040
1040
|
status?: string | undefined;
|
|
1041
1041
|
email?: string | undefined;
|
|
@@ -1068,30 +1068,29 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
1068
1068
|
}>>;
|
|
1069
1069
|
error: import("zod").ZodString;
|
|
1070
1070
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1071
|
-
operation: "get_reverse_email_result";
|
|
1072
|
-
success: boolean;
|
|
1073
1071
|
error: string;
|
|
1074
|
-
|
|
1072
|
+
success: boolean;
|
|
1073
|
+
operation: "get_reverse_email_result";
|
|
1075
1074
|
status?: "CREATED" | "IN_PROGRESS" | "CANCELED" | "CREDITS_INSUFFICIENT" | "FINISHED" | "RATE_LIMIT" | "UNKNOWN" | undefined;
|
|
1075
|
+
name?: string | undefined;
|
|
1076
1076
|
id?: string | undefined;
|
|
1077
1077
|
results?: {
|
|
1078
1078
|
input?: string | undefined;
|
|
1079
1079
|
contact?: {
|
|
1080
|
-
domain?: string | undefined;
|
|
1081
1080
|
profile?: {
|
|
1082
1081
|
location?: string | undefined;
|
|
1083
1082
|
headline?: string | undefined;
|
|
1084
|
-
linkedin_id?: string | undefined;
|
|
1085
1083
|
linkedin_url?: string | undefined;
|
|
1084
|
+
linkedin_id?: string | undefined;
|
|
1086
1085
|
linkedin_handle?: string | undefined;
|
|
1087
1086
|
current_position?: {
|
|
1088
1087
|
title?: string | undefined;
|
|
1089
1088
|
company?: {
|
|
1090
1089
|
name?: string | undefined;
|
|
1091
1090
|
domain?: string | undefined;
|
|
1091
|
+
linkedin_url?: string | undefined;
|
|
1092
1092
|
linkedin_id?: string | undefined;
|
|
1093
1093
|
industry?: string | undefined;
|
|
1094
|
-
linkedin_url?: string | undefined;
|
|
1095
1094
|
headquarters?: {
|
|
1096
1095
|
city?: string | undefined;
|
|
1097
1096
|
country?: string | undefined;
|
|
@@ -1101,6 +1100,7 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
1101
1100
|
end_date?: string | undefined;
|
|
1102
1101
|
} | undefined;
|
|
1103
1102
|
} | undefined;
|
|
1103
|
+
domain?: string | undefined;
|
|
1104
1104
|
emails?: {
|
|
1105
1105
|
status?: string | undefined;
|
|
1106
1106
|
email?: string | undefined;
|
|
@@ -1128,30 +1128,29 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
1128
1128
|
credits?: number | undefined;
|
|
1129
1129
|
} | undefined;
|
|
1130
1130
|
}, {
|
|
1131
|
-
operation: "get_reverse_email_result";
|
|
1132
|
-
success: boolean;
|
|
1133
1131
|
error: string;
|
|
1134
|
-
|
|
1132
|
+
success: boolean;
|
|
1133
|
+
operation: "get_reverse_email_result";
|
|
1135
1134
|
status?: "CREATED" | "IN_PROGRESS" | "CANCELED" | "CREDITS_INSUFFICIENT" | "FINISHED" | "RATE_LIMIT" | "UNKNOWN" | undefined;
|
|
1135
|
+
name?: string | undefined;
|
|
1136
1136
|
id?: string | undefined;
|
|
1137
1137
|
results?: {
|
|
1138
1138
|
input?: string | undefined;
|
|
1139
1139
|
contact?: {
|
|
1140
|
-
domain?: string | undefined;
|
|
1141
1140
|
profile?: {
|
|
1142
1141
|
location?: string | undefined;
|
|
1143
1142
|
headline?: string | undefined;
|
|
1144
|
-
linkedin_id?: string | number | undefined;
|
|
1145
1143
|
linkedin_url?: string | undefined;
|
|
1144
|
+
linkedin_id?: string | number | undefined;
|
|
1146
1145
|
linkedin_handle?: string | undefined;
|
|
1147
1146
|
current_position?: {
|
|
1148
1147
|
title?: string | undefined;
|
|
1149
1148
|
company?: {
|
|
1150
1149
|
name?: string | undefined;
|
|
1151
1150
|
domain?: string | undefined;
|
|
1151
|
+
linkedin_url?: string | undefined;
|
|
1152
1152
|
linkedin_id?: string | number | undefined;
|
|
1153
1153
|
industry?: string | undefined;
|
|
1154
|
-
linkedin_url?: string | undefined;
|
|
1155
1154
|
headquarters?: {
|
|
1156
1155
|
city?: string | undefined;
|
|
1157
1156
|
country?: string | undefined;
|
|
@@ -1161,6 +1160,7 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
1161
1160
|
end_date?: string | undefined;
|
|
1162
1161
|
} | undefined;
|
|
1163
1162
|
} | undefined;
|
|
1163
|
+
domain?: string | undefined;
|
|
1164
1164
|
emails?: {
|
|
1165
1165
|
status?: string | undefined;
|
|
1166
1166
|
email?: string | undefined;
|
|
@@ -1193,14 +1193,14 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
1193
1193
|
balance: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1194
1194
|
error: import("zod").ZodString;
|
|
1195
1195
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1196
|
-
operation: "get_credit_balance";
|
|
1197
|
-
success: boolean;
|
|
1198
1196
|
error: string;
|
|
1197
|
+
success: boolean;
|
|
1198
|
+
operation: "get_credit_balance";
|
|
1199
1199
|
balance?: number | undefined;
|
|
1200
1200
|
}, {
|
|
1201
|
-
operation: "get_credit_balance";
|
|
1202
|
-
success: boolean;
|
|
1203
1201
|
error: string;
|
|
1202
|
+
success: boolean;
|
|
1203
|
+
operation: "get_credit_balance";
|
|
1204
1204
|
balance?: number | undefined;
|
|
1205
1205
|
}>, import("zod").ZodObject<{
|
|
1206
1206
|
operation: import("zod").ZodLiteral<"check_api_key">;
|
|
@@ -1208,14 +1208,14 @@ export declare class FullEnrichBubble<T extends FullEnrichParamsInput = FullEnri
|
|
|
1208
1208
|
workspace_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1209
1209
|
error: import("zod").ZodString;
|
|
1210
1210
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1211
|
-
operation: "check_api_key";
|
|
1212
|
-
success: boolean;
|
|
1213
1211
|
error: string;
|
|
1212
|
+
success: boolean;
|
|
1213
|
+
operation: "check_api_key";
|
|
1214
1214
|
workspace_id?: string | undefined;
|
|
1215
1215
|
}, {
|
|
1216
|
-
operation: "check_api_key";
|
|
1217
|
-
success: boolean;
|
|
1218
1216
|
error: string;
|
|
1217
|
+
success: boolean;
|
|
1218
|
+
operation: "check_api_key";
|
|
1219
1219
|
workspace_id?: string | undefined;
|
|
1220
1220
|
}>]>;
|
|
1221
1221
|
static readonly shortDescription = "B2B contact enrichment for emails, phones, and LinkedIn data";
|