@bubblelab/bubble-core 0.1.24 → 0.1.26
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 +89 -73
- package/dist/bubbles/service-bubble/agi-inc.d.ts +60 -60
- package/dist/bubbles/service-bubble/ai-agent.d.ts +14 -14
- package/dist/bubbles/service-bubble/airtable.d.ts +134 -134
- package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +23 -23
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +331 -331
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +540 -540
- 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 +32 -32
- package/dist/bubbles/service-bubble/firecrawl.d.ts +348 -348
- package/dist/bubbles/service-bubble/followupboss.d.ts +405 -405
- package/dist/bubbles/service-bubble/github.d.ts +132 -132
- package/dist/bubbles/service-bubble/gmail.d.ts +506 -506
- package/dist/bubbles/service-bubble/google-calendar.d.ts +132 -132
- package/dist/bubbles/service-bubble/google-drive.d.ts +84 -84
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +30 -30
- 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 +630 -630
- 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 +218 -218
- package/dist/bubbles/service-bubble/storage.d.ts +40 -40
- package/dist/bubbles/service-bubble/telegram.d.ts +1329 -1329
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +202 -202
- 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 +28 -28
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +139 -139
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +274 -274
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +53 -16
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +22 -22
- 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 +20 -20
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +26 -26
- 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 +52058 -10
- package/dist/types/available-tools.d.ts +1 -1
- package/dist/types/available-tools.d.ts.map +1 -1
- package/dist/types/available-tools.js +1 -0
- package/dist/types/available-tools.js.map +1 -1
- package/package.json +3 -3
|
@@ -147,8 +147,8 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
147
147
|
isReply: z.ZodNullable<z.ZodBoolean>;
|
|
148
148
|
}, "strip", z.ZodTypeAny, {
|
|
149
149
|
url: string | null;
|
|
150
|
-
id: string | null;
|
|
151
150
|
text: string | null;
|
|
151
|
+
id: string | null;
|
|
152
152
|
entities: {
|
|
153
153
|
hashtags: string[] | null;
|
|
154
154
|
mentions: string[] | null;
|
|
@@ -190,8 +190,8 @@ declare const TwitterTweetSchema: z.ZodObject<{
|
|
|
190
190
|
isReply: boolean | null;
|
|
191
191
|
}, {
|
|
192
192
|
url: string | null;
|
|
193
|
-
id: string | null;
|
|
194
193
|
text: string | null;
|
|
194
|
+
id: string | null;
|
|
195
195
|
entities: {
|
|
196
196
|
hashtags: string[] | null;
|
|
197
197
|
mentions: string[] | null;
|
|
@@ -367,8 +367,8 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
367
367
|
isReply: z.ZodNullable<z.ZodBoolean>;
|
|
368
368
|
}, "strip", z.ZodTypeAny, {
|
|
369
369
|
url: string | null;
|
|
370
|
-
id: string | null;
|
|
371
370
|
text: string | null;
|
|
371
|
+
id: string | null;
|
|
372
372
|
entities: {
|
|
373
373
|
hashtags: string[] | null;
|
|
374
374
|
mentions: string[] | null;
|
|
@@ -410,8 +410,8 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
410
410
|
isReply: boolean | null;
|
|
411
411
|
}, {
|
|
412
412
|
url: string | null;
|
|
413
|
-
id: string | null;
|
|
414
413
|
text: string | null;
|
|
414
|
+
id: string | null;
|
|
415
415
|
entities: {
|
|
416
416
|
hashtags: string[] | null;
|
|
417
417
|
mentions: string[] | null;
|
|
@@ -456,13 +456,13 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
456
456
|
success: z.ZodBoolean;
|
|
457
457
|
error: z.ZodString;
|
|
458
458
|
}, "strip", z.ZodTypeAny, {
|
|
459
|
-
operation: "search" | "scrapeProfile" | "scrapeUrl";
|
|
460
459
|
success: boolean;
|
|
461
460
|
error: string;
|
|
461
|
+
operation: "search" | "scrapeProfile" | "scrapeUrl";
|
|
462
462
|
tweets: {
|
|
463
463
|
url: string | null;
|
|
464
|
-
id: string | null;
|
|
465
464
|
text: string | null;
|
|
465
|
+
id: string | null;
|
|
466
466
|
entities: {
|
|
467
467
|
hashtags: string[] | null;
|
|
468
468
|
mentions: string[] | null;
|
|
@@ -505,13 +505,13 @@ declare const TwitterToolResultSchema: z.ZodObject<{
|
|
|
505
505
|
}[];
|
|
506
506
|
totalTweets: number;
|
|
507
507
|
}, {
|
|
508
|
-
operation: "search" | "scrapeProfile" | "scrapeUrl";
|
|
509
508
|
success: boolean;
|
|
510
509
|
error: string;
|
|
510
|
+
operation: "search" | "scrapeProfile" | "scrapeUrl";
|
|
511
511
|
tweets: {
|
|
512
512
|
url: string | null;
|
|
513
|
-
id: string | null;
|
|
514
513
|
text: string | null;
|
|
514
|
+
id: string | null;
|
|
515
515
|
entities: {
|
|
516
516
|
hashtags: string[] | null;
|
|
517
517
|
mentions: string[] | null;
|
|
@@ -713,8 +713,8 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
713
713
|
isReply: z.ZodNullable<z.ZodBoolean>;
|
|
714
714
|
}, "strip", z.ZodTypeAny, {
|
|
715
715
|
url: string | null;
|
|
716
|
-
id: string | null;
|
|
717
716
|
text: string | null;
|
|
717
|
+
id: string | null;
|
|
718
718
|
entities: {
|
|
719
719
|
hashtags: string[] | null;
|
|
720
720
|
mentions: string[] | null;
|
|
@@ -756,8 +756,8 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
756
756
|
isReply: boolean | null;
|
|
757
757
|
}, {
|
|
758
758
|
url: string | null;
|
|
759
|
-
id: string | null;
|
|
760
759
|
text: string | null;
|
|
760
|
+
id: string | null;
|
|
761
761
|
entities: {
|
|
762
762
|
hashtags: string[] | null;
|
|
763
763
|
mentions: string[] | null;
|
|
@@ -802,13 +802,13 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
802
802
|
success: z.ZodBoolean;
|
|
803
803
|
error: z.ZodString;
|
|
804
804
|
}, "strip", z.ZodTypeAny, {
|
|
805
|
-
operation: "search" | "scrapeProfile" | "scrapeUrl";
|
|
806
805
|
success: boolean;
|
|
807
806
|
error: string;
|
|
807
|
+
operation: "search" | "scrapeProfile" | "scrapeUrl";
|
|
808
808
|
tweets: {
|
|
809
809
|
url: string | null;
|
|
810
|
-
id: string | null;
|
|
811
810
|
text: string | null;
|
|
811
|
+
id: string | null;
|
|
812
812
|
entities: {
|
|
813
813
|
hashtags: string[] | null;
|
|
814
814
|
mentions: string[] | null;
|
|
@@ -851,13 +851,13 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
|
|
|
851
851
|
}[];
|
|
852
852
|
totalTweets: number;
|
|
853
853
|
}, {
|
|
854
|
-
operation: "search" | "scrapeProfile" | "scrapeUrl";
|
|
855
854
|
success: boolean;
|
|
856
855
|
error: string;
|
|
856
|
+
operation: "search" | "scrapeProfile" | "scrapeUrl";
|
|
857
857
|
tweets: {
|
|
858
858
|
url: string | null;
|
|
859
|
-
id: string | null;
|
|
860
859
|
text: string | null;
|
|
860
|
+
id: string | null;
|
|
861
861
|
entities: {
|
|
862
862
|
hashtags: string[] | null;
|
|
863
863
|
mentions: string[] | null;
|
|
@@ -9,16 +9,16 @@ declare const WebSearchToolParamsSchema: z.ZodObject<{
|
|
|
9
9
|
location: z.ZodOptional<z.ZodString>;
|
|
10
10
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
11
11
|
}, "strip", z.ZodTypeAny, {
|
|
12
|
-
query: string;
|
|
13
12
|
limit: number;
|
|
13
|
+
query: string;
|
|
14
14
|
categories: ("github" | "pdf" | "research")[];
|
|
15
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
16
15
|
location?: string | undefined;
|
|
16
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
17
17
|
}, {
|
|
18
18
|
query: string;
|
|
19
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
20
|
-
limit?: number | undefined;
|
|
21
19
|
location?: string | undefined;
|
|
20
|
+
limit?: number | undefined;
|
|
21
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
22
22
|
categories?: ("github" | "pdf" | "research")[] | undefined;
|
|
23
23
|
}>;
|
|
24
24
|
declare const WebSearchToolResultSchema: z.ZodObject<{
|
|
@@ -42,7 +42,6 @@ declare const WebSearchToolResultSchema: z.ZodObject<{
|
|
|
42
42
|
success: z.ZodBoolean;
|
|
43
43
|
error: z.ZodString;
|
|
44
44
|
}, "strip", z.ZodTypeAny, {
|
|
45
|
-
query: string;
|
|
46
45
|
success: boolean;
|
|
47
46
|
error: string;
|
|
48
47
|
results: {
|
|
@@ -50,11 +49,11 @@ declare const WebSearchToolResultSchema: z.ZodObject<{
|
|
|
50
49
|
content: string;
|
|
51
50
|
url: string;
|
|
52
51
|
}[];
|
|
52
|
+
query: string;
|
|
53
53
|
creditsUsed: number;
|
|
54
54
|
totalResults: number;
|
|
55
55
|
searchEngine: string;
|
|
56
56
|
}, {
|
|
57
|
-
query: string;
|
|
58
57
|
success: boolean;
|
|
59
58
|
error: string;
|
|
60
59
|
results: {
|
|
@@ -62,6 +61,7 @@ declare const WebSearchToolResultSchema: z.ZodObject<{
|
|
|
62
61
|
content: string;
|
|
63
62
|
url: string;
|
|
64
63
|
}[];
|
|
64
|
+
query: string;
|
|
65
65
|
creditsUsed: number;
|
|
66
66
|
totalResults: number;
|
|
67
67
|
searchEngine: string;
|
|
@@ -78,16 +78,16 @@ export declare class WebSearchTool extends ToolBubble<WebSearchToolParams, WebSe
|
|
|
78
78
|
location: z.ZodOptional<z.ZodString>;
|
|
79
79
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
80
80
|
}, "strip", z.ZodTypeAny, {
|
|
81
|
-
query: string;
|
|
82
81
|
limit: number;
|
|
82
|
+
query: string;
|
|
83
83
|
categories: ("github" | "pdf" | "research")[];
|
|
84
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
85
84
|
location?: string | undefined;
|
|
85
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
86
86
|
}, {
|
|
87
87
|
query: string;
|
|
88
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
89
|
-
limit?: number | undefined;
|
|
90
88
|
location?: string | undefined;
|
|
89
|
+
limit?: number | undefined;
|
|
90
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
91
91
|
categories?: ("github" | "pdf" | "research")[] | undefined;
|
|
92
92
|
}>;
|
|
93
93
|
static readonly resultSchema: z.ZodObject<{
|
|
@@ -111,7 +111,6 @@ 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
114
|
success: boolean;
|
|
116
115
|
error: string;
|
|
117
116
|
results: {
|
|
@@ -119,11 +118,11 @@ export declare class WebSearchTool extends ToolBubble<WebSearchToolParams, WebSe
|
|
|
119
118
|
content: string;
|
|
120
119
|
url: string;
|
|
121
120
|
}[];
|
|
121
|
+
query: string;
|
|
122
122
|
creditsUsed: number;
|
|
123
123
|
totalResults: number;
|
|
124
124
|
searchEngine: string;
|
|
125
125
|
}, {
|
|
126
|
-
query: string;
|
|
127
126
|
success: boolean;
|
|
128
127
|
error: string;
|
|
129
128
|
results: {
|
|
@@ -131,6 +130,7 @@ export declare class WebSearchTool extends ToolBubble<WebSearchToolParams, WebSe
|
|
|
131
130
|
content: string;
|
|
132
131
|
url: string;
|
|
133
132
|
}[];
|
|
133
|
+
query: string;
|
|
134
134
|
creditsUsed: number;
|
|
135
135
|
totalResults: number;
|
|
136
136
|
searchEngine: string;
|
|
@@ -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
152
|
success: boolean;
|
|
154
153
|
error: string;
|
|
154
|
+
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
155
155
|
totalResults: number;
|
|
156
156
|
videos?: {
|
|
157
157
|
description: string | null;
|
|
@@ -175,9 +175,9 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
175
175
|
}[] | undefined;
|
|
176
176
|
fullTranscriptText?: string | undefined;
|
|
177
177
|
}, {
|
|
178
|
-
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
179
178
|
success: boolean;
|
|
180
179
|
error: string;
|
|
180
|
+
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
181
181
|
totalResults: number;
|
|
182
182
|
videos?: {
|
|
183
183
|
description: string | null;
|
|
@@ -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
310
|
success: boolean;
|
|
312
311
|
error: string;
|
|
312
|
+
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
313
313
|
totalResults: number;
|
|
314
314
|
videos?: {
|
|
315
315
|
description: string | null;
|
|
@@ -333,9 +333,9 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
333
333
|
}[] | undefined;
|
|
334
334
|
fullTranscriptText?: string | undefined;
|
|
335
335
|
}, {
|
|
336
|
-
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
337
336
|
success: boolean;
|
|
338
337
|
error: string;
|
|
338
|
+
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
339
339
|
totalResults: number;
|
|
340
340
|
videos?: {
|
|
341
341
|
description: string | null;
|
|
@@ -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;
|
|
@@ -234,9 +234,9 @@ 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
242
|
success: boolean;
|
|
@@ -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;
|
|
@@ -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;
|
|
489
490
|
json?: string | undefined;
|
|
490
491
|
csv?: string | undefined;
|
|
491
|
-
html?: string | undefined;
|
|
492
492
|
};
|
|
493
493
|
}, {
|
|
494
494
|
success: boolean;
|
|
@@ -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";
|
|
@@ -80,8 +80,8 @@ declare const PDFFormOperationsParamsSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
80
80
|
pages: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
81
81
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
82
82
|
}, "strip", z.ZodTypeAny, {
|
|
83
|
-
operation: "convert-to-images";
|
|
84
83
|
format: "png" | "jpeg";
|
|
84
|
+
operation: "convert-to-images";
|
|
85
85
|
quality: number;
|
|
86
86
|
pdfData: string;
|
|
87
87
|
dpi: number;
|
|
@@ -172,9 +172,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
172
172
|
success: z.ZodBoolean;
|
|
173
173
|
error: z.ZodString;
|
|
174
174
|
}, "strip", z.ZodTypeAny, {
|
|
175
|
-
operation: "discover";
|
|
176
175
|
success: boolean;
|
|
177
176
|
error: string;
|
|
177
|
+
operation: "discover";
|
|
178
178
|
fields: {
|
|
179
179
|
type: string;
|
|
180
180
|
name: string;
|
|
@@ -194,9 +194,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
194
194
|
}[];
|
|
195
195
|
totalFields: number;
|
|
196
196
|
}, {
|
|
197
|
-
operation: "discover";
|
|
198
197
|
success: boolean;
|
|
199
198
|
error: string;
|
|
199
|
+
operation: "discover";
|
|
200
200
|
fields: {
|
|
201
201
|
type: string;
|
|
202
202
|
name: string;
|
|
@@ -235,9 +235,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
235
235
|
success: z.ZodBoolean;
|
|
236
236
|
error: z.ZodString;
|
|
237
237
|
}, "strip", z.ZodTypeAny, {
|
|
238
|
-
operation: "fill";
|
|
239
238
|
success: boolean;
|
|
240
239
|
error: string;
|
|
240
|
+
operation: "fill";
|
|
241
241
|
filledPdfData: string;
|
|
242
242
|
filledFields: number;
|
|
243
243
|
verification: Record<string, {
|
|
@@ -246,9 +246,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
246
246
|
page: number;
|
|
247
247
|
}>;
|
|
248
248
|
}, {
|
|
249
|
-
operation: "fill";
|
|
250
249
|
success: boolean;
|
|
251
250
|
error: string;
|
|
251
|
+
operation: "fill";
|
|
252
252
|
filledPdfData: string;
|
|
253
253
|
filledFields: number;
|
|
254
254
|
verification: Record<string, {
|
|
@@ -278,9 +278,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
278
278
|
success: z.ZodBoolean;
|
|
279
279
|
error: z.ZodString;
|
|
280
280
|
}, "strip", z.ZodTypeAny, {
|
|
281
|
-
operation: "analyze-checkboxes";
|
|
282
281
|
success: boolean;
|
|
283
282
|
error: string;
|
|
283
|
+
operation: "analyze-checkboxes";
|
|
284
284
|
checkboxes: Record<string, {
|
|
285
285
|
page: number;
|
|
286
286
|
current_value: string;
|
|
@@ -289,9 +289,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
289
289
|
}>;
|
|
290
290
|
totalCheckboxes: number;
|
|
291
291
|
}, {
|
|
292
|
-
operation: "analyze-checkboxes";
|
|
293
292
|
success: boolean;
|
|
294
293
|
error: string;
|
|
294
|
+
operation: "analyze-checkboxes";
|
|
295
295
|
checkboxes: Record<string, {
|
|
296
296
|
page: number;
|
|
297
297
|
current_value: string;
|
|
@@ -320,9 +320,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
320
320
|
success: z.ZodBoolean;
|
|
321
321
|
error: z.ZodString;
|
|
322
322
|
}, "strip", z.ZodTypeAny, {
|
|
323
|
-
operation: "validate";
|
|
324
323
|
success: boolean;
|
|
325
324
|
error: string;
|
|
325
|
+
operation: "validate";
|
|
326
326
|
fields: Record<string, {
|
|
327
327
|
value: string;
|
|
328
328
|
type: string;
|
|
@@ -332,9 +332,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
332
332
|
filledFields: number;
|
|
333
333
|
emptyFields: number;
|
|
334
334
|
}, {
|
|
335
|
-
operation: "validate";
|
|
336
335
|
success: boolean;
|
|
337
336
|
error: string;
|
|
337
|
+
operation: "validate";
|
|
338
338
|
fields: Record<string, {
|
|
339
339
|
value: string;
|
|
340
340
|
type: string;
|
|
@@ -369,9 +369,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
369
369
|
success: z.ZodBoolean;
|
|
370
370
|
error: z.ZodString;
|
|
371
371
|
}, "strip", z.ZodTypeAny, {
|
|
372
|
-
operation: "convert-to-images";
|
|
373
372
|
success: boolean;
|
|
374
373
|
error: string;
|
|
374
|
+
operation: "convert-to-images";
|
|
375
375
|
images: {
|
|
376
376
|
format: string;
|
|
377
377
|
width: number;
|
|
@@ -382,9 +382,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
382
382
|
totalPages: number;
|
|
383
383
|
convertedPages: number;
|
|
384
384
|
}, {
|
|
385
|
-
operation: "convert-to-images";
|
|
386
385
|
success: boolean;
|
|
387
386
|
error: string;
|
|
387
|
+
operation: "convert-to-images";
|
|
388
388
|
images: {
|
|
389
389
|
format: string;
|
|
390
390
|
width: number;
|
|
@@ -450,9 +450,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
450
450
|
success: z.ZodBoolean;
|
|
451
451
|
error: z.ZodString;
|
|
452
452
|
}, "strip", z.ZodTypeAny, {
|
|
453
|
-
operation: "convert-to-markdown";
|
|
454
453
|
success: boolean;
|
|
455
454
|
error: string;
|
|
455
|
+
operation: "convert-to-markdown";
|
|
456
456
|
pages: {
|
|
457
457
|
pageNumber: number;
|
|
458
458
|
markdown: string;
|
|
@@ -469,9 +469,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
469
469
|
totalPages: number;
|
|
470
470
|
convertedPages: number;
|
|
471
471
|
}, {
|
|
472
|
-
operation: "convert-to-markdown";
|
|
473
472
|
success: boolean;
|
|
474
473
|
error: string;
|
|
474
|
+
operation: "convert-to-markdown";
|
|
475
475
|
pages: {
|
|
476
476
|
pageNumber: number;
|
|
477
477
|
markdown: string;
|
|
@@ -562,8 +562,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
562
562
|
pages: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
563
563
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
564
564
|
}, "strip", z.ZodTypeAny, {
|
|
565
|
-
operation: "convert-to-images";
|
|
566
565
|
format: "png" | "jpeg";
|
|
566
|
+
operation: "convert-to-images";
|
|
567
567
|
quality: number;
|
|
568
568
|
pdfData: string;
|
|
569
569
|
dpi: number;
|
|
@@ -651,9 +651,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
651
651
|
success: z.ZodBoolean;
|
|
652
652
|
error: z.ZodString;
|
|
653
653
|
}, "strip", z.ZodTypeAny, {
|
|
654
|
-
operation: "discover";
|
|
655
654
|
success: boolean;
|
|
656
655
|
error: string;
|
|
656
|
+
operation: "discover";
|
|
657
657
|
fields: {
|
|
658
658
|
type: string;
|
|
659
659
|
name: string;
|
|
@@ -673,9 +673,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
673
673
|
}[];
|
|
674
674
|
totalFields: number;
|
|
675
675
|
}, {
|
|
676
|
-
operation: "discover";
|
|
677
676
|
success: boolean;
|
|
678
677
|
error: string;
|
|
678
|
+
operation: "discover";
|
|
679
679
|
fields: {
|
|
680
680
|
type: string;
|
|
681
681
|
name: string;
|
|
@@ -714,9 +714,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
714
714
|
success: z.ZodBoolean;
|
|
715
715
|
error: z.ZodString;
|
|
716
716
|
}, "strip", z.ZodTypeAny, {
|
|
717
|
-
operation: "fill";
|
|
718
717
|
success: boolean;
|
|
719
718
|
error: string;
|
|
719
|
+
operation: "fill";
|
|
720
720
|
filledPdfData: string;
|
|
721
721
|
filledFields: number;
|
|
722
722
|
verification: Record<string, {
|
|
@@ -725,9 +725,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
725
725
|
page: number;
|
|
726
726
|
}>;
|
|
727
727
|
}, {
|
|
728
|
-
operation: "fill";
|
|
729
728
|
success: boolean;
|
|
730
729
|
error: string;
|
|
730
|
+
operation: "fill";
|
|
731
731
|
filledPdfData: string;
|
|
732
732
|
filledFields: number;
|
|
733
733
|
verification: Record<string, {
|
|
@@ -757,9 +757,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
757
757
|
success: z.ZodBoolean;
|
|
758
758
|
error: z.ZodString;
|
|
759
759
|
}, "strip", z.ZodTypeAny, {
|
|
760
|
-
operation: "analyze-checkboxes";
|
|
761
760
|
success: boolean;
|
|
762
761
|
error: string;
|
|
762
|
+
operation: "analyze-checkboxes";
|
|
763
763
|
checkboxes: Record<string, {
|
|
764
764
|
page: number;
|
|
765
765
|
current_value: string;
|
|
@@ -768,9 +768,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
768
768
|
}>;
|
|
769
769
|
totalCheckboxes: number;
|
|
770
770
|
}, {
|
|
771
|
-
operation: "analyze-checkboxes";
|
|
772
771
|
success: boolean;
|
|
773
772
|
error: string;
|
|
773
|
+
operation: "analyze-checkboxes";
|
|
774
774
|
checkboxes: Record<string, {
|
|
775
775
|
page: number;
|
|
776
776
|
current_value: string;
|
|
@@ -799,9 +799,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
799
799
|
success: z.ZodBoolean;
|
|
800
800
|
error: z.ZodString;
|
|
801
801
|
}, "strip", z.ZodTypeAny, {
|
|
802
|
-
operation: "validate";
|
|
803
802
|
success: boolean;
|
|
804
803
|
error: string;
|
|
804
|
+
operation: "validate";
|
|
805
805
|
fields: Record<string, {
|
|
806
806
|
value: string;
|
|
807
807
|
type: string;
|
|
@@ -811,9 +811,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
811
811
|
filledFields: number;
|
|
812
812
|
emptyFields: number;
|
|
813
813
|
}, {
|
|
814
|
-
operation: "validate";
|
|
815
814
|
success: boolean;
|
|
816
815
|
error: string;
|
|
816
|
+
operation: "validate";
|
|
817
817
|
fields: Record<string, {
|
|
818
818
|
value: string;
|
|
819
819
|
type: string;
|
|
@@ -848,9 +848,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
848
848
|
success: z.ZodBoolean;
|
|
849
849
|
error: z.ZodString;
|
|
850
850
|
}, "strip", z.ZodTypeAny, {
|
|
851
|
-
operation: "convert-to-images";
|
|
852
851
|
success: boolean;
|
|
853
852
|
error: string;
|
|
853
|
+
operation: "convert-to-images";
|
|
854
854
|
images: {
|
|
855
855
|
format: string;
|
|
856
856
|
width: number;
|
|
@@ -861,9 +861,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
861
861
|
totalPages: number;
|
|
862
862
|
convertedPages: number;
|
|
863
863
|
}, {
|
|
864
|
-
operation: "convert-to-images";
|
|
865
864
|
success: boolean;
|
|
866
865
|
error: string;
|
|
866
|
+
operation: "convert-to-images";
|
|
867
867
|
images: {
|
|
868
868
|
format: string;
|
|
869
869
|
width: number;
|
|
@@ -929,9 +929,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
929
929
|
success: z.ZodBoolean;
|
|
930
930
|
error: z.ZodString;
|
|
931
931
|
}, "strip", z.ZodTypeAny, {
|
|
932
|
-
operation: "convert-to-markdown";
|
|
933
932
|
success: boolean;
|
|
934
933
|
error: string;
|
|
934
|
+
operation: "convert-to-markdown";
|
|
935
935
|
pages: {
|
|
936
936
|
pageNumber: number;
|
|
937
937
|
markdown: string;
|
|
@@ -948,9 +948,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
948
948
|
totalPages: number;
|
|
949
949
|
convertedPages: number;
|
|
950
950
|
}, {
|
|
951
|
-
operation: "convert-to-markdown";
|
|
952
951
|
success: boolean;
|
|
953
952
|
error: string;
|
|
953
|
+
operation: "convert-to-markdown";
|
|
954
954
|
pages: {
|
|
955
955
|
pageNumber: number;
|
|
956
956
|
markdown: string;
|