@bubblelab/bubble-core 0.1.75 → 0.1.76

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 (52) hide show
  1. package/dist/bubble-bundle.d.ts +92 -92
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +112 -112
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +8 -8
  4. package/dist/bubbles/service-bubble/airtable.d.ts +222 -222
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +12 -12
  6. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +22 -22
  7. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +22 -22
  8. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +29 -29
  9. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +29 -29
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +16 -16
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +20 -20
  12. package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
  13. package/dist/bubbles/service-bubble/firecrawl.d.ts +88 -88
  14. package/dist/bubbles/service-bubble/followupboss.d.ts +232 -232
  15. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +16 -16
  16. package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +16 -16
  17. package/dist/bubbles/service-bubble/github.d.ts +60 -60
  18. package/dist/bubbles/service-bubble/gmail.d.ts +74 -74
  19. package/dist/bubbles/service-bubble/google-calendar.d.ts +28 -28
  20. package/dist/bubbles/service-bubble/google-drive.d.ts +94 -94
  21. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +42 -42
  22. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +46 -46
  23. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  24. package/dist/bubbles/service-bubble/insforge-db.d.ts +10 -10
  25. package/dist/bubbles/service-bubble/jira/jira.d.ts +54 -54
  26. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +56 -56
  27. package/dist/bubbles/service-bubble/notion/notion.d.ts +208 -208
  28. package/dist/bubbles/service-bubble/postgresql.d.ts +10 -10
  29. package/dist/bubbles/service-bubble/resend.d.ts +8 -8
  30. package/dist/bubbles/service-bubble/slack/slack.d.ts +278 -278
  31. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  32. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +71 -71
  33. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +77 -77
  34. package/dist/bubbles/service-bubble/telegram.d.ts +110 -110
  35. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +24 -24
  36. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +28 -28
  37. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +24 -24
  38. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
  39. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
  40. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +2 -2
  41. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +46 -46
  42. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
  43. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
  44. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +40 -40
  45. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  46. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  47. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  48. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +14 -14
  49. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +50 -50
  50. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +52 -52
  51. package/dist/bubbles.json +1 -1
  52. package/package.json +2 -2
@@ -160,12 +160,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
160
160
  text: string;
161
161
  emoji?: boolean | undefined;
162
162
  } | undefined;
163
- fields?: {
164
- type: "plain_text" | "mrkdwn";
165
- text: string;
166
- emoji?: boolean | undefined;
167
- verbatim?: boolean | undefined;
168
- }[] | undefined;
169
163
  text?: {
170
164
  type: "plain_text" | "mrkdwn";
171
165
  text: string;
@@ -174,6 +168,12 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
174
168
  } | undefined;
175
169
  image_url?: string | undefined;
176
170
  optional?: boolean | undefined;
171
+ fields?: {
172
+ type: "plain_text" | "mrkdwn";
173
+ text: string;
174
+ emoji?: boolean | undefined;
175
+ verbatim?: boolean | undefined;
176
+ }[] | undefined;
177
177
  alt_text?: string | undefined;
178
178
  elements?: {
179
179
  type: "plain_text" | "mrkdwn";
@@ -193,12 +193,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
193
193
  text: string;
194
194
  emoji?: boolean | undefined;
195
195
  } | undefined;
196
- fields?: {
197
- type: "plain_text" | "mrkdwn";
198
- text: string;
199
- emoji?: boolean | undefined;
200
- verbatim?: boolean | undefined;
201
- }[] | undefined;
202
196
  text?: {
203
197
  type: "plain_text" | "mrkdwn";
204
198
  text: string;
@@ -207,6 +201,12 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
207
201
  } | undefined;
208
202
  image_url?: string | undefined;
209
203
  optional?: boolean | undefined;
204
+ fields?: {
205
+ type: "plain_text" | "mrkdwn";
206
+ text: string;
207
+ emoji?: boolean | undefined;
208
+ verbatim?: boolean | undefined;
209
+ }[] | undefined;
210
210
  alt_text?: string | undefined;
211
211
  elements?: {
212
212
  type: "plain_text" | "mrkdwn";
@@ -255,13 +255,13 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
255
255
  }, "strip", z.ZodTypeAny, {
256
256
  error: string;
257
257
  success: boolean;
258
- response: string;
259
258
  metadata: {
260
259
  verbosityLevel: string;
261
260
  technicalityLevel: string;
262
261
  wordCount: number;
263
262
  blockCount?: number | undefined;
264
263
  };
264
+ response: string;
265
265
  iterations: number;
266
266
  toolCalls?: {
267
267
  tool: string;
@@ -275,12 +275,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
275
275
  text: string;
276
276
  emoji?: boolean | undefined;
277
277
  } | undefined;
278
- fields?: {
279
- type: "plain_text" | "mrkdwn";
280
- text: string;
281
- emoji?: boolean | undefined;
282
- verbatim?: boolean | undefined;
283
- }[] | undefined;
284
278
  text?: {
285
279
  type: "plain_text" | "mrkdwn";
286
280
  text: string;
@@ -289,6 +283,12 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
289
283
  } | undefined;
290
284
  image_url?: string | undefined;
291
285
  optional?: boolean | undefined;
286
+ fields?: {
287
+ type: "plain_text" | "mrkdwn";
288
+ text: string;
289
+ emoji?: boolean | undefined;
290
+ verbatim?: boolean | undefined;
291
+ }[] | undefined;
292
292
  alt_text?: string | undefined;
293
293
  elements?: {
294
294
  type: "plain_text" | "mrkdwn";
@@ -305,13 +305,13 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
305
305
  }, {
306
306
  error: string;
307
307
  success: boolean;
308
- response: string;
309
308
  metadata: {
310
309
  verbosityLevel: string;
311
310
  technicalityLevel: string;
312
311
  wordCount: number;
313
312
  blockCount?: number | undefined;
314
313
  };
314
+ response: string;
315
315
  iterations: number;
316
316
  toolCalls?: {
317
317
  tool: string;
@@ -325,12 +325,6 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
325
325
  text: string;
326
326
  emoji?: boolean | undefined;
327
327
  } | undefined;
328
- fields?: {
329
- type: "plain_text" | "mrkdwn";
330
- text: string;
331
- emoji?: boolean | undefined;
332
- verbatim?: boolean | undefined;
333
- }[] | undefined;
334
328
  text?: {
335
329
  type: "plain_text" | "mrkdwn";
336
330
  text: string;
@@ -339,6 +333,12 @@ declare const SlackFormatterAgentResultSchema: z.ZodObject<{
339
333
  } | undefined;
340
334
  image_url?: string | undefined;
341
335
  optional?: boolean | undefined;
336
+ fields?: {
337
+ type: "plain_text" | "mrkdwn";
338
+ text: string;
339
+ emoji?: boolean | undefined;
340
+ verbatim?: boolean | undefined;
341
+ }[] | undefined;
342
342
  alt_text?: string | undefined;
343
343
  elements?: {
344
344
  type: "plain_text" | "mrkdwn";
@@ -518,12 +518,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
518
518
  text: string;
519
519
  emoji?: boolean | undefined;
520
520
  } | undefined;
521
- fields?: {
522
- type: "plain_text" | "mrkdwn";
523
- text: string;
524
- emoji?: boolean | undefined;
525
- verbatim?: boolean | undefined;
526
- }[] | undefined;
527
521
  text?: {
528
522
  type: "plain_text" | "mrkdwn";
529
523
  text: string;
@@ -532,6 +526,12 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
532
526
  } | undefined;
533
527
  image_url?: string | undefined;
534
528
  optional?: boolean | undefined;
529
+ fields?: {
530
+ type: "plain_text" | "mrkdwn";
531
+ text: string;
532
+ emoji?: boolean | undefined;
533
+ verbatim?: boolean | undefined;
534
+ }[] | undefined;
535
535
  alt_text?: string | undefined;
536
536
  elements?: {
537
537
  type: "plain_text" | "mrkdwn";
@@ -551,12 +551,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
551
551
  text: string;
552
552
  emoji?: boolean | undefined;
553
553
  } | undefined;
554
- fields?: {
555
- type: "plain_text" | "mrkdwn";
556
- text: string;
557
- emoji?: boolean | undefined;
558
- verbatim?: boolean | undefined;
559
- }[] | undefined;
560
554
  text?: {
561
555
  type: "plain_text" | "mrkdwn";
562
556
  text: string;
@@ -565,6 +559,12 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
565
559
  } | undefined;
566
560
  image_url?: string | undefined;
567
561
  optional?: boolean | undefined;
562
+ fields?: {
563
+ type: "plain_text" | "mrkdwn";
564
+ text: string;
565
+ emoji?: boolean | undefined;
566
+ verbatim?: boolean | undefined;
567
+ }[] | undefined;
568
568
  alt_text?: string | undefined;
569
569
  elements?: {
570
570
  type: "plain_text" | "mrkdwn";
@@ -613,13 +613,13 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
613
613
  }, "strip", z.ZodTypeAny, {
614
614
  error: string;
615
615
  success: boolean;
616
- response: string;
617
616
  metadata: {
618
617
  verbosityLevel: string;
619
618
  technicalityLevel: string;
620
619
  wordCount: number;
621
620
  blockCount?: number | undefined;
622
621
  };
622
+ response: string;
623
623
  iterations: number;
624
624
  toolCalls?: {
625
625
  tool: string;
@@ -633,12 +633,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
633
633
  text: string;
634
634
  emoji?: boolean | undefined;
635
635
  } | undefined;
636
- fields?: {
637
- type: "plain_text" | "mrkdwn";
638
- text: string;
639
- emoji?: boolean | undefined;
640
- verbatim?: boolean | undefined;
641
- }[] | undefined;
642
636
  text?: {
643
637
  type: "plain_text" | "mrkdwn";
644
638
  text: string;
@@ -647,6 +641,12 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
647
641
  } | undefined;
648
642
  image_url?: string | undefined;
649
643
  optional?: boolean | undefined;
644
+ fields?: {
645
+ type: "plain_text" | "mrkdwn";
646
+ text: string;
647
+ emoji?: boolean | undefined;
648
+ verbatim?: boolean | undefined;
649
+ }[] | undefined;
650
650
  alt_text?: string | undefined;
651
651
  elements?: {
652
652
  type: "plain_text" | "mrkdwn";
@@ -663,13 +663,13 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
663
663
  }, {
664
664
  error: string;
665
665
  success: boolean;
666
- response: string;
667
666
  metadata: {
668
667
  verbosityLevel: string;
669
668
  technicalityLevel: string;
670
669
  wordCount: number;
671
670
  blockCount?: number | undefined;
672
671
  };
672
+ response: string;
673
673
  iterations: number;
674
674
  toolCalls?: {
675
675
  tool: string;
@@ -683,12 +683,6 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
683
683
  text: string;
684
684
  emoji?: boolean | undefined;
685
685
  } | undefined;
686
- fields?: {
687
- type: "plain_text" | "mrkdwn";
688
- text: string;
689
- emoji?: boolean | undefined;
690
- verbatim?: boolean | undefined;
691
- }[] | undefined;
692
686
  text?: {
693
687
  type: "plain_text" | "mrkdwn";
694
688
  text: string;
@@ -697,6 +691,12 @@ export declare class SlackFormatterAgentBubble extends WorkflowBubble<SlackForma
697
691
  } | undefined;
698
692
  image_url?: string | undefined;
699
693
  optional?: boolean | undefined;
694
+ fields?: {
695
+ type: "plain_text" | "mrkdwn";
696
+ text: string;
697
+ emoji?: boolean | undefined;
698
+ verbatim?: boolean | undefined;
699
+ }[] | undefined;
700
700
  alt_text?: string | undefined;
701
701
  elements?: {
702
702
  type: "plain_text" | "mrkdwn";
package/dist/bubbles.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "2.0.0",
3
- "generatedAt": "2026-02-02T09:50:10.002Z",
3
+ "generatedAt": "2026-02-02T10:41:40.296Z",
4
4
  "totalCount": 58,
5
5
  "bubbles": [
6
6
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bubblelab/bubble-core",
3
- "version": "0.1.75",
3
+ "version": "0.1.76",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "main": "./dist/index.js",
@@ -40,7 +40,7 @@
40
40
  "puppeteer-core": "^24.10.0",
41
41
  "resend": "^4.8.0",
42
42
  "zod": "^3.24.1",
43
- "@bubblelab/shared-schemas": "0.1.76"
43
+ "@bubblelab/shared-schemas": "0.1.77"
44
44
  },
45
45
  "devDependencies": {
46
46
  "zod-to-json-schema": "^3.24.6",