@bubblelab/bubble-core 0.1.96 → 0.1.97

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 (51) hide show
  1. package/dist/bubble-bundle.d.ts +66 -66
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +68 -68
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
  4. package/dist/bubbles/service-bubble/airtable.d.ts +108 -108
  5. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +20 -20
  6. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +25 -25
  7. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +8 -8
  8. package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
  9. package/dist/bubbles/service-bubble/firecrawl.d.ts +172 -172
  10. package/dist/bubbles/service-bubble/followupboss.d.ts +144 -144
  11. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +16 -16
  12. package/dist/bubbles/service-bubble/github.d.ts +148 -148
  13. package/dist/bubbles/service-bubble/gmail.d.ts +138 -138
  14. package/dist/bubbles/service-bubble/gmail.d.ts.map +1 -1
  15. package/dist/bubbles/service-bubble/gmail.js +10 -4
  16. package/dist/bubbles/service-bubble/gmail.js.map +1 -1
  17. package/dist/bubbles/service-bubble/google-calendar.d.ts +30 -30
  18. package/dist/bubbles/service-bubble/google-drive.d.ts +100 -100
  19. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +30 -30
  20. package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
  21. package/dist/bubbles/service-bubble/http.d.ts +10 -10
  22. package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
  23. package/dist/bubbles/service-bubble/jira/jira.d.ts +29 -29
  24. package/dist/bubbles/service-bubble/notion/notion.d.ts +72 -72
  25. package/dist/bubbles/service-bubble/postgresql.d.ts +6 -6
  26. package/dist/bubbles/service-bubble/resend.d.ts +26 -26
  27. package/dist/bubbles/service-bubble/slack/slack.d.ts +218 -218
  28. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  29. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +62 -62
  30. package/dist/bubbles/service-bubble/telegram.d.ts +56 -56
  31. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +14 -14
  32. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
  33. package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +12 -12
  34. package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
  35. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +4 -4
  36. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
  37. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
  38. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +20 -20
  39. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +8 -8
  40. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  41. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
  42. package/dist/bubbles/tool-bubble/tool-template.d.ts +8 -8
  43. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +14 -14
  44. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
  45. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +8 -8
  46. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
  47. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
  48. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +26 -26
  49. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +24 -24
  50. package/dist/bubbles.json +6 -6
  51. package/package.json +2 -2
@@ -12,9 +12,9 @@ declare const PostgreSQLParamsSchema: z.ZodObject<{
12
12
  maxRows: z.ZodDefault<z.ZodNumber>;
13
13
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
14
14
  }, "strip", z.ZodTypeAny, {
15
- ignoreSSL: boolean;
16
15
  query: string;
17
- allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
16
+ ignoreSSL: boolean;
17
+ allowedOperations: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
18
18
  parameters: unknown[];
19
19
  timeout: number;
20
20
  maxRows: number;
@@ -23,7 +23,7 @@ declare const PostgreSQLParamsSchema: z.ZodObject<{
23
23
  query: string;
24
24
  credentials?: Partial<Record<CredentialType, string>> | undefined;
25
25
  ignoreSSL?: boolean | undefined;
26
- allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
26
+ allowedOperations?: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
27
27
  parameters?: unknown[] | undefined;
28
28
  timeout?: number | undefined;
29
29
  maxRows?: number | undefined;
@@ -89,9 +89,9 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
89
89
  maxRows: z.ZodDefault<z.ZodNumber>;
90
90
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
91
91
  }, "strip", z.ZodTypeAny, {
92
- ignoreSSL: boolean;
93
92
  query: string;
94
- allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
93
+ ignoreSSL: boolean;
94
+ allowedOperations: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
95
95
  parameters: unknown[];
96
96
  timeout: number;
97
97
  maxRows: number;
@@ -100,7 +100,7 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
100
100
  query: string;
101
101
  credentials?: Partial<Record<CredentialType, string>> | undefined;
102
102
  ignoreSSL?: boolean | undefined;
103
- allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
103
+ allowedOperations?: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
104
104
  parameters?: unknown[] | undefined;
105
105
  timeout?: number | undefined;
106
106
  maxRows?: number | undefined;
@@ -43,10 +43,14 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
43
43
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
44
44
  }, "strip", z.ZodTypeAny, {
45
45
  operation: "send_email";
46
- from: string;
47
46
  to: string | string[];
48
47
  subject: string;
48
+ from: string;
49
+ cc?: string | string[] | undefined;
50
+ bcc?: string | string[] | undefined;
51
+ reply_to?: string | string[] | undefined;
49
52
  credentials?: Partial<Record<CredentialType, string>> | undefined;
53
+ headers?: Record<string, string> | undefined;
50
54
  text?: string | undefined;
51
55
  attachments?: {
52
56
  content: string | Buffer<ArrayBufferLike>;
@@ -54,21 +58,21 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
54
58
  path?: string | undefined;
55
59
  content_type?: string | undefined;
56
60
  }[] | undefined;
57
- cc?: string | string[] | undefined;
58
- bcc?: string | string[] | undefined;
59
61
  html?: string | undefined;
60
- reply_to?: string | string[] | undefined;
61
62
  scheduled_at?: string | undefined;
62
63
  tags?: {
63
64
  value: string;
64
65
  name: string;
65
66
  }[] | undefined;
66
- headers?: Record<string, string> | undefined;
67
67
  }, {
68
68
  operation: "send_email";
69
69
  to: string | string[];
70
70
  subject: string;
71
+ cc?: string | string[] | undefined;
72
+ bcc?: string | string[] | undefined;
73
+ reply_to?: string | string[] | undefined;
71
74
  credentials?: Partial<Record<CredentialType, string>> | undefined;
75
+ headers?: Record<string, string> | undefined;
72
76
  text?: string | undefined;
73
77
  attachments?: {
74
78
  content: string | Buffer<ArrayBufferLike>;
@@ -77,16 +81,12 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
77
81
  content_type?: string | undefined;
78
82
  }[] | undefined;
79
83
  from?: string | undefined;
80
- cc?: string | string[] | undefined;
81
- bcc?: string | string[] | undefined;
82
84
  html?: string | undefined;
83
- reply_to?: string | string[] | undefined;
84
85
  scheduled_at?: string | undefined;
85
86
  tags?: {
86
87
  value: string;
87
88
  name: string;
88
89
  }[] | undefined;
89
- headers?: Record<string, string> | undefined;
90
90
  }>, z.ZodObject<{
91
91
  operation: z.ZodLiteral<"get_email_status">;
92
92
  email_id: z.ZodString;
@@ -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;
@@ -190,10 +190,14 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
190
190
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
191
191
  }, "strip", z.ZodTypeAny, {
192
192
  operation: "send_email";
193
- from: string;
194
193
  to: string | string[];
195
194
  subject: string;
195
+ from: string;
196
+ cc?: string | string[] | undefined;
197
+ bcc?: string | string[] | undefined;
198
+ reply_to?: string | string[] | undefined;
196
199
  credentials?: Partial<Record<CredentialType, string>> | undefined;
200
+ headers?: Record<string, string> | undefined;
197
201
  text?: string | undefined;
198
202
  attachments?: {
199
203
  content: string | Buffer<ArrayBufferLike>;
@@ -201,21 +205,21 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
201
205
  path?: string | undefined;
202
206
  content_type?: string | undefined;
203
207
  }[] | undefined;
204
- cc?: string | string[] | undefined;
205
- bcc?: string | string[] | undefined;
206
208
  html?: string | undefined;
207
- reply_to?: string | string[] | undefined;
208
209
  scheduled_at?: string | undefined;
209
210
  tags?: {
210
211
  value: string;
211
212
  name: string;
212
213
  }[] | undefined;
213
- headers?: Record<string, string> | undefined;
214
214
  }, {
215
215
  operation: "send_email";
216
216
  to: string | string[];
217
217
  subject: string;
218
+ cc?: string | string[] | undefined;
219
+ bcc?: string | string[] | undefined;
220
+ reply_to?: string | string[] | undefined;
218
221
  credentials?: Partial<Record<CredentialType, string>> | undefined;
222
+ headers?: Record<string, string> | undefined;
219
223
  text?: string | undefined;
220
224
  attachments?: {
221
225
  content: string | Buffer<ArrayBufferLike>;
@@ -224,16 +228,12 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
224
228
  content_type?: string | undefined;
225
229
  }[] | undefined;
226
230
  from?: string | undefined;
227
- cc?: string | string[] | undefined;
228
- bcc?: string | string[] | undefined;
229
231
  html?: string | undefined;
230
- reply_to?: string | string[] | undefined;
231
232
  scheduled_at?: string | undefined;
232
233
  tags?: {
233
234
  value: string;
234
235
  name: string;
235
236
  }[] | undefined;
236
- headers?: Record<string, string> | undefined;
237
237
  }>, z.ZodObject<{
238
238
  operation: z.ZodLiteral<"get_email_status">;
239
239
  email_id: z.ZodString;
@@ -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;