@bubblelab/bubble-core 0.1.78 → 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.
- package/dist/bubble-bundle.d.ts +74 -74
- package/dist/bubbles/service-bubble/ai-agent.d.ts +56 -56
- package/dist/bubbles/service-bubble/airtable.d.ts +92 -92
- package/dist/bubbles/service-bubble/apify/apify.d.ts +10 -10
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +2 -2
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +2 -2
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +4 -4
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +8 -8
- package/dist/bubbles/service-bubble/firecrawl.d.ts +242 -242
- package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
- package/dist/bubbles/service-bubble/github.d.ts +40 -40
- package/dist/bubbles/service-bubble/gmail.d.ts +124 -124
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +10 -10
- package/dist/bubbles/service-bubble/notion/notion.d.ts +453 -453
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +4 -4
- package/dist/bubbles/service-bubble/slack/slack.d.ts +286 -286
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +4 -4
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +4 -4
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +52 -52
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tool-template.d.ts +8 -8
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +36 -36
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +18 -18
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +18 -18
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +30 -30
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +128 -128
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +10 -10
- package/dist/bubbles.json +29 -9
- 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">;
|
|
@@ -224,14 +224,14 @@ export declare const StripeParamsSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
224
224
|
}, "strip", z.ZodTypeAny, {
|
|
225
225
|
name: string;
|
|
226
226
|
operation: "create_customer";
|
|
227
|
-
email?: string | undefined;
|
|
228
227
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
228
|
+
email?: string | undefined;
|
|
229
229
|
metadata?: Record<string, string> | undefined;
|
|
230
230
|
}, {
|
|
231
231
|
name: string;
|
|
232
232
|
operation: "create_customer";
|
|
233
|
-
email?: string | undefined;
|
|
234
233
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
234
|
+
email?: string | undefined;
|
|
235
235
|
metadata?: Record<string, string> | undefined;
|
|
236
236
|
}>, z.ZodObject<{
|
|
237
237
|
operation: z.ZodLiteral<"list_customers">;
|
|
@@ -241,12 +241,12 @@ export declare const StripeParamsSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
241
241
|
}, "strip", z.ZodTypeAny, {
|
|
242
242
|
operation: "list_customers";
|
|
243
243
|
limit: number;
|
|
244
|
-
email?: string | undefined;
|
|
245
244
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
245
|
+
email?: string | undefined;
|
|
246
246
|
}, {
|
|
247
247
|
operation: "list_customers";
|
|
248
|
-
email?: string | undefined;
|
|
249
248
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
249
|
+
email?: string | undefined;
|
|
250
250
|
limit?: number | undefined;
|
|
251
251
|
}>, z.ZodObject<{
|
|
252
252
|
operation: z.ZodLiteral<"create_product">;
|
|
@@ -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<{
|
|
@@ -98,12 +98,12 @@ export declare const AmazonShoppingToolParamsSchema: z.ZodDiscriminatedUnion<"op
|
|
|
98
98
|
}, "strip", z.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
|
/**
|
|
@@ -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;
|