@bubblelab/bubble-core 0.1.75 → 0.1.76

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 (52) hide show
  1. package/dist/bubble-bundle.d.ts +92 -92
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +112 -112
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +8 -8
  4. package/dist/bubbles/service-bubble/airtable.d.ts +222 -222
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +12 -12
  6. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +22 -22
  7. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +22 -22
  8. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +29 -29
  9. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +29 -29
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +16 -16
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +20 -20
  12. package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
  13. package/dist/bubbles/service-bubble/firecrawl.d.ts +88 -88
  14. package/dist/bubbles/service-bubble/followupboss.d.ts +232 -232
  15. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +16 -16
  16. package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +16 -16
  17. package/dist/bubbles/service-bubble/github.d.ts +60 -60
  18. package/dist/bubbles/service-bubble/gmail.d.ts +74 -74
  19. package/dist/bubbles/service-bubble/google-calendar.d.ts +28 -28
  20. package/dist/bubbles/service-bubble/google-drive.d.ts +94 -94
  21. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +42 -42
  22. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +46 -46
  23. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  24. package/dist/bubbles/service-bubble/insforge-db.d.ts +10 -10
  25. package/dist/bubbles/service-bubble/jira/jira.d.ts +54 -54
  26. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +56 -56
  27. package/dist/bubbles/service-bubble/notion/notion.d.ts +208 -208
  28. package/dist/bubbles/service-bubble/postgresql.d.ts +10 -10
  29. package/dist/bubbles/service-bubble/resend.d.ts +8 -8
  30. package/dist/bubbles/service-bubble/slack/slack.d.ts +278 -278
  31. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  32. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +71 -71
  33. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +77 -77
  34. package/dist/bubbles/service-bubble/telegram.d.ts +110 -110
  35. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +24 -24
  36. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +28 -28
  37. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +24 -24
  38. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
  39. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
  40. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +2 -2
  41. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +46 -46
  42. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
  43. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
  44. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +40 -40
  45. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  46. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  47. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  48. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +14 -14
  49. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +50 -50
  50. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +52 -52
  51. package/dist/bubbles.json +1 -1
  52. package/package.json +2 -2
@@ -161,12 +161,12 @@ declare const AIAgentParamsSchema: z.ZodObject<{
161
161
  }, "strip", z.ZodTypeAny, {
162
162
  description: string;
163
163
  name: string;
164
- schema: z.ZodTypeAny | Record<string, unknown>;
164
+ schema: Record<string, unknown> | z.ZodTypeAny;
165
165
  func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
166
166
  }, {
167
167
  description: string;
168
168
  name: string;
169
- schema: z.ZodTypeAny | Record<string, unknown>;
169
+ schema: Record<string, unknown> | z.ZodTypeAny;
170
170
  func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
171
171
  }>, "many">>>;
172
172
  maxIterations: z.ZodDefault<z.ZodNumber>;
@@ -220,7 +220,7 @@ declare const AIAgentParamsSchema: z.ZodObject<{
220
220
  customTools?: {
221
221
  description: string;
222
222
  name: string;
223
- schema: z.ZodTypeAny | Record<string, unknown>;
223
+ schema: Record<string, unknown> | z.ZodTypeAny;
224
224
  func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
225
225
  }[] | undefined;
226
226
  expectedOutputSchema?: string | z.ZodTypeAny | undefined;
@@ -270,7 +270,7 @@ declare const AIAgentParamsSchema: z.ZodObject<{
270
270
  customTools?: {
271
271
  description: string;
272
272
  name: string;
273
- schema: z.ZodTypeAny | Record<string, unknown>;
273
+ schema: Record<string, unknown> | z.ZodTypeAny;
274
274
  func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
275
275
  }[] | undefined;
276
276
  maxIterations?: number | undefined;
@@ -466,12 +466,12 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
466
466
  }, "strip", z.ZodTypeAny, {
467
467
  description: string;
468
468
  name: string;
469
- schema: z.ZodTypeAny | Record<string, unknown>;
469
+ schema: Record<string, unknown> | z.ZodTypeAny;
470
470
  func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
471
471
  }, {
472
472
  description: string;
473
473
  name: string;
474
- schema: z.ZodTypeAny | Record<string, unknown>;
474
+ schema: Record<string, unknown> | z.ZodTypeAny;
475
475
  func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
476
476
  }>, "many">>>;
477
477
  maxIterations: z.ZodDefault<z.ZodNumber>;
@@ -525,7 +525,7 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
525
525
  customTools?: {
526
526
  description: string;
527
527
  name: string;
528
- schema: z.ZodTypeAny | Record<string, unknown>;
528
+ schema: Record<string, unknown> | z.ZodTypeAny;
529
529
  func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
530
530
  }[] | undefined;
531
531
  expectedOutputSchema?: string | z.ZodTypeAny | undefined;
@@ -575,7 +575,7 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
575
575
  customTools?: {
576
576
  description: string;
577
577
  name: string;
578
- schema: z.ZodTypeAny | Record<string, unknown>;
578
+ schema: Record<string, unknown> | z.ZodTypeAny;
579
579
  func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
580
580
  }[] | undefined;
581
581
  maxIterations?: number | undefined;