@bubblelab/bubble-core 0.1.24 → 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 +73 -73
- package/dist/bubbles/service-bubble/agi-inc.d.ts +4 -4
- package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
- package/dist/bubbles/service-bubble/airtable.d.ts +138 -138
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +9 -9
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +405 -405
- 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/eleven-labs.d.ts +8 -8
- package/dist/bubbles/service-bubble/firecrawl.d.ts +332 -332
- package/dist/bubbles/service-bubble/followupboss.d.ts +277 -277
- package/dist/bubbles/service-bubble/github.d.ts +132 -132
- package/dist/bubbles/service-bubble/gmail.d.ts +478 -478
- package/dist/bubbles/service-bubble/google-calendar.d.ts +112 -112
- package/dist/bubbles/service-bubble/google-drive.d.ts +38 -38
- 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 +16 -16
- package/dist/bubbles/service-bubble/insforge-db.d.ts +6 -6
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1098 -1098
- package/dist/bubbles/service-bubble/postgresql.d.ts +6 -6
- package/dist/bubbles/service-bubble/resend.d.ts +12 -12
- package/dist/bubbles/service-bubble/slack/slack.d.ts +184 -184
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/telegram.d.ts +1420 -1420
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +139 -139
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/company-enrichment-tool.js +27 -6
- package/dist/bubbles/tool-bubble/company-enrichment-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +142 -142
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +161 -161
- 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/reddit-scrape-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- 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/twitter-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +38 -38
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +64 -64
- package/dist/bubbles.json +7 -7
- package/package.json +2 -2
|
@@ -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
|
-
type: string;
|
|
96
95
|
name: string;
|
|
96
|
+
type: string;
|
|
97
97
|
column: number;
|
|
98
98
|
line: number;
|
|
99
99
|
}, {
|
|
100
|
-
type: string;
|
|
101
100
|
name: string;
|
|
101
|
+
type: 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
|
-
type: string;
|
|
140
139
|
name: string;
|
|
140
|
+
type: 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
|
-
type: string;
|
|
165
164
|
name: string;
|
|
165
|
+
type: 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
|
-
type: string;
|
|
245
244
|
name: string;
|
|
245
|
+
type: string;
|
|
246
246
|
column: number;
|
|
247
247
|
line: number;
|
|
248
248
|
}, {
|
|
249
|
-
type: string;
|
|
250
249
|
name: string;
|
|
250
|
+
type: 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
|
-
type: string;
|
|
289
288
|
name: string;
|
|
289
|
+
type: 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
|
-
type: string;
|
|
314
313
|
name: string;
|
|
314
|
+
type: string;
|
|
315
315
|
column: number;
|
|
316
316
|
line: number;
|
|
317
317
|
}[] | undefined;
|