@bubblelab/bubble-core 0.1.39 → 0.1.40

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 (63) hide show
  1. package/dist/bubble-bundle.d.ts +81 -81
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +114 -114
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +70 -70
  4. package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
  5. package/dist/bubbles/service-bubble/ai-agent.js +5 -0
  6. package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
  7. package/dist/bubbles/service-bubble/airtable.d.ts +122 -122
  8. package/dist/bubbles/service-bubble/apify/apify.d.ts +12 -12
  9. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +144 -144
  10. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +51 -51
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +84 -84
  12. package/dist/bubbles/service-bubble/eleven-labs.d.ts +56 -56
  13. package/dist/bubbles/service-bubble/firecrawl.d.ts +835 -835
  14. package/dist/bubbles/service-bubble/followupboss.d.ts +474 -474
  15. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +275 -275
  16. package/dist/bubbles/service-bubble/github.d.ts +196 -196
  17. package/dist/bubbles/service-bubble/gmail.d.ts +138 -138
  18. package/dist/bubbles/service-bubble/google-calendar.d.ts +136 -136
  19. package/dist/bubbles/service-bubble/google-drive.d.ts +144 -144
  20. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +68 -68
  21. package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
  22. package/dist/bubbles/service-bubble/http.d.ts +12 -12
  23. package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
  24. package/dist/bubbles/service-bubble/jira/jira.d.ts +59 -59
  25. package/dist/bubbles/service-bubble/notion/notion.d.ts +244 -244
  26. package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
  27. package/dist/bubbles/service-bubble/resend.d.ts +16 -16
  28. package/dist/bubbles/service-bubble/slack/slack.d.ts +442 -442
  29. package/dist/bubbles/service-bubble/storage.d.ts +60 -60
  30. package/dist/bubbles/service-bubble/telegram.d.ts +414 -414
  31. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +26 -26
  32. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
  33. package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +4 -4
  34. package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
  35. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +66 -66
  36. package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +4 -4
  37. package/dist/bubbles/tool-bubble/get-trigger-detail-tool.d.ts +4 -4
  38. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +28 -28
  39. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +16 -16
  40. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +422 -422
  41. package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +8 -8
  42. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +108 -108
  43. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +26 -26
  44. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +8 -8
  45. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
  46. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +24 -24
  47. package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
  48. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +113 -113
  49. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  50. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  51. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
  52. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +12 -12
  53. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +8 -8
  54. package/dist/bubbles/workflow-bubble/database-analyzer.workflow.d.ts +4 -4
  55. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +4 -4
  56. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
  57. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +90 -90
  58. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
  59. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +6 -6
  60. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +66 -66
  61. package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +8 -8
  62. package/dist/bubbles.json +1 -1
  63. package/package.json +2 -2
@@ -49,8 +49,8 @@ declare const PostgreSQLResultSchema: z.ZodObject<{
49
49
  error: z.ZodString;
50
50
  cleanedJSONString: z.ZodString;
51
51
  }, "strip", z.ZodTypeAny, {
52
- success: boolean;
53
52
  error: string;
53
+ success: boolean;
54
54
  rows: Record<string, unknown>[];
55
55
  rowCount: number | null;
56
56
  command: string;
@@ -61,8 +61,8 @@ declare const PostgreSQLResultSchema: z.ZodObject<{
61
61
  dataTypeID: number;
62
62
  }[] | undefined;
63
63
  }, {
64
- success: boolean;
65
64
  error: string;
65
+ success: boolean;
66
66
  rows: Record<string, unknown>[];
67
67
  rowCount: number | null;
68
68
  command: string;
@@ -124,8 +124,8 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
124
124
  error: z.ZodString;
125
125
  cleanedJSONString: z.ZodString;
126
126
  }, "strip", z.ZodTypeAny, {
127
- success: boolean;
128
127
  error: string;
128
+ success: boolean;
129
129
  rows: Record<string, unknown>[];
130
130
  rowCount: number | null;
131
131
  command: string;
@@ -136,8 +136,8 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
136
136
  dataTypeID: number;
137
137
  }[] | undefined;
138
138
  }, {
139
- success: boolean;
140
139
  error: string;
140
+ success: boolean;
141
141
  rows: Record<string, unknown>[];
142
142
  rowCount: number | null;
143
143
  command: string;
@@ -106,14 +106,14 @@ declare const ResendResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
106
106
  email_id: z.ZodOptional<z.ZodString>;
107
107
  error: z.ZodString;
108
108
  }, "strip", z.ZodTypeAny, {
109
- operation: "send_email";
110
- success: boolean;
111
109
  error: string;
110
+ success: boolean;
111
+ operation: "send_email";
112
112
  email_id?: string | undefined;
113
113
  }, {
114
- operation: "send_email";
115
- success: boolean;
116
114
  error: string;
115
+ success: boolean;
116
+ operation: "send_email";
117
117
  email_id?: string | undefined;
118
118
  }>, z.ZodObject<{
119
119
  operation: z.ZodLiteral<"get_email_status">;
@@ -123,16 +123,16 @@ declare const ResendResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
123
123
  last_event: z.ZodOptional<z.ZodString>;
124
124
  error: z.ZodString;
125
125
  }, "strip", z.ZodTypeAny, {
126
- operation: "get_email_status";
127
- success: boolean;
128
126
  error: string;
127
+ success: boolean;
128
+ operation: "get_email_status";
129
129
  status?: string | undefined;
130
130
  created_at?: string | undefined;
131
131
  last_event?: string | undefined;
132
132
  }, {
133
- operation: "get_email_status";
134
- success: boolean;
135
133
  error: string;
134
+ success: boolean;
135
+ operation: "get_email_status";
136
136
  status?: string | undefined;
137
137
  created_at?: string | undefined;
138
138
  last_event?: string | undefined;
@@ -253,14 +253,14 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
253
253
  email_id: z.ZodOptional<z.ZodString>;
254
254
  error: z.ZodString;
255
255
  }, "strip", z.ZodTypeAny, {
256
- operation: "send_email";
257
- success: boolean;
258
256
  error: string;
257
+ success: boolean;
258
+ operation: "send_email";
259
259
  email_id?: string | undefined;
260
260
  }, {
261
- operation: "send_email";
262
- success: boolean;
263
261
  error: string;
262
+ success: boolean;
263
+ operation: "send_email";
264
264
  email_id?: string | undefined;
265
265
  }>, z.ZodObject<{
266
266
  operation: z.ZodLiteral<"get_email_status">;
@@ -270,16 +270,16 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
270
270
  last_event: z.ZodOptional<z.ZodString>;
271
271
  error: z.ZodString;
272
272
  }, "strip", z.ZodTypeAny, {
273
- operation: "get_email_status";
274
- success: boolean;
275
273
  error: string;
274
+ success: boolean;
275
+ operation: "get_email_status";
276
276
  status?: string | undefined;
277
277
  created_at?: string | undefined;
278
278
  last_event?: string | undefined;
279
279
  }, {
280
- operation: "get_email_status";
281
- success: boolean;
282
280
  error: string;
281
+ success: boolean;
282
+ operation: "get_email_status";
283
283
  status?: string | undefined;
284
284
  created_at?: string | undefined;
285
285
  last_event?: string | undefined;