@bubblelab/bubble-core 0.1.137 → 0.1.138

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.
Files changed (34) hide show
  1. package/dist/bubble-bundle.d.ts +34 -34
  2. package/dist/bubbles/service-bubble/apify/actors/google-maps-scraper.d.ts +6 -6
  3. package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.d.ts +806 -0
  4. package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.d.ts.map +1 -0
  5. package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.js +256 -0
  6. package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.js.map +1 -0
  7. package/dist/bubbles/service-bubble/apify/apify-scraper.schema.d.ts +813 -6
  8. package/dist/bubbles/service-bubble/apify/apify-scraper.schema.d.ts.map +1 -1
  9. package/dist/bubbles/service-bubble/apify/apify-scraper.schema.js +8 -0
  10. package/dist/bubbles/service-bubble/apify/apify-scraper.schema.js.map +1 -1
  11. package/dist/bubbles/service-bubble/apify/apify.d.ts +1 -1
  12. package/dist/bubbles/service-bubble/apify/apify.d.ts.map +1 -1
  13. package/dist/bubbles/service-bubble/apify/apify.js +1 -0
  14. package/dist/bubbles/service-bubble/apify/apify.js.map +1 -1
  15. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +4 -4
  16. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +6 -6
  17. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +6 -6
  18. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +16 -16
  19. package/dist/bubbles/service-bubble/firecrawl.d.ts +16 -16
  20. package/dist/bubbles/service-bubble/followupboss.d.ts +8 -8
  21. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +28 -28
  22. package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +62 -62
  23. package/dist/bubbles/service-bubble/jira/jira.d.ts +2 -2
  24. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +2 -2
  25. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +54 -54
  26. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +1579 -141
  27. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts.map +1 -1
  28. package/dist/bubbles/tool-bubble/linkedin-tool.js +300 -56
  29. package/dist/bubbles/tool-bubble/linkedin-tool.js.map +1 -1
  30. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +74 -74
  31. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
  32. package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +10 -10
  33. package/dist/bubbles.json +481 -6
  34. package/package.json +2 -2
@@ -55,13 +55,13 @@ declare const ContactSchema: z.ZodObject<{
55
55
  degreeName: z.ZodNullable<z.ZodString>;
56
56
  fieldOfStudy: z.ZodNullable<z.ZodString>;
57
57
  }, "strip", z.ZodTypeAny, {
58
+ fieldOfStudy: string | null;
58
59
  instituteName: string | null;
59
60
  degreeName: string | null;
60
- fieldOfStudy: string | null;
61
61
  }, {
62
+ fieldOfStudy: string | null;
62
63
  instituteName: string | null;
63
64
  degreeName: string | null;
64
- fieldOfStudy: string | null;
65
65
  }>, "many">>;
66
66
  }, "strip", z.ZodTypeAny, {
67
67
  title: string | null;
@@ -70,15 +70,15 @@ declare const ContactSchema: z.ZodObject<{
70
70
  role: "founder" | "cxo" | "decision_maker";
71
71
  location: string | null;
72
72
  headline: string | null;
73
- emails: string[] | null;
74
- linkedinUrl: string | null;
75
- languages: string[] | null;
76
73
  skills: string[] | null;
74
+ linkedinUrl: string | null;
77
75
  education: {
76
+ fieldOfStudy: string | null;
78
77
  instituteName: string | null;
79
78
  degreeName: string | null;
80
- fieldOfStudy: string | null;
81
79
  }[] | null;
80
+ languages: string[] | null;
81
+ emails: string[] | null;
82
82
  profilePictureUrl: string | null;
83
83
  twitterHandle: string | null;
84
84
  currentEmployment: {
@@ -101,15 +101,15 @@ declare const ContactSchema: z.ZodObject<{
101
101
  role: "founder" | "cxo" | "decision_maker";
102
102
  location: string | null;
103
103
  headline: string | null;
104
- emails: string[] | null;
105
- linkedinUrl: string | null;
106
- languages: string[] | null;
107
104
  skills: string[] | null;
105
+ linkedinUrl: string | null;
108
106
  education: {
107
+ fieldOfStudy: string | null;
109
108
  instituteName: string | null;
110
109
  degreeName: string | null;
111
- fieldOfStudy: string | null;
112
110
  }[] | null;
111
+ languages: string[] | null;
112
+ emails: string[] | null;
113
113
  profilePictureUrl: string | null;
114
114
  twitterHandle: string | null;
115
115
  currentEmployment: {
@@ -193,13 +193,13 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
193
193
  degreeName: z.ZodNullable<z.ZodString>;
194
194
  fieldOfStudy: z.ZodNullable<z.ZodString>;
195
195
  }, "strip", z.ZodTypeAny, {
196
+ fieldOfStudy: string | null;
196
197
  instituteName: string | null;
197
198
  degreeName: string | null;
198
- fieldOfStudy: string | null;
199
199
  }, {
200
+ fieldOfStudy: string | null;
200
201
  instituteName: string | null;
201
202
  degreeName: string | null;
202
- fieldOfStudy: string | null;
203
203
  }>, "many">>;
204
204
  }, "strip", z.ZodTypeAny, {
205
205
  title: string | null;
@@ -208,15 +208,15 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
208
208
  role: "founder" | "cxo" | "decision_maker";
209
209
  location: string | null;
210
210
  headline: string | null;
211
- emails: string[] | null;
212
- linkedinUrl: string | null;
213
- languages: string[] | null;
214
211
  skills: string[] | null;
212
+ linkedinUrl: string | null;
215
213
  education: {
214
+ fieldOfStudy: string | null;
216
215
  instituteName: string | null;
217
216
  degreeName: string | null;
218
- fieldOfStudy: string | null;
219
217
  }[] | null;
218
+ languages: string[] | null;
219
+ emails: string[] | null;
220
220
  profilePictureUrl: string | null;
221
221
  twitterHandle: string | null;
222
222
  currentEmployment: {
@@ -239,15 +239,15 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
239
239
  role: "founder" | "cxo" | "decision_maker";
240
240
  location: string | null;
241
241
  headline: string | null;
242
- emails: string[] | null;
243
- linkedinUrl: string | null;
244
- languages: string[] | null;
245
242
  skills: string[] | null;
243
+ linkedinUrl: string | null;
246
244
  education: {
245
+ fieldOfStudy: string | null;
247
246
  instituteName: string | null;
248
247
  degreeName: string | null;
249
- fieldOfStudy: string | null;
250
248
  }[] | null;
249
+ languages: string[] | null;
250
+ emails: string[] | null;
251
251
  profilePictureUrl: string | null;
252
252
  twitterHandle: string | null;
253
253
  currentEmployment: {
@@ -279,8 +279,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
279
279
  }, "strip", z.ZodTypeAny, {
280
280
  description: string | null;
281
281
  name: string | null;
282
- website: string | null;
283
282
  linkedinUrl: string | null;
283
+ website: string | null;
284
284
  industry: string | null;
285
285
  headcount: number | null;
286
286
  hqCity: string | null;
@@ -291,8 +291,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
291
291
  }, {
292
292
  description: string | null;
293
293
  name: string | null;
294
- website: string | null;
295
294
  linkedinUrl: string | null;
295
+ website: string | null;
296
296
  industry: string | null;
297
297
  headcount: number | null;
298
298
  hqCity: string | null;
@@ -310,8 +310,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
310
310
  company: {
311
311
  description: string | null;
312
312
  name: string | null;
313
- website: string | null;
314
313
  linkedinUrl: string | null;
314
+ website: string | null;
315
315
  industry: string | null;
316
316
  headcount: number | null;
317
317
  hqCity: string | null;
@@ -327,15 +327,15 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
327
327
  role: "founder" | "cxo" | "decision_maker";
328
328
  location: string | null;
329
329
  headline: string | null;
330
- emails: string[] | null;
331
- linkedinUrl: string | null;
332
- languages: string[] | null;
333
330
  skills: string[] | null;
331
+ linkedinUrl: string | null;
334
332
  education: {
333
+ fieldOfStudy: string | null;
335
334
  instituteName: string | null;
336
335
  degreeName: string | null;
337
- fieldOfStudy: string | null;
338
336
  }[] | null;
337
+ languages: string[] | null;
338
+ emails: string[] | null;
339
339
  profilePictureUrl: string | null;
340
340
  twitterHandle: string | null;
341
341
  currentEmployment: {
@@ -359,8 +359,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
359
359
  company: {
360
360
  description: string | null;
361
361
  name: string | null;
362
- website: string | null;
363
362
  linkedinUrl: string | null;
363
+ website: string | null;
364
364
  industry: string | null;
365
365
  headcount: number | null;
366
366
  hqCity: string | null;
@@ -376,15 +376,15 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
376
376
  role: "founder" | "cxo" | "decision_maker";
377
377
  location: string | null;
378
378
  headline: string | null;
379
- emails: string[] | null;
380
- linkedinUrl: string | null;
381
- languages: string[] | null;
382
379
  skills: string[] | null;
380
+ linkedinUrl: string | null;
383
381
  education: {
382
+ fieldOfStudy: string | null;
384
383
  instituteName: string | null;
385
384
  degreeName: string | null;
386
- fieldOfStudy: string | null;
387
385
  }[] | null;
386
+ languages: string[] | null;
387
+ emails: string[] | null;
388
388
  profilePictureUrl: string | null;
389
389
  twitterHandle: string | null;
390
390
  currentEmployment: {
@@ -494,13 +494,13 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
494
494
  degreeName: z.ZodNullable<z.ZodString>;
495
495
  fieldOfStudy: z.ZodNullable<z.ZodString>;
496
496
  }, "strip", z.ZodTypeAny, {
497
+ fieldOfStudy: string | null;
497
498
  instituteName: string | null;
498
499
  degreeName: string | null;
499
- fieldOfStudy: string | null;
500
500
  }, {
501
+ fieldOfStudy: string | null;
501
502
  instituteName: string | null;
502
503
  degreeName: string | null;
503
- fieldOfStudy: string | null;
504
504
  }>, "many">>;
505
505
  }, "strip", z.ZodTypeAny, {
506
506
  title: string | null;
@@ -509,15 +509,15 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
509
509
  role: "founder" | "cxo" | "decision_maker";
510
510
  location: string | null;
511
511
  headline: string | null;
512
- emails: string[] | null;
513
- linkedinUrl: string | null;
514
- languages: string[] | null;
515
512
  skills: string[] | null;
513
+ linkedinUrl: string | null;
516
514
  education: {
515
+ fieldOfStudy: string | null;
517
516
  instituteName: string | null;
518
517
  degreeName: string | null;
519
- fieldOfStudy: string | null;
520
518
  }[] | null;
519
+ languages: string[] | null;
520
+ emails: string[] | null;
521
521
  profilePictureUrl: string | null;
522
522
  twitterHandle: string | null;
523
523
  currentEmployment: {
@@ -540,15 +540,15 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
540
540
  role: "founder" | "cxo" | "decision_maker";
541
541
  location: string | null;
542
542
  headline: string | null;
543
- emails: string[] | null;
544
- linkedinUrl: string | null;
545
- languages: string[] | null;
546
543
  skills: string[] | null;
544
+ linkedinUrl: string | null;
547
545
  education: {
546
+ fieldOfStudy: string | null;
548
547
  instituteName: string | null;
549
548
  degreeName: string | null;
550
- fieldOfStudy: string | null;
551
549
  }[] | null;
550
+ languages: string[] | null;
551
+ emails: string[] | null;
552
552
  profilePictureUrl: string | null;
553
553
  twitterHandle: string | null;
554
554
  currentEmployment: {
@@ -580,8 +580,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
580
580
  }, "strip", z.ZodTypeAny, {
581
581
  description: string | null;
582
582
  name: string | null;
583
- website: string | null;
584
583
  linkedinUrl: string | null;
584
+ website: string | null;
585
585
  industry: string | null;
586
586
  headcount: number | null;
587
587
  hqCity: string | null;
@@ -592,8 +592,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
592
592
  }, {
593
593
  description: string | null;
594
594
  name: string | null;
595
- website: string | null;
596
595
  linkedinUrl: string | null;
596
+ website: string | null;
597
597
  industry: string | null;
598
598
  headcount: number | null;
599
599
  hqCity: string | null;
@@ -611,8 +611,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
611
611
  company: {
612
612
  description: string | null;
613
613
  name: string | null;
614
- website: string | null;
615
614
  linkedinUrl: string | null;
615
+ website: string | null;
616
616
  industry: string | null;
617
617
  headcount: number | null;
618
618
  hqCity: string | null;
@@ -628,15 +628,15 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
628
628
  role: "founder" | "cxo" | "decision_maker";
629
629
  location: string | null;
630
630
  headline: string | null;
631
- emails: string[] | null;
632
- linkedinUrl: string | null;
633
- languages: string[] | null;
634
631
  skills: string[] | null;
632
+ linkedinUrl: string | null;
635
633
  education: {
634
+ fieldOfStudy: string | null;
636
635
  instituteName: string | null;
637
636
  degreeName: string | null;
638
- fieldOfStudy: string | null;
639
637
  }[] | null;
638
+ languages: string[] | null;
639
+ emails: string[] | null;
640
640
  profilePictureUrl: string | null;
641
641
  twitterHandle: string | null;
642
642
  currentEmployment: {
@@ -660,8 +660,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
660
660
  company: {
661
661
  description: string | null;
662
662
  name: string | null;
663
- website: string | null;
664
663
  linkedinUrl: string | null;
664
+ website: string | null;
665
665
  industry: string | null;
666
666
  headcount: number | null;
667
667
  hqCity: string | null;
@@ -677,15 +677,15 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
677
677
  role: "founder" | "cxo" | "decision_maker";
678
678
  location: string | null;
679
679
  headline: string | null;
680
- emails: string[] | null;
681
- linkedinUrl: string | null;
682
- languages: string[] | null;
683
680
  skills: string[] | null;
681
+ linkedinUrl: string | null;
684
682
  education: {
683
+ fieldOfStudy: string | null;
685
684
  instituteName: string | null;
686
685
  degreeName: string | null;
687
- fieldOfStudy: string | null;
688
686
  }[] | null;
687
+ languages: string[] | null;
688
+ emails: string[] | null;
689
689
  profilePictureUrl: string | null;
690
690
  twitterHandle: string | null;
691
691
  currentEmployment: {