@bubblelab/bubble-core 0.1.24 → 0.1.25

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 (56) hide show
  1. package/dist/bubble-bundle.d.ts +73 -73
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +4 -4
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
  4. package/dist/bubbles/service-bubble/airtable.d.ts +138 -138
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
  6. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +9 -9
  7. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +405 -405
  8. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +432 -432
  9. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts.map +1 -1
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js +15 -9
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js.map +1 -1
  12. package/dist/bubbles/service-bubble/eleven-labs.d.ts +8 -8
  13. package/dist/bubbles/service-bubble/firecrawl.d.ts +332 -332
  14. package/dist/bubbles/service-bubble/followupboss.d.ts +277 -277
  15. package/dist/bubbles/service-bubble/github.d.ts +132 -132
  16. package/dist/bubbles/service-bubble/gmail.d.ts +478 -478
  17. package/dist/bubbles/service-bubble/google-calendar.d.ts +112 -112
  18. package/dist/bubbles/service-bubble/google-drive.d.ts +38 -38
  19. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +8 -8
  20. package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
  21. package/dist/bubbles/service-bubble/http.d.ts +16 -16
  22. package/dist/bubbles/service-bubble/insforge-db.d.ts +6 -6
  23. package/dist/bubbles/service-bubble/notion/notion.d.ts +1098 -1098
  24. package/dist/bubbles/service-bubble/postgresql.d.ts +6 -6
  25. package/dist/bubbles/service-bubble/resend.d.ts +12 -12
  26. package/dist/bubbles/service-bubble/slack/slack.d.ts +184 -184
  27. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  28. package/dist/bubbles/service-bubble/telegram.d.ts +1420 -1420
  29. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
  30. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +139 -139
  31. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts.map +1 -1
  32. package/dist/bubbles/tool-bubble/company-enrichment-tool.js +27 -6
  33. package/dist/bubbles/tool-bubble/company-enrichment-tool.js.map +1 -1
  34. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
  35. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
  36. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +142 -142
  37. package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
  38. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +161 -161
  39. package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
  40. package/dist/bubbles/tool-bubble/people-search-tool.js +31 -10
  41. package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
  42. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
  43. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  44. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  45. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
  46. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +28 -28
  47. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
  48. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
  49. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  50. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +20 -20
  51. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +38 -38
  52. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
  53. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +4 -4
  54. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +64 -64
  55. package/dist/bubbles.json +7 -7
  56. package/package.json +2 -2
@@ -13,14 +13,14 @@ declare const ListBubblesToolResultSchema: z.ZodObject<{
13
13
  useCase: z.ZodString;
14
14
  type: z.ZodString;
15
15
  }, "strip", z.ZodTypeAny, {
16
- type: string;
17
16
  name: string;
17
+ type: string;
18
18
  shortDescription: string;
19
19
  useCase: string;
20
20
  alias?: string | undefined;
21
21
  }, {
22
- type: string;
23
22
  name: string;
23
+ type: string;
24
24
  shortDescription: string;
25
25
  useCase: string;
26
26
  alias?: string | undefined;
@@ -31,25 +31,25 @@ declare const ListBubblesToolResultSchema: z.ZodObject<{
31
31
  }, "strip", z.ZodTypeAny, {
32
32
  success: boolean;
33
33
  error: string;
34
+ totalCount: number;
34
35
  bubbles: {
35
- type: string;
36
36
  name: string;
37
+ type: string;
37
38
  shortDescription: string;
38
39
  useCase: string;
39
40
  alias?: string | undefined;
40
41
  }[];
41
- totalCount: number;
42
42
  }, {
43
43
  success: boolean;
44
44
  error: string;
45
+ totalCount: number;
45
46
  bubbles: {
46
- type: string;
47
47
  name: string;
48
+ type: string;
48
49
  shortDescription: string;
49
50
  useCase: string;
50
51
  alias?: string | undefined;
51
52
  }[];
52
- totalCount: number;
53
53
  }>;
54
54
  export declare class ListBubblesTool extends ToolBubble<ListBubblesToolParams, ListBubblesToolResult> {
55
55
  static readonly bubbleName = "list-bubbles-tool";
@@ -62,14 +62,14 @@ export declare class ListBubblesTool extends ToolBubble<ListBubblesToolParams, L
62
62
  useCase: z.ZodString;
63
63
  type: z.ZodString;
64
64
  }, "strip", z.ZodTypeAny, {
65
- type: string;
66
65
  name: string;
66
+ type: string;
67
67
  shortDescription: string;
68
68
  useCase: string;
69
69
  alias?: string | undefined;
70
70
  }, {
71
- type: string;
72
71
  name: string;
72
+ type: string;
73
73
  shortDescription: string;
74
74
  useCase: string;
75
75
  alias?: string | undefined;
@@ -80,25 +80,25 @@ export declare class ListBubblesTool extends ToolBubble<ListBubblesToolParams, L
80
80
  }, "strip", z.ZodTypeAny, {
81
81
  success: boolean;
82
82
  error: string;
83
+ totalCount: number;
83
84
  bubbles: {
84
- type: string;
85
85
  name: string;
86
+ type: string;
86
87
  shortDescription: string;
87
88
  useCase: string;
88
89
  alias?: string | undefined;
89
90
  }[];
90
- totalCount: number;
91
91
  }, {
92
92
  success: boolean;
93
93
  error: string;
94
+ totalCount: number;
94
95
  bubbles: {
95
- type: string;
96
96
  name: string;
97
+ type: string;
97
98
  shortDescription: string;
98
99
  useCase: string;
99
100
  alias?: string | undefined;
100
101
  }[];
101
- totalCount: number;
102
102
  }>;
103
103
  static readonly shortDescription = "Lists all available bubbles in the registry";
104
104
  static readonly longDescription = "\n A tool bubble that provides a comprehensive list of all registered bubbles in the NodeX system.\n \n Returns information about each bubble including:\n - Bubble name and alias\n - Short description\n - Extracted use cases\n - Bubble type (service, workflow, tool)\n \n Use cases:\n - AI agent discovery of available capabilities\n - System introspection and documentation\n - Dynamic tool selection for workflow building\n ";