@bubblelab/bubble-core 0.1.24 → 0.1.26

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 (58) hide show
  1. package/dist/bubble-bundle.d.ts +89 -73
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +60 -60
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +14 -14
  4. package/dist/bubbles/service-bubble/airtable.d.ts +134 -134
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
  6. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +23 -23
  7. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +331 -331
  8. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +540 -540
  9. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts.map +1 -1
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js +15 -9
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js.map +1 -1
  12. package/dist/bubbles/service-bubble/eleven-labs.d.ts +32 -32
  13. package/dist/bubbles/service-bubble/firecrawl.d.ts +348 -348
  14. package/dist/bubbles/service-bubble/followupboss.d.ts +405 -405
  15. package/dist/bubbles/service-bubble/github.d.ts +132 -132
  16. package/dist/bubbles/service-bubble/gmail.d.ts +506 -506
  17. package/dist/bubbles/service-bubble/google-calendar.d.ts +132 -132
  18. package/dist/bubbles/service-bubble/google-drive.d.ts +84 -84
  19. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +30 -30
  20. package/dist/bubbles/service-bubble/http.d.ts +16 -16
  21. package/dist/bubbles/service-bubble/insforge-db.d.ts +6 -6
  22. package/dist/bubbles/service-bubble/notion/notion.d.ts +630 -630
  23. package/dist/bubbles/service-bubble/postgresql.d.ts +6 -6
  24. package/dist/bubbles/service-bubble/resend.d.ts +12 -12
  25. package/dist/bubbles/service-bubble/slack/slack.d.ts +218 -218
  26. package/dist/bubbles/service-bubble/storage.d.ts +40 -40
  27. package/dist/bubbles/service-bubble/telegram.d.ts +1329 -1329
  28. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
  29. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +202 -202
  30. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts.map +1 -1
  31. package/dist/bubbles/tool-bubble/company-enrichment-tool.js +27 -6
  32. package/dist/bubbles/tool-bubble/company-enrichment-tool.js.map +1 -1
  33. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +28 -28
  34. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +12 -12
  35. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +139 -139
  36. package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
  37. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +274 -274
  38. package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
  39. package/dist/bubbles/tool-bubble/people-search-tool.js +53 -16
  40. package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
  41. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +22 -22
  42. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  43. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  44. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +20 -20
  45. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +14 -14
  46. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +12 -12
  47. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +4 -4
  48. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
  49. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +26 -26
  50. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
  51. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +4 -4
  52. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +64 -64
  53. package/dist/bubbles.json +52058 -10
  54. package/dist/types/available-tools.d.ts +1 -1
  55. package/dist/types/available-tools.d.ts.map +1 -1
  56. package/dist/types/available-tools.js +1 -0
  57. package/dist/types/available-tools.js.map +1 -1
  58. package/package.json +3 -3
@@ -113,15 +113,15 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
113
113
  cart_count: import("zod").ZodOptional<import("zod").ZodNumber>;
114
114
  error: import("zod").ZodString;
115
115
  }, "strip", import("zod").ZodTypeAny, {
116
- operation: "add_to_cart";
117
116
  success: boolean;
118
117
  error: string;
118
+ operation: "add_to_cart";
119
119
  message?: string | undefined;
120
120
  cart_count?: number | undefined;
121
121
  }, {
122
- operation: "add_to_cart";
123
122
  success: boolean;
124
123
  error: string;
124
+ operation: "add_to_cart";
125
125
  message?: string | undefined;
126
126
  cart_count?: number | undefined;
127
127
  }>, import("zod").ZodObject<{
@@ -154,9 +154,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
154
154
  screenshot_url: import("zod").ZodOptional<import("zod").ZodString>;
155
155
  error: import("zod").ZodString;
156
156
  }, "strip", import("zod").ZodTypeAny, {
157
- operation: "get_cart";
158
157
  success: boolean;
159
158
  error: string;
159
+ operation: "get_cart";
160
160
  items?: {
161
161
  title: string;
162
162
  price: string;
@@ -169,9 +169,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
169
169
  total_items?: number | undefined;
170
170
  screenshot_url?: string | undefined;
171
171
  }, {
172
- operation: "get_cart";
173
172
  success: boolean;
174
173
  error: string;
174
+ operation: "get_cart";
175
175
  items?: {
176
176
  title: string;
177
177
  price: string;
@@ -210,9 +210,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
210
210
  screenshot_url: import("zod").ZodOptional<import("zod").ZodString>;
211
211
  error: import("zod").ZodString;
212
212
  }, "strip", import("zod").ZodTypeAny, {
213
- operation: "checkout";
214
213
  success: boolean;
215
214
  error: string;
215
+ operation: "checkout";
216
216
  items?: {
217
217
  title: string;
218
218
  price?: string | undefined;
@@ -228,9 +228,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
228
228
  shipping_address?: string | undefined;
229
229
  payment_method?: string | undefined;
230
230
  }, {
231
- operation: "checkout";
232
231
  success: boolean;
233
232
  error: string;
233
+ operation: "checkout";
234
234
  items?: {
235
235
  title: string;
236
236
  price?: string | undefined;
@@ -279,9 +279,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
279
279
  total_results: import("zod").ZodOptional<import("zod").ZodNumber>;
280
280
  error: import("zod").ZodString;
281
281
  }, "strip", import("zod").ZodTypeAny, {
282
- operation: "search";
283
282
  success: boolean;
284
283
  error: string;
284
+ operation: "search";
285
285
  results?: {
286
286
  title: string;
287
287
  url: string;
@@ -294,9 +294,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
294
294
  }[] | undefined;
295
295
  total_results?: number | undefined;
296
296
  }, {
297
- operation: "search";
298
297
  success: boolean;
299
298
  error: string;
299
+ operation: "search";
300
300
  results?: {
301
301
  title: string;
302
302
  url: string;
@@ -347,9 +347,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
347
347
  }>>;
348
348
  error: import("zod").ZodString;
349
349
  }, "strip", import("zod").ZodTypeAny, {
350
- operation: "get_product";
351
350
  success: boolean;
352
351
  error: string;
352
+ operation: "get_product";
353
353
  product?: {
354
354
  title: string;
355
355
  url: string;
@@ -363,9 +363,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
363
363
  availability?: string | undefined;
364
364
  } | undefined;
365
365
  }, {
366
- operation: "get_product";
367
366
  success: boolean;
368
367
  error: string;
368
+ operation: "get_product";
369
369
  product?: {
370
370
  title: string;
371
371
  url: string;
@@ -384,14 +384,14 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
384
384
  screenshot_url: import("zod").ZodOptional<import("zod").ZodString>;
385
385
  error: import("zod").ZodString;
386
386
  }, "strip", import("zod").ZodTypeAny, {
387
- operation: "screenshot";
388
387
  success: boolean;
389
388
  error: string;
389
+ operation: "screenshot";
390
390
  screenshot_url?: string | undefined;
391
391
  }, {
392
- operation: "screenshot";
393
392
  success: boolean;
394
393
  error: string;
394
+ operation: "screenshot";
395
395
  screenshot_url?: string | undefined;
396
396
  }>]>;
397
397
  static readonly shortDescription = "Amazon shopping automation - add to cart, view cart, checkout, search products";