@bubblelab/bubble-core 0.1.96 → 0.1.97
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 +66 -66
- package/dist/bubbles/service-bubble/agi-inc.d.ts +68 -68
- package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
- package/dist/bubbles/service-bubble/airtable.d.ts +108 -108
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +20 -20
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +25 -25
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +8 -8
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
- package/dist/bubbles/service-bubble/firecrawl.d.ts +172 -172
- package/dist/bubbles/service-bubble/followupboss.d.ts +144 -144
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +16 -16
- package/dist/bubbles/service-bubble/github.d.ts +148 -148
- package/dist/bubbles/service-bubble/gmail.d.ts +138 -138
- package/dist/bubbles/service-bubble/gmail.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/gmail.js +10 -4
- package/dist/bubbles/service-bubble/gmail.js.map +1 -1
- package/dist/bubbles/service-bubble/google-calendar.d.ts +30 -30
- package/dist/bubbles/service-bubble/google-drive.d.ts +100 -100
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +30 -30
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +10 -10
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +29 -29
- package/dist/bubbles/service-bubble/notion/notion.d.ts +72 -72
- package/dist/bubbles/service-bubble/postgresql.d.ts +6 -6
- package/dist/bubbles/service-bubble/resend.d.ts +26 -26
- package/dist/bubbles/service-bubble/slack/slack.d.ts +218 -218
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +62 -62
- package/dist/bubbles/service-bubble/telegram.d.ts +56 -56
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +14 -14
- 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/google-maps-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/tool-template.d.ts +8 -8
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +26 -26
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +24 -24
- package/dist/bubbles.json +6 -6
- package/package.json +2 -2
|
@@ -43,8 +43,8 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
43
43
|
description: z.ZodOptional<z.ZodString>;
|
|
44
44
|
}, "strip", z.ZodTypeAny, {
|
|
45
45
|
type: "base64";
|
|
46
|
-
data: string;
|
|
47
46
|
mimeType: string;
|
|
47
|
+
data: string;
|
|
48
48
|
description?: string | undefined;
|
|
49
49
|
}, {
|
|
50
50
|
data: string;
|
|
@@ -160,13 +160,13 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
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
162
|
description: string;
|
|
163
|
-
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
164
163
|
name: string;
|
|
164
|
+
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
165
165
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
166
166
|
}, {
|
|
167
167
|
description: string;
|
|
168
|
-
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
169
168
|
name: string;
|
|
169
|
+
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
170
170
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
171
171
|
}>, "many">>>;
|
|
172
172
|
maxIterations: z.ZodDefault<z.ZodNumber>;
|
|
@@ -177,8 +177,8 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
177
177
|
message: string;
|
|
178
178
|
images: ({
|
|
179
179
|
type: "base64";
|
|
180
|
-
data: string;
|
|
181
180
|
mimeType: string;
|
|
181
|
+
data: string;
|
|
182
182
|
description?: string | undefined;
|
|
183
183
|
} | {
|
|
184
184
|
type: "url";
|
|
@@ -219,8 +219,8 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
219
219
|
}[] | undefined;
|
|
220
220
|
customTools?: {
|
|
221
221
|
description: string;
|
|
222
|
-
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
223
222
|
name: string;
|
|
223
|
+
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
224
224
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
225
225
|
}[] | undefined;
|
|
226
226
|
expectedOutputSchema?: string | z.ZodTypeAny | undefined;
|
|
@@ -268,8 +268,8 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
268
268
|
}[] | undefined;
|
|
269
269
|
customTools?: {
|
|
270
270
|
description: string;
|
|
271
|
-
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
272
271
|
name: string;
|
|
272
|
+
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
273
273
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
274
274
|
}[] | undefined;
|
|
275
275
|
maxIterations?: number | undefined;
|
|
@@ -348,8 +348,8 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
348
348
|
description: z.ZodOptional<z.ZodString>;
|
|
349
349
|
}, "strip", z.ZodTypeAny, {
|
|
350
350
|
type: "base64";
|
|
351
|
-
data: string;
|
|
352
351
|
mimeType: string;
|
|
352
|
+
data: string;
|
|
353
353
|
description?: string | undefined;
|
|
354
354
|
}, {
|
|
355
355
|
data: string;
|
|
@@ -465,13 +465,13 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
465
465
|
func: z.ZodFunction<z.ZodTuple<[z.ZodRecord<z.ZodString, z.ZodUnknown>], z.ZodUnknown>, z.ZodPromise<z.ZodUnknown>>;
|
|
466
466
|
}, "strip", z.ZodTypeAny, {
|
|
467
467
|
description: string;
|
|
468
|
-
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
469
468
|
name: string;
|
|
469
|
+
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
470
470
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
471
471
|
}, {
|
|
472
472
|
description: string;
|
|
473
|
-
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
474
473
|
name: string;
|
|
474
|
+
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
475
475
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
476
476
|
}>, "many">>>;
|
|
477
477
|
maxIterations: z.ZodDefault<z.ZodNumber>;
|
|
@@ -482,8 +482,8 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
482
482
|
message: string;
|
|
483
483
|
images: ({
|
|
484
484
|
type: "base64";
|
|
485
|
-
data: string;
|
|
486
485
|
mimeType: string;
|
|
486
|
+
data: string;
|
|
487
487
|
description?: string | undefined;
|
|
488
488
|
} | {
|
|
489
489
|
type: "url";
|
|
@@ -524,8 +524,8 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
524
524
|
}[] | undefined;
|
|
525
525
|
customTools?: {
|
|
526
526
|
description: string;
|
|
527
|
-
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
528
527
|
name: string;
|
|
528
|
+
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
529
529
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
530
530
|
}[] | undefined;
|
|
531
531
|
expectedOutputSchema?: string | z.ZodTypeAny | undefined;
|
|
@@ -573,8 +573,8 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
573
573
|
}[] | undefined;
|
|
574
574
|
customTools?: {
|
|
575
575
|
description: string;
|
|
576
|
-
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
577
576
|
name: string;
|
|
577
|
+
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
578
578
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
579
579
|
}[] | undefined;
|
|
580
580
|
maxIterations?: number | undefined;
|