@bubblelab/bubble-core 0.1.25 → 0.1.27

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 +84 -68
  2. package/dist/bubbles/service-bubble/ai-agent.d.ts +18 -18
  3. package/dist/bubbles/service-bubble/airtable.d.ts +132 -132
  4. package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
  5. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +8 -8
  6. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +102 -102
  7. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +108 -108
  8. package/dist/bubbles/service-bubble/firecrawl.d.ts +288 -288
  9. package/dist/bubbles/service-bubble/followupboss.d.ts +264 -264
  10. package/dist/bubbles/service-bubble/github.d.ts +64 -64
  11. package/dist/bubbles/service-bubble/gmail.d.ts +108 -108
  12. package/dist/bubbles/service-bubble/google-calendar.d.ts +16 -16
  13. package/dist/bubbles/service-bubble/google-drive.d.ts +20 -20
  14. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +33 -33
  15. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +79 -79
  16. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts.map +1 -1
  17. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js +15 -19
  18. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js.map +1 -1
  19. package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
  20. package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
  21. package/dist/bubbles/service-bubble/notion/notion.d.ts +601 -601
  22. package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
  23. package/dist/bubbles/service-bubble/resend.d.ts +8 -8
  24. package/dist/bubbles/service-bubble/slack/slack.d.ts +168 -168
  25. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  26. package/dist/bubbles/service-bubble/telegram.d.ts +602 -602
  27. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
  28. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +82 -82
  29. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
  30. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
  31. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +132 -132
  32. package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
  33. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +104 -104
  34. package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
  35. package/dist/bubbles/tool-bubble/people-search-tool.js +55 -10
  36. package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
  37. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +20 -20
  38. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  39. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
  40. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +4 -4
  41. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
  42. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
  43. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts.map +1 -1
  44. package/dist/bubbles/tool-bubble/web-scrape-tool.js +1 -1
  45. package/dist/bubbles/tool-bubble/web-scrape-tool.js.map +1 -1
  46. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
  47. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  48. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
  49. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +36 -36
  50. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +48 -48
  51. package/dist/bubbles.json +52057 -9
  52. package/dist/types/available-tools.d.ts +1 -1
  53. package/dist/types/available-tools.d.ts.map +1 -1
  54. package/dist/types/available-tools.js +1 -0
  55. package/dist/types/available-tools.js.map +1 -1
  56. package/package.json +3 -3
@@ -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
- name: string;
17
16
  type: string;
17
+ name: string;
18
18
  shortDescription: string;
19
19
  useCase: string;
20
20
  alias?: string | undefined;
21
21
  }, {
22
- name: string;
23
22
  type: string;
23
+ name: 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;
35
34
  bubbles: {
36
- name: string;
37
35
  type: string;
36
+ name: string;
38
37
  shortDescription: string;
39
38
  useCase: string;
40
39
  alias?: string | undefined;
41
40
  }[];
41
+ totalCount: number;
42
42
  }, {
43
43
  success: boolean;
44
44
  error: string;
45
- totalCount: number;
46
45
  bubbles: {
47
- name: string;
48
46
  type: string;
47
+ name: string;
49
48
  shortDescription: string;
50
49
  useCase: string;
51
50
  alias?: string | undefined;
52
51
  }[];
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
- name: string;
66
65
  type: string;
66
+ name: string;
67
67
  shortDescription: string;
68
68
  useCase: string;
69
69
  alias?: string | undefined;
70
70
  }, {
71
- name: string;
72
71
  type: string;
72
+ name: 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;
84
83
  bubbles: {
85
- name: string;
86
84
  type: string;
85
+ name: string;
87
86
  shortDescription: string;
88
87
  useCase: string;
89
88
  alias?: string | undefined;
90
89
  }[];
90
+ totalCount: number;
91
91
  }, {
92
92
  success: boolean;
93
93
  error: string;
94
- totalCount: number;
95
94
  bubbles: {
96
- name: string;
97
95
  type: string;
96
+ name: string;
98
97
  shortDescription: string;
99
98
  useCase: string;
100
99
  alias?: string | undefined;
101
100
  }[];
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 ";