@bubblelab/bubble-core 0.1.101 → 0.1.102

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 (62) hide show
  1. package/dist/bubble-bundle.d.ts +80 -80
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +40 -40
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
  4. package/dist/bubbles/service-bubble/airtable.d.ts +84 -84
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +16 -16
  6. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +20 -20
  7. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
  8. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +116 -116
  9. package/dist/bubbles/service-bubble/eleven-labs.d.ts +12 -12
  10. package/dist/bubbles/service-bubble/firecrawl.d.ts +773 -773
  11. package/dist/bubbles/service-bubble/followupboss.d.ts +274 -274
  12. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +122 -122
  13. package/dist/bubbles/service-bubble/github.d.ts +240 -240
  14. package/dist/bubbles/service-bubble/gmail.d.ts +84 -84
  15. package/dist/bubbles/service-bubble/google-calendar.d.ts +118 -118
  16. package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
  17. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
  18. package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
  19. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  20. package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
  21. package/dist/bubbles/service-bubble/jira/jira.d.ts +38 -38
  22. package/dist/bubbles/service-bubble/notion/notion.d.ts +1007 -1007
  23. package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
  24. package/dist/bubbles/service-bubble/resend.d.ts +24 -24
  25. package/dist/bubbles/service-bubble/slack/slack.d.ts +638 -638
  26. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +152 -82
  27. package/dist/bubbles/service-bubble/stripe/stripe.d.ts.map +1 -1
  28. package/dist/bubbles/service-bubble/stripe/stripe.js +53 -8
  29. package/dist/bubbles/service-bubble/stripe/stripe.js.map +1 -1
  30. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +69 -0
  31. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts.map +1 -1
  32. package/dist/bubbles/service-bubble/stripe/stripe.schema.js +35 -0
  33. package/dist/bubbles/service-bubble/stripe/stripe.schema.js.map +1 -1
  34. package/dist/bubbles/service-bubble/telegram.d.ts +1129 -1129
  35. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +9 -9
  36. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +16 -16
  37. package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +20 -20
  38. package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
  39. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +86 -86
  40. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
  41. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +34 -34
  42. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
  43. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +210 -210
  44. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +254 -254
  45. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +60 -60
  46. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +24 -24
  47. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +44 -44
  48. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +24 -24
  49. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  50. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +6 -6
  51. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
  52. package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +88 -88
  53. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  54. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +24 -24
  55. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
  56. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +48 -48
  57. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
  58. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +30 -30
  59. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +84 -84
  60. package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
  61. package/dist/bubbles.json +109 -2
  62. package/package.json +2 -2
@@ -37,8 +37,8 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
37
37
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
38
38
  }, "strip", import("zod").ZodTypeAny, {
39
39
  operation: "add_to_cart";
40
- quantity: number;
41
40
  product_url: string;
41
+ quantity: number;
42
42
  credentials?: Partial<Record<CredentialType, string>> | undefined;
43
43
  }, {
44
44
  operation: "add_to_cart";
@@ -258,8 +258,8 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
258
258
  image: import("zod").ZodOptional<import("zod").ZodString>;
259
259
  prime: import("zod").ZodOptional<import("zod").ZodBoolean>;
260
260
  }, "strip", import("zod").ZodTypeAny, {
261
- url: string;
262
261
  title: string;
262
+ url: string;
263
263
  asin: string;
264
264
  image?: string | undefined;
265
265
  rating?: string | undefined;
@@ -267,8 +267,8 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
267
267
  reviews_count?: string | undefined;
268
268
  prime?: boolean | undefined;
269
269
  }, {
270
- url: string;
271
270
  title: string;
271
+ url: string;
272
272
  asin: string;
273
273
  image?: string | undefined;
274
274
  rating?: string | undefined;
@@ -283,8 +283,8 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
283
283
  error: string;
284
284
  operation: "search";
285
285
  results?: {
286
- url: string;
287
286
  title: string;
287
+ url: string;
288
288
  asin: string;
289
289
  image?: string | undefined;
290
290
  rating?: string | undefined;
@@ -298,8 +298,8 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
298
298
  error: string;
299
299
  operation: "search";
300
300
  results?: {
301
- url: string;
302
301
  title: string;
302
+ url: string;
303
303
  asin: string;
304
304
  image?: string | undefined;
305
305
  rating?: string | undefined;
@@ -323,8 +323,8 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
323
323
  url: import("zod").ZodString;
324
324
  images: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
325
325
  }, "strip", import("zod").ZodTypeAny, {
326
- url: string;
327
326
  title: string;
327
+ url: string;
328
328
  asin: string;
329
329
  description?: string | undefined;
330
330
  images?: string[] | undefined;
@@ -334,8 +334,8 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
334
334
  features?: string[] | undefined;
335
335
  availability?: string | undefined;
336
336
  }, {
337
- url: string;
338
337
  title: string;
338
+ url: string;
339
339
  asin: string;
340
340
  description?: string | undefined;
341
341
  images?: string[] | undefined;
@@ -351,8 +351,8 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
351
351
  error: string;
352
352
  operation: "get_product";
353
353
  product?: {
354
- url: string;
355
354
  title: string;
355
+ url: string;
356
356
  asin: string;
357
357
  description?: string | undefined;
358
358
  images?: string[] | undefined;
@@ -367,8 +367,8 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
367
367
  error: string;
368
368
  operation: "get_product";
369
369
  product?: {
370
- url: string;
371
370
  title: string;
371
+ url: string;
372
372
  asin: string;
373
373
  description?: string | undefined;
374
374
  images?: string[] | undefined;
@@ -94,13 +94,13 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
94
94
  }, "strip", z.ZodTypeAny, {
95
95
  type: string;
96
96
  name: string;
97
- column: number;
98
97
  line: number;
98
+ column: number;
99
99
  }, {
100
100
  type: string;
101
101
  name: string;
102
- column: number;
103
102
  line: number;
103
+ column: number;
104
104
  }>, "many">>;
105
105
  metadata: z.ZodObject<{
106
106
  validatedAt: z.ZodString;
@@ -126,7 +126,6 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
126
126
  validatedAt: string;
127
127
  codeLength: number;
128
128
  };
129
- errors?: string[] | undefined;
130
129
  bubbles?: {
131
130
  bubbleName: string;
132
131
  variableName: string;
@@ -135,13 +134,14 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
135
134
  hasActionCall: boolean;
136
135
  parameterCount: number;
137
136
  }[] | undefined;
137
+ errors?: string[] | undefined;
138
+ bubbleCount?: number | undefined;
138
139
  variableTypes?: {
139
140
  type: string;
140
141
  name: string;
141
- column: number;
142
142
  line: number;
143
+ column: number;
143
144
  }[] | undefined;
144
- bubbleCount?: number | undefined;
145
145
  }, {
146
146
  valid: boolean;
147
147
  success: boolean;
@@ -151,7 +151,6 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
151
151
  validatedAt: string;
152
152
  codeLength: number;
153
153
  };
154
- errors?: string[] | undefined;
155
154
  bubbles?: {
156
155
  bubbleName: string;
157
156
  variableName: string;
@@ -160,13 +159,14 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
160
159
  hasActionCall: boolean;
161
160
  parameterCount: number;
162
161
  }[] | undefined;
162
+ errors?: string[] | undefined;
163
+ bubbleCount?: number | undefined;
163
164
  variableTypes?: {
164
165
  type: string;
165
166
  name: string;
166
- column: number;
167
167
  line: number;
168
+ column: number;
168
169
  }[] | undefined;
169
- bubbleCount?: number | undefined;
170
170
  }>;
171
171
  /**
172
172
  * BubbleFlow Validation Tool
@@ -243,13 +243,13 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
243
243
  }, "strip", z.ZodTypeAny, {
244
244
  type: string;
245
245
  name: string;
246
- column: number;
247
246
  line: number;
247
+ column: number;
248
248
  }, {
249
249
  type: string;
250
250
  name: string;
251
- column: number;
252
251
  line: number;
252
+ column: number;
253
253
  }>, "many">>;
254
254
  metadata: z.ZodObject<{
255
255
  validatedAt: z.ZodString;
@@ -275,7 +275,6 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
275
275
  validatedAt: string;
276
276
  codeLength: number;
277
277
  };
278
- errors?: string[] | undefined;
279
278
  bubbles?: {
280
279
  bubbleName: string;
281
280
  variableName: string;
@@ -284,13 +283,14 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
284
283
  hasActionCall: boolean;
285
284
  parameterCount: number;
286
285
  }[] | undefined;
286
+ errors?: string[] | undefined;
287
+ bubbleCount?: number | undefined;
287
288
  variableTypes?: {
288
289
  type: string;
289
290
  name: string;
290
- column: number;
291
291
  line: number;
292
+ column: number;
292
293
  }[] | undefined;
293
- bubbleCount?: number | undefined;
294
294
  }, {
295
295
  valid: boolean;
296
296
  success: boolean;
@@ -300,7 +300,6 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
300
300
  validatedAt: string;
301
301
  codeLength: number;
302
302
  };
303
- errors?: string[] | undefined;
304
303
  bubbles?: {
305
304
  bubbleName: string;
306
305
  variableName: string;
@@ -309,13 +308,14 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
309
308
  hasActionCall: boolean;
310
309
  parameterCount: number;
311
310
  }[] | undefined;
311
+ errors?: string[] | undefined;
312
+ bubbleCount?: number | undefined;
312
313
  variableTypes?: {
313
314
  type: string;
314
315
  name: string;
315
- column: number;
316
316
  line: number;
317
+ column: number;
317
318
  }[] | undefined;
318
- bubbleCount?: number | undefined;
319
319
  }>;
320
320
  static readonly shortDescription = "Validates BubbleFlow TypeScript code for syntax and structure";
321
321
  static readonly longDescription = "\n A comprehensive validation tool for BubbleFlow TypeScript code.\n \n What it does:\n - Validates TypeScript syntax and compilation\n - Checks BubbleFlow class structure and requirements\n - Parses and analyzes bubble instantiations\n - Provides detailed error reporting with line numbers\n - Returns metadata about detected bubbles\n \n How it works:\n - Uses TypeScript compiler API for syntax validation\n - Validates that code extends BubbleFlow and has handle method\n - Parses bubble instantiations using AST analysis\n - Maps bubble class names to registered bubble types\n \n Use cases:\n - When an AI agent needs to validate user-provided BubbleFlow code\n - When checking code before execution or deployment\n - When providing feedback on BubbleFlow implementation\n - When analyzing bubble usage patterns in code\n ";
@@ -28,9 +28,9 @@ declare const ChartJSToolParamsSchema: z.ZodObject<{
28
28
  yAxisLabel?: string | undefined;
29
29
  }, {
30
30
  title?: string | undefined;
31
- colorScheme?: "default" | "viridis" | "plasma" | "inferno" | "magma" | "blues" | "greens" | "reds" | "oranges" | "categorical" | undefined;
32
31
  xAxisLabel?: string | undefined;
33
32
  yAxisLabel?: string | undefined;
33
+ colorScheme?: "default" | "viridis" | "plasma" | "inferno" | "magma" | "blues" | "greens" | "reds" | "oranges" | "categorical" | undefined;
34
34
  responsive?: boolean | undefined;
35
35
  maintainAspectRatio?: boolean | undefined;
36
36
  showLegend?: boolean | undefined;
@@ -46,10 +46,10 @@ 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
- width: number;
50
- height: number;
51
49
  data: Record<string, unknown>[];
52
50
  reasoning: string;
51
+ width: number;
52
+ height: number;
53
53
  chartType: "line" | "bar" | "pie" | "doughnut" | "radar" | "scatter" | "bubble" | "polarArea";
54
54
  generateFile: boolean;
55
55
  options?: {
@@ -62,6 +62,7 @@ declare const ChartJSToolParamsSchema: z.ZodObject<{
62
62
  xAxisLabel?: string | undefined;
63
63
  yAxisLabel?: string | undefined;
64
64
  } | undefined;
65
+ filePath?: string | undefined;
65
66
  credentials?: Partial<Record<CredentialType, string>> | undefined;
66
67
  config?: Record<string, unknown> | undefined;
67
68
  fileName?: string | undefined;
@@ -69,32 +70,31 @@ declare const ChartJSToolParamsSchema: z.ZodObject<{
69
70
  yColumn?: string | undefined;
70
71
  groupByColumn?: string | undefined;
71
72
  advancedConfig?: Record<string, unknown> | undefined;
72
- filePath?: string | undefined;
73
73
  }, {
74
74
  data: Record<string, unknown>[];
75
75
  reasoning: string;
76
76
  chartType: "line" | "bar" | "pie" | "doughnut" | "radar" | "scatter" | "bubble" | "polarArea";
77
77
  options?: {
78
78
  title?: string | undefined;
79
- colorScheme?: "default" | "viridis" | "plasma" | "inferno" | "magma" | "blues" | "greens" | "reds" | "oranges" | "categorical" | undefined;
80
79
  xAxisLabel?: string | undefined;
81
80
  yAxisLabel?: string | undefined;
81
+ colorScheme?: "default" | "viridis" | "plasma" | "inferno" | "magma" | "blues" | "greens" | "reds" | "oranges" | "categorical" | undefined;
82
82
  responsive?: boolean | undefined;
83
83
  maintainAspectRatio?: boolean | undefined;
84
84
  showLegend?: boolean | undefined;
85
85
  showTooltips?: boolean | undefined;
86
86
  } | undefined;
87
+ filePath?: string | undefined;
87
88
  credentials?: Partial<Record<CredentialType, string>> | undefined;
88
- width?: number | undefined;
89
- height?: number | undefined;
90
89
  config?: Record<string, unknown> | undefined;
91
90
  fileName?: string | undefined;
91
+ width?: number | undefined;
92
+ height?: number | undefined;
92
93
  xColumn?: string | undefined;
93
94
  yColumn?: string | undefined;
94
95
  groupByColumn?: string | undefined;
95
96
  advancedConfig?: Record<string, unknown> | undefined;
96
97
  generateFile?: boolean | undefined;
97
- filePath?: string | undefined;
98
98
  }>;
99
99
  type ChartJSToolParamsInput = z.input<typeof ChartJSToolParamsSchema>;
100
100
  type ChartJSToolParams = z.output<typeof ChartJSToolParamsSchema>;
@@ -156,8 +156,8 @@ declare const ChartJSToolResultSchema: z.ZodObject<{
156
156
  width: number;
157
157
  height: number;
158
158
  };
159
- fileSize?: number | undefined;
160
159
  filePath?: string | undefined;
160
+ fileSize?: number | undefined;
161
161
  fileExists?: boolean | undefined;
162
162
  }, {
163
163
  success: boolean;
@@ -177,8 +177,8 @@ declare const ChartJSToolResultSchema: z.ZodObject<{
177
177
  width: number;
178
178
  height: number;
179
179
  };
180
- fileSize?: number | undefined;
181
180
  filePath?: string | undefined;
181
+ fileSize?: number | undefined;
182
182
  fileExists?: boolean | undefined;
183
183
  }>;
184
184
  /**
@@ -216,9 +216,9 @@ export declare class ChartJSTool extends ToolBubble<ChartJSToolParams, ChartJSTo
216
216
  yAxisLabel?: string | undefined;
217
217
  }, {
218
218
  title?: string | undefined;
219
- colorScheme?: "default" | "viridis" | "plasma" | "inferno" | "magma" | "blues" | "greens" | "reds" | "oranges" | "categorical" | undefined;
220
219
  xAxisLabel?: string | undefined;
221
220
  yAxisLabel?: string | undefined;
221
+ colorScheme?: "default" | "viridis" | "plasma" | "inferno" | "magma" | "blues" | "greens" | "reds" | "oranges" | "categorical" | undefined;
222
222
  responsive?: boolean | undefined;
223
223
  maintainAspectRatio?: boolean | undefined;
224
224
  showLegend?: boolean | undefined;
@@ -234,10 +234,10 @@ 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
- width: number;
238
- height: number;
239
237
  data: Record<string, unknown>[];
240
238
  reasoning: string;
239
+ width: number;
240
+ height: number;
241
241
  chartType: "line" | "bar" | "pie" | "doughnut" | "radar" | "scatter" | "bubble" | "polarArea";
242
242
  generateFile: boolean;
243
243
  options?: {
@@ -250,6 +250,7 @@ export declare class ChartJSTool extends ToolBubble<ChartJSToolParams, ChartJSTo
250
250
  xAxisLabel?: string | undefined;
251
251
  yAxisLabel?: string | undefined;
252
252
  } | undefined;
253
+ filePath?: string | undefined;
253
254
  credentials?: Partial<Record<CredentialType, string>> | undefined;
254
255
  config?: Record<string, unknown> | undefined;
255
256
  fileName?: string | undefined;
@@ -257,32 +258,31 @@ export declare class ChartJSTool extends ToolBubble<ChartJSToolParams, ChartJSTo
257
258
  yColumn?: string | undefined;
258
259
  groupByColumn?: string | undefined;
259
260
  advancedConfig?: Record<string, unknown> | undefined;
260
- filePath?: string | undefined;
261
261
  }, {
262
262
  data: Record<string, unknown>[];
263
263
  reasoning: string;
264
264
  chartType: "line" | "bar" | "pie" | "doughnut" | "radar" | "scatter" | "bubble" | "polarArea";
265
265
  options?: {
266
266
  title?: string | undefined;
267
- colorScheme?: "default" | "viridis" | "plasma" | "inferno" | "magma" | "blues" | "greens" | "reds" | "oranges" | "categorical" | undefined;
268
267
  xAxisLabel?: string | undefined;
269
268
  yAxisLabel?: string | undefined;
269
+ colorScheme?: "default" | "viridis" | "plasma" | "inferno" | "magma" | "blues" | "greens" | "reds" | "oranges" | "categorical" | undefined;
270
270
  responsive?: boolean | undefined;
271
271
  maintainAspectRatio?: boolean | undefined;
272
272
  showLegend?: boolean | undefined;
273
273
  showTooltips?: boolean | undefined;
274
274
  } | undefined;
275
+ filePath?: string | undefined;
275
276
  credentials?: Partial<Record<CredentialType, string>> | undefined;
276
- width?: number | undefined;
277
- height?: number | undefined;
278
277
  config?: Record<string, unknown> | undefined;
279
278
  fileName?: string | undefined;
279
+ width?: number | undefined;
280
+ height?: number | undefined;
280
281
  xColumn?: string | undefined;
281
282
  yColumn?: string | undefined;
282
283
  groupByColumn?: string | undefined;
283
284
  advancedConfig?: Record<string, unknown> | undefined;
284
285
  generateFile?: boolean | undefined;
285
- filePath?: string | undefined;
286
286
  }>;
287
287
  static readonly resultSchema: z.ZodObject<{
288
288
  chartConfig: z.ZodRecord<z.ZodString, z.ZodUnknown>;
@@ -341,8 +341,8 @@ export declare class ChartJSTool extends ToolBubble<ChartJSToolParams, ChartJSTo
341
341
  width: number;
342
342
  height: number;
343
343
  };
344
- fileSize?: number | undefined;
345
344
  filePath?: string | undefined;
345
+ fileSize?: number | undefined;
346
346
  fileExists?: boolean | undefined;
347
347
  }, {
348
348
  success: boolean;
@@ -362,8 +362,8 @@ export declare class ChartJSTool extends ToolBubble<ChartJSToolParams, ChartJSTo
362
362
  width: number;
363
363
  height: number;
364
364
  };
365
- fileSize?: number | undefined;
366
365
  filePath?: string | undefined;
366
+ fileSize?: number | undefined;
367
367
  fileExists?: boolean | undefined;
368
368
  }>;
369
369
  static readonly shortDescription = "Generate Chart.js configurations from data for interactive visualizations";
@@ -27,15 +27,15 @@ declare const EditBubbleFlowToolParamsSchema: z.ZodObject<{
27
27
  credentials: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
28
28
  config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
29
29
  }, "strip", z.ZodTypeAny, {
30
- instructions: string;
31
30
  initialCode: string;
31
+ instructions: string;
32
32
  codeEdit: string;
33
33
  credentials?: Record<string, string> | undefined;
34
34
  config?: Record<string, unknown> | undefined;
35
35
  morphModel?: string | undefined;
36
36
  }, {
37
- instructions: string;
38
37
  initialCode: string;
38
+ instructions: string;
39
39
  codeEdit: string;
40
40
  credentials?: Record<string, string> | undefined;
41
41
  config?: Record<string, unknown> | undefined;
@@ -115,15 +115,15 @@ export declare class EditBubbleFlowTool extends ToolBubble<EditBubbleFlowToolPar
115
115
  credentials: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
116
116
  config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
117
117
  }, "strip", z.ZodTypeAny, {
118
- instructions: string;
119
118
  initialCode: string;
119
+ instructions: string;
120
120
  codeEdit: string;
121
121
  credentials?: Record<string, string> | undefined;
122
122
  config?: Record<string, unknown> | undefined;
123
123
  morphModel?: string | undefined;
124
124
  }, {
125
- instructions: string;
126
125
  initialCode: string;
126
+ instructions: string;
127
127
  codeEdit: string;
128
128
  credentials?: Record<string, string> | undefined;
129
129
  config?: Record<string, unknown> | undefined;