@bubblelab/bubble-core 0.1.76 → 0.1.77
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 +54 -54
- package/dist/bubbles/service-bubble/ai-agent.d.ts +38 -38
- package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.js +1 -0
- package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
- package/dist/bubbles/service-bubble/airtable.d.ts +92 -92
- package/dist/bubbles/service-bubble/apify/apify.d.ts +18 -18
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +42 -42
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +2 -2
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +78 -78
- package/dist/bubbles/service-bubble/firecrawl.d.ts +318 -318
- package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
- package/dist/bubbles/service-bubble/github.d.ts +40 -40
- package/dist/bubbles/service-bubble/gmail.d.ts +208 -208
- package/dist/bubbles/service-bubble/google-drive.d.ts +32 -32
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.d.ts +8 -8
- package/dist/bubbles/service-bubble/notion/notion.d.ts +453 -453
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +4 -4
- package/dist/bubbles/service-bubble/slack/slack.d.ts +400 -400
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +13 -13
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +289 -289
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/tool-template.d.ts +8 -8
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +106 -106
- 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/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +26 -26
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +18 -18
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +118 -118
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts.map +1 -1
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.js +11 -1
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.js.map +1 -1
- package/dist/bubbles.json +4 -3
- package/package.json +2 -2
|
@@ -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,6 @@ declare const GenerateDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
213
213
|
success: z.ZodBoolean;
|
|
214
214
|
error: z.ZodString;
|
|
215
215
|
}, "strip", z.ZodTypeAny, {
|
|
216
|
-
error: string;
|
|
217
|
-
success: boolean;
|
|
218
216
|
metadata: {
|
|
219
217
|
processingTime: number;
|
|
220
218
|
totalDocuments: number;
|
|
@@ -222,6 +220,8 @@ declare const GenerateDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
222
220
|
totalColumns: number;
|
|
223
221
|
extractedFrom: string[];
|
|
224
222
|
};
|
|
223
|
+
error: string;
|
|
224
|
+
success: boolean;
|
|
225
225
|
rows: Record<string, string | number | boolean | null>[];
|
|
226
226
|
columns: {
|
|
227
227
|
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
@@ -234,13 +234,11 @@ 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
|
-
error: string;
|
|
243
|
-
success: boolean;
|
|
244
242
|
metadata: {
|
|
245
243
|
processingTime: number;
|
|
246
244
|
totalDocuments: number;
|
|
@@ -248,6 +246,8 @@ declare const GenerateDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
248
246
|
totalColumns: number;
|
|
249
247
|
extractedFrom: string[];
|
|
250
248
|
};
|
|
249
|
+
error: string;
|
|
250
|
+
success: boolean;
|
|
251
251
|
rows: Record<string, string | number | boolean | null>[];
|
|
252
252
|
columns: {
|
|
253
253
|
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
@@ -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,6 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
|
|
|
465
465
|
success: z.ZodBoolean;
|
|
466
466
|
error: z.ZodString;
|
|
467
467
|
}, "strip", z.ZodTypeAny, {
|
|
468
|
-
error: string;
|
|
469
|
-
success: boolean;
|
|
470
468
|
metadata: {
|
|
471
469
|
processingTime: number;
|
|
472
470
|
totalDocuments: number;
|
|
@@ -474,6 +472,8 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
|
|
|
474
472
|
totalColumns: number;
|
|
475
473
|
extractedFrom: string[];
|
|
476
474
|
};
|
|
475
|
+
error: string;
|
|
476
|
+
success: boolean;
|
|
477
477
|
rows: Record<string, string | number | boolean | null>[];
|
|
478
478
|
columns: {
|
|
479
479
|
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
@@ -486,13 +486,11 @@ 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
|
-
error: string;
|
|
495
|
-
success: boolean;
|
|
496
494
|
metadata: {
|
|
497
495
|
processingTime: number;
|
|
498
496
|
totalDocuments: number;
|
|
@@ -500,6 +498,8 @@ export declare class GenerateDocumentWorkflow extends WorkflowBubble<GenerateDoc
|
|
|
500
498
|
totalColumns: number;
|
|
501
499
|
extractedFrom: string[];
|
|
502
500
|
};
|
|
501
|
+
error: string;
|
|
502
|
+
success: boolean;
|
|
503
503
|
rows: Record<string, string | number | boolean | null>[];
|
|
504
504
|
columns: {
|
|
505
505
|
type: "string" | "number" | "boolean" | "integer" | "float" | "date";
|
|
@@ -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,6 @@ declare const ParseDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
269
269
|
success: z.ZodBoolean;
|
|
270
270
|
error: z.ZodString;
|
|
271
271
|
}, "strip", z.ZodTypeAny, {
|
|
272
|
-
error: string;
|
|
273
|
-
success: boolean;
|
|
274
272
|
metadata: {
|
|
275
273
|
totalPages: number;
|
|
276
274
|
processingTime: number;
|
|
@@ -279,6 +277,8 @@ declare const ParseDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
279
277
|
imageFormat: string;
|
|
280
278
|
imageDpi: number;
|
|
281
279
|
};
|
|
280
|
+
error: string;
|
|
281
|
+
success: boolean;
|
|
282
282
|
pages: {
|
|
283
283
|
pageNumber: number;
|
|
284
284
|
markdown: string;
|
|
@@ -305,8 +305,6 @@ declare const ParseDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
305
305
|
fileUrl?: string | undefined;
|
|
306
306
|
}[] | undefined;
|
|
307
307
|
}, {
|
|
308
|
-
error: string;
|
|
309
|
-
success: boolean;
|
|
310
308
|
metadata: {
|
|
311
309
|
totalPages: number;
|
|
312
310
|
processingTime: number;
|
|
@@ -315,6 +313,8 @@ declare const ParseDocumentWorkflowResultSchema: z.ZodObject<{
|
|
|
315
313
|
imageFormat: string;
|
|
316
314
|
imageDpi: number;
|
|
317
315
|
};
|
|
316
|
+
error: string;
|
|
317
|
+
success: boolean;
|
|
318
318
|
pages: {
|
|
319
319
|
pageNumber: number;
|
|
320
320
|
markdown: string;
|
|
@@ -597,8 +597,6 @@ export declare class ParseDocumentWorkflow extends WorkflowBubble<ParseDocumentW
|
|
|
597
597
|
success: z.ZodBoolean;
|
|
598
598
|
error: z.ZodString;
|
|
599
599
|
}, "strip", z.ZodTypeAny, {
|
|
600
|
-
error: string;
|
|
601
|
-
success: boolean;
|
|
602
600
|
metadata: {
|
|
603
601
|
totalPages: number;
|
|
604
602
|
processingTime: number;
|
|
@@ -607,6 +605,8 @@ export declare class ParseDocumentWorkflow extends WorkflowBubble<ParseDocumentW
|
|
|
607
605
|
imageFormat: string;
|
|
608
606
|
imageDpi: number;
|
|
609
607
|
};
|
|
608
|
+
error: string;
|
|
609
|
+
success: boolean;
|
|
610
610
|
pages: {
|
|
611
611
|
pageNumber: number;
|
|
612
612
|
markdown: string;
|
|
@@ -633,8 +633,6 @@ export declare class ParseDocumentWorkflow extends WorkflowBubble<ParseDocumentW
|
|
|
633
633
|
fileUrl?: string | undefined;
|
|
634
634
|
}[] | undefined;
|
|
635
635
|
}, {
|
|
636
|
-
error: string;
|
|
637
|
-
success: boolean;
|
|
638
636
|
metadata: {
|
|
639
637
|
totalPages: number;
|
|
640
638
|
processingTime: number;
|
|
@@ -643,6 +641,8 @@ export declare class ParseDocumentWorkflow extends WorkflowBubble<ParseDocumentW
|
|
|
643
641
|
imageFormat: string;
|
|
644
642
|
imageDpi: number;
|
|
645
643
|
};
|
|
644
|
+
error: string;
|
|
645
|
+
success: boolean;
|
|
646
646
|
pages: {
|
|
647
647
|
pageNumber: number;
|
|
648
648
|
markdown: string;
|
|
@@ -81,8 +81,8 @@ declare const PDFFormOperationsParamsSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
81
81
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
82
82
|
}, "strip", z.ZodTypeAny, {
|
|
83
83
|
format: "png" | "jpeg";
|
|
84
|
-
operation: "convert-to-images";
|
|
85
84
|
quality: number;
|
|
85
|
+
operation: "convert-to-images";
|
|
86
86
|
pdfData: string;
|
|
87
87
|
dpi: number;
|
|
88
88
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -138,10 +138,10 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
138
138
|
}, "strip", z.ZodTypeAny, {
|
|
139
139
|
type: string;
|
|
140
140
|
name: string;
|
|
141
|
+
label: string;
|
|
141
142
|
id: number;
|
|
142
143
|
width: number;
|
|
143
144
|
height: number;
|
|
144
|
-
label: string;
|
|
145
145
|
page: number;
|
|
146
146
|
choices: string[];
|
|
147
147
|
x: number;
|
|
@@ -154,10 +154,10 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
154
154
|
}, {
|
|
155
155
|
type: string;
|
|
156
156
|
name: string;
|
|
157
|
+
label: string;
|
|
157
158
|
id: number;
|
|
158
159
|
width: number;
|
|
159
160
|
height: number;
|
|
160
|
-
label: string;
|
|
161
161
|
page: number;
|
|
162
162
|
choices: string[];
|
|
163
163
|
x: number;
|
|
@@ -172,15 +172,13 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
172
172
|
success: z.ZodBoolean;
|
|
173
173
|
error: z.ZodString;
|
|
174
174
|
}, "strip", z.ZodTypeAny, {
|
|
175
|
-
error: string;
|
|
176
|
-
success: boolean;
|
|
177
175
|
fields: {
|
|
178
176
|
type: string;
|
|
179
177
|
name: string;
|
|
178
|
+
label: string;
|
|
180
179
|
id: number;
|
|
181
180
|
width: number;
|
|
182
181
|
height: number;
|
|
183
|
-
label: string;
|
|
184
182
|
page: number;
|
|
185
183
|
choices: string[];
|
|
186
184
|
x: number;
|
|
@@ -191,18 +189,18 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
191
189
|
field_flags: number;
|
|
192
190
|
potential_labels: string[];
|
|
193
191
|
}[];
|
|
192
|
+
error: string;
|
|
193
|
+
success: boolean;
|
|
194
194
|
operation: "discover";
|
|
195
195
|
totalFields: number;
|
|
196
196
|
}, {
|
|
197
|
-
error: string;
|
|
198
|
-
success: boolean;
|
|
199
197
|
fields: {
|
|
200
198
|
type: string;
|
|
201
199
|
name: string;
|
|
200
|
+
label: string;
|
|
202
201
|
id: number;
|
|
203
202
|
width: number;
|
|
204
203
|
height: number;
|
|
205
|
-
label: string;
|
|
206
204
|
page: number;
|
|
207
205
|
choices: string[];
|
|
208
206
|
x: number;
|
|
@@ -213,6 +211,8 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
213
211
|
field_flags: number;
|
|
214
212
|
potential_labels: string[];
|
|
215
213
|
}[];
|
|
214
|
+
error: string;
|
|
215
|
+
success: boolean;
|
|
216
216
|
operation: "discover";
|
|
217
217
|
totalFields: number;
|
|
218
218
|
}>, z.ZodObject<{
|
|
@@ -320,25 +320,25 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
320
320
|
success: z.ZodBoolean;
|
|
321
321
|
error: z.ZodString;
|
|
322
322
|
}, "strip", z.ZodTypeAny, {
|
|
323
|
-
error: string;
|
|
324
|
-
success: boolean;
|
|
325
323
|
fields: Record<string, {
|
|
326
324
|
value: string;
|
|
327
325
|
type: string;
|
|
328
326
|
page: number;
|
|
329
327
|
}>;
|
|
328
|
+
error: string;
|
|
329
|
+
success: boolean;
|
|
330
330
|
operation: "validate";
|
|
331
331
|
totalFields: number;
|
|
332
332
|
filledFields: number;
|
|
333
333
|
emptyFields: number;
|
|
334
334
|
}, {
|
|
335
|
-
error: string;
|
|
336
|
-
success: boolean;
|
|
337
335
|
fields: Record<string, {
|
|
338
336
|
value: string;
|
|
339
337
|
type: string;
|
|
340
338
|
page: number;
|
|
341
339
|
}>;
|
|
340
|
+
error: string;
|
|
341
|
+
success: boolean;
|
|
342
342
|
operation: "validate";
|
|
343
343
|
totalFields: number;
|
|
344
344
|
filledFields: number;
|
|
@@ -563,8 +563,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
563
563
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
564
564
|
}, "strip", z.ZodTypeAny, {
|
|
565
565
|
format: "png" | "jpeg";
|
|
566
|
-
operation: "convert-to-images";
|
|
567
566
|
quality: number;
|
|
567
|
+
operation: "convert-to-images";
|
|
568
568
|
pdfData: string;
|
|
569
569
|
dpi: number;
|
|
570
570
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -617,10 +617,10 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
617
617
|
}, "strip", z.ZodTypeAny, {
|
|
618
618
|
type: string;
|
|
619
619
|
name: string;
|
|
620
|
+
label: string;
|
|
620
621
|
id: number;
|
|
621
622
|
width: number;
|
|
622
623
|
height: number;
|
|
623
|
-
label: string;
|
|
624
624
|
page: number;
|
|
625
625
|
choices: string[];
|
|
626
626
|
x: number;
|
|
@@ -633,10 +633,10 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
633
633
|
}, {
|
|
634
634
|
type: string;
|
|
635
635
|
name: string;
|
|
636
|
+
label: string;
|
|
636
637
|
id: number;
|
|
637
638
|
width: number;
|
|
638
639
|
height: number;
|
|
639
|
-
label: string;
|
|
640
640
|
page: number;
|
|
641
641
|
choices: string[];
|
|
642
642
|
x: number;
|
|
@@ -651,15 +651,13 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
651
651
|
success: z.ZodBoolean;
|
|
652
652
|
error: z.ZodString;
|
|
653
653
|
}, "strip", z.ZodTypeAny, {
|
|
654
|
-
error: string;
|
|
655
|
-
success: boolean;
|
|
656
654
|
fields: {
|
|
657
655
|
type: string;
|
|
658
656
|
name: string;
|
|
657
|
+
label: string;
|
|
659
658
|
id: number;
|
|
660
659
|
width: number;
|
|
661
660
|
height: number;
|
|
662
|
-
label: string;
|
|
663
661
|
page: number;
|
|
664
662
|
choices: string[];
|
|
665
663
|
x: number;
|
|
@@ -670,18 +668,18 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
670
668
|
field_flags: number;
|
|
671
669
|
potential_labels: string[];
|
|
672
670
|
}[];
|
|
671
|
+
error: string;
|
|
672
|
+
success: boolean;
|
|
673
673
|
operation: "discover";
|
|
674
674
|
totalFields: number;
|
|
675
675
|
}, {
|
|
676
|
-
error: string;
|
|
677
|
-
success: boolean;
|
|
678
676
|
fields: {
|
|
679
677
|
type: string;
|
|
680
678
|
name: string;
|
|
679
|
+
label: string;
|
|
681
680
|
id: number;
|
|
682
681
|
width: number;
|
|
683
682
|
height: number;
|
|
684
|
-
label: string;
|
|
685
683
|
page: number;
|
|
686
684
|
choices: string[];
|
|
687
685
|
x: number;
|
|
@@ -692,6 +690,8 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
692
690
|
field_flags: number;
|
|
693
691
|
potential_labels: string[];
|
|
694
692
|
}[];
|
|
693
|
+
error: string;
|
|
694
|
+
success: boolean;
|
|
695
695
|
operation: "discover";
|
|
696
696
|
totalFields: number;
|
|
697
697
|
}>, z.ZodObject<{
|
|
@@ -799,25 +799,25 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
|
|
|
799
799
|
success: z.ZodBoolean;
|
|
800
800
|
error: z.ZodString;
|
|
801
801
|
}, "strip", z.ZodTypeAny, {
|
|
802
|
-
error: string;
|
|
803
|
-
success: boolean;
|
|
804
802
|
fields: Record<string, {
|
|
805
803
|
value: string;
|
|
806
804
|
type: string;
|
|
807
805
|
page: number;
|
|
808
806
|
}>;
|
|
807
|
+
error: string;
|
|
808
|
+
success: boolean;
|
|
809
809
|
operation: "validate";
|
|
810
810
|
totalFields: number;
|
|
811
811
|
filledFields: number;
|
|
812
812
|
emptyFields: number;
|
|
813
813
|
}, {
|
|
814
|
-
error: string;
|
|
815
|
-
success: boolean;
|
|
816
814
|
fields: Record<string, {
|
|
817
815
|
value: string;
|
|
818
816
|
type: string;
|
|
819
817
|
page: number;
|
|
820
818
|
}>;
|
|
819
|
+
error: string;
|
|
820
|
+
success: boolean;
|
|
821
821
|
operation: "validate";
|
|
822
822
|
totalFields: number;
|
|
823
823
|
filledFields: number;
|
|
@@ -34,12 +34,12 @@ declare const SlackDataAssistantParamsSchema: z.ZodObject<{
|
|
|
34
34
|
maxQueries: z.ZodDefault<z.ZodNumber>;
|
|
35
35
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
36
36
|
}, "strip", z.ZodTypeAny, {
|
|
37
|
-
name: string;
|
|
38
|
-
temperature: number;
|
|
39
37
|
verbosity: "1" | "2" | "3" | "4" | "5";
|
|
40
38
|
technicality: "1" | "2" | "3" | "4" | "5";
|
|
41
39
|
includeQuery: boolean;
|
|
42
40
|
includeExplanation: boolean;
|
|
41
|
+
temperature: number;
|
|
42
|
+
name: string;
|
|
43
43
|
dataSourceType: "postgresql" | "mysql" | "sqlite" | "mssql" | "mariadb";
|
|
44
44
|
ignoreSSLErrors: boolean;
|
|
45
45
|
aiModel: "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/anthropic/claude-sonnet-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";
|
|
@@ -59,13 +59,13 @@ declare const SlackDataAssistantParamsSchema: z.ZodObject<{
|
|
|
59
59
|
}, {
|
|
60
60
|
slackChannel: string;
|
|
61
61
|
userQuestion: string;
|
|
62
|
-
name?: string | undefined;
|
|
63
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
64
|
-
temperature?: number | undefined;
|
|
65
62
|
verbosity?: "1" | "2" | "3" | "4" | "5" | undefined;
|
|
66
63
|
technicality?: "1" | "2" | "3" | "4" | "5" | undefined;
|
|
67
64
|
includeQuery?: boolean | undefined;
|
|
68
65
|
includeExplanation?: boolean | undefined;
|
|
66
|
+
temperature?: number | undefined;
|
|
67
|
+
name?: string | undefined;
|
|
68
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
69
69
|
additionalContext?: string | undefined;
|
|
70
70
|
userName?: string | undefined;
|
|
71
71
|
dataSourceType?: "postgresql" | "mysql" | "sqlite" | "mssql" | "mariadb" | undefined;
|
|
@@ -96,20 +96,20 @@ declare const SlackDataAssistantResultSchema: z.ZodObject<{
|
|
|
96
96
|
wordCount: z.ZodOptional<z.ZodNumber>;
|
|
97
97
|
}, "strip", z.ZodTypeAny, {
|
|
98
98
|
executionTime: number;
|
|
99
|
-
rowCount?: number | undefined;
|
|
100
99
|
wordCount?: number | undefined;
|
|
100
|
+
rowCount?: number | undefined;
|
|
101
101
|
}, {
|
|
102
102
|
executionTime: number;
|
|
103
|
-
rowCount?: number | undefined;
|
|
104
103
|
wordCount?: number | undefined;
|
|
104
|
+
rowCount?: number | undefined;
|
|
105
105
|
}>>;
|
|
106
106
|
}, "strip", z.ZodTypeAny, {
|
|
107
107
|
error: string;
|
|
108
108
|
success: boolean;
|
|
109
109
|
metadata?: {
|
|
110
110
|
executionTime: number;
|
|
111
|
-
rowCount?: number | undefined;
|
|
112
111
|
wordCount?: number | undefined;
|
|
112
|
+
rowCount?: number | undefined;
|
|
113
113
|
} | undefined;
|
|
114
114
|
query?: string | undefined;
|
|
115
115
|
queryExplanation?: string | undefined;
|
|
@@ -123,8 +123,8 @@ declare const SlackDataAssistantResultSchema: z.ZodObject<{
|
|
|
123
123
|
success: boolean;
|
|
124
124
|
metadata?: {
|
|
125
125
|
executionTime: number;
|
|
126
|
-
rowCount?: number | undefined;
|
|
127
126
|
wordCount?: number | undefined;
|
|
127
|
+
rowCount?: number | undefined;
|
|
128
128
|
} | undefined;
|
|
129
129
|
query?: string | undefined;
|
|
130
130
|
queryExplanation?: string | undefined;
|
|
@@ -172,12 +172,12 @@ export declare class SlackDataAssistantWorkflow extends WorkflowBubble<SlackData
|
|
|
172
172
|
maxQueries: z.ZodDefault<z.ZodNumber>;
|
|
173
173
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
174
174
|
}, "strip", z.ZodTypeAny, {
|
|
175
|
-
name: string;
|
|
176
|
-
temperature: number;
|
|
177
175
|
verbosity: "1" | "2" | "3" | "4" | "5";
|
|
178
176
|
technicality: "1" | "2" | "3" | "4" | "5";
|
|
179
177
|
includeQuery: boolean;
|
|
180
178
|
includeExplanation: boolean;
|
|
179
|
+
temperature: number;
|
|
180
|
+
name: string;
|
|
181
181
|
dataSourceType: "postgresql" | "mysql" | "sqlite" | "mssql" | "mariadb";
|
|
182
182
|
ignoreSSLErrors: boolean;
|
|
183
183
|
aiModel: "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/anthropic/claude-sonnet-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";
|
|
@@ -197,13 +197,13 @@ export declare class SlackDataAssistantWorkflow extends WorkflowBubble<SlackData
|
|
|
197
197
|
}, {
|
|
198
198
|
slackChannel: string;
|
|
199
199
|
userQuestion: string;
|
|
200
|
-
name?: string | undefined;
|
|
201
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
202
|
-
temperature?: number | undefined;
|
|
203
200
|
verbosity?: "1" | "2" | "3" | "4" | "5" | undefined;
|
|
204
201
|
technicality?: "1" | "2" | "3" | "4" | "5" | undefined;
|
|
205
202
|
includeQuery?: boolean | undefined;
|
|
206
203
|
includeExplanation?: boolean | undefined;
|
|
204
|
+
temperature?: number | undefined;
|
|
205
|
+
name?: string | undefined;
|
|
206
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
207
207
|
additionalContext?: string | undefined;
|
|
208
208
|
userName?: string | undefined;
|
|
209
209
|
dataSourceType?: "postgresql" | "mysql" | "sqlite" | "mssql" | "mariadb" | undefined;
|
|
@@ -234,20 +234,20 @@ export declare class SlackDataAssistantWorkflow extends WorkflowBubble<SlackData
|
|
|
234
234
|
wordCount: z.ZodOptional<z.ZodNumber>;
|
|
235
235
|
}, "strip", z.ZodTypeAny, {
|
|
236
236
|
executionTime: number;
|
|
237
|
-
rowCount?: number | undefined;
|
|
238
237
|
wordCount?: number | undefined;
|
|
238
|
+
rowCount?: number | undefined;
|
|
239
239
|
}, {
|
|
240
240
|
executionTime: number;
|
|
241
|
-
rowCount?: number | undefined;
|
|
242
241
|
wordCount?: number | undefined;
|
|
242
|
+
rowCount?: number | undefined;
|
|
243
243
|
}>>;
|
|
244
244
|
}, "strip", z.ZodTypeAny, {
|
|
245
245
|
error: string;
|
|
246
246
|
success: boolean;
|
|
247
247
|
metadata?: {
|
|
248
248
|
executionTime: number;
|
|
249
|
-
rowCount?: number | undefined;
|
|
250
249
|
wordCount?: number | undefined;
|
|
250
|
+
rowCount?: number | undefined;
|
|
251
251
|
} | undefined;
|
|
252
252
|
query?: string | undefined;
|
|
253
253
|
queryExplanation?: string | undefined;
|
|
@@ -261,8 +261,8 @@ export declare class SlackDataAssistantWorkflow extends WorkflowBubble<SlackData
|
|
|
261
261
|
success: boolean;
|
|
262
262
|
metadata?: {
|
|
263
263
|
executionTime: number;
|
|
264
|
-
rowCount?: number | undefined;
|
|
265
264
|
wordCount?: number | undefined;
|
|
265
|
+
rowCount?: number | undefined;
|
|
266
266
|
} | undefined;
|
|
267
267
|
query?: string | undefined;
|
|
268
268
|
queryExplanation?: string | undefined;
|