@bubblelab/bubble-core 0.1.137 → 0.1.139

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 (41) hide show
  1. package/dist/bubble-bundle.d.ts +35 -35
  2. package/dist/bubble-flow/bubble-flow-class.d.ts +4 -0
  3. package/dist/bubble-flow/bubble-flow-class.d.ts.map +1 -1
  4. package/dist/bubble-flow/bubble-flow-class.js +1 -0
  5. package/dist/bubble-flow/bubble-flow-class.js.map +1 -1
  6. package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
  7. package/dist/bubbles/service-bubble/ai-agent.js +7 -0
  8. package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
  9. package/dist/bubbles/service-bubble/apify/actors/google-maps-scraper.d.ts +6 -6
  10. package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.d.ts +806 -0
  11. package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.d.ts.map +1 -0
  12. package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.js +256 -0
  13. package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.js.map +1 -0
  14. package/dist/bubbles/service-bubble/apify/apify-scraper.schema.d.ts +813 -6
  15. package/dist/bubbles/service-bubble/apify/apify-scraper.schema.d.ts.map +1 -1
  16. package/dist/bubbles/service-bubble/apify/apify-scraper.schema.js +8 -0
  17. package/dist/bubbles/service-bubble/apify/apify-scraper.schema.js.map +1 -1
  18. package/dist/bubbles/service-bubble/apify/apify.d.ts +1 -1
  19. package/dist/bubbles/service-bubble/apify/apify.d.ts.map +1 -1
  20. package/dist/bubbles/service-bubble/apify/apify.js +1 -0
  21. package/dist/bubbles/service-bubble/apify/apify.js.map +1 -1
  22. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +4 -4
  23. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +6 -6
  24. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +6 -6
  25. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +16 -16
  26. package/dist/bubbles/service-bubble/firecrawl.d.ts +16 -16
  27. package/dist/bubbles/service-bubble/followupboss.d.ts +8 -8
  28. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +28 -28
  29. package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +62 -62
  30. package/dist/bubbles/service-bubble/jira/jira.d.ts +2 -2
  31. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +2 -2
  32. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +54 -54
  33. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +1579 -141
  34. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts.map +1 -1
  35. package/dist/bubbles/tool-bubble/linkedin-tool.js +300 -56
  36. package/dist/bubbles/tool-bubble/linkedin-tool.js.map +1 -1
  37. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +74 -74
  38. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
  39. package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +10 -10
  40. package/dist/bubbles.json +481 -6
  41. package/package.json +2 -2
@@ -90,8 +90,8 @@ declare const YCPersonSchema: z.ZodObject<{
90
90
  }, "strip", z.ZodTypeAny, {
91
91
  title: string | null;
92
92
  name: string | null;
93
- emails: string[] | null;
94
93
  linkedinUrl: string | null;
94
+ emails: string[] | null;
95
95
  bio: string | null;
96
96
  currentEmployers: {
97
97
  companyName: string | null;
@@ -100,8 +100,8 @@ declare const YCPersonSchema: z.ZodObject<{
100
100
  }, {
101
101
  title: string | null;
102
102
  name: string | null;
103
- emails: string[] | null;
104
103
  linkedinUrl: string | null;
104
+ emails: string[] | null;
105
105
  bio: string | null;
106
106
  currentEmployers: {
107
107
  companyName: string | null;
@@ -145,8 +145,8 @@ declare const YCScraperToolResultSchema: z.ZodObject<{
145
145
  }, "strip", z.ZodTypeAny, {
146
146
  title: string | null;
147
147
  name: string | null;
148
- emails: string[] | null;
149
148
  linkedinUrl: string | null;
149
+ emails: string[] | null;
150
150
  bio: string | null;
151
151
  currentEmployers: {
152
152
  companyName: string | null;
@@ -155,8 +155,8 @@ declare const YCScraperToolResultSchema: z.ZodObject<{
155
155
  }, {
156
156
  title: string | null;
157
157
  name: string | null;
158
- emails: string[] | null;
159
158
  linkedinUrl: string | null;
159
+ emails: string[] | null;
160
160
  bio: string | null;
161
161
  currentEmployers: {
162
162
  companyName: string | null;
@@ -229,8 +229,8 @@ declare const YCScraperToolResultSchema: z.ZodObject<{
229
229
  people: {
230
230
  title: string | null;
231
231
  name: string | null;
232
- emails: string[] | null;
233
232
  linkedinUrl: string | null;
233
+ emails: string[] | null;
234
234
  bio: string | null;
235
235
  currentEmployers: {
236
236
  companyName: string | null;
@@ -261,8 +261,8 @@ declare const YCScraperToolResultSchema: z.ZodObject<{
261
261
  people: {
262
262
  title: string | null;
263
263
  name: string | null;
264
- emails: string[] | null;
265
264
  linkedinUrl: string | null;
265
+ emails: string[] | null;
266
266
  bio: string | null;
267
267
  currentEmployers: {
268
268
  companyName: string | null;
@@ -343,8 +343,8 @@ export declare class YCScraperTool extends ToolBubble<YCScraperToolParams, YCScr
343
343
  }, "strip", z.ZodTypeAny, {
344
344
  title: string | null;
345
345
  name: string | null;
346
- emails: string[] | null;
347
346
  linkedinUrl: string | null;
347
+ emails: string[] | null;
348
348
  bio: string | null;
349
349
  currentEmployers: {
350
350
  companyName: string | null;
@@ -353,8 +353,8 @@ export declare class YCScraperTool extends ToolBubble<YCScraperToolParams, YCScr
353
353
  }, {
354
354
  title: string | null;
355
355
  name: string | null;
356
- emails: string[] | null;
357
356
  linkedinUrl: string | null;
357
+ emails: string[] | null;
358
358
  bio: string | null;
359
359
  currentEmployers: {
360
360
  companyName: string | null;
@@ -427,8 +427,8 @@ export declare class YCScraperTool extends ToolBubble<YCScraperToolParams, YCScr
427
427
  people: {
428
428
  title: string | null;
429
429
  name: string | null;
430
- emails: string[] | null;
431
430
  linkedinUrl: string | null;
431
+ emails: string[] | null;
432
432
  bio: string | null;
433
433
  currentEmployers: {
434
434
  companyName: string | null;
@@ -459,8 +459,8 @@ export declare class YCScraperTool extends ToolBubble<YCScraperToolParams, YCScr
459
459
  people: {
460
460
  title: string | null;
461
461
  name: string | null;
462
- emails: string[] | null;
463
462
  linkedinUrl: string | null;
463
+ emails: string[] | null;
464
464
  bio: string | null;
465
465
  currentEmployers: {
466
466
  companyName: string | null;