@bubblelab/bubble-core 0.1.51 → 0.1.53

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 (40) hide show
  1. package/dist/bubble-bundle.d.ts +50 -50
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +8 -8
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +8 -8
  4. package/dist/bubbles/service-bubble/airtable.d.ts +72 -72
  5. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +124 -124
  6. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +16 -16
  7. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +4 -4
  8. package/dist/bubbles/service-bubble/firecrawl.d.ts +48 -48
  9. package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
  10. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +36 -36
  11. package/dist/bubbles/service-bubble/github.d.ts +56 -56
  12. package/dist/bubbles/service-bubble/gmail.d.ts +124 -124
  13. package/dist/bubbles/service-bubble/google-drive.d.ts +8 -8
  14. package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
  15. package/dist/bubbles/service-bubble/jira/jira.d.ts +28 -28
  16. package/dist/bubbles/service-bubble/notion/notion.d.ts +392 -392
  17. package/dist/bubbles/service-bubble/resend.d.ts +8 -8
  18. package/dist/bubbles/service-bubble/slack/slack.d.ts +28 -28
  19. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +221 -32
  20. package/dist/bubbles/service-bubble/stripe/stripe.d.ts.map +1 -1
  21. package/dist/bubbles/service-bubble/stripe/stripe.js +61 -0
  22. package/dist/bubbles/service-bubble/stripe/stripe.js.map +1 -1
  23. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +233 -40
  24. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts.map +1 -1
  25. package/dist/bubbles/service-bubble/stripe/stripe.schema.js +50 -0
  26. package/dist/bubbles/service-bubble/stripe/stripe.schema.js.map +1 -1
  27. package/dist/bubbles/service-bubble/telegram.d.ts +140 -140
  28. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
  29. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +18 -18
  30. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +10 -10
  31. package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +8 -8
  32. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +10 -10
  33. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
  34. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  35. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
  36. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +48 -48
  37. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
  38. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +8 -8
  39. package/dist/bubbles.json +272 -2
  40. package/package.json +2 -2
@@ -400,14 +400,14 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
400
400
  timestamp: z.ZodString;
401
401
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
402
402
  }, "strip", z.ZodTypeAny, {
403
- type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
404
403
  id: number;
404
+ type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
405
405
  content: string | Record<string, unknown>;
406
406
  timestamp: string;
407
407
  metadata?: Record<string, unknown> | undefined;
408
408
  }, {
409
- type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
410
409
  id: number;
410
+ type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
411
411
  content: string | Record<string, unknown>;
412
412
  timestamp: string;
413
413
  metadata?: Record<string, unknown> | undefined;
@@ -423,8 +423,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
423
423
  ok: boolean;
424
424
  status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
425
425
  messages?: {
426
- type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
427
426
  id: number;
427
+ type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
428
428
  content: string | Record<string, unknown>;
429
429
  timestamp: string;
430
430
  metadata?: Record<string, unknown> | undefined;
@@ -437,8 +437,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
437
437
  ok: boolean;
438
438
  status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
439
439
  messages?: {
440
- type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
441
440
  id: number;
441
+ type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
442
442
  content: string | Record<string, unknown>;
443
443
  timestamp: string;
444
444
  metadata?: Record<string, unknown> | undefined;
@@ -953,14 +953,14 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
953
953
  timestamp: z.ZodString;
954
954
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
955
955
  }, "strip", z.ZodTypeAny, {
956
- type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
957
956
  id: number;
957
+ type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
958
958
  content: string | Record<string, unknown>;
959
959
  timestamp: string;
960
960
  metadata?: Record<string, unknown> | undefined;
961
961
  }, {
962
- type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
963
962
  id: number;
963
+ type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
964
964
  content: string | Record<string, unknown>;
965
965
  timestamp: string;
966
966
  metadata?: Record<string, unknown> | undefined;
@@ -976,8 +976,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
976
976
  ok: boolean;
977
977
  status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
978
978
  messages?: {
979
- type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
980
979
  id: number;
980
+ type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
981
981
  content: string | Record<string, unknown>;
982
982
  timestamp: string;
983
983
  metadata?: Record<string, unknown> | undefined;
@@ -990,8 +990,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
990
990
  ok: boolean;
991
991
  status?: "error" | "running" | "waiting_for_input" | "finished" | undefined;
992
992
  messages?: {
993
- type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
994
993
  id: number;
994
+ type: "ERROR" | "THOUGHT" | "QUESTION" | "USER" | "DONE" | "LOG";
995
995
  content: string | Record<string, unknown>;
996
996
  timestamp: string;
997
997
  metadata?: Record<string, unknown> | undefined;
@@ -159,13 +159,13 @@ declare const AIAgentParamsSchema: z.ZodObject<{
159
159
  schema: z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodType<z.ZodTypeAny, z.ZodTypeDef, z.ZodTypeAny>]>;
160
160
  func: z.ZodFunction<z.ZodTuple<[z.ZodRecord<z.ZodString, z.ZodUnknown>], z.ZodUnknown>, z.ZodPromise<z.ZodUnknown>>;
161
161
  }, "strip", z.ZodTypeAny, {
162
- description: string;
163
162
  name: string;
163
+ description: string;
164
164
  schema: z.ZodTypeAny | Record<string, unknown>;
165
165
  func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
166
166
  }, {
167
- description: string;
168
167
  name: string;
168
+ description: string;
169
169
  schema: z.ZodTypeAny | Record<string, unknown>;
170
170
  func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
171
171
  }>, "many">>>;
@@ -218,8 +218,8 @@ declare const AIAgentParamsSchema: z.ZodObject<{
218
218
  name?: string | undefined;
219
219
  }[] | undefined;
220
220
  customTools?: {
221
- description: string;
222
221
  name: string;
222
+ description: string;
223
223
  schema: z.ZodTypeAny | Record<string, unknown>;
224
224
  func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
225
225
  }[] | undefined;
@@ -267,8 +267,8 @@ declare const AIAgentParamsSchema: z.ZodObject<{
267
267
  config?: Record<string, unknown> | undefined;
268
268
  }[] | undefined;
269
269
  customTools?: {
270
- description: string;
271
270
  name: string;
271
+ description: string;
272
272
  schema: z.ZodTypeAny | Record<string, unknown>;
273
273
  func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
274
274
  }[] | undefined;
@@ -458,13 +458,13 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
458
458
  schema: z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodType<z.ZodTypeAny, z.ZodTypeDef, z.ZodTypeAny>]>;
459
459
  func: z.ZodFunction<z.ZodTuple<[z.ZodRecord<z.ZodString, z.ZodUnknown>], z.ZodUnknown>, z.ZodPromise<z.ZodUnknown>>;
460
460
  }, "strip", z.ZodTypeAny, {
461
- description: string;
462
461
  name: string;
462
+ description: string;
463
463
  schema: z.ZodTypeAny | Record<string, unknown>;
464
464
  func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
465
465
  }, {
466
- description: string;
467
466
  name: string;
467
+ description: string;
468
468
  schema: z.ZodTypeAny | Record<string, unknown>;
469
469
  func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
470
470
  }>, "many">>>;
@@ -517,8 +517,8 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
517
517
  name?: string | undefined;
518
518
  }[] | undefined;
519
519
  customTools?: {
520
- description: string;
521
520
  name: string;
521
+ description: string;
522
522
  schema: z.ZodTypeAny | Record<string, unknown>;
523
523
  func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
524
524
  }[] | undefined;
@@ -566,8 +566,8 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
566
566
  config?: Record<string, unknown> | undefined;
567
567
  }[] | undefined;
568
568
  customTools?: {
569
- description: string;
570
569
  name: string;
570
+ description: string;
571
571
  schema: z.ZodTypeAny | Record<string, unknown>;
572
572
  func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
573
573
  }[] | undefined;