@bubblelab/bubble-core 0.1.101 → 0.1.102
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 +80 -80
- package/dist/bubbles/service-bubble/agi-inc.d.ts +40 -40
- package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
- package/dist/bubbles/service-bubble/airtable.d.ts +84 -84
- package/dist/bubbles/service-bubble/apify/apify.d.ts +16 -16
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +20 -20
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +116 -116
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +12 -12
- package/dist/bubbles/service-bubble/firecrawl.d.ts +773 -773
- package/dist/bubbles/service-bubble/followupboss.d.ts +274 -274
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +122 -122
- package/dist/bubbles/service-bubble/github.d.ts +240 -240
- package/dist/bubbles/service-bubble/gmail.d.ts +84 -84
- package/dist/bubbles/service-bubble/google-calendar.d.ts +118 -118
- package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +38 -38
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1007 -1007
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/resend.d.ts +24 -24
- package/dist/bubbles/service-bubble/slack/slack.d.ts +638 -638
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +152 -82
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.js +53 -8
- package/dist/bubbles/service-bubble/stripe/stripe.js.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +69 -0
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js +35 -0
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/telegram.d.ts +1129 -1129
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +9 -9
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +86 -86
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +34 -34
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +210 -210
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +254 -254
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +44 -44
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +88 -88
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +48 -48
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +30 -30
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +84 -84
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +109 -2
- package/package.json +2 -2
|
@@ -17,10 +17,10 @@ declare const YouTubeVideoSchema: z.ZodObject<{
|
|
|
17
17
|
comments: z.ZodNullable<z.ZodNumber>;
|
|
18
18
|
thumbnail: z.ZodNullable<z.ZodString>;
|
|
19
19
|
}, "strip", z.ZodTypeAny, {
|
|
20
|
-
url: string | null;
|
|
21
20
|
description: string | null;
|
|
22
21
|
title: string | null;
|
|
23
22
|
date: string | null;
|
|
23
|
+
url: string | null;
|
|
24
24
|
duration: string | null;
|
|
25
25
|
id: string | null;
|
|
26
26
|
comments: number | null;
|
|
@@ -31,10 +31,10 @@ declare const YouTubeVideoSchema: z.ZodObject<{
|
|
|
31
31
|
channelUrl: string | null;
|
|
32
32
|
subscribers: number | null;
|
|
33
33
|
}, {
|
|
34
|
-
url: string | null;
|
|
35
34
|
description: string | null;
|
|
36
35
|
title: string | null;
|
|
37
36
|
date: string | null;
|
|
37
|
+
url: string | null;
|
|
38
38
|
duration: string | null;
|
|
39
39
|
id: string | null;
|
|
40
40
|
comments: number | null;
|
|
@@ -103,10 +103,10 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
103
103
|
comments: z.ZodNullable<z.ZodNumber>;
|
|
104
104
|
thumbnail: z.ZodNullable<z.ZodString>;
|
|
105
105
|
}, "strip", z.ZodTypeAny, {
|
|
106
|
-
url: string | null;
|
|
107
106
|
description: string | null;
|
|
108
107
|
title: string | null;
|
|
109
108
|
date: string | null;
|
|
109
|
+
url: string | null;
|
|
110
110
|
duration: string | null;
|
|
111
111
|
id: string | null;
|
|
112
112
|
comments: number | null;
|
|
@@ -117,10 +117,10 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
117
117
|
channelUrl: string | null;
|
|
118
118
|
subscribers: number | null;
|
|
119
119
|
}, {
|
|
120
|
-
url: string | null;
|
|
121
120
|
description: string | null;
|
|
122
121
|
title: string | null;
|
|
123
122
|
date: string | null;
|
|
123
|
+
url: string | null;
|
|
124
124
|
duration: string | null;
|
|
125
125
|
id: string | null;
|
|
126
126
|
comments: number | null;
|
|
@@ -154,10 +154,10 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
154
154
|
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
155
155
|
totalResults: number;
|
|
156
156
|
videos?: {
|
|
157
|
-
url: string | null;
|
|
158
157
|
description: string | null;
|
|
159
158
|
title: string | null;
|
|
160
159
|
date: string | null;
|
|
160
|
+
url: string | null;
|
|
161
161
|
duration: string | null;
|
|
162
162
|
id: string | null;
|
|
163
163
|
comments: number | null;
|
|
@@ -180,10 +180,10 @@ declare const YouTubeToolResultSchema: z.ZodObject<{
|
|
|
180
180
|
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
181
181
|
totalResults: number;
|
|
182
182
|
videos?: {
|
|
183
|
-
url: string | null;
|
|
184
183
|
description: string | null;
|
|
185
184
|
title: string | null;
|
|
186
185
|
date: string | null;
|
|
186
|
+
url: string | null;
|
|
187
187
|
duration: string | null;
|
|
188
188
|
id: string | null;
|
|
189
189
|
comments: number | null;
|
|
@@ -261,10 +261,10 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
261
261
|
comments: z.ZodNullable<z.ZodNumber>;
|
|
262
262
|
thumbnail: z.ZodNullable<z.ZodString>;
|
|
263
263
|
}, "strip", z.ZodTypeAny, {
|
|
264
|
-
url: string | null;
|
|
265
264
|
description: string | null;
|
|
266
265
|
title: string | null;
|
|
267
266
|
date: string | null;
|
|
267
|
+
url: string | null;
|
|
268
268
|
duration: string | null;
|
|
269
269
|
id: string | null;
|
|
270
270
|
comments: number | null;
|
|
@@ -275,10 +275,10 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
275
275
|
channelUrl: string | null;
|
|
276
276
|
subscribers: number | null;
|
|
277
277
|
}, {
|
|
278
|
-
url: string | null;
|
|
279
278
|
description: string | null;
|
|
280
279
|
title: string | null;
|
|
281
280
|
date: string | null;
|
|
281
|
+
url: string | null;
|
|
282
282
|
duration: string | null;
|
|
283
283
|
id: string | null;
|
|
284
284
|
comments: number | null;
|
|
@@ -312,10 +312,10 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
312
312
|
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
313
313
|
totalResults: number;
|
|
314
314
|
videos?: {
|
|
315
|
-
url: string | null;
|
|
316
315
|
description: string | null;
|
|
317
316
|
title: string | null;
|
|
318
317
|
date: string | null;
|
|
318
|
+
url: string | null;
|
|
319
319
|
duration: string | null;
|
|
320
320
|
id: string | null;
|
|
321
321
|
comments: number | null;
|
|
@@ -338,10 +338,10 @@ export declare class YouTubeTool extends ToolBubble<YouTubeToolParams, YouTubeTo
|
|
|
338
338
|
operation: "searchVideos" | "getTranscript" | "scrapeChannel";
|
|
339
339
|
totalResults: number;
|
|
340
340
|
videos?: {
|
|
341
|
-
url: string | null;
|
|
342
341
|
description: string | null;
|
|
343
342
|
title: string | null;
|
|
344
343
|
date: string | null;
|
|
344
|
+
url: string | null;
|
|
345
345
|
duration: string | null;
|
|
346
346
|
id: string | null;
|
|
347
347
|
comments: number | null;
|
|
@@ -215,6 +215,7 @@ declare const GenerateDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
215
215
|
}, "strip", z.ZodTypeAny, {
|
|
216
216
|
success: boolean;
|
|
217
217
|
error: string;
|
|
218
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
218
219
|
metadata: {
|
|
219
220
|
processingTime: number;
|
|
220
221
|
totalDocuments: number;
|
|
@@ -222,17 +223,16 @@ declare const GenerateDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
222
223
|
totalColumns: number;
|
|
223
224
|
extractedFrom: string[];
|
|
224
225
|
};
|
|
225
|
-
rows: Record<string, string | number | boolean | null>[];
|
|
226
|
-
columns: {
|
|
227
|
-
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
228
|
-
description: string;
|
|
229
|
-
name: string;
|
|
230
|
-
}[];
|
|
231
226
|
aiAnalysis: {
|
|
232
227
|
model: string;
|
|
233
228
|
iterations: number;
|
|
234
229
|
processingTime?: number | undefined;
|
|
235
230
|
};
|
|
231
|
+
columns: {
|
|
232
|
+
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
233
|
+
description: string;
|
|
234
|
+
name: string;
|
|
235
|
+
}[];
|
|
236
236
|
generatedFiles: {
|
|
237
237
|
html?: string | undefined;
|
|
238
238
|
json?: string | undefined;
|
|
@@ -241,6 +241,7 @@ declare const GenerateDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
241
241
|
}, {
|
|
242
242
|
success: boolean;
|
|
243
243
|
error: string;
|
|
244
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
244
245
|
metadata: {
|
|
245
246
|
processingTime: number;
|
|
246
247
|
totalDocuments: number;
|
|
@@ -248,17 +249,16 @@ declare const GenerateDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
248
249
|
totalColumns: number;
|
|
249
250
|
extractedFrom: string[];
|
|
250
251
|
};
|
|
251
|
-
rows: Record<string, string | number | boolean | null>[];
|
|
252
|
-
columns: {
|
|
253
|
-
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
254
|
-
description: string;
|
|
255
|
-
name: string;
|
|
256
|
-
}[];
|
|
257
252
|
aiAnalysis: {
|
|
258
253
|
model: string;
|
|
259
254
|
iterations: number;
|
|
260
255
|
processingTime?: number | undefined;
|
|
261
256
|
};
|
|
257
|
+
columns: {
|
|
258
|
+
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
259
|
+
description: string;
|
|
260
|
+
name: string;
|
|
261
|
+
}[];
|
|
262
262
|
generatedFiles: {
|
|
263
263
|
html?: string | undefined;
|
|
264
264
|
json?: string | undefined;
|
|
@@ -467,6 +467,7 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
|
|
|
467
467
|
}, "strip", z.ZodTypeAny, {
|
|
468
468
|
success: boolean;
|
|
469
469
|
error: string;
|
|
470
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
470
471
|
metadata: {
|
|
471
472
|
processingTime: number;
|
|
472
473
|
totalDocuments: number;
|
|
@@ -474,17 +475,16 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
|
|
|
474
475
|
totalColumns: number;
|
|
475
476
|
extractedFrom: string[];
|
|
476
477
|
};
|
|
477
|
-
rows: Record<string, string | number | boolean | null>[];
|
|
478
|
-
columns: {
|
|
479
|
-
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
480
|
-
description: string;
|
|
481
|
-
name: string;
|
|
482
|
-
}[];
|
|
483
478
|
aiAnalysis: {
|
|
484
479
|
model: string;
|
|
485
480
|
iterations: number;
|
|
486
481
|
processingTime?: number | undefined;
|
|
487
482
|
};
|
|
483
|
+
columns: {
|
|
484
|
+
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
485
|
+
description: string;
|
|
486
|
+
name: string;
|
|
487
|
+
}[];
|
|
488
488
|
generatedFiles: {
|
|
489
489
|
html?: string | undefined;
|
|
490
490
|
json?: string | undefined;
|
|
@@ -493,6 +493,7 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
|
|
|
493
493
|
}, {
|
|
494
494
|
success: boolean;
|
|
495
495
|
error: string;
|
|
496
|
+
rows: Record<string, string | number | boolean | null>[];
|
|
496
497
|
metadata: {
|
|
497
498
|
processingTime: number;
|
|
498
499
|
totalDocuments: number;
|
|
@@ -500,17 +501,16 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
|
|
|
500
501
|
totalColumns: number;
|
|
501
502
|
extractedFrom: string[];
|
|
502
503
|
};
|
|
503
|
-
rows: Record<string, string | number | boolean | null>[];
|
|
504
|
-
columns: {
|
|
505
|
-
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
506
|
-
description: string;
|
|
507
|
-
name: string;
|
|
508
|
-
}[];
|
|
509
504
|
aiAnalysis: {
|
|
510
505
|
model: string;
|
|
511
506
|
iterations: number;
|
|
512
507
|
processingTime?: number | undefined;
|
|
513
508
|
};
|
|
509
|
+
columns: {
|
|
510
|
+
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
511
|
+
description: string;
|
|
512
|
+
name: string;
|
|
513
|
+
}[];
|
|
514
514
|
generatedFiles: {
|
|
515
515
|
html?: string | undefined;
|
|
516
516
|
json?: string | undefined;
|
|
@@ -52,8 +52,8 @@ declare const ParseDocumentWorkflowParamsSchema: z.ZodObject<{
|
|
|
52
52
|
}, {
|
|
53
53
|
format?: "png" | "jpeg" | undefined;
|
|
54
54
|
quality?: number | undefined;
|
|
55
|
-
pages?: number[] | undefined;
|
|
56
55
|
dpi?: number | undefined;
|
|
56
|
+
pages?: number[] | undefined;
|
|
57
57
|
}>>;
|
|
58
58
|
aiOptions: z.ZodDefault<z.ZodObject<{
|
|
59
59
|
model: z.ZodDefault<z.ZodEnum<["openai/gpt-5", "openai/gpt-5-mini", "openai/gpt-5.1", "openai/gpt-5.2", "google/gemini-2.5-pro", "google/gemini-2.5-flash", "google/gemini-2.5-flash-lite", "google/gemini-2.5-flash-image-preview", "google/gemini-3-pro-preview", "google/gemini-3-pro-image-preview", "google/gemini-3-flash-preview", "anthropic/claude-sonnet-4-5", "anthropic/claude-opus-4-5", "anthropic/claude-haiku-4-5", "openrouter/x-ai/grok-code-fast-1", "openrouter/z-ai/glm-4.6", "openrouter/z-ai/glm-4.7", "openrouter/anthropic/claude-sonnet-4.5", "openrouter/anthropic/claude-opus-4.5", "openrouter/google/gemini-3-pro-preview", "openrouter/morph/morph-v3-large", "openrouter/openai/gpt-oss-120b", "openrouter/openai/o3-deep-research", "openrouter/openai/o4-mini-deep-research"]>>;
|
|
@@ -147,8 +147,8 @@ declare const ParseDocumentWorkflowParamsSchema: z.ZodObject<{
|
|
|
147
147
|
imageOptions?: {
|
|
148
148
|
format?: "png" | "jpeg" | undefined;
|
|
149
149
|
quality?: number | undefined;
|
|
150
|
-
pages?: number[] | undefined;
|
|
151
150
|
dpi?: number | undefined;
|
|
151
|
+
pages?: number[] | undefined;
|
|
152
152
|
} | undefined;
|
|
153
153
|
aiOptions?: {
|
|
154
154
|
model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/z-ai/glm-4.7" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/anthropic/claude-opus-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/openai/gpt-oss-120b" | "openrouter/openai/o3-deep-research" | "openrouter/openai/o4-mini-deep-research" | undefined;
|
|
@@ -383,8 +383,8 @@ export declare class ParseDocumentWorkflow extends WorkflowBubble<ParseDocumentW
|
|
|
383
383
|
}, {
|
|
384
384
|
format?: "png" | "jpeg" | undefined;
|
|
385
385
|
quality?: number | undefined;
|
|
386
|
-
pages?: number[] | undefined;
|
|
387
386
|
dpi?: number | undefined;
|
|
387
|
+
pages?: number[] | undefined;
|
|
388
388
|
}>>;
|
|
389
389
|
aiOptions: z.ZodDefault<z.ZodObject<{
|
|
390
390
|
model: z.ZodDefault<z.ZodEnum<["openai/gpt-5", "openai/gpt-5-mini", "openai/gpt-5.1", "openai/gpt-5.2", "google/gemini-2.5-pro", "google/gemini-2.5-flash", "google/gemini-2.5-flash-lite", "google/gemini-2.5-flash-image-preview", "google/gemini-3-pro-preview", "google/gemini-3-pro-image-preview", "google/gemini-3-flash-preview", "anthropic/claude-sonnet-4-5", "anthropic/claude-opus-4-5", "anthropic/claude-haiku-4-5", "openrouter/x-ai/grok-code-fast-1", "openrouter/z-ai/glm-4.6", "openrouter/z-ai/glm-4.7", "openrouter/anthropic/claude-sonnet-4.5", "openrouter/anthropic/claude-opus-4.5", "openrouter/google/gemini-3-pro-preview", "openrouter/morph/morph-v3-large", "openrouter/openai/gpt-oss-120b", "openrouter/openai/o3-deep-research", "openrouter/openai/o4-mini-deep-research"]>>;
|
|
@@ -478,8 +478,8 @@ export declare class ParseDocumentWorkflow extends WorkflowBubble<ParseDocumentW
|
|
|
478
478
|
imageOptions?: {
|
|
479
479
|
format?: "png" | "jpeg" | undefined;
|
|
480
480
|
quality?: number | undefined;
|
|
481
|
-
pages?: number[] | undefined;
|
|
482
481
|
dpi?: number | undefined;
|
|
482
|
+
pages?: number[] | undefined;
|
|
483
483
|
} | undefined;
|
|
484
484
|
aiOptions?: {
|
|
485
485
|
model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/z-ai/glm-4.7" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/anthropic/claude-opus-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/openai/gpt-oss-120b" | "openrouter/openai/o3-deep-research" | "openrouter/openai/o4-mini-deep-research" | undefined;
|
|
@@ -82,8 +82,8 @@ declare const PDFFormOperationsParamsSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
82
82
|
}, "strip", z.ZodTypeAny, {
|
|
83
83
|
format: "png" | "jpeg";
|
|
84
84
|
operation: "convert-to-images";
|
|
85
|
-
quality: number;
|
|
86
85
|
pdfData: string;
|
|
86
|
+
quality: number;
|
|
87
87
|
dpi: number;
|
|
88
88
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
89
89
|
pages?: number[] | undefined;
|
|
@@ -93,8 +93,8 @@ declare const PDFFormOperationsParamsSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
93
93
|
format?: "png" | "jpeg" | undefined;
|
|
94
94
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
95
95
|
quality?: number | undefined;
|
|
96
|
-
pages?: number[] | undefined;
|
|
97
96
|
dpi?: number | undefined;
|
|
97
|
+
pages?: number[] | undefined;
|
|
98
98
|
}>, z.ZodObject<{
|
|
99
99
|
operation: z.ZodLiteral<"convert-to-markdown">;
|
|
100
100
|
pdfData: z.ZodString;
|
|
@@ -139,32 +139,32 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
139
139
|
type: string;
|
|
140
140
|
name: string;
|
|
141
141
|
id: number;
|
|
142
|
+
label: string;
|
|
142
143
|
width: number;
|
|
143
144
|
height: number;
|
|
144
145
|
page: number;
|
|
145
|
-
label: string;
|
|
146
|
-
choices: string[];
|
|
147
|
-
x: number;
|
|
148
|
-
y: number;
|
|
149
146
|
field_type: string;
|
|
150
147
|
current_value: string;
|
|
148
|
+
choices: string[];
|
|
151
149
|
rect: [number, number, number, number];
|
|
150
|
+
x: number;
|
|
151
|
+
y: number;
|
|
152
152
|
field_flags: number;
|
|
153
153
|
potential_labels: string[];
|
|
154
154
|
}, {
|
|
155
155
|
type: string;
|
|
156
156
|
name: string;
|
|
157
157
|
id: number;
|
|
158
|
+
label: string;
|
|
158
159
|
width: number;
|
|
159
160
|
height: number;
|
|
160
161
|
page: number;
|
|
161
|
-
label: string;
|
|
162
|
-
choices: string[];
|
|
163
|
-
x: number;
|
|
164
|
-
y: number;
|
|
165
162
|
field_type: string;
|
|
166
163
|
current_value: string;
|
|
164
|
+
choices: string[];
|
|
167
165
|
rect: [number, number, number, number];
|
|
166
|
+
x: number;
|
|
167
|
+
y: number;
|
|
168
168
|
field_flags: number;
|
|
169
169
|
potential_labels: string[];
|
|
170
170
|
}>, "many">;
|
|
@@ -178,16 +178,16 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
178
178
|
type: string;
|
|
179
179
|
name: string;
|
|
180
180
|
id: number;
|
|
181
|
+
label: string;
|
|
181
182
|
width: number;
|
|
182
183
|
height: number;
|
|
183
184
|
page: number;
|
|
184
|
-
label: string;
|
|
185
|
-
choices: string[];
|
|
186
|
-
x: number;
|
|
187
|
-
y: number;
|
|
188
185
|
field_type: string;
|
|
189
186
|
current_value: string;
|
|
187
|
+
choices: string[];
|
|
190
188
|
rect: [number, number, number, number];
|
|
189
|
+
x: number;
|
|
190
|
+
y: number;
|
|
191
191
|
field_flags: number;
|
|
192
192
|
potential_labels: string[];
|
|
193
193
|
}[];
|
|
@@ -200,16 +200,16 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
200
200
|
type: string;
|
|
201
201
|
name: string;
|
|
202
202
|
id: number;
|
|
203
|
+
label: string;
|
|
203
204
|
width: number;
|
|
204
205
|
height: number;
|
|
205
206
|
page: number;
|
|
206
|
-
label: string;
|
|
207
|
-
choices: string[];
|
|
208
|
-
x: number;
|
|
209
|
-
y: number;
|
|
210
207
|
field_type: string;
|
|
211
208
|
current_value: string;
|
|
209
|
+
choices: string[];
|
|
212
210
|
rect: [number, number, number, number];
|
|
211
|
+
x: number;
|
|
212
|
+
y: number;
|
|
213
213
|
field_flags: number;
|
|
214
214
|
potential_labels: string[];
|
|
215
215
|
}[];
|
|
@@ -353,15 +353,15 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
353
353
|
height: z.ZodNumber;
|
|
354
354
|
}, "strip", z.ZodTypeAny, {
|
|
355
355
|
format: string;
|
|
356
|
+
pageNumber: number;
|
|
356
357
|
width: number;
|
|
357
358
|
height: number;
|
|
358
|
-
pageNumber: number;
|
|
359
359
|
imageData: string;
|
|
360
360
|
}, {
|
|
361
361
|
format: string;
|
|
362
|
+
pageNumber: number;
|
|
362
363
|
width: number;
|
|
363
364
|
height: number;
|
|
364
|
-
pageNumber: number;
|
|
365
365
|
imageData: string;
|
|
366
366
|
}>, "many">;
|
|
367
367
|
totalPages: z.ZodNumber;
|
|
@@ -373,9 +373,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
373
373
|
error: string;
|
|
374
374
|
images: {
|
|
375
375
|
format: string;
|
|
376
|
+
pageNumber: number;
|
|
376
377
|
width: number;
|
|
377
378
|
height: number;
|
|
378
|
-
pageNumber: number;
|
|
379
379
|
imageData: string;
|
|
380
380
|
}[];
|
|
381
381
|
operation: "convert-to-images";
|
|
@@ -386,9 +386,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
386
386
|
error: string;
|
|
387
387
|
images: {
|
|
388
388
|
format: string;
|
|
389
|
+
pageNumber: number;
|
|
389
390
|
width: number;
|
|
390
391
|
height: number;
|
|
391
|
-
pageNumber: number;
|
|
392
392
|
imageData: string;
|
|
393
393
|
}[];
|
|
394
394
|
operation: "convert-to-images";
|
|
@@ -465,9 +465,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
465
465
|
y: number;
|
|
466
466
|
}[] | undefined;
|
|
467
467
|
}[];
|
|
468
|
-
markdown: string;
|
|
469
468
|
totalPages: number;
|
|
470
469
|
convertedPages: number;
|
|
470
|
+
markdown: string;
|
|
471
471
|
}, {
|
|
472
472
|
success: boolean;
|
|
473
473
|
error: string;
|
|
@@ -484,9 +484,9 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
484
484
|
y: number;
|
|
485
485
|
}[] | undefined;
|
|
486
486
|
}[];
|
|
487
|
-
markdown: string;
|
|
488
487
|
totalPages: number;
|
|
489
488
|
convertedPages: number;
|
|
489
|
+
markdown: string;
|
|
490
490
|
}>]>;
|
|
491
491
|
type PDFFormOperationsParams = z.output<typeof PDFFormOperationsParamsSchema>;
|
|
492
492
|
type PDFFormOperationsResult = z.output<typeof PDFFormOperationsResultSchema>;
|
|
@@ -564,8 +564,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
564
564
|
}, "strip", z.ZodTypeAny, {
|
|
565
565
|
format: "png" | "jpeg";
|
|
566
566
|
operation: "convert-to-images";
|
|
567
|
-
quality: number;
|
|
568
567
|
pdfData: string;
|
|
568
|
+
quality: number;
|
|
569
569
|
dpi: number;
|
|
570
570
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
571
571
|
pages?: number[] | undefined;
|
|
@@ -575,8 +575,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
575
575
|
format?: "png" | "jpeg" | undefined;
|
|
576
576
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
577
577
|
quality?: number | undefined;
|
|
578
|
-
pages?: number[] | undefined;
|
|
579
578
|
dpi?: number | undefined;
|
|
579
|
+
pages?: number[] | undefined;
|
|
580
580
|
}>, z.ZodObject<{
|
|
581
581
|
operation: z.ZodLiteral<"convert-to-markdown">;
|
|
582
582
|
pdfData: z.ZodString;
|
|
@@ -618,32 +618,32 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
618
618
|
type: string;
|
|
619
619
|
name: string;
|
|
620
620
|
id: number;
|
|
621
|
+
label: string;
|
|
621
622
|
width: number;
|
|
622
623
|
height: number;
|
|
623
624
|
page: number;
|
|
624
|
-
label: string;
|
|
625
|
-
choices: string[];
|
|
626
|
-
x: number;
|
|
627
|
-
y: number;
|
|
628
625
|
field_type: string;
|
|
629
626
|
current_value: string;
|
|
627
|
+
choices: string[];
|
|
630
628
|
rect: [number, number, number, number];
|
|
629
|
+
x: number;
|
|
630
|
+
y: number;
|
|
631
631
|
field_flags: number;
|
|
632
632
|
potential_labels: string[];
|
|
633
633
|
}, {
|
|
634
634
|
type: string;
|
|
635
635
|
name: string;
|
|
636
636
|
id: number;
|
|
637
|
+
label: string;
|
|
637
638
|
width: number;
|
|
638
639
|
height: number;
|
|
639
640
|
page: number;
|
|
640
|
-
label: string;
|
|
641
|
-
choices: string[];
|
|
642
|
-
x: number;
|
|
643
|
-
y: number;
|
|
644
641
|
field_type: string;
|
|
645
642
|
current_value: string;
|
|
643
|
+
choices: string[];
|
|
646
644
|
rect: [number, number, number, number];
|
|
645
|
+
x: number;
|
|
646
|
+
y: number;
|
|
647
647
|
field_flags: number;
|
|
648
648
|
potential_labels: string[];
|
|
649
649
|
}>, "many">;
|
|
@@ -657,16 +657,16 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
657
657
|
type: string;
|
|
658
658
|
name: string;
|
|
659
659
|
id: number;
|
|
660
|
+
label: string;
|
|
660
661
|
width: number;
|
|
661
662
|
height: number;
|
|
662
663
|
page: number;
|
|
663
|
-
label: string;
|
|
664
|
-
choices: string[];
|
|
665
|
-
x: number;
|
|
666
|
-
y: number;
|
|
667
664
|
field_type: string;
|
|
668
665
|
current_value: string;
|
|
666
|
+
choices: string[];
|
|
669
667
|
rect: [number, number, number, number];
|
|
668
|
+
x: number;
|
|
669
|
+
y: number;
|
|
670
670
|
field_flags: number;
|
|
671
671
|
potential_labels: string[];
|
|
672
672
|
}[];
|
|
@@ -679,16 +679,16 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
679
679
|
type: string;
|
|
680
680
|
name: string;
|
|
681
681
|
id: number;
|
|
682
|
+
label: string;
|
|
682
683
|
width: number;
|
|
683
684
|
height: number;
|
|
684
685
|
page: number;
|
|
685
|
-
label: string;
|
|
686
|
-
choices: string[];
|
|
687
|
-
x: number;
|
|
688
|
-
y: number;
|
|
689
686
|
field_type: string;
|
|
690
687
|
current_value: string;
|
|
688
|
+
choices: string[];
|
|
691
689
|
rect: [number, number, number, number];
|
|
690
|
+
x: number;
|
|
691
|
+
y: number;
|
|
692
692
|
field_flags: number;
|
|
693
693
|
potential_labels: string[];
|
|
694
694
|
}[];
|
|
@@ -832,15 +832,15 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
832
832
|
height: z.ZodNumber;
|
|
833
833
|
}, "strip", z.ZodTypeAny, {
|
|
834
834
|
format: string;
|
|
835
|
+
pageNumber: number;
|
|
835
836
|
width: number;
|
|
836
837
|
height: number;
|
|
837
|
-
pageNumber: number;
|
|
838
838
|
imageData: string;
|
|
839
839
|
}, {
|
|
840
840
|
format: string;
|
|
841
|
+
pageNumber: number;
|
|
841
842
|
width: number;
|
|
842
843
|
height: number;
|
|
843
|
-
pageNumber: number;
|
|
844
844
|
imageData: string;
|
|
845
845
|
}>, "many">;
|
|
846
846
|
totalPages: z.ZodNumber;
|
|
@@ -852,9 +852,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
852
852
|
error: string;
|
|
853
853
|
images: {
|
|
854
854
|
format: string;
|
|
855
|
+
pageNumber: number;
|
|
855
856
|
width: number;
|
|
856
857
|
height: number;
|
|
857
|
-
pageNumber: number;
|
|
858
858
|
imageData: string;
|
|
859
859
|
}[];
|
|
860
860
|
operation: "convert-to-images";
|
|
@@ -865,9 +865,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
865
865
|
error: string;
|
|
866
866
|
images: {
|
|
867
867
|
format: string;
|
|
868
|
+
pageNumber: number;
|
|
868
869
|
width: number;
|
|
869
870
|
height: number;
|
|
870
|
-
pageNumber: number;
|
|
871
871
|
imageData: string;
|
|
872
872
|
}[];
|
|
873
873
|
operation: "convert-to-images";
|
|
@@ -944,9 +944,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
944
944
|
y: number;
|
|
945
945
|
}[] | undefined;
|
|
946
946
|
}[];
|
|
947
|
-
markdown: string;
|
|
948
947
|
totalPages: number;
|
|
949
948
|
convertedPages: number;
|
|
949
|
+
markdown: string;
|
|
950
950
|
}, {
|
|
951
951
|
success: boolean;
|
|
952
952
|
error: string;
|
|
@@ -963,9 +963,9 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
963
963
|
y: number;
|
|
964
964
|
}[] | undefined;
|
|
965
965
|
}[];
|
|
966
|
-
markdown: string;
|
|
967
966
|
totalPages: number;
|
|
968
967
|
convertedPages: number;
|
|
968
|
+
markdown: string;
|
|
969
969
|
}>]>;
|
|
970
970
|
static readonly shortDescription = "PDF form field operations (discover, fill, analyze, validate, convert-to-images, convert-to-markdown)";
|
|
971
971
|
static readonly longDescription = "\n Unified PDF form operations workflow providing comprehensive form field manipulation.\n \n Operations:\n - discover: Extract all form fields with coordinates and metadata\n - fill: Fill form fields with provided values and return filled PDF\n - analyze-checkboxes: Analyze checkbox fields and their possible values\n - validate: Verify form field values and completion status\n - convert-to-images: Convert PDF pages to PNG/JPEG images with customizable quality and DPI\n - convert-to-markdown: Convert PDF to markdown format using AI analysis of visual content\n \n Uses PyMuPDF (fitz) library via Python scripts for all PDF operations.\n \n Input: Base64 encoded PDF data\n Output: Operation-specific results with success/error handling\n ";
|