@bubblelab/bubble-core 0.1.33 → 0.1.35

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 (59) hide show
  1. package/dist/bubble-bundle.d.ts +85 -85
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +116 -116
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +36 -36
  4. package/dist/bubbles/service-bubble/airtable.d.ts +232 -232
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +38 -38
  6. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +50 -50
  7. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +56 -56
  8. package/dist/bubbles/service-bubble/eleven-labs.d.ts +52 -52
  9. package/dist/bubbles/service-bubble/firecrawl.d.ts +326 -326
  10. package/dist/bubbles/service-bubble/followupboss.d.ts +332 -332
  11. package/dist/bubbles/service-bubble/github.d.ts +172 -172
  12. package/dist/bubbles/service-bubble/gmail.d.ts +632 -632
  13. package/dist/bubbles/service-bubble/google-calendar.d.ts +232 -232
  14. package/dist/bubbles/service-bubble/google-drive.d.ts +128 -128
  15. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +54 -54
  16. package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
  17. package/dist/bubbles/service-bubble/http.d.ts +20 -20
  18. package/dist/bubbles/service-bubble/insforge-db.d.ts +18 -18
  19. package/dist/bubbles/service-bubble/jira/jira.d.ts +513 -513
  20. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +670 -670
  21. package/dist/bubbles/service-bubble/notion/notion.d.ts +204 -204
  22. package/dist/bubbles/service-bubble/postgresql.d.ts +18 -18
  23. package/dist/bubbles/service-bubble/resend.d.ts +20 -20
  24. package/dist/bubbles/service-bubble/slack/slack.d.ts +414 -414
  25. package/dist/bubbles/service-bubble/storage.d.ts +60 -60
  26. package/dist/bubbles/service-bubble/telegram.d.ts +122 -122
  27. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +33 -33
  28. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
  29. package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +4 -4
  30. package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
  31. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +8 -8
  32. package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +4 -4
  33. package/dist/bubbles/tool-bubble/get-trigger-detail-tool.d.ts +4 -4
  34. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +12 -12
  35. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +12 -12
  36. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +424 -424
  37. package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
  38. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +8 -8
  39. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +16 -16
  40. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +8 -8
  41. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +16 -16
  42. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +104 -104
  43. package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
  44. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +192 -192
  45. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +8 -8
  46. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +8 -8
  47. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  48. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +8 -8
  49. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +38 -38
  50. package/dist/bubbles/workflow-bubble/database-analyzer.workflow.d.ts +4 -4
  51. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +16 -16
  52. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
  53. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +68 -68
  54. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
  55. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +8 -8
  56. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +60 -60
  57. package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
  58. package/dist/bubbles.json +1 -1
  59. package/package.json +2 -2
@@ -12,16 +12,16 @@ declare const TikTokToolParamsSchema: z.ZodObject<{
12
12
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
13
13
  }, "strip", z.ZodTypeAny, {
14
14
  operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
15
- limit?: number | undefined;
16
15
  credentials?: Partial<Record<CredentialType, string>> | undefined;
16
+ limit?: number | undefined;
17
17
  hashtags?: string[] | undefined;
18
18
  profiles?: string[] | undefined;
19
19
  shouldDownloadVideos?: boolean | undefined;
20
20
  videoUrls?: string[] | undefined;
21
21
  }, {
22
22
  operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
23
- limit?: number | undefined;
24
23
  credentials?: Partial<Record<CredentialType, string>> | undefined;
24
+ limit?: number | undefined;
25
25
  hashtags?: string[] | undefined;
26
26
  profiles?: string[] | undefined;
27
27
  shouldDownloadVideos?: boolean | undefined;
@@ -98,7 +98,19 @@ declare const TikTokToolResultSchema: z.ZodObject<{
98
98
  name: string | null;
99
99
  }>, "many">>;
100
100
  }, "strip", z.ZodTypeAny, {
101
+ stats: {
102
+ collectCount: number | null;
103
+ commentCount: number | null;
104
+ diggCount: number | null;
105
+ playCount: number | null;
106
+ shareCount: number | null;
107
+ } | null;
101
108
  id: string | null;
109
+ text: string | null;
110
+ hashtags: {
111
+ name: string | null;
112
+ }[] | null;
113
+ videoUrl: string | null;
102
114
  author: {
103
115
  id: string | null;
104
116
  verified: boolean | null;
@@ -111,11 +123,11 @@ declare const TikTokToolResultSchema: z.ZodObject<{
111
123
  videoCount: number | null;
112
124
  heartCount: number | null;
113
125
  } | null;
114
- text: string | null;
115
- hashtags: {
116
- name: string | null;
117
- }[] | null;
118
- videoUrl: string | null;
126
+ createTime: number | null;
127
+ createTimeISO: string | null;
128
+ webVideoUrl: string | null;
129
+ covers: string[] | null;
130
+ }, {
119
131
  stats: {
120
132
  collectCount: number | null;
121
133
  commentCount: number | null;
@@ -123,12 +135,12 @@ declare const TikTokToolResultSchema: z.ZodObject<{
123
135
  playCount: number | null;
124
136
  shareCount: number | null;
125
137
  } | null;
126
- createTime: number | null;
127
- createTimeISO: string | null;
128
- webVideoUrl: string | null;
129
- covers: string[] | null;
130
- }, {
131
138
  id: string | null;
139
+ text: string | null;
140
+ hashtags: {
141
+ name: string | null;
142
+ }[] | null;
143
+ videoUrl: string | null;
132
144
  author: {
133
145
  id: string | null;
134
146
  verified: boolean | null;
@@ -141,18 +153,6 @@ declare const TikTokToolResultSchema: z.ZodObject<{
141
153
  videoCount: number | null;
142
154
  heartCount: number | null;
143
155
  } | null;
144
- text: string | null;
145
- hashtags: {
146
- name: string | null;
147
- }[] | null;
148
- videoUrl: string | null;
149
- stats: {
150
- collectCount: number | null;
151
- commentCount: number | null;
152
- diggCount: number | null;
153
- playCount: number | null;
154
- shareCount: number | null;
155
- } | null;
156
156
  createTime: number | null;
157
157
  createTimeISO: string | null;
158
158
  webVideoUrl: string | null;
@@ -162,11 +162,23 @@ declare const TikTokToolResultSchema: z.ZodObject<{
162
162
  success: z.ZodBoolean;
163
163
  error: z.ZodString;
164
164
  }, "strip", z.ZodTypeAny, {
165
- operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
166
- success: boolean;
167
165
  error: string;
166
+ success: boolean;
167
+ operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
168
168
  videos: {
169
+ stats: {
170
+ collectCount: number | null;
171
+ commentCount: number | null;
172
+ diggCount: number | null;
173
+ playCount: number | null;
174
+ shareCount: number | null;
175
+ } | null;
169
176
  id: string | null;
177
+ text: string | null;
178
+ hashtags: {
179
+ name: string | null;
180
+ }[] | null;
181
+ videoUrl: string | null;
170
182
  author: {
171
183
  id: string | null;
172
184
  verified: boolean | null;
@@ -179,18 +191,6 @@ declare const TikTokToolResultSchema: z.ZodObject<{
179
191
  videoCount: number | null;
180
192
  heartCount: number | null;
181
193
  } | null;
182
- text: string | null;
183
- hashtags: {
184
- name: string | null;
185
- }[] | null;
186
- videoUrl: string | null;
187
- stats: {
188
- collectCount: number | null;
189
- commentCount: number | null;
190
- diggCount: number | null;
191
- playCount: number | null;
192
- shareCount: number | null;
193
- } | null;
194
194
  createTime: number | null;
195
195
  createTimeISO: string | null;
196
196
  webVideoUrl: string | null;
@@ -198,11 +198,23 @@ declare const TikTokToolResultSchema: z.ZodObject<{
198
198
  }[];
199
199
  totalVideos: number;
200
200
  }, {
201
- operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
202
- success: boolean;
203
201
  error: string;
202
+ success: boolean;
203
+ operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
204
204
  videos: {
205
+ stats: {
206
+ collectCount: number | null;
207
+ commentCount: number | null;
208
+ diggCount: number | null;
209
+ playCount: number | null;
210
+ shareCount: number | null;
211
+ } | null;
205
212
  id: string | null;
213
+ text: string | null;
214
+ hashtags: {
215
+ name: string | null;
216
+ }[] | null;
217
+ videoUrl: string | null;
206
218
  author: {
207
219
  id: string | null;
208
220
  verified: boolean | null;
@@ -215,18 +227,6 @@ declare const TikTokToolResultSchema: z.ZodObject<{
215
227
  videoCount: number | null;
216
228
  heartCount: number | null;
217
229
  } | null;
218
- text: string | null;
219
- hashtags: {
220
- name: string | null;
221
- }[] | null;
222
- videoUrl: string | null;
223
- stats: {
224
- collectCount: number | null;
225
- commentCount: number | null;
226
- diggCount: number | null;
227
- playCount: number | null;
228
- shareCount: number | null;
229
- } | null;
230
230
  createTime: number | null;
231
231
  createTimeISO: string | null;
232
232
  webVideoUrl: string | null;
@@ -249,16 +249,16 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
249
249
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
250
250
  }, "strip", z.ZodTypeAny, {
251
251
  operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
252
- limit?: number | undefined;
253
252
  credentials?: Partial<Record<CredentialType, string>> | undefined;
253
+ limit?: number | undefined;
254
254
  hashtags?: string[] | undefined;
255
255
  profiles?: string[] | undefined;
256
256
  shouldDownloadVideos?: boolean | undefined;
257
257
  videoUrls?: string[] | undefined;
258
258
  }, {
259
259
  operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
260
- limit?: number | undefined;
261
260
  credentials?: Partial<Record<CredentialType, string>> | undefined;
261
+ limit?: number | undefined;
262
262
  hashtags?: string[] | undefined;
263
263
  profiles?: string[] | undefined;
264
264
  shouldDownloadVideos?: boolean | undefined;
@@ -335,7 +335,19 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
335
335
  name: string | null;
336
336
  }>, "many">>;
337
337
  }, "strip", z.ZodTypeAny, {
338
+ stats: {
339
+ collectCount: number | null;
340
+ commentCount: number | null;
341
+ diggCount: number | null;
342
+ playCount: number | null;
343
+ shareCount: number | null;
344
+ } | null;
338
345
  id: string | null;
346
+ text: string | null;
347
+ hashtags: {
348
+ name: string | null;
349
+ }[] | null;
350
+ videoUrl: string | null;
339
351
  author: {
340
352
  id: string | null;
341
353
  verified: boolean | null;
@@ -348,11 +360,11 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
348
360
  videoCount: number | null;
349
361
  heartCount: number | null;
350
362
  } | null;
351
- text: string | null;
352
- hashtags: {
353
- name: string | null;
354
- }[] | null;
355
- videoUrl: string | null;
363
+ createTime: number | null;
364
+ createTimeISO: string | null;
365
+ webVideoUrl: string | null;
366
+ covers: string[] | null;
367
+ }, {
356
368
  stats: {
357
369
  collectCount: number | null;
358
370
  commentCount: number | null;
@@ -360,12 +372,12 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
360
372
  playCount: number | null;
361
373
  shareCount: number | null;
362
374
  } | null;
363
- createTime: number | null;
364
- createTimeISO: string | null;
365
- webVideoUrl: string | null;
366
- covers: string[] | null;
367
- }, {
368
375
  id: string | null;
376
+ text: string | null;
377
+ hashtags: {
378
+ name: string | null;
379
+ }[] | null;
380
+ videoUrl: string | null;
369
381
  author: {
370
382
  id: string | null;
371
383
  verified: boolean | null;
@@ -378,18 +390,6 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
378
390
  videoCount: number | null;
379
391
  heartCount: number | null;
380
392
  } | null;
381
- text: string | null;
382
- hashtags: {
383
- name: string | null;
384
- }[] | null;
385
- videoUrl: string | null;
386
- stats: {
387
- collectCount: number | null;
388
- commentCount: number | null;
389
- diggCount: number | null;
390
- playCount: number | null;
391
- shareCount: number | null;
392
- } | null;
393
393
  createTime: number | null;
394
394
  createTimeISO: string | null;
395
395
  webVideoUrl: string | null;
@@ -399,11 +399,23 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
399
399
  success: z.ZodBoolean;
400
400
  error: z.ZodString;
401
401
  }, "strip", z.ZodTypeAny, {
402
- operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
403
- success: boolean;
404
402
  error: string;
403
+ success: boolean;
404
+ operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
405
405
  videos: {
406
+ stats: {
407
+ collectCount: number | null;
408
+ commentCount: number | null;
409
+ diggCount: number | null;
410
+ playCount: number | null;
411
+ shareCount: number | null;
412
+ } | null;
406
413
  id: string | null;
414
+ text: string | null;
415
+ hashtags: {
416
+ name: string | null;
417
+ }[] | null;
418
+ videoUrl: string | null;
407
419
  author: {
408
420
  id: string | null;
409
421
  verified: boolean | null;
@@ -416,18 +428,6 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
416
428
  videoCount: number | null;
417
429
  heartCount: number | null;
418
430
  } | null;
419
- text: string | null;
420
- hashtags: {
421
- name: string | null;
422
- }[] | null;
423
- videoUrl: string | null;
424
- stats: {
425
- collectCount: number | null;
426
- commentCount: number | null;
427
- diggCount: number | null;
428
- playCount: number | null;
429
- shareCount: number | null;
430
- } | null;
431
431
  createTime: number | null;
432
432
  createTimeISO: string | null;
433
433
  webVideoUrl: string | null;
@@ -435,11 +435,23 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
435
435
  }[];
436
436
  totalVideos: number;
437
437
  }, {
438
- operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
439
- success: boolean;
440
438
  error: string;
439
+ success: boolean;
440
+ operation: "scrapeProfile" | "scrapeHashtag" | "scrapeVideo";
441
441
  videos: {
442
+ stats: {
443
+ collectCount: number | null;
444
+ commentCount: number | null;
445
+ diggCount: number | null;
446
+ playCount: number | null;
447
+ shareCount: number | null;
448
+ } | null;
442
449
  id: string | null;
450
+ text: string | null;
451
+ hashtags: {
452
+ name: string | null;
453
+ }[] | null;
454
+ videoUrl: string | null;
443
455
  author: {
444
456
  id: string | null;
445
457
  verified: boolean | null;
@@ -452,18 +464,6 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
452
464
  videoCount: number | null;
453
465
  heartCount: number | null;
454
466
  } | null;
455
- text: string | null;
456
- hashtags: {
457
- name: string | null;
458
- }[] | null;
459
- videoUrl: string | null;
460
- stats: {
461
- collectCount: number | null;
462
- commentCount: number | null;
463
- diggCount: number | null;
464
- playCount: number | null;
465
- shareCount: number | null;
466
- } | null;
467
467
  createTime: number | null;
468
468
  createTimeISO: string | null;
469
469
  webVideoUrl: string | null;
@@ -99,16 +99,16 @@ declare const MyCustomToolResultSchema: z.ZodObject<{
99
99
  success: z.ZodBoolean;
100
100
  error: z.ZodString;
101
101
  }, "strip", z.ZodTypeAny, {
102
- success: boolean;
103
102
  error: string;
103
+ success: boolean;
104
104
  metadata: {
105
105
  processedAt: string;
106
106
  itemsProcessed: number;
107
107
  };
108
108
  processedData: string;
109
109
  }, {
110
- success: boolean;
111
110
  error: string;
111
+ success: boolean;
112
112
  metadata: {
113
113
  processedAt: string;
114
114
  itemsProcessed: number;
@@ -172,16 +172,16 @@ export declare class MyCustomTool extends ToolBubble<MyCustomToolParams, MyCusto
172
172
  success: z.ZodBoolean;
173
173
  error: z.ZodString;
174
174
  }, "strip", z.ZodTypeAny, {
175
- success: boolean;
176
175
  error: string;
176
+ success: boolean;
177
177
  metadata: {
178
178
  processedAt: string;
179
179
  itemsProcessed: number;
180
180
  };
181
181
  processedData: string;
182
182
  }, {
183
- success: boolean;
184
183
  error: string;
184
+ success: boolean;
185
185
  metadata: {
186
186
  processedAt: string;
187
187
  itemsProcessed: number;