@bubblelab/bubble-core 0.1.23 → 0.1.25
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 +55 -55
- package/dist/bubbles/service-bubble/agi-inc.d.ts +4 -4
- package/dist/bubbles/service-bubble/ai-agent.d.ts +8 -8
- package/dist/bubbles/service-bubble/airtable.d.ts +80 -80
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +9 -9
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +382 -382
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.js +7 -6
- package/dist/bubbles/service-bubble/crustdata/crustdata.js.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +432 -432
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js +15 -9
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/firecrawl.d.ts +36 -36
- package/dist/bubbles/service-bubble/followupboss.d.ts +40 -40
- package/dist/bubbles/service-bubble/github.d.ts +52 -52
- package/dist/bubbles/service-bubble/gmail.d.ts +114 -114
- package/dist/bubbles/service-bubble/google-calendar.d.ts +16 -16
- package/dist/bubbles/service-bubble/google-drive.d.ts +14 -14
- package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-drive.js +22 -1
- package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +8 -8
- package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/notion/notion.d.ts +444 -444
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +132 -132
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/telegram.d.ts +148 -148
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +101 -101
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/company-enrichment-tool.js +29 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +44 -44
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +119 -119
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +31 -10
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +22 -22
- package/dist/bubbles.json +7 -7
- package/package.json +2 -2
|
@@ -81,14 +81,14 @@ declare const AGIIncParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
81
81
|
start_url: z.ZodOptional<z.ZodString>;
|
|
82
82
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
83
83
|
}, "strip", z.ZodTypeAny, {
|
|
84
|
-
operation: "send_message";
|
|
85
84
|
message: string;
|
|
85
|
+
operation: "send_message";
|
|
86
86
|
session_id: string;
|
|
87
87
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
88
88
|
start_url?: string | undefined;
|
|
89
89
|
}, {
|
|
90
|
-
operation: "send_message";
|
|
91
90
|
message: string;
|
|
91
|
+
operation: "send_message";
|
|
92
92
|
session_id: string;
|
|
93
93
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
94
94
|
start_url?: string | undefined;
|
|
@@ -634,14 +634,14 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
634
634
|
start_url: z.ZodOptional<z.ZodString>;
|
|
635
635
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
636
636
|
}, "strip", z.ZodTypeAny, {
|
|
637
|
-
operation: "send_message";
|
|
638
637
|
message: string;
|
|
638
|
+
operation: "send_message";
|
|
639
639
|
session_id: string;
|
|
640
640
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
641
641
|
start_url?: string | undefined;
|
|
642
642
|
}, {
|
|
643
|
-
operation: "send_message";
|
|
644
643
|
message: string;
|
|
644
|
+
operation: "send_message";
|
|
645
645
|
session_id: string;
|
|
646
646
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
647
647
|
start_url?: string | undefined;
|
|
@@ -159,13 +159,13 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
159
159
|
schema: z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodType<z.ZodTypeAny, z.ZodTypeDef, z.ZodTypeAny>]>;
|
|
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
|
-
description: string;
|
|
163
162
|
name: string;
|
|
163
|
+
description: string;
|
|
164
164
|
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
165
165
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
166
166
|
}, {
|
|
167
|
-
description: string;
|
|
168
167
|
name: string;
|
|
168
|
+
description: string;
|
|
169
169
|
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
170
170
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
171
171
|
}>, "many">>>;
|
|
@@ -218,8 +218,8 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
218
218
|
name?: string | undefined;
|
|
219
219
|
}[] | undefined;
|
|
220
220
|
customTools?: {
|
|
221
|
-
description: string;
|
|
222
221
|
name: string;
|
|
222
|
+
description: string;
|
|
223
223
|
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
224
224
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
225
225
|
}[] | undefined;
|
|
@@ -267,8 +267,8 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
267
267
|
config?: Record<string, unknown> | undefined;
|
|
268
268
|
}[] | undefined;
|
|
269
269
|
customTools?: {
|
|
270
|
-
description: string;
|
|
271
270
|
name: string;
|
|
271
|
+
description: string;
|
|
272
272
|
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
273
273
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
274
274
|
}[] | undefined;
|
|
@@ -458,13 +458,13 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
458
458
|
schema: z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodType<z.ZodTypeAny, z.ZodTypeDef, z.ZodTypeAny>]>;
|
|
459
459
|
func: z.ZodFunction<z.ZodTuple<[z.ZodRecord<z.ZodString, z.ZodUnknown>], z.ZodUnknown>, z.ZodPromise<z.ZodUnknown>>;
|
|
460
460
|
}, "strip", z.ZodTypeAny, {
|
|
461
|
-
description: string;
|
|
462
461
|
name: string;
|
|
462
|
+
description: string;
|
|
463
463
|
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
464
464
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
465
465
|
}, {
|
|
466
|
-
description: string;
|
|
467
466
|
name: string;
|
|
467
|
+
description: string;
|
|
468
468
|
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
469
469
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
470
470
|
}>, "many">>>;
|
|
@@ -517,8 +517,8 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
517
517
|
name?: string | undefined;
|
|
518
518
|
}[] | undefined;
|
|
519
519
|
customTools?: {
|
|
520
|
-
description: string;
|
|
521
520
|
name: string;
|
|
521
|
+
description: string;
|
|
522
522
|
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
523
523
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
524
524
|
}[] | undefined;
|
|
@@ -566,8 +566,8 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
566
566
|
config?: Record<string, unknown> | undefined;
|
|
567
567
|
}[] | undefined;
|
|
568
568
|
customTools?: {
|
|
569
|
-
description: string;
|
|
570
569
|
name: string;
|
|
570
|
+
description: string;
|
|
571
571
|
schema: z.ZodTypeAny | Record<string, unknown>;
|
|
572
572
|
func: (args_0: Record<string, unknown>, ...args: unknown[]) => Promise<unknown>;
|
|
573
573
|
}[] | undefined;
|