@bubblelab/bubble-core 0.1.26 → 0.1.28

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 (49) hide show
  1. package/dist/bubble-bundle.d.ts +60 -60
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +56 -56
  3. package/dist/bubbles/service-bubble/airtable.d.ts +104 -104
  4. package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
  5. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +22 -22
  6. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +28 -28
  7. package/dist/bubbles/service-bubble/eleven-labs.d.ts +24 -24
  8. package/dist/bubbles/service-bubble/firecrawl.d.ts +308 -308
  9. package/dist/bubbles/service-bubble/followupboss.d.ts +392 -392
  10. package/dist/bubbles/service-bubble/github.d.ts +64 -64
  11. package/dist/bubbles/service-bubble/gmail.d.ts +64 -64
  12. package/dist/bubbles/service-bubble/google-calendar.d.ts +36 -36
  13. package/dist/bubbles/service-bubble/google-drive.d.ts +44 -44
  14. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +55 -55
  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/insforge-db.d.ts +4 -4
  20. package/dist/bubbles/service-bubble/notion/notion.d.ts +100 -100
  21. package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
  22. package/dist/bubbles/service-bubble/resend.d.ts +8 -8
  23. package/dist/bubbles/service-bubble/slack/slack.d.ts +202 -202
  24. package/dist/bubbles/service-bubble/storage.d.ts +40 -40
  25. package/dist/bubbles/service-bubble/telegram.d.ts +512 -512
  26. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
  27. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +148 -148
  28. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +28 -28
  29. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +12 -12
  30. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +129 -129
  31. package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
  32. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +217 -217
  33. package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
  34. package/dist/bubbles/tool-bubble/people-search-tool.js +33 -4
  35. package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
  36. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +12 -12
  37. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  38. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
  39. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
  40. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +4 -4
  41. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts.map +1 -1
  42. package/dist/bubbles/tool-bubble/web-scrape-tool.js +1 -1
  43. package/dist/bubbles/tool-bubble/web-scrape-tool.js.map +1 -1
  44. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +12 -12
  45. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +4 -4
  46. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +24 -24
  47. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +48 -48
  48. package/dist/bubbles.json +19 -19
  49. package/package.json +2 -2
@@ -49,10 +49,10 @@ declare const PostgreSQLResultSchema: z.ZodObject<{
49
49
  error: z.ZodString;
50
50
  cleanedJSONString: z.ZodString;
51
51
  }, "strip", z.ZodTypeAny, {
52
+ rowCount: number | null;
52
53
  success: boolean;
53
54
  error: string;
54
55
  rows: Record<string, unknown>[];
55
- rowCount: number | null;
56
56
  command: string;
57
57
  executionTime: number;
58
58
  cleanedJSONString: string;
@@ -61,10 +61,10 @@ declare const PostgreSQLResultSchema: z.ZodObject<{
61
61
  dataTypeID: number;
62
62
  }[] | undefined;
63
63
  }, {
64
+ rowCount: number | null;
64
65
  success: boolean;
65
66
  error: string;
66
67
  rows: Record<string, unknown>[];
67
- rowCount: number | null;
68
68
  command: string;
69
69
  executionTime: number;
70
70
  cleanedJSONString: string;
@@ -124,10 +124,10 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
124
124
  error: z.ZodString;
125
125
  cleanedJSONString: z.ZodString;
126
126
  }, "strip", z.ZodTypeAny, {
127
+ rowCount: number | null;
127
128
  success: boolean;
128
129
  error: string;
129
130
  rows: Record<string, unknown>[];
130
- rowCount: number | null;
131
131
  command: string;
132
132
  executionTime: number;
133
133
  cleanedJSONString: string;
@@ -136,10 +136,10 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
136
136
  dataTypeID: number;
137
137
  }[] | undefined;
138
138
  }, {
139
+ rowCount: number | null;
139
140
  success: boolean;
140
141
  error: string;
141
142
  rows: Record<string, unknown>[];
142
- rowCount: number | null;
143
143
  command: string;
144
144
  executionTime: number;
145
145
  cleanedJSONString: 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";
109
110
  success: boolean;
110
111
  error: string;
111
- operation: "send_email";
112
112
  email_id?: string | undefined;
113
113
  }, {
114
+ operation: "send_email";
114
115
  success: boolean;
115
116
  error: string;
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";
126
127
  success: boolean;
127
128
  error: string;
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";
133
134
  success: boolean;
134
135
  error: string;
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";
256
257
  success: boolean;
257
258
  error: string;
258
- operation: "send_email";
259
259
  email_id?: string | undefined;
260
260
  }, {
261
+ operation: "send_email";
261
262
  success: boolean;
262
263
  error: string;
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";
273
274
  success: boolean;
274
275
  error: string;
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";
280
281
  success: boolean;
281
282
  error: string;
282
- operation: "get_email_status";
283
283
  status?: string | undefined;
284
284
  created_at?: string | undefined;
285
285
  last_event?: string | undefined;