@bubblelab/bubble-core 0.1.73 → 0.1.75
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 +109 -109
- package/dist/bubbles/service-bubble/agi-inc.d.ts +112 -112
- package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
- package/dist/bubbles/service-bubble/airtable.d.ts +210 -210
- package/dist/bubbles/service-bubble/airtable.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/airtable.js +3 -1
- package/dist/bubbles/service-bubble/airtable.js.map +1 -1
- package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +134 -134
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +31 -31
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +53 -53
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +90 -90
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +30 -30
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
- package/dist/bubbles/service-bubble/firecrawl.d.ts +250 -250
- package/dist/bubbles/service-bubble/followupboss.d.ts +236 -236
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +16 -16
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +30 -30
- package/dist/bubbles/service-bubble/github.d.ts +104 -104
- package/dist/bubbles/service-bubble/gmail.d.ts +176 -176
- package/dist/bubbles/service-bubble/google-calendar.d.ts +28 -28
- package/dist/bubbles/service-bubble/google-drive.d.ts +130 -130
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +42 -42
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +38 -38
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +12 -12
- package/dist/bubbles/service-bubble/jira/jira.d.ts +54 -54
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +38 -38
- package/dist/bubbles/service-bubble/notion/notion.d.ts +512 -512
- package/dist/bubbles/service-bubble/postgresql.d.ts +12 -12
- package/dist/bubbles/service-bubble/resend.d.ts +12 -12
- package/dist/bubbles/service-bubble/slack/slack.d.ts +535 -535
- package/dist/bubbles/service-bubble/slack/slack.utils.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/slack/slack.utils.js +29 -20
- package/dist/bubbles/service-bubble/slack/slack.utils.js.map +1 -1
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +80 -80
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +71 -71
- package/dist/bubbles/service-bubble/telegram.d.ts +110 -110
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +24 -24
- 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-connection-tool/linkedin-connection-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +302 -302
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +64 -64
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +94 -94
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +14 -14
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +78 -78
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +76 -76
- package/dist/bubbles.json +3 -2
- package/package.json +2 -2
|
@@ -69,9 +69,9 @@ declare const WebCrawlToolResultSchema: z.ZodObject<{
|
|
|
69
69
|
maxPagesReached?: boolean | undefined;
|
|
70
70
|
}>>;
|
|
71
71
|
}, "strip", z.ZodTypeAny, {
|
|
72
|
+
url: string;
|
|
72
73
|
error: string;
|
|
73
74
|
success: boolean;
|
|
74
|
-
url: string;
|
|
75
75
|
pages: {
|
|
76
76
|
content: string;
|
|
77
77
|
url: string;
|
|
@@ -86,9 +86,9 @@ declare const WebCrawlToolResultSchema: z.ZodObject<{
|
|
|
86
86
|
maxPagesReached?: boolean | undefined;
|
|
87
87
|
} | undefined;
|
|
88
88
|
}, {
|
|
89
|
+
url: string;
|
|
89
90
|
error: string;
|
|
90
91
|
success: boolean;
|
|
91
|
-
url: string;
|
|
92
92
|
pages: {
|
|
93
93
|
content: string;
|
|
94
94
|
url: string;
|
|
@@ -175,9 +175,9 @@ export declare class WebCrawlTool extends ToolBubble<WebCrawlToolParams, WebCraw
|
|
|
175
175
|
maxPagesReached?: boolean | undefined;
|
|
176
176
|
}>>;
|
|
177
177
|
}, "strip", z.ZodTypeAny, {
|
|
178
|
+
url: string;
|
|
178
179
|
error: string;
|
|
179
180
|
success: boolean;
|
|
180
|
-
url: string;
|
|
181
181
|
pages: {
|
|
182
182
|
content: string;
|
|
183
183
|
url: string;
|
|
@@ -192,9 +192,9 @@ export declare class WebCrawlTool extends ToolBubble<WebCrawlToolParams, WebCraw
|
|
|
192
192
|
maxPagesReached?: boolean | undefined;
|
|
193
193
|
} | undefined;
|
|
194
194
|
}, {
|
|
195
|
+
url: string;
|
|
195
196
|
error: string;
|
|
196
197
|
success: boolean;
|
|
197
|
-
url: string;
|
|
198
198
|
pages: {
|
|
199
199
|
content: string;
|
|
200
200
|
url: string;
|
|
@@ -40,9 +40,9 @@ declare const WebExtractToolResultSchema: z.ZodObject<{
|
|
|
40
40
|
pageTitle?: string | undefined;
|
|
41
41
|
}>>;
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
|
+
url: string;
|
|
43
44
|
error: string;
|
|
44
45
|
success: boolean;
|
|
45
|
-
url: string;
|
|
46
46
|
metadata?: {
|
|
47
47
|
statusCode?: number | undefined;
|
|
48
48
|
extractionTime?: number | undefined;
|
|
@@ -50,9 +50,9 @@ declare const WebExtractToolResultSchema: z.ZodObject<{
|
|
|
50
50
|
} | undefined;
|
|
51
51
|
extractedData?: any;
|
|
52
52
|
}, {
|
|
53
|
+
url: string;
|
|
53
54
|
error: string;
|
|
54
55
|
success: boolean;
|
|
55
|
-
url: string;
|
|
56
56
|
metadata?: {
|
|
57
57
|
statusCode?: number | undefined;
|
|
58
58
|
extractionTime?: number | undefined;
|
|
@@ -103,9 +103,9 @@ export declare class WebExtractTool extends ToolBubble<WebExtractToolParams, Web
|
|
|
103
103
|
pageTitle?: string | undefined;
|
|
104
104
|
}>>;
|
|
105
105
|
}, "strip", z.ZodTypeAny, {
|
|
106
|
+
url: string;
|
|
106
107
|
error: string;
|
|
107
108
|
success: boolean;
|
|
108
|
-
url: string;
|
|
109
109
|
metadata?: {
|
|
110
110
|
statusCode?: number | undefined;
|
|
111
111
|
extractionTime?: number | undefined;
|
|
@@ -113,9 +113,9 @@ export declare class WebExtractTool extends ToolBubble<WebExtractToolParams, Web
|
|
|
113
113
|
} | undefined;
|
|
114
114
|
extractedData?: any;
|
|
115
115
|
}, {
|
|
116
|
+
url: string;
|
|
116
117
|
error: string;
|
|
117
118
|
success: boolean;
|
|
118
|
-
url: string;
|
|
119
119
|
metadata?: {
|
|
120
120
|
statusCode?: number | undefined;
|
|
121
121
|
extractionTime?: number | undefined;
|
|
@@ -37,24 +37,24 @@ declare const WebScrapeToolResultSchema: z.ZodObject<{
|
|
|
37
37
|
loadTime?: number | undefined;
|
|
38
38
|
}>>;
|
|
39
39
|
}, "strip", z.ZodTypeAny, {
|
|
40
|
-
content: string;
|
|
41
40
|
format: string;
|
|
42
41
|
title: string;
|
|
42
|
+
content: string;
|
|
43
|
+
url: string;
|
|
43
44
|
error: string;
|
|
44
45
|
success: boolean;
|
|
45
|
-
url: string;
|
|
46
46
|
creditsUsed: number;
|
|
47
47
|
metadata?: {
|
|
48
48
|
statusCode?: number | undefined;
|
|
49
49
|
loadTime?: number | undefined;
|
|
50
50
|
} | undefined;
|
|
51
51
|
}, {
|
|
52
|
-
content: string;
|
|
53
52
|
format: string;
|
|
54
53
|
title: string;
|
|
54
|
+
content: string;
|
|
55
|
+
url: string;
|
|
55
56
|
error: string;
|
|
56
57
|
success: boolean;
|
|
57
|
-
url: string;
|
|
58
58
|
creditsUsed: number;
|
|
59
59
|
metadata?: {
|
|
60
60
|
statusCode?: number | undefined;
|
|
@@ -101,24 +101,24 @@ export declare class WebScrapeTool extends ToolBubble<WebScrapeToolParams, WebSc
|
|
|
101
101
|
loadTime?: number | undefined;
|
|
102
102
|
}>>;
|
|
103
103
|
}, "strip", z.ZodTypeAny, {
|
|
104
|
-
content: string;
|
|
105
104
|
format: string;
|
|
106
105
|
title: string;
|
|
106
|
+
content: string;
|
|
107
|
+
url: string;
|
|
107
108
|
error: string;
|
|
108
109
|
success: boolean;
|
|
109
|
-
url: string;
|
|
110
110
|
creditsUsed: number;
|
|
111
111
|
metadata?: {
|
|
112
112
|
statusCode?: number | undefined;
|
|
113
113
|
loadTime?: number | undefined;
|
|
114
114
|
} | undefined;
|
|
115
115
|
}, {
|
|
116
|
-
content: string;
|
|
117
116
|
format: string;
|
|
118
117
|
title: string;
|
|
118
|
+
content: string;
|
|
119
|
+
url: string;
|
|
119
120
|
error: string;
|
|
120
121
|
success: boolean;
|
|
121
|
-
url: string;
|
|
122
122
|
creditsUsed: number;
|
|
123
123
|
metadata?: {
|
|
124
124
|
statusCode?: number | undefined;
|
|
@@ -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
|
-
content: string;
|
|
31
30
|
title: string;
|
|
31
|
+
content: string;
|
|
32
32
|
url: string;
|
|
33
33
|
}, {
|
|
34
|
-
content: string;
|
|
35
34
|
title: string;
|
|
35
|
+
content: string;
|
|
36
36
|
url: string;
|
|
37
37
|
}>, "many">;
|
|
38
38
|
query: z.ZodString;
|
|
@@ -46,8 +46,8 @@ declare const WebSearchToolResultSchema: z.ZodObject<{
|
|
|
46
46
|
success: boolean;
|
|
47
47
|
query: string;
|
|
48
48
|
results: {
|
|
49
|
-
content: string;
|
|
50
49
|
title: string;
|
|
50
|
+
content: string;
|
|
51
51
|
url: string;
|
|
52
52
|
}[];
|
|
53
53
|
creditsUsed: number;
|
|
@@ -58,8 +58,8 @@ declare const WebSearchToolResultSchema: z.ZodObject<{
|
|
|
58
58
|
success: boolean;
|
|
59
59
|
query: string;
|
|
60
60
|
results: {
|
|
61
|
-
content: string;
|
|
62
61
|
title: string;
|
|
62
|
+
content: string;
|
|
63
63
|
url: string;
|
|
64
64
|
}[];
|
|
65
65
|
creditsUsed: number;
|
|
@@ -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
|
-
content: string;
|
|
100
99
|
title: string;
|
|
100
|
+
content: string;
|
|
101
101
|
url: string;
|
|
102
102
|
}, {
|
|
103
|
-
content: string;
|
|
104
103
|
title: string;
|
|
104
|
+
content: string;
|
|
105
105
|
url: string;
|
|
106
106
|
}>, "many">;
|
|
107
107
|
query: z.ZodString;
|
|
@@ -115,8 +115,8 @@ export declare class WebSearchTool extends ToolBubble<WebSearchToolParams, WebSe
|
|
|
115
115
|
success: boolean;
|
|
116
116
|
query: string;
|
|
117
117
|
results: {
|
|
118
|
-
content: string;
|
|
119
118
|
title: string;
|
|
119
|
+
content: string;
|
|
120
120
|
url: string;
|
|
121
121
|
}[];
|
|
122
122
|
creditsUsed: number;
|
|
@@ -127,8 +127,8 @@ export declare class WebSearchTool extends ToolBubble<WebSearchToolParams, WebSe
|
|
|
127
127
|
success: boolean;
|
|
128
128
|
query: string;
|
|
129
129
|
results: {
|
|
130
|
-
content: string;
|
|
131
130
|
title: string;
|
|
131
|
+
content: 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
|
-
text: string | null;
|
|
54
53
|
duration: string | null;
|
|
54
|
+
text: string | null;
|
|
55
55
|
start: string | null;
|
|
56
56
|
}, {
|
|
57
|
-
text: string | null;
|
|
58
57
|
duration: string | null;
|
|
58
|
+
text: 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
|
-
text: string | null;
|
|
140
139
|
duration: string | null;
|
|
140
|
+
text: string | null;
|
|
141
141
|
start: string | null;
|
|
142
142
|
}, {
|
|
143
|
-
text: string | null;
|
|
144
143
|
duration: string | null;
|
|
144
|
+
text: 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";
|
|
152
153
|
error: string;
|
|
153
154
|
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
|
-
text: string | null;
|
|
173
172
|
duration: string | null;
|
|
173
|
+
text: string | null;
|
|
174
174
|
start: string | null;
|
|
175
175
|
}[] | undefined;
|
|
176
176
|
fullTranscriptText?: string | undefined;
|
|
177
177
|
}, {
|
|
178
|
+
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
178
179
|
error: string;
|
|
179
180
|
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
|
-
text: string | null;
|
|
199
198
|
duration: string | null;
|
|
199
|
+
text: 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
|
-
text: string | null;
|
|
298
297
|
duration: string | null;
|
|
298
|
+
text: string | null;
|
|
299
299
|
start: string | null;
|
|
300
300
|
}, {
|
|
301
|
-
text: string | null;
|
|
302
301
|
duration: string | null;
|
|
302
|
+
text: 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";
|
|
310
311
|
error: string;
|
|
311
312
|
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
|
-
text: string | null;
|
|
331
330
|
duration: string | null;
|
|
331
|
+
text: string | null;
|
|
332
332
|
start: string | null;
|
|
333
333
|
}[] | undefined;
|
|
334
334
|
fullTranscriptText?: string | undefined;
|
|
335
335
|
}, {
|
|
336
|
+
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
336
337
|
error: string;
|
|
337
338
|
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
|
-
text: string | null;
|
|
357
356
|
duration: string | null;
|
|
357
|
+
text: string | null;
|
|
358
358
|
start: string | null;
|
|
359
359
|
}[] | undefined;
|
|
360
360
|
fullTranscriptText?: string | undefined;
|
|
@@ -121,7 +121,7 @@ declare const GenerateDocumentWorkflowParamsSchema: z.ZodObject<{
|
|
|
121
121
|
} | undefined;
|
|
122
122
|
}[];
|
|
123
123
|
outputDescription: string;
|
|
124
|
-
outputFormat: "
|
|
124
|
+
outputFormat: "json" | "csv" | "html";
|
|
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?: "json" | "csv" | "html" | 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;
|
|
193
192
|
json?: string | undefined;
|
|
194
193
|
csv?: string | undefined;
|
|
195
|
-
}, {
|
|
196
194
|
html?: string | undefined;
|
|
195
|
+
}, {
|
|
197
196
|
json?: string | undefined;
|
|
198
197
|
csv?: string | undefined;
|
|
198
|
+
html?: string | undefined;
|
|
199
199
|
}>;
|
|
200
200
|
aiAnalysis: z.ZodObject<{
|
|
201
201
|
model: z.ZodString;
|
|
@@ -234,9 +234,9 @@ declare const GenerateDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
234
234
|
processingTime?: number | undefined;
|
|
235
235
|
};
|
|
236
236
|
generatedFiles: {
|
|
237
|
-
html?: string | undefined;
|
|
238
237
|
json?: string | undefined;
|
|
239
238
|
csv?: string | undefined;
|
|
239
|
+
html?: string | undefined;
|
|
240
240
|
};
|
|
241
241
|
}, {
|
|
242
242
|
error: string;
|
|
@@ -260,9 +260,9 @@ declare const GenerateDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
260
260
|
processingTime?: number | undefined;
|
|
261
261
|
};
|
|
262
262
|
generatedFiles: {
|
|
263
|
-
html?: string | undefined;
|
|
264
263
|
json?: string | undefined;
|
|
265
264
|
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: "json" | "csv" | "html";
|
|
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?: "json" | "csv" | "html" | 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;
|
|
445
444
|
json?: string | undefined;
|
|
446
445
|
csv?: string | undefined;
|
|
447
|
-
}, {
|
|
448
446
|
html?: string | undefined;
|
|
447
|
+
}, {
|
|
449
448
|
json?: string | undefined;
|
|
450
449
|
csv?: string | undefined;
|
|
450
|
+
html?: string | undefined;
|
|
451
451
|
}>;
|
|
452
452
|
aiAnalysis: z.ZodObject<{
|
|
453
453
|
model: z.ZodString;
|
|
@@ -486,9 +486,9 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
|
|
|
486
486
|
processingTime?: number | undefined;
|
|
487
487
|
};
|
|
488
488
|
generatedFiles: {
|
|
489
|
-
html?: string | undefined;
|
|
490
489
|
json?: string | undefined;
|
|
491
490
|
csv?: string | undefined;
|
|
491
|
+
html?: string | undefined;
|
|
492
492
|
};
|
|
493
493
|
}, {
|
|
494
494
|
error: string;
|
|
@@ -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;
|
|
516
515
|
json?: string | undefined;
|
|
517
516
|
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";
|