@bubblelab/bubble-core 0.1.25 → 0.1.26
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 +82 -66
- package/dist/bubbles/service-bubble/agi-inc.d.ts +56 -56
- package/dist/bubbles/service-bubble/ai-agent.d.ts +18 -18
- package/dist/bubbles/service-bubble/airtable.d.ts +116 -116
- package/dist/bubbles/service-bubble/apify/apify.d.ts +6 -6
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +30 -30
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +88 -88
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +108 -108
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +24 -24
- package/dist/bubbles/service-bubble/firecrawl.d.ts +64 -64
- package/dist/bubbles/service-bubble/followupboss.d.ts +176 -176
- package/dist/bubbles/service-bubble/github.d.ts +80 -80
- package/dist/bubbles/service-bubble/gmail.d.ts +172 -172
- package/dist/bubbles/service-bubble/google-calendar.d.ts +36 -36
- package/dist/bubbles/service-bubble/google-drive.d.ts +56 -56
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +22 -22
- package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
- package/dist/bubbles/service-bubble/notion/notion.d.ts +874 -874
- package/dist/bubbles/service-bubble/resend.d.ts +16 -16
- package/dist/bubbles/service-bubble/slack/slack.d.ts +144 -144
- package/dist/bubbles/service-bubble/storage.d.ts +30 -30
- package/dist/bubbles/service-bubble/telegram.d.ts +208 -208
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +138 -138
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +38 -38
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +173 -173
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +22 -6
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +22 -22
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +14 -14
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +52 -52
- package/dist/bubbles.json +52054 -6
- package/dist/types/available-tools.d.ts +1 -1
- package/dist/types/available-tools.d.ts.map +1 -1
- package/dist/types/available-tools.js +1 -0
- package/dist/types/available-tools.js.map +1 -1
- package/package.json +3 -3
|
@@ -113,15 +113,15 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
113
113
|
cart_count: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
114
114
|
error: import("zod").ZodString;
|
|
115
115
|
}, "strip", import("zod").ZodTypeAny, {
|
|
116
|
-
operation: "add_to_cart";
|
|
117
116
|
success: boolean;
|
|
118
117
|
error: string;
|
|
118
|
+
operation: "add_to_cart";
|
|
119
119
|
message?: string | undefined;
|
|
120
120
|
cart_count?: number | undefined;
|
|
121
121
|
}, {
|
|
122
|
-
operation: "add_to_cart";
|
|
123
122
|
success: boolean;
|
|
124
123
|
error: string;
|
|
124
|
+
operation: "add_to_cart";
|
|
125
125
|
message?: string | undefined;
|
|
126
126
|
cart_count?: number | undefined;
|
|
127
127
|
}>, import("zod").ZodObject<{
|
|
@@ -154,9 +154,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
154
154
|
screenshot_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
155
155
|
error: import("zod").ZodString;
|
|
156
156
|
}, "strip", import("zod").ZodTypeAny, {
|
|
157
|
-
operation: "get_cart";
|
|
158
157
|
success: boolean;
|
|
159
158
|
error: string;
|
|
159
|
+
operation: "get_cart";
|
|
160
160
|
items?: {
|
|
161
161
|
title: string;
|
|
162
162
|
price: string;
|
|
@@ -169,9 +169,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
169
169
|
total_items?: number | undefined;
|
|
170
170
|
screenshot_url?: string | undefined;
|
|
171
171
|
}, {
|
|
172
|
-
operation: "get_cart";
|
|
173
172
|
success: boolean;
|
|
174
173
|
error: string;
|
|
174
|
+
operation: "get_cart";
|
|
175
175
|
items?: {
|
|
176
176
|
title: string;
|
|
177
177
|
price: string;
|
|
@@ -210,9 +210,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
210
210
|
screenshot_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
211
211
|
error: import("zod").ZodString;
|
|
212
212
|
}, "strip", import("zod").ZodTypeAny, {
|
|
213
|
-
operation: "checkout";
|
|
214
213
|
success: boolean;
|
|
215
214
|
error: string;
|
|
215
|
+
operation: "checkout";
|
|
216
216
|
items?: {
|
|
217
217
|
title: string;
|
|
218
218
|
price?: string | undefined;
|
|
@@ -228,9 +228,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
228
228
|
shipping_address?: string | undefined;
|
|
229
229
|
payment_method?: string | undefined;
|
|
230
230
|
}, {
|
|
231
|
-
operation: "checkout";
|
|
232
231
|
success: boolean;
|
|
233
232
|
error: string;
|
|
233
|
+
operation: "checkout";
|
|
234
234
|
items?: {
|
|
235
235
|
title: string;
|
|
236
236
|
price?: string | undefined;
|
|
@@ -279,9 +279,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
279
279
|
total_results: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
280
280
|
error: import("zod").ZodString;
|
|
281
281
|
}, "strip", import("zod").ZodTypeAny, {
|
|
282
|
-
operation: "search";
|
|
283
282
|
success: boolean;
|
|
284
283
|
error: string;
|
|
284
|
+
operation: "search";
|
|
285
285
|
results?: {
|
|
286
286
|
title: string;
|
|
287
287
|
url: string;
|
|
@@ -294,9 +294,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
294
294
|
}[] | undefined;
|
|
295
295
|
total_results?: number | undefined;
|
|
296
296
|
}, {
|
|
297
|
-
operation: "search";
|
|
298
297
|
success: boolean;
|
|
299
298
|
error: string;
|
|
299
|
+
operation: "search";
|
|
300
300
|
results?: {
|
|
301
301
|
title: string;
|
|
302
302
|
url: string;
|
|
@@ -347,9 +347,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
347
347
|
}>>;
|
|
348
348
|
error: import("zod").ZodString;
|
|
349
349
|
}, "strip", import("zod").ZodTypeAny, {
|
|
350
|
-
operation: "get_product";
|
|
351
350
|
success: boolean;
|
|
352
351
|
error: string;
|
|
352
|
+
operation: "get_product";
|
|
353
353
|
product?: {
|
|
354
354
|
title: string;
|
|
355
355
|
url: string;
|
|
@@ -363,9 +363,9 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
363
363
|
availability?: string | undefined;
|
|
364
364
|
} | undefined;
|
|
365
365
|
}, {
|
|
366
|
-
operation: "get_product";
|
|
367
366
|
success: boolean;
|
|
368
367
|
error: string;
|
|
368
|
+
operation: "get_product";
|
|
369
369
|
product?: {
|
|
370
370
|
title: string;
|
|
371
371
|
url: string;
|
|
@@ -384,14 +384,14 @@ export declare class AmazonShoppingTool<T extends AmazonShoppingToolParamsInput
|
|
|
384
384
|
screenshot_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
385
385
|
error: import("zod").ZodString;
|
|
386
386
|
}, "strip", import("zod").ZodTypeAny, {
|
|
387
|
-
operation: "screenshot";
|
|
388
387
|
success: boolean;
|
|
389
388
|
error: string;
|
|
389
|
+
operation: "screenshot";
|
|
390
390
|
screenshot_url?: string | undefined;
|
|
391
391
|
}, {
|
|
392
|
-
operation: "screenshot";
|
|
393
392
|
success: boolean;
|
|
394
393
|
error: string;
|
|
394
|
+
operation: "screenshot";
|
|
395
395
|
screenshot_url?: string | undefined;
|
|
396
396
|
}>]>;
|
|
397
397
|
static readonly shortDescription = "Amazon shopping automation - add to cart, view cart, checkout, search products";
|
|
@@ -92,13 +92,13 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
|
|
|
92
92
|
line: z.ZodNumber;
|
|
93
93
|
column: z.ZodNumber;
|
|
94
94
|
}, "strip", z.ZodTypeAny, {
|
|
95
|
-
name: string;
|
|
96
95
|
type: string;
|
|
96
|
+
name: string;
|
|
97
97
|
column: number;
|
|
98
98
|
line: number;
|
|
99
99
|
}, {
|
|
100
|
-
name: string;
|
|
101
100
|
type: string;
|
|
101
|
+
name: string;
|
|
102
102
|
column: number;
|
|
103
103
|
line: number;
|
|
104
104
|
}>, "many">>;
|
|
@@ -136,8 +136,8 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
|
|
|
136
136
|
}[] | undefined;
|
|
137
137
|
errors?: string[] | undefined;
|
|
138
138
|
variableTypes?: {
|
|
139
|
-
name: string;
|
|
140
139
|
type: string;
|
|
140
|
+
name: string;
|
|
141
141
|
column: number;
|
|
142
142
|
line: number;
|
|
143
143
|
}[] | undefined;
|
|
@@ -161,8 +161,8 @@ declare const BubbleFlowValidationToolResultSchema: z.ZodObject<{
|
|
|
161
161
|
}[] | undefined;
|
|
162
162
|
errors?: string[] | undefined;
|
|
163
163
|
variableTypes?: {
|
|
164
|
-
name: string;
|
|
165
164
|
type: string;
|
|
165
|
+
name: string;
|
|
166
166
|
column: number;
|
|
167
167
|
line: number;
|
|
168
168
|
}[] | undefined;
|
|
@@ -241,13 +241,13 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
|
|
|
241
241
|
line: z.ZodNumber;
|
|
242
242
|
column: z.ZodNumber;
|
|
243
243
|
}, "strip", z.ZodTypeAny, {
|
|
244
|
-
name: string;
|
|
245
244
|
type: string;
|
|
245
|
+
name: string;
|
|
246
246
|
column: number;
|
|
247
247
|
line: number;
|
|
248
248
|
}, {
|
|
249
|
-
name: string;
|
|
250
249
|
type: string;
|
|
250
|
+
name: string;
|
|
251
251
|
column: number;
|
|
252
252
|
line: number;
|
|
253
253
|
}>, "many">>;
|
|
@@ -285,8 +285,8 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
|
|
|
285
285
|
}[] | undefined;
|
|
286
286
|
errors?: string[] | undefined;
|
|
287
287
|
variableTypes?: {
|
|
288
|
-
name: string;
|
|
289
288
|
type: string;
|
|
289
|
+
name: string;
|
|
290
290
|
column: number;
|
|
291
291
|
line: number;
|
|
292
292
|
}[] | undefined;
|
|
@@ -310,8 +310,8 @@ export declare class BubbleFlowValidationTool extends ToolBubble<BubbleFlowValid
|
|
|
310
310
|
}[] | undefined;
|
|
311
311
|
errors?: string[] | undefined;
|
|
312
312
|
variableTypes?: {
|
|
313
|
-
name: string;
|
|
314
313
|
type: string;
|
|
314
|
+
name: string;
|
|
315
315
|
column: number;
|
|
316
316
|
line: number;
|
|
317
317
|
}[] | undefined;
|