@bubblelab/bubble-core 0.1.72 → 0.1.73
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 +84 -84
- package/dist/bubbles/service-bubble/agi-inc.d.ts +112 -112
- package/dist/bubbles/service-bubble/ai-agent.d.ts +8 -8
- package/dist/bubbles/service-bubble/airtable.d.ts +132 -132
- package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +110 -110
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +49 -49
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +22 -22
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +56 -56
- package/dist/bubbles/service-bubble/firecrawl.d.ts +304 -304
- package/dist/bubbles/service-bubble/followupboss.d.ts +264 -264
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +40 -40
- package/dist/bubbles/service-bubble/github.d.ts +156 -156
- package/dist/bubbles/service-bubble/gmail.d.ts +578 -578
- package/dist/bubbles/service-bubble/google-calendar.d.ts +152 -152
- package/dist/bubbles/service-bubble/google-drive.d.ts +146 -146
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +52 -52
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +20 -20
- package/dist/bubbles/service-bubble/insforge-db.d.ts +10 -10
- package/dist/bubbles/service-bubble/jira/jira.d.ts +54 -54
- package/dist/bubbles/service-bubble/notion/notion.d.ts +840 -840
- package/dist/bubbles/service-bubble/postgresql.d.ts +10 -10
- package/dist/bubbles/service-bubble/resend.d.ts +20 -20
- package/dist/bubbles/service-bubble/slack/slack.d.ts +358 -358
- package/dist/bubbles/service-bubble/slack/slack.utils.d.ts +17 -0
- package/dist/bubbles/service-bubble/slack/slack.utils.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/slack/slack.utils.js +117 -2
- package/dist/bubbles/service-bubble/slack/slack.utils.js.map +1 -1
- package/dist/bubbles/service-bubble/storage.d.ts +40 -40
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +76 -76
- package/dist/bubbles/service-bubble/telegram.d.ts +942 -942
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/get-trigger-detail-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +32 -32
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +38 -38
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +18 -18
- package/dist/bubbles/workflow-bubble/database-analyzer.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +78 -78
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +76 -76
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -17,8 +17,8 @@ declare const WebSearchToolParamsSchema: z.ZodObject<{
|
|
|
17
17
|
}, {
|
|
18
18
|
query: string;
|
|
19
19
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
20
|
-
location?: string | undefined;
|
|
21
20
|
limit?: number | undefined;
|
|
21
|
+
location?: string | undefined;
|
|
22
22
|
categories?: ("github" | "pdf" | "research")[] | undefined;
|
|
23
23
|
}>;
|
|
24
24
|
declare const WebSearchToolResultSchema: z.ZodObject<{
|
|
@@ -27,12 +27,12 @@ declare const WebSearchToolResultSchema: z.ZodObject<{
|
|
|
27
27
|
url: z.ZodString;
|
|
28
28
|
content: z.ZodString;
|
|
29
29
|
}, "strip", z.ZodTypeAny, {
|
|
30
|
-
title: string;
|
|
31
30
|
content: string;
|
|
31
|
+
title: string;
|
|
32
32
|
url: string;
|
|
33
33
|
}, {
|
|
34
|
-
title: string;
|
|
35
34
|
content: string;
|
|
35
|
+
title: string;
|
|
36
36
|
url: string;
|
|
37
37
|
}>, "many">;
|
|
38
38
|
query: z.ZodString;
|
|
@@ -42,24 +42,24 @@ declare const WebSearchToolResultSchema: z.ZodObject<{
|
|
|
42
42
|
success: z.ZodBoolean;
|
|
43
43
|
error: z.ZodString;
|
|
44
44
|
}, "strip", z.ZodTypeAny, {
|
|
45
|
-
query: string;
|
|
46
|
-
success: boolean;
|
|
47
45
|
error: string;
|
|
46
|
+
success: boolean;
|
|
47
|
+
query: string;
|
|
48
48
|
results: {
|
|
49
|
-
title: string;
|
|
50
49
|
content: string;
|
|
50
|
+
title: string;
|
|
51
51
|
url: string;
|
|
52
52
|
}[];
|
|
53
53
|
creditsUsed: number;
|
|
54
54
|
totalResults: number;
|
|
55
55
|
searchEngine: string;
|
|
56
56
|
}, {
|
|
57
|
-
query: string;
|
|
58
|
-
success: boolean;
|
|
59
57
|
error: string;
|
|
58
|
+
success: boolean;
|
|
59
|
+
query: string;
|
|
60
60
|
results: {
|
|
61
|
-
title: string;
|
|
62
61
|
content: string;
|
|
62
|
+
title: string;
|
|
63
63
|
url: string;
|
|
64
64
|
}[];
|
|
65
65
|
creditsUsed: number;
|
|
@@ -86,8 +86,8 @@ export declare class WebSearchTool extends ToolBubble<WebSearchToolParams, WebSe
|
|
|
86
86
|
}, {
|
|
87
87
|
query: string;
|
|
88
88
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
89
|
-
location?: string | undefined;
|
|
90
89
|
limit?: number | undefined;
|
|
90
|
+
location?: string | undefined;
|
|
91
91
|
categories?: ("github" | "pdf" | "research")[] | undefined;
|
|
92
92
|
}>;
|
|
93
93
|
static readonly resultSchema: z.ZodObject<{
|
|
@@ -96,12 +96,12 @@ export declare class WebSearchTool extends ToolBubble<WebSearchToolParams, WebSe
|
|
|
96
96
|
url: z.ZodString;
|
|
97
97
|
content: z.ZodString;
|
|
98
98
|
}, "strip", z.ZodTypeAny, {
|
|
99
|
-
title: string;
|
|
100
99
|
content: string;
|
|
100
|
+
title: string;
|
|
101
101
|
url: string;
|
|
102
102
|
}, {
|
|
103
|
-
title: string;
|
|
104
103
|
content: string;
|
|
104
|
+
title: string;
|
|
105
105
|
url: string;
|
|
106
106
|
}>, "many">;
|
|
107
107
|
query: z.ZodString;
|
|
@@ -111,24 +111,24 @@ export declare class WebSearchTool extends ToolBubble<WebSearchToolParams, WebSe
|
|
|
111
111
|
success: z.ZodBoolean;
|
|
112
112
|
error: z.ZodString;
|
|
113
113
|
}, "strip", z.ZodTypeAny, {
|
|
114
|
-
query: string;
|
|
115
|
-
success: boolean;
|
|
116
114
|
error: string;
|
|
115
|
+
success: boolean;
|
|
116
|
+
query: string;
|
|
117
117
|
results: {
|
|
118
|
-
title: string;
|
|
119
118
|
content: string;
|
|
119
|
+
title: string;
|
|
120
120
|
url: string;
|
|
121
121
|
}[];
|
|
122
122
|
creditsUsed: number;
|
|
123
123
|
totalResults: number;
|
|
124
124
|
searchEngine: string;
|
|
125
125
|
}, {
|
|
126
|
-
query: string;
|
|
127
|
-
success: boolean;
|
|
128
126
|
error: string;
|
|
127
|
+
success: boolean;
|
|
128
|
+
query: string;
|
|
129
129
|
results: {
|
|
130
|
-
title: string;
|
|
131
130
|
content: string;
|
|
131
|
+
title: string;
|
|
132
132
|
url: string;
|
|
133
133
|
}[];
|
|
134
134
|
creditsUsed: number;
|
|
@@ -50,12 +50,12 @@ declare const YouTubeTranscriptSegmentSchema: z.ZodObject<{
|
|
|
50
50
|
duration: z.ZodNullable<z.ZodString>;
|
|
51
51
|
text: z.ZodNullable<z.ZodString>;
|
|
52
52
|
}, "strip", z.ZodTypeAny, {
|
|
53
|
-
duration: string | null;
|
|
54
53
|
text: string | null;
|
|
54
|
+
duration: string | null;
|
|
55
55
|
start: string | null;
|
|
56
56
|
}, {
|
|
57
|
-
duration: string | null;
|
|
58
57
|
text: string | null;
|
|
58
|
+
duration: string | null;
|
|
59
59
|
start: string | null;
|
|
60
60
|
}>;
|
|
61
61
|
declare const YouTubeToolParamsSchema: z.ZodObject<{
|
|
@@ -136,12 +136,12 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
136
136
|
duration: z.ZodNullable<z.ZodString>;
|
|
137
137
|
text: z.ZodNullable<z.ZodString>;
|
|
138
138
|
}, "strip", z.ZodTypeAny, {
|
|
139
|
-
duration: string | null;
|
|
140
139
|
text: string | null;
|
|
140
|
+
duration: string | null;
|
|
141
141
|
start: string | null;
|
|
142
142
|
}, {
|
|
143
|
-
duration: string | null;
|
|
144
143
|
text: string | null;
|
|
144
|
+
duration: string | null;
|
|
145
145
|
start: string | null;
|
|
146
146
|
}>, "many">>;
|
|
147
147
|
fullTranscriptText: z.ZodOptional<z.ZodString>;
|
|
@@ -149,9 +149,9 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
149
149
|
success: z.ZodBoolean;
|
|
150
150
|
error: z.ZodString;
|
|
151
151
|
}, "strip", z.ZodTypeAny, {
|
|
152
|
-
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
153
|
-
success: boolean;
|
|
154
152
|
error: string;
|
|
153
|
+
success: boolean;
|
|
154
|
+
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
155
155
|
totalResults: number;
|
|
156
156
|
videos?: {
|
|
157
157
|
description: string | null;
|
|
@@ -169,15 +169,15 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
169
169
|
subscribers: number | null;
|
|
170
170
|
}[] | undefined;
|
|
171
171
|
transcript?: {
|
|
172
|
-
duration: string | null;
|
|
173
172
|
text: string | null;
|
|
173
|
+
duration: string | null;
|
|
174
174
|
start: string | null;
|
|
175
175
|
}[] | undefined;
|
|
176
176
|
fullTranscriptText?: string | undefined;
|
|
177
177
|
}, {
|
|
178
|
-
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
179
|
-
success: boolean;
|
|
180
178
|
error: string;
|
|
179
|
+
success: boolean;
|
|
180
|
+
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
181
181
|
totalResults: number;
|
|
182
182
|
videos?: {
|
|
183
183
|
description: string | null;
|
|
@@ -195,8 +195,8 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
195
195
|
subscribers: number | null;
|
|
196
196
|
}[] | undefined;
|
|
197
197
|
transcript?: {
|
|
198
|
-
duration: string | null;
|
|
199
198
|
text: string | null;
|
|
199
|
+
duration: string | null;
|
|
200
200
|
start: string | null;
|
|
201
201
|
}[] | undefined;
|
|
202
202
|
fullTranscriptText?: string | undefined;
|
|
@@ -294,12 +294,12 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
294
294
|
duration: z.ZodNullable<z.ZodString>;
|
|
295
295
|
text: z.ZodNullable<z.ZodString>;
|
|
296
296
|
}, "strip", z.ZodTypeAny, {
|
|
297
|
-
duration: string | null;
|
|
298
297
|
text: string | null;
|
|
298
|
+
duration: string | null;
|
|
299
299
|
start: string | null;
|
|
300
300
|
}, {
|
|
301
|
-
duration: string | null;
|
|
302
301
|
text: string | null;
|
|
302
|
+
duration: string | null;
|
|
303
303
|
start: string | null;
|
|
304
304
|
}>, "many">>;
|
|
305
305
|
fullTranscriptText: z.ZodOptional<z.ZodString>;
|
|
@@ -307,9 +307,9 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
307
307
|
success: z.ZodBoolean;
|
|
308
308
|
error: z.ZodString;
|
|
309
309
|
}, "strip", z.ZodTypeAny, {
|
|
310
|
-
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
311
|
-
success: boolean;
|
|
312
310
|
error: string;
|
|
311
|
+
success: boolean;
|
|
312
|
+
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
313
313
|
totalResults: number;
|
|
314
314
|
videos?: {
|
|
315
315
|
description: string | null;
|
|
@@ -327,15 +327,15 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
327
327
|
subscribers: number | null;
|
|
328
328
|
}[] | undefined;
|
|
329
329
|
transcript?: {
|
|
330
|
-
duration: string | null;
|
|
331
330
|
text: string | null;
|
|
331
|
+
duration: string | null;
|
|
332
332
|
start: string | null;
|
|
333
333
|
}[] | undefined;
|
|
334
334
|
fullTranscriptText?: string | undefined;
|
|
335
335
|
}, {
|
|
336
|
-
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
337
|
-
success: boolean;
|
|
338
336
|
error: string;
|
|
337
|
+
success: boolean;
|
|
338
|
+
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
339
339
|
totalResults: number;
|
|
340
340
|
videos?: {
|
|
341
341
|
description: string | null;
|
|
@@ -353,8 +353,8 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
353
353
|
subscribers: number | null;
|
|
354
354
|
}[] | undefined;
|
|
355
355
|
transcript?: {
|
|
356
|
-
duration: string | null;
|
|
357
356
|
text: string | null;
|
|
357
|
+
duration: string | null;
|
|
358
358
|
start: string | null;
|
|
359
359
|
}[] | undefined;
|
|
360
360
|
fullTranscriptText?: string | undefined;
|
|
@@ -107,8 +107,8 @@ declare const DatabaseAnalyzerResultSchema: z.ZodObject<{
|
|
|
107
107
|
analysisTimestamp: Date;
|
|
108
108
|
}>>;
|
|
109
109
|
}, "strip", z.ZodTypeAny, {
|
|
110
|
-
success: boolean;
|
|
111
110
|
error: string;
|
|
111
|
+
success: boolean;
|
|
112
112
|
databaseSchema?: {
|
|
113
113
|
rawData?: Record<string, unknown>[] | undefined;
|
|
114
114
|
cleanedJSON?: string | undefined;
|
|
@@ -121,8 +121,8 @@ declare const DatabaseAnalyzerResultSchema: z.ZodObject<{
|
|
|
121
121
|
analysisTimestamp: Date;
|
|
122
122
|
} | undefined;
|
|
123
123
|
}, {
|
|
124
|
-
success: boolean;
|
|
125
124
|
error: string;
|
|
125
|
+
success: boolean;
|
|
126
126
|
databaseSchema?: {
|
|
127
127
|
rawData?: Record<string, unknown>[] | undefined;
|
|
128
128
|
cleanedJSON?: string | undefined;
|
|
@@ -261,8 +261,8 @@ export declare class DatabaseAnalyzerWorkflowBubble extends WorkflowBubble<Datab
|
|
|
261
261
|
analysisTimestamp: Date;
|
|
262
262
|
}>>;
|
|
263
263
|
}, "strip", z.ZodTypeAny, {
|
|
264
|
-
success: boolean;
|
|
265
264
|
error: string;
|
|
265
|
+
success: boolean;
|
|
266
266
|
databaseSchema?: {
|
|
267
267
|
rawData?: Record<string, unknown>[] | undefined;
|
|
268
268
|
cleanedJSON?: string | undefined;
|
|
@@ -275,8 +275,8 @@ export declare class DatabaseAnalyzerWorkflowBubble extends WorkflowBubble<Datab
|
|
|
275
275
|
analysisTimestamp: Date;
|
|
276
276
|
} | undefined;
|
|
277
277
|
}, {
|
|
278
|
-
success: boolean;
|
|
279
278
|
error: string;
|
|
279
|
+
success: boolean;
|
|
280
280
|
databaseSchema?: {
|
|
281
281
|
rawData?: Record<string, unknown>[] | undefined;
|
|
282
282
|
cleanedJSON?: string | undefined;
|
|
@@ -121,7 +121,7 @@ declare const GenerateDocumentWorkflowParamsSchema: z.ZodObject<{
|
|
|
121
121
|
} | undefined;
|
|
122
122
|
}[];
|
|
123
123
|
outputDescription: string;
|
|
124
|
-
outputFormat: "
|
|
124
|
+
outputFormat: "html" | "json" | "csv";
|
|
125
125
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
126
126
|
}, {
|
|
127
127
|
documents: {
|
|
@@ -145,7 +145,7 @@ declare const GenerateDocumentWorkflowParamsSchema: z.ZodObject<{
|
|
|
145
145
|
maxTokens?: number | undefined;
|
|
146
146
|
jsonMode?: boolean | undefined;
|
|
147
147
|
} | undefined;
|
|
148
|
-
outputFormat?: "
|
|
148
|
+
outputFormat?: "html" | "json" | "csv" | undefined;
|
|
149
149
|
}>;
|
|
150
150
|
/**
|
|
151
151
|
* Result schema for Generate Document workflow
|
|
@@ -189,13 +189,13 @@ declare const GenerateDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
189
189
|
csv: z.ZodOptional<z.ZodString>;
|
|
190
190
|
json: z.ZodOptional<z.ZodString>;
|
|
191
191
|
}, "strip", z.ZodTypeAny, {
|
|
192
|
+
html?: string | undefined;
|
|
192
193
|
json?: string | undefined;
|
|
193
194
|
csv?: string | undefined;
|
|
194
|
-
html?: string | undefined;
|
|
195
195
|
}, {
|
|
196
|
+
html?: string | undefined;
|
|
196
197
|
json?: string | undefined;
|
|
197
198
|
csv?: string | undefined;
|
|
198
|
-
html?: string | undefined;
|
|
199
199
|
}>;
|
|
200
200
|
aiAnalysis: z.ZodObject<{
|
|
201
201
|
model: z.ZodString;
|
|
@@ -213,8 +213,8 @@ declare const GenerateDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
213
213
|
success: z.ZodBoolean;
|
|
214
214
|
error: z.ZodString;
|
|
215
215
|
}, "strip", z.ZodTypeAny, {
|
|
216
|
-
success: boolean;
|
|
217
216
|
error: string;
|
|
217
|
+
success: boolean;
|
|
218
218
|
metadata: {
|
|
219
219
|
processingTime: number;
|
|
220
220
|
totalDocuments: number;
|
|
@@ -234,13 +234,13 @@ declare const GenerateDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
234
234
|
processingTime?: number | undefined;
|
|
235
235
|
};
|
|
236
236
|
generatedFiles: {
|
|
237
|
+
html?: string | undefined;
|
|
237
238
|
json?: string | undefined;
|
|
238
239
|
csv?: string | undefined;
|
|
239
|
-
html?: string | undefined;
|
|
240
240
|
};
|
|
241
241
|
}, {
|
|
242
|
-
success: boolean;
|
|
243
242
|
error: string;
|
|
243
|
+
success: boolean;
|
|
244
244
|
metadata: {
|
|
245
245
|
processingTime: number;
|
|
246
246
|
totalDocuments: number;
|
|
@@ -260,9 +260,9 @@ declare const GenerateDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
260
260
|
processingTime?: number | undefined;
|
|
261
261
|
};
|
|
262
262
|
generatedFiles: {
|
|
263
|
+
html?: string | undefined;
|
|
263
264
|
json?: string | undefined;
|
|
264
265
|
csv?: string | undefined;
|
|
265
|
-
html?: string | undefined;
|
|
266
266
|
};
|
|
267
267
|
}>;
|
|
268
268
|
type GenerateDocumentWorkflowParams = z.input<typeof GenerateDocumentWorkflowParamsSchema>;
|
|
@@ -376,7 +376,7 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
|
|
|
376
376
|
} | undefined;
|
|
377
377
|
}[];
|
|
378
378
|
outputDescription: string;
|
|
379
|
-
outputFormat: "
|
|
379
|
+
outputFormat: "html" | "json" | "csv";
|
|
380
380
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
381
381
|
}, {
|
|
382
382
|
documents: {
|
|
@@ -400,7 +400,7 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
|
|
|
400
400
|
maxTokens?: number | undefined;
|
|
401
401
|
jsonMode?: boolean | undefined;
|
|
402
402
|
} | undefined;
|
|
403
|
-
outputFormat?: "
|
|
403
|
+
outputFormat?: "html" | "json" | "csv" | undefined;
|
|
404
404
|
}>;
|
|
405
405
|
static readonly resultSchema: z.ZodObject<{
|
|
406
406
|
columns: z.ZodArray<z.ZodObject<{
|
|
@@ -441,13 +441,13 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
|
|
|
441
441
|
csv: z.ZodOptional<z.ZodString>;
|
|
442
442
|
json: z.ZodOptional<z.ZodString>;
|
|
443
443
|
}, "strip", z.ZodTypeAny, {
|
|
444
|
+
html?: string | undefined;
|
|
444
445
|
json?: string | undefined;
|
|
445
446
|
csv?: string | undefined;
|
|
446
|
-
html?: string | undefined;
|
|
447
447
|
}, {
|
|
448
|
+
html?: string | undefined;
|
|
448
449
|
json?: string | undefined;
|
|
449
450
|
csv?: string | undefined;
|
|
450
|
-
html?: string | undefined;
|
|
451
451
|
}>;
|
|
452
452
|
aiAnalysis: z.ZodObject<{
|
|
453
453
|
model: z.ZodString;
|
|
@@ -465,8 +465,8 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
|
|
|
465
465
|
success: z.ZodBoolean;
|
|
466
466
|
error: z.ZodString;
|
|
467
467
|
}, "strip", z.ZodTypeAny, {
|
|
468
|
-
success: boolean;
|
|
469
468
|
error: string;
|
|
469
|
+
success: boolean;
|
|
470
470
|
metadata: {
|
|
471
471
|
processingTime: number;
|
|
472
472
|
totalDocuments: number;
|
|
@@ -486,13 +486,13 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
|
|
|
486
486
|
processingTime?: number | undefined;
|
|
487
487
|
};
|
|
488
488
|
generatedFiles: {
|
|
489
|
+
html?: string | undefined;
|
|
489
490
|
json?: string | undefined;
|
|
490
491
|
csv?: string | undefined;
|
|
491
|
-
html?: string | undefined;
|
|
492
492
|
};
|
|
493
493
|
}, {
|
|
494
|
-
success: boolean;
|
|
495
494
|
error: string;
|
|
495
|
+
success: boolean;
|
|
496
496
|
metadata: {
|
|
497
497
|
processingTime: number;
|
|
498
498
|
totalDocuments: number;
|
|
@@ -512,9 +512,9 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
|
|
|
512
512
|
processingTime?: number | undefined;
|
|
513
513
|
};
|
|
514
514
|
generatedFiles: {
|
|
515
|
+
html?: string | undefined;
|
|
515
516
|
json?: string | undefined;
|
|
516
517
|
csv?: string | undefined;
|
|
517
|
-
html?: string | undefined;
|
|
518
518
|
};
|
|
519
519
|
}>;
|
|
520
520
|
static readonly shortDescription = "Generate Document workflow: convert markdown to structured formats using AI";
|
|
@@ -269,8 +269,8 @@ declare const ParseDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
269
269
|
success: z.ZodBoolean;
|
|
270
270
|
error: z.ZodString;
|
|
271
271
|
}, "strip", z.ZodTypeAny, {
|
|
272
|
-
success: boolean;
|
|
273
272
|
error: string;
|
|
273
|
+
success: boolean;
|
|
274
274
|
metadata: {
|
|
275
275
|
totalPages: number;
|
|
276
276
|
processingTime: number;
|
|
@@ -305,8 +305,8 @@ declare const ParseDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
305
305
|
fileUrl?: string | undefined;
|
|
306
306
|
}[] | undefined;
|
|
307
307
|
}, {
|
|
308
|
-
success: boolean;
|
|
309
308
|
error: string;
|
|
309
|
+
success: boolean;
|
|
310
310
|
metadata: {
|
|
311
311
|
totalPages: number;
|
|
312
312
|
processingTime: number;
|
|
@@ -597,8 +597,8 @@ export declare class ParseDocumentWorkflow extends WorkflowBubble<ParseDocumentW
|
|
|
597
597
|
success: z.ZodBoolean;
|
|
598
598
|
error: z.ZodString;
|
|
599
599
|
}, "strip", z.ZodTypeAny, {
|
|
600
|
-
success: boolean;
|
|
601
600
|
error: string;
|
|
601
|
+
success: boolean;
|
|
602
602
|
metadata: {
|
|
603
603
|
totalPages: number;
|
|
604
604
|
processingTime: number;
|
|
@@ -633,8 +633,8 @@ export declare class ParseDocumentWorkflow extends WorkflowBubble<ParseDocumentW
|
|
|
633
633
|
fileUrl?: string | undefined;
|
|
634
634
|
}[] | undefined;
|
|
635
635
|
}, {
|
|
636
|
-
success: boolean;
|
|
637
636
|
error: string;
|
|
637
|
+
success: boolean;
|
|
638
638
|
metadata: {
|
|
639
639
|
totalPages: number;
|
|
640
640
|
processingTime: number;
|