@bubblelab/bubble-core 0.1.77 → 0.1.79

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 (47) hide show
  1. package/dist/bubble-bundle.d.ts +65 -64
  2. package/dist/bubbles/service-bubble/ai-agent.d.ts +56 -56
  3. package/dist/bubbles/service-bubble/airtable.d.ts +92 -92
  4. package/dist/bubbles/service-bubble/apify/apify.d.ts +18 -18
  5. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +42 -42
  6. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +2 -2
  7. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +78 -78
  8. package/dist/bubbles/service-bubble/firecrawl.d.ts +318 -318
  9. package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
  10. package/dist/bubbles/service-bubble/github.d.ts +40 -40
  11. package/dist/bubbles/service-bubble/gmail.d.ts +208 -208
  12. package/dist/bubbles/service-bubble/google-drive.d.ts +32 -32
  13. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  14. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  15. package/dist/bubbles/service-bubble/jira/jira.d.ts +8 -8
  16. package/dist/bubbles/service-bubble/notion/notion.d.ts +453 -453
  17. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  18. package/dist/bubbles/service-bubble/resend.d.ts +4 -4
  19. package/dist/bubbles/service-bubble/slack/slack.d.ts +398 -398
  20. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +13 -13
  21. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
  22. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
  23. package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +12 -12
  24. package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
  25. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +286 -286
  26. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +8 -8
  27. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +10 -10
  28. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
  29. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
  30. package/dist/bubbles/tool-bubble/tool-template.d.ts +8 -8
  31. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +106 -106
  32. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  33. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  34. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  35. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  36. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +30 -30
  37. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +18 -18
  38. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +26 -26
  39. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +20 -20
  40. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +24 -24
  41. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +128 -128
  42. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts.map +1 -1
  43. package/dist/bubbles/workflow-bubble/slack-formatter-agent.js +1 -11
  44. package/dist/bubbles/workflow-bubble/slack-formatter-agent.js.map +1 -1
  45. package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +10 -10
  46. package/dist/bubbles.json +29 -9
  47. package/package.json +2 -2
@@ -46,14 +46,14 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
46
46
  }, "strip", import("zod").ZodTypeAny, {
47
47
  name: string;
48
48
  operation: "create_customer";
49
- email?: string | undefined;
50
49
  credentials?: Partial<Record<CredentialType, string>> | undefined;
50
+ email?: string | undefined;
51
51
  metadata?: Record<string, string> | undefined;
52
52
  }, {
53
53
  name: string;
54
54
  operation: "create_customer";
55
- email?: string | undefined;
56
55
  credentials?: Partial<Record<CredentialType, string>> | undefined;
56
+ email?: string | undefined;
57
57
  metadata?: Record<string, string> | undefined;
58
58
  }>, import("zod").ZodObject<{
59
59
  operation: import("zod").ZodLiteral<"list_customers">;
@@ -63,12 +63,12 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
63
63
  }, "strip", import("zod").ZodTypeAny, {
64
64
  operation: "list_customers";
65
65
  limit: number;
66
- email?: string | undefined;
67
66
  credentials?: Partial<Record<CredentialType, string>> | undefined;
67
+ email?: string | undefined;
68
68
  }, {
69
69
  operation: "list_customers";
70
- email?: string | undefined;
71
70
  credentials?: Partial<Record<CredentialType, string>> | undefined;
71
+ email?: string | undefined;
72
72
  limit?: number | undefined;
73
73
  }>, import("zod").ZodObject<{
74
74
  operation: import("zod").ZodLiteral<"create_product">;
@@ -299,8 +299,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
299
299
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
300
300
  }, "strip", import("zod").ZodTypeAny, {
301
301
  operation: "cancel_subscription";
302
- subscription_id: string;
303
302
  cancel_at_period_end: boolean;
303
+ subscription_id: string;
304
304
  credentials?: Partial<Record<CredentialType, string>> | undefined;
305
305
  }, {
306
306
  operation: "cancel_subscription";
@@ -550,7 +550,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
550
550
  created: import("zod").ZodNumber;
551
551
  metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
552
552
  }, "strip", import("zod").ZodTypeAny, {
553
- type: "recurring" | "one_time";
553
+ type: "one_time" | "recurring";
554
554
  id: string;
555
555
  created: number;
556
556
  currency: string;
@@ -559,7 +559,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
559
559
  unit_amount: number | null;
560
560
  metadata?: Record<string, string> | undefined;
561
561
  }, {
562
- type: "recurring" | "one_time";
562
+ type: "one_time" | "recurring";
563
563
  id: string;
564
564
  created: number;
565
565
  currency: string;
@@ -574,7 +574,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
574
574
  success: boolean;
575
575
  operation: "create_price";
576
576
  price?: {
577
- type: "recurring" | "one_time";
577
+ type: "one_time" | "recurring";
578
578
  id: string;
579
579
  created: number;
580
580
  currency: string;
@@ -588,7 +588,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
588
588
  success: boolean;
589
589
  operation: "create_price";
590
590
  price?: {
591
- type: "recurring" | "one_time";
591
+ type: "one_time" | "recurring";
592
592
  id: string;
593
593
  created: number;
594
594
  currency: string;
@@ -610,7 +610,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
610
610
  created: import("zod").ZodNumber;
611
611
  metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
612
612
  }, "strip", import("zod").ZodTypeAny, {
613
- type: "recurring" | "one_time";
613
+ type: "one_time" | "recurring";
614
614
  id: string;
615
615
  created: number;
616
616
  currency: string;
@@ -619,7 +619,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
619
619
  unit_amount: number | null;
620
620
  metadata?: Record<string, string> | undefined;
621
621
  }, {
622
- type: "recurring" | "one_time";
622
+ type: "one_time" | "recurring";
623
623
  id: string;
624
624
  created: number;
625
625
  currency: string;
@@ -634,7 +634,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
634
634
  success: boolean;
635
635
  operation: "list_prices";
636
636
  prices?: {
637
- type: "recurring" | "one_time";
637
+ type: "one_time" | "recurring";
638
638
  id: string;
639
639
  created: number;
640
640
  currency: string;
@@ -648,7 +648,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
648
648
  success: boolean;
649
649
  operation: "list_prices";
650
650
  prices?: {
651
- type: "recurring" | "one_time";
651
+ type: "one_time" | "recurring";
652
652
  id: string;
653
653
  created: number;
654
654
  currency: string;
@@ -98,12 +98,12 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
98
98
  }, "strip", import("zod").ZodTypeAny, {
99
99
  operation: "screenshot";
100
100
  full_page: boolean;
101
- url?: string | undefined;
102
101
  credentials?: Partial<Record<CredentialType, string>> | undefined;
102
+ url?: string | undefined;
103
103
  }, {
104
104
  operation: "screenshot";
105
- url?: string | undefined;
106
105
  credentials?: Partial<Record<CredentialType, string>> | undefined;
106
+ url?: string | undefined;
107
107
  full_page?: boolean | undefined;
108
108
  }>]>;
109
109
  static readonly resultSchema: import("zod").ZodDiscriminatedUnion<"operation", [import("zod").ZodObject<{
@@ -119,13 +119,13 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
119
119
  error: z.ZodString;
120
120
  }, "strip", z.ZodTypeAny, {
121
121
  valid: boolean;
122
+ error: string;
123
+ success: boolean;
122
124
  metadata: {
123
125
  strictMode: boolean;
124
126
  validatedAt: string;
125
127
  codeLength: number;
126
128
  };
127
- error: string;
128
- success: boolean;
129
129
  errors?: string[] | undefined;
130
130
  bubbles?: {
131
131
  bubbleName: string;
@@ -144,13 +144,13 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
144
144
  bubbleCount?: number | undefined;
145
145
  }, {
146
146
  valid: boolean;
147
+ error: string;
148
+ success: boolean;
147
149
  metadata: {
148
150
  strictMode: boolean;
149
151
  validatedAt: string;
150
152
  codeLength: number;
151
153
  };
152
- error: string;
153
- success: boolean;
154
154
  errors?: string[] | undefined;
155
155
  bubbles?: {
156
156
  bubbleName: string;
@@ -268,13 +268,13 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
268
268
  error: z.ZodString;
269
269
  }, "strip", z.ZodTypeAny, {
270
270
  valid: boolean;
271
+ error: string;
272
+ success: boolean;
271
273
  metadata: {
272
274
  strictMode: boolean;
273
275
  validatedAt: string;
274
276
  codeLength: number;
275
277
  };
276
- error: string;
277
- success: boolean;
278
278
  errors?: string[] | undefined;
279
279
  bubbles?: {
280
280
  bubbleName: string;
@@ -293,13 +293,13 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
293
293
  bubbleCount?: number | undefined;
294
294
  }, {
295
295
  valid: boolean;
296
+ error: string;
297
+ success: boolean;
296
298
  metadata: {
297
299
  strictMode: boolean;
298
300
  validatedAt: string;
299
301
  codeLength: number;
300
302
  };
301
- error: string;
302
- success: boolean;
303
303
  errors?: string[] | undefined;
304
304
  bubbles?: {
305
305
  bubbleName: string;
@@ -46,8 +46,8 @@ declare const ChartJSToolParamsSchema: z.ZodObject<{
46
46
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
47
47
  config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
48
48
  }, "strip", z.ZodTypeAny, {
49
- reasoning: string;
50
49
  data: Record<string, unknown>[];
50
+ reasoning: string;
51
51
  width: number;
52
52
  height: number;
53
53
  chartType: "line" | "bar" | "pie" | "doughnut" | "radar" | "scatter" | "bubble" | "polarArea";
@@ -71,8 +71,8 @@ declare const ChartJSToolParamsSchema: z.ZodObject<{
71
71
  advancedConfig?: Record<string, unknown> | undefined;
72
72
  filePath?: string | undefined;
73
73
  }, {
74
- reasoning: string;
75
74
  data: Record<string, unknown>[];
75
+ reasoning: string;
76
76
  chartType: "line" | "bar" | "pie" | "doughnut" | "radar" | "scatter" | "bubble" | "polarArea";
77
77
  options?: {
78
78
  title?: string | undefined;
@@ -139,6 +139,8 @@ declare const ChartJSToolResultSchema: z.ZodObject<{
139
139
  success: z.ZodBoolean;
140
140
  error: z.ZodString;
141
141
  }, "strip", z.ZodTypeAny, {
142
+ error: string;
143
+ success: boolean;
142
144
  metadata: {
143
145
  colorScheme: string;
144
146
  generatedAt: string;
@@ -146,8 +148,6 @@ declare const ChartJSToolResultSchema: z.ZodObject<{
146
148
  yColumn?: string | undefined;
147
149
  groupByColumn?: string | undefined;
148
150
  };
149
- error: string;
150
- success: boolean;
151
151
  chartType: string;
152
152
  chartConfig: Record<string, unknown>;
153
153
  datasetCount: number;
@@ -160,6 +160,8 @@ declare const ChartJSToolResultSchema: z.ZodObject<{
160
160
  filePath?: string | undefined;
161
161
  fileExists?: boolean | undefined;
162
162
  }, {
163
+ error: string;
164
+ success: boolean;
163
165
  metadata: {
164
166
  colorScheme: string;
165
167
  generatedAt: string;
@@ -167,8 +169,6 @@ declare const ChartJSToolResultSchema: z.ZodObject<{
167
169
  yColumn?: string | undefined;
168
170
  groupByColumn?: string | undefined;
169
171
  };
170
- error: string;
171
- success: boolean;
172
172
  chartType: string;
173
173
  chartConfig: Record<string, unknown>;
174
174
  datasetCount: number;
@@ -234,8 +234,8 @@ export declare class ChartJSTool extends ToolBubble<ChartJSToolParams, ChartJSTo
234
234
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
235
235
  config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
236
236
  }, "strip", z.ZodTypeAny, {
237
- reasoning: string;
238
237
  data: Record<string, unknown>[];
238
+ reasoning: string;
239
239
  width: number;
240
240
  height: number;
241
241
  chartType: "line" | "bar" | "pie" | "doughnut" | "radar" | "scatter" | "bubble" | "polarArea";
@@ -259,8 +259,8 @@ export declare class ChartJSTool extends ToolBubble<ChartJSToolParams, ChartJSTo
259
259
  advancedConfig?: Record<string, unknown> | undefined;
260
260
  filePath?: string | undefined;
261
261
  }, {
262
- reasoning: string;
263
262
  data: Record<string, unknown>[];
263
+ reasoning: string;
264
264
  chartType: "line" | "bar" | "pie" | "doughnut" | "radar" | "scatter" | "bubble" | "polarArea";
265
265
  options?: {
266
266
  title?: string | undefined;
@@ -324,6 +324,8 @@ export declare class ChartJSTool extends ToolBubble<ChartJSToolParams, ChartJSTo
324
324
  success: z.ZodBoolean;
325
325
  error: z.ZodString;
326
326
  }, "strip", z.ZodTypeAny, {
327
+ error: string;
328
+ success: boolean;
327
329
  metadata: {
328
330
  colorScheme: string;
329
331
  generatedAt: string;
@@ -331,8 +333,6 @@ export declare class ChartJSTool extends ToolBubble<ChartJSToolParams, ChartJSTo
331
333
  yColumn?: string | undefined;
332
334
  groupByColumn?: string | undefined;
333
335
  };
334
- error: string;
335
- success: boolean;
336
336
  chartType: string;
337
337
  chartConfig: Record<string, unknown>;
338
338
  datasetCount: number;
@@ -345,6 +345,8 @@ export declare class ChartJSTool extends ToolBubble<ChartJSToolParams, ChartJSTo
345
345
  filePath?: string | undefined;
346
346
  fileExists?: boolean | undefined;
347
347
  }, {
348
+ error: string;
349
+ success: boolean;
348
350
  metadata: {
349
351
  colorScheme: string;
350
352
  generatedAt: string;
@@ -352,8 +354,6 @@ export declare class ChartJSTool extends ToolBubble<ChartJSToolParams, ChartJSTo
352
354
  yColumn?: string | undefined;
353
355
  groupByColumn?: string | undefined;
354
356
  };
355
- error: string;
356
- success: boolean;
357
357
  chartType: string;
358
358
  chartConfig: Record<string, unknown>;
359
359
  datasetCount: number;
@@ -73,26 +73,26 @@ declare const EditBubbleFlowToolResultSchema: z.ZodObject<{
73
73
  success: z.ZodBoolean;
74
74
  error: z.ZodString;
75
75
  }, "strip", z.ZodTypeAny, {
76
+ error: string;
77
+ success: boolean;
76
78
  metadata: {
77
79
  originalLength: number;
78
80
  morphModel: string;
79
81
  editedAt: string;
80
82
  finalLength: number;
81
83
  };
82
- error: string;
83
- success: boolean;
84
84
  mergedCode: string;
85
85
  applied: boolean;
86
86
  diff?: string | undefined;
87
87
  }, {
88
+ error: string;
89
+ success: boolean;
88
90
  metadata: {
89
91
  originalLength: number;
90
92
  morphModel: string;
91
93
  editedAt: string;
92
94
  finalLength: number;
93
95
  };
94
- error: string;
95
- success: boolean;
96
96
  mergedCode: string;
97
97
  applied: boolean;
98
98
  diff?: string | undefined;
@@ -152,26 +152,26 @@ export declare class EditBubbleFlowTool extends ToolBubble<EditBubbleFlowToolPar
152
152
  success: z.ZodBoolean;
153
153
  error: z.ZodString;
154
154
  }, "strip", z.ZodTypeAny, {
155
+ error: string;
156
+ success: boolean;
155
157
  metadata: {
156
158
  originalLength: number;
157
159
  morphModel: string;
158
160
  editedAt: string;
159
161
  finalLength: number;
160
162
  };
161
- error: string;
162
- success: boolean;
163
163
  mergedCode: string;
164
164
  applied: boolean;
165
165
  diff?: string | undefined;
166
166
  }, {
167
+ error: string;
168
+ success: boolean;
167
169
  metadata: {
168
170
  originalLength: number;
169
171
  morphModel: string;
170
172
  editedAt: string;
171
173
  finalLength: number;
172
174
  };
173
- error: string;
174
- success: boolean;
175
175
  mergedCode: string;
176
176
  applied: boolean;
177
177
  diff?: string | undefined;