@bubblelab/bubble-core 0.1.65 → 0.1.66
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 +76 -76
- package/dist/bubbles/service-bubble/ai-agent.d.ts +113 -104
- package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.js +129 -0
- package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
- package/dist/bubbles/service-bubble/airtable.d.ts +100 -100
- package/dist/bubbles/service-bubble/apify/apify.d.ts +10 -10
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +95 -74
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.js +96 -0
- package/dist/bubbles/service-bubble/ashby/ashby.js.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +108 -102
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.schema.js +10 -1
- package/dist/bubbles/service-bubble/ashby/ashby.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +2 -2
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +2 -2
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +8 -8
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/firecrawl.d.ts +272 -272
- 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 +104 -104
- package/dist/bubbles/service-bubble/google-calendar.d.ts +80 -80
- package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
- 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/notion/notion.d.ts +68 -68
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +32 -32
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +4 -4
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +4 -4
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +52 -52
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +46 -46
- 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 +10 -10
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +36 -36
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +10 -10
- package/dist/bubbles.json +50 -21
- package/package.json +2 -2
|
@@ -15,15 +15,15 @@ declare const GoogleDriveParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
15
15
|
content: string;
|
|
16
16
|
operation: "upload_file";
|
|
17
17
|
convert_to_google_docs: boolean;
|
|
18
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
19
18
|
mimeType?: string | undefined;
|
|
19
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
20
20
|
parent_folder_id?: string | undefined;
|
|
21
21
|
}, {
|
|
22
22
|
name: string;
|
|
23
23
|
content: string;
|
|
24
24
|
operation: "upload_file";
|
|
25
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
26
25
|
mimeType?: string | undefined;
|
|
26
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
27
27
|
parent_folder_id?: string | undefined;
|
|
28
28
|
convert_to_google_docs?: boolean | undefined;
|
|
29
29
|
}>, z.ZodObject<{
|
|
@@ -208,9 +208,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
208
208
|
emailAddress?: string | undefined;
|
|
209
209
|
}>, "many">>;
|
|
210
210
|
}, "strip", z.ZodTypeAny, {
|
|
211
|
+
mimeType: string;
|
|
211
212
|
name: string;
|
|
212
213
|
id: string;
|
|
213
|
-
mimeType: string;
|
|
214
214
|
size?: string | undefined;
|
|
215
215
|
createdTime?: string | undefined;
|
|
216
216
|
modifiedTime?: string | undefined;
|
|
@@ -223,9 +223,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
223
223
|
emailAddress?: string | undefined;
|
|
224
224
|
}[] | undefined;
|
|
225
225
|
}, {
|
|
226
|
+
mimeType: string;
|
|
226
227
|
name: string;
|
|
227
228
|
id: string;
|
|
228
|
-
mimeType: string;
|
|
229
229
|
size?: string | undefined;
|
|
230
230
|
createdTime?: string | undefined;
|
|
231
231
|
modifiedTime?: string | undefined;
|
|
@@ -244,9 +244,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
244
244
|
success: boolean;
|
|
245
245
|
operation: "upload_file";
|
|
246
246
|
file?: {
|
|
247
|
+
mimeType: string;
|
|
247
248
|
name: string;
|
|
248
249
|
id: string;
|
|
249
|
-
mimeType: string;
|
|
250
250
|
size?: string | undefined;
|
|
251
251
|
createdTime?: string | undefined;
|
|
252
252
|
modifiedTime?: string | undefined;
|
|
@@ -264,9 +264,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
264
264
|
success: boolean;
|
|
265
265
|
operation: "upload_file";
|
|
266
266
|
file?: {
|
|
267
|
+
mimeType: string;
|
|
267
268
|
name: string;
|
|
268
269
|
id: string;
|
|
269
|
-
mimeType: string;
|
|
270
270
|
size?: string | undefined;
|
|
271
271
|
createdTime?: string | undefined;
|
|
272
272
|
modifiedTime?: string | undefined;
|
|
@@ -290,15 +290,15 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
290
290
|
error: string;
|
|
291
291
|
success: boolean;
|
|
292
292
|
operation: "download_file";
|
|
293
|
-
content?: string | undefined;
|
|
294
293
|
mimeType?: string | undefined;
|
|
294
|
+
content?: string | undefined;
|
|
295
295
|
filename?: string | undefined;
|
|
296
296
|
}, {
|
|
297
297
|
error: string;
|
|
298
298
|
success: boolean;
|
|
299
299
|
operation: "download_file";
|
|
300
|
-
content?: string | undefined;
|
|
301
300
|
mimeType?: string | undefined;
|
|
301
|
+
content?: string | undefined;
|
|
302
302
|
filename?: string | undefined;
|
|
303
303
|
}>, z.ZodObject<{
|
|
304
304
|
operation: z.ZodLiteral<"list_files">;
|
|
@@ -325,9 +325,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
325
325
|
emailAddress?: string | undefined;
|
|
326
326
|
}>, "many">>;
|
|
327
327
|
}, "strip", z.ZodTypeAny, {
|
|
328
|
+
mimeType: string;
|
|
328
329
|
name: string;
|
|
329
330
|
id: string;
|
|
330
|
-
mimeType: string;
|
|
331
331
|
size?: string | undefined;
|
|
332
332
|
createdTime?: string | undefined;
|
|
333
333
|
modifiedTime?: string | undefined;
|
|
@@ -340,9 +340,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
340
340
|
emailAddress?: string | undefined;
|
|
341
341
|
}[] | undefined;
|
|
342
342
|
}, {
|
|
343
|
+
mimeType: string;
|
|
343
344
|
name: string;
|
|
344
345
|
id: string;
|
|
345
|
-
mimeType: string;
|
|
346
346
|
size?: string | undefined;
|
|
347
347
|
createdTime?: string | undefined;
|
|
348
348
|
modifiedTime?: string | undefined;
|
|
@@ -363,9 +363,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
363
363
|
success: boolean;
|
|
364
364
|
operation: "list_files";
|
|
365
365
|
files?: {
|
|
366
|
+
mimeType: string;
|
|
366
367
|
name: string;
|
|
367
368
|
id: string;
|
|
368
|
-
mimeType: string;
|
|
369
369
|
size?: string | undefined;
|
|
370
370
|
createdTime?: string | undefined;
|
|
371
371
|
modifiedTime?: string | undefined;
|
|
@@ -385,9 +385,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
385
385
|
success: boolean;
|
|
386
386
|
operation: "list_files";
|
|
387
387
|
files?: {
|
|
388
|
+
mimeType: string;
|
|
388
389
|
name: string;
|
|
389
390
|
id: string;
|
|
390
|
-
mimeType: string;
|
|
391
391
|
size?: string | undefined;
|
|
392
392
|
createdTime?: string | undefined;
|
|
393
393
|
modifiedTime?: string | undefined;
|
|
@@ -482,9 +482,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
482
482
|
emailAddress?: string | undefined;
|
|
483
483
|
}>, "many">>;
|
|
484
484
|
}, "strip", z.ZodTypeAny, {
|
|
485
|
+
mimeType: string;
|
|
485
486
|
name: string;
|
|
486
487
|
id: string;
|
|
487
|
-
mimeType: string;
|
|
488
488
|
size?: string | undefined;
|
|
489
489
|
createdTime?: string | undefined;
|
|
490
490
|
modifiedTime?: string | undefined;
|
|
@@ -497,9 +497,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
497
497
|
emailAddress?: string | undefined;
|
|
498
498
|
}[] | undefined;
|
|
499
499
|
}, {
|
|
500
|
+
mimeType: string;
|
|
500
501
|
name: string;
|
|
501
502
|
id: string;
|
|
502
|
-
mimeType: string;
|
|
503
503
|
size?: string | undefined;
|
|
504
504
|
createdTime?: string | undefined;
|
|
505
505
|
modifiedTime?: string | undefined;
|
|
@@ -537,9 +537,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
537
537
|
success: boolean;
|
|
538
538
|
operation: "get_file_info";
|
|
539
539
|
file?: {
|
|
540
|
+
mimeType: string;
|
|
540
541
|
name: string;
|
|
541
542
|
id: string;
|
|
542
|
-
mimeType: string;
|
|
543
543
|
size?: string | undefined;
|
|
544
544
|
createdTime?: string | undefined;
|
|
545
545
|
modifiedTime?: string | undefined;
|
|
@@ -564,9 +564,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
564
564
|
success: boolean;
|
|
565
565
|
operation: "get_file_info";
|
|
566
566
|
file?: {
|
|
567
|
+
mimeType: string;
|
|
567
568
|
name: string;
|
|
568
569
|
id: string;
|
|
569
|
-
mimeType: string;
|
|
570
570
|
size?: string | undefined;
|
|
571
571
|
createdTime?: string | undefined;
|
|
572
572
|
modifiedTime?: string | undefined;
|
|
@@ -629,9 +629,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
629
629
|
emailAddress?: string | undefined;
|
|
630
630
|
}>, "many">>;
|
|
631
631
|
}, "strip", z.ZodTypeAny, {
|
|
632
|
+
mimeType: string;
|
|
632
633
|
name: string;
|
|
633
634
|
id: string;
|
|
634
|
-
mimeType: string;
|
|
635
635
|
size?: string | undefined;
|
|
636
636
|
createdTime?: string | undefined;
|
|
637
637
|
modifiedTime?: string | undefined;
|
|
@@ -644,9 +644,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
644
644
|
emailAddress?: string | undefined;
|
|
645
645
|
}[] | undefined;
|
|
646
646
|
}, {
|
|
647
|
+
mimeType: string;
|
|
647
648
|
name: string;
|
|
648
649
|
id: string;
|
|
649
|
-
mimeType: string;
|
|
650
650
|
size?: string | undefined;
|
|
651
651
|
createdTime?: string | undefined;
|
|
652
652
|
modifiedTime?: string | undefined;
|
|
@@ -665,9 +665,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
665
665
|
success: boolean;
|
|
666
666
|
operation: "move_file";
|
|
667
667
|
file?: {
|
|
668
|
+
mimeType: string;
|
|
668
669
|
name: string;
|
|
669
670
|
id: string;
|
|
670
|
-
mimeType: string;
|
|
671
671
|
size?: string | undefined;
|
|
672
672
|
createdTime?: string | undefined;
|
|
673
673
|
modifiedTime?: string | undefined;
|
|
@@ -685,9 +685,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
685
685
|
success: boolean;
|
|
686
686
|
operation: "move_file";
|
|
687
687
|
file?: {
|
|
688
|
+
mimeType: string;
|
|
688
689
|
name: string;
|
|
689
690
|
id: string;
|
|
690
|
-
mimeType: string;
|
|
691
691
|
size?: string | undefined;
|
|
692
692
|
createdTime?: string | undefined;
|
|
693
693
|
modifiedTime?: string | undefined;
|
|
@@ -803,15 +803,15 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
803
803
|
content: string;
|
|
804
804
|
operation: "upload_file";
|
|
805
805
|
convert_to_google_docs: boolean;
|
|
806
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
807
806
|
mimeType?: string | undefined;
|
|
807
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
808
808
|
parent_folder_id?: string | undefined;
|
|
809
809
|
}, {
|
|
810
810
|
name: string;
|
|
811
811
|
content: string;
|
|
812
812
|
operation: "upload_file";
|
|
813
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
814
813
|
mimeType?: string | undefined;
|
|
814
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
815
815
|
parent_folder_id?: string | undefined;
|
|
816
816
|
convert_to_google_docs?: boolean | undefined;
|
|
817
817
|
}>, z.ZodObject<{
|
|
@@ -996,9 +996,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
996
996
|
emailAddress?: string | undefined;
|
|
997
997
|
}>, "many">>;
|
|
998
998
|
}, "strip", z.ZodTypeAny, {
|
|
999
|
+
mimeType: string;
|
|
999
1000
|
name: string;
|
|
1000
1001
|
id: string;
|
|
1001
|
-
mimeType: string;
|
|
1002
1002
|
size?: string | undefined;
|
|
1003
1003
|
createdTime?: string | undefined;
|
|
1004
1004
|
modifiedTime?: string | undefined;
|
|
@@ -1011,9 +1011,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1011
1011
|
emailAddress?: string | undefined;
|
|
1012
1012
|
}[] | undefined;
|
|
1013
1013
|
}, {
|
|
1014
|
+
mimeType: string;
|
|
1014
1015
|
name: string;
|
|
1015
1016
|
id: string;
|
|
1016
|
-
mimeType: string;
|
|
1017
1017
|
size?: string | undefined;
|
|
1018
1018
|
createdTime?: string | undefined;
|
|
1019
1019
|
modifiedTime?: string | undefined;
|
|
@@ -1032,9 +1032,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1032
1032
|
success: boolean;
|
|
1033
1033
|
operation: "upload_file";
|
|
1034
1034
|
file?: {
|
|
1035
|
+
mimeType: string;
|
|
1035
1036
|
name: string;
|
|
1036
1037
|
id: string;
|
|
1037
|
-
mimeType: string;
|
|
1038
1038
|
size?: string | undefined;
|
|
1039
1039
|
createdTime?: string | undefined;
|
|
1040
1040
|
modifiedTime?: string | undefined;
|
|
@@ -1052,9 +1052,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1052
1052
|
success: boolean;
|
|
1053
1053
|
operation: "upload_file";
|
|
1054
1054
|
file?: {
|
|
1055
|
+
mimeType: string;
|
|
1055
1056
|
name: string;
|
|
1056
1057
|
id: string;
|
|
1057
|
-
mimeType: string;
|
|
1058
1058
|
size?: string | undefined;
|
|
1059
1059
|
createdTime?: string | undefined;
|
|
1060
1060
|
modifiedTime?: string | undefined;
|
|
@@ -1078,15 +1078,15 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1078
1078
|
error: string;
|
|
1079
1079
|
success: boolean;
|
|
1080
1080
|
operation: "download_file";
|
|
1081
|
-
content?: string | undefined;
|
|
1082
1081
|
mimeType?: string | undefined;
|
|
1082
|
+
content?: string | undefined;
|
|
1083
1083
|
filename?: string | undefined;
|
|
1084
1084
|
}, {
|
|
1085
1085
|
error: string;
|
|
1086
1086
|
success: boolean;
|
|
1087
1087
|
operation: "download_file";
|
|
1088
|
-
content?: string | undefined;
|
|
1089
1088
|
mimeType?: string | undefined;
|
|
1089
|
+
content?: string | undefined;
|
|
1090
1090
|
filename?: string | undefined;
|
|
1091
1091
|
}>, z.ZodObject<{
|
|
1092
1092
|
operation: z.ZodLiteral<"list_files">;
|
|
@@ -1113,9 +1113,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1113
1113
|
emailAddress?: string | undefined;
|
|
1114
1114
|
}>, "many">>;
|
|
1115
1115
|
}, "strip", z.ZodTypeAny, {
|
|
1116
|
+
mimeType: string;
|
|
1116
1117
|
name: string;
|
|
1117
1118
|
id: string;
|
|
1118
|
-
mimeType: string;
|
|
1119
1119
|
size?: string | undefined;
|
|
1120
1120
|
createdTime?: string | undefined;
|
|
1121
1121
|
modifiedTime?: string | undefined;
|
|
@@ -1128,9 +1128,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1128
1128
|
emailAddress?: string | undefined;
|
|
1129
1129
|
}[] | undefined;
|
|
1130
1130
|
}, {
|
|
1131
|
+
mimeType: string;
|
|
1131
1132
|
name: string;
|
|
1132
1133
|
id: string;
|
|
1133
|
-
mimeType: string;
|
|
1134
1134
|
size?: string | undefined;
|
|
1135
1135
|
createdTime?: string | undefined;
|
|
1136
1136
|
modifiedTime?: string | undefined;
|
|
@@ -1151,9 +1151,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1151
1151
|
success: boolean;
|
|
1152
1152
|
operation: "list_files";
|
|
1153
1153
|
files?: {
|
|
1154
|
+
mimeType: string;
|
|
1154
1155
|
name: string;
|
|
1155
1156
|
id: string;
|
|
1156
|
-
mimeType: string;
|
|
1157
1157
|
size?: string | undefined;
|
|
1158
1158
|
createdTime?: string | undefined;
|
|
1159
1159
|
modifiedTime?: string | undefined;
|
|
@@ -1173,9 +1173,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1173
1173
|
success: boolean;
|
|
1174
1174
|
operation: "list_files";
|
|
1175
1175
|
files?: {
|
|
1176
|
+
mimeType: string;
|
|
1176
1177
|
name: string;
|
|
1177
1178
|
id: string;
|
|
1178
|
-
mimeType: string;
|
|
1179
1179
|
size?: string | undefined;
|
|
1180
1180
|
createdTime?: string | undefined;
|
|
1181
1181
|
modifiedTime?: string | undefined;
|
|
@@ -1270,9 +1270,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1270
1270
|
emailAddress?: string | undefined;
|
|
1271
1271
|
}>, "many">>;
|
|
1272
1272
|
}, "strip", z.ZodTypeAny, {
|
|
1273
|
+
mimeType: string;
|
|
1273
1274
|
name: string;
|
|
1274
1275
|
id: string;
|
|
1275
|
-
mimeType: string;
|
|
1276
1276
|
size?: string | undefined;
|
|
1277
1277
|
createdTime?: string | undefined;
|
|
1278
1278
|
modifiedTime?: string | undefined;
|
|
@@ -1285,9 +1285,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1285
1285
|
emailAddress?: string | undefined;
|
|
1286
1286
|
}[] | undefined;
|
|
1287
1287
|
}, {
|
|
1288
|
+
mimeType: string;
|
|
1288
1289
|
name: string;
|
|
1289
1290
|
id: string;
|
|
1290
|
-
mimeType: string;
|
|
1291
1291
|
size?: string | undefined;
|
|
1292
1292
|
createdTime?: string | undefined;
|
|
1293
1293
|
modifiedTime?: string | undefined;
|
|
@@ -1325,9 +1325,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1325
1325
|
success: boolean;
|
|
1326
1326
|
operation: "get_file_info";
|
|
1327
1327
|
file?: {
|
|
1328
|
+
mimeType: string;
|
|
1328
1329
|
name: string;
|
|
1329
1330
|
id: string;
|
|
1330
|
-
mimeType: string;
|
|
1331
1331
|
size?: string | undefined;
|
|
1332
1332
|
createdTime?: string | undefined;
|
|
1333
1333
|
modifiedTime?: string | undefined;
|
|
@@ -1352,9 +1352,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1352
1352
|
success: boolean;
|
|
1353
1353
|
operation: "get_file_info";
|
|
1354
1354
|
file?: {
|
|
1355
|
+
mimeType: string;
|
|
1355
1356
|
name: string;
|
|
1356
1357
|
id: string;
|
|
1357
|
-
mimeType: string;
|
|
1358
1358
|
size?: string | undefined;
|
|
1359
1359
|
createdTime?: string | undefined;
|
|
1360
1360
|
modifiedTime?: string | undefined;
|
|
@@ -1417,9 +1417,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1417
1417
|
emailAddress?: string | undefined;
|
|
1418
1418
|
}>, "many">>;
|
|
1419
1419
|
}, "strip", z.ZodTypeAny, {
|
|
1420
|
+
mimeType: string;
|
|
1420
1421
|
name: string;
|
|
1421
1422
|
id: string;
|
|
1422
|
-
mimeType: string;
|
|
1423
1423
|
size?: string | undefined;
|
|
1424
1424
|
createdTime?: string | undefined;
|
|
1425
1425
|
modifiedTime?: string | undefined;
|
|
@@ -1432,9 +1432,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1432
1432
|
emailAddress?: string | undefined;
|
|
1433
1433
|
}[] | undefined;
|
|
1434
1434
|
}, {
|
|
1435
|
+
mimeType: string;
|
|
1435
1436
|
name: string;
|
|
1436
1437
|
id: string;
|
|
1437
|
-
mimeType: string;
|
|
1438
1438
|
size?: string | undefined;
|
|
1439
1439
|
createdTime?: string | undefined;
|
|
1440
1440
|
modifiedTime?: string | undefined;
|
|
@@ -1453,9 +1453,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1453
1453
|
success: boolean;
|
|
1454
1454
|
operation: "move_file";
|
|
1455
1455
|
file?: {
|
|
1456
|
+
mimeType: string;
|
|
1456
1457
|
name: string;
|
|
1457
1458
|
id: string;
|
|
1458
|
-
mimeType: string;
|
|
1459
1459
|
size?: string | undefined;
|
|
1460
1460
|
createdTime?: string | undefined;
|
|
1461
1461
|
modifiedTime?: string | undefined;
|
|
@@ -1473,9 +1473,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1473
1473
|
success: boolean;
|
|
1474
1474
|
operation: "move_file";
|
|
1475
1475
|
file?: {
|
|
1476
|
+
mimeType: string;
|
|
1476
1477
|
name: string;
|
|
1477
1478
|
id: string;
|
|
1478
|
-
mimeType: string;
|
|
1479
1479
|
size?: string | undefined;
|
|
1480
1480
|
createdTime?: string | undefined;
|
|
1481
1481
|
modifiedTime?: string | undefined;
|
|
@@ -15,9 +15,9 @@ declare const HttpParamsSchema: z.ZodObject<{
|
|
|
15
15
|
}, "strip", z.ZodTypeAny, {
|
|
16
16
|
url: string;
|
|
17
17
|
timeout: number;
|
|
18
|
-
method: "
|
|
18
|
+
method: "POST" | "DELETE" | "GET" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
|
|
19
19
|
followRedirects: boolean;
|
|
20
|
-
authType: "
|
|
20
|
+
authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header";
|
|
21
21
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
22
22
|
headers?: Record<string, string> | undefined;
|
|
23
23
|
body?: string | Record<string, unknown> | undefined;
|
|
@@ -27,10 +27,10 @@ declare const HttpParamsSchema: z.ZodObject<{
|
|
|
27
27
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
28
28
|
timeout?: number | undefined;
|
|
29
29
|
headers?: Record<string, string> | undefined;
|
|
30
|
-
method?: "
|
|
30
|
+
method?: "POST" | "DELETE" | "GET" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
31
31
|
body?: string | Record<string, unknown> | undefined;
|
|
32
32
|
followRedirects?: boolean | undefined;
|
|
33
|
-
authType?: "
|
|
33
|
+
authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
|
|
34
34
|
authHeader?: string | undefined;
|
|
35
35
|
}>;
|
|
36
36
|
type HttpParamsInput = z.input<typeof HttpParamsSchema>;
|
|
@@ -85,9 +85,9 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
|
|
|
85
85
|
}, "strip", z.ZodTypeAny, {
|
|
86
86
|
url: string;
|
|
87
87
|
timeout: number;
|
|
88
|
-
method: "
|
|
88
|
+
method: "POST" | "DELETE" | "GET" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
|
|
89
89
|
followRedirects: boolean;
|
|
90
|
-
authType: "
|
|
90
|
+
authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header";
|
|
91
91
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
92
92
|
headers?: Record<string, string> | undefined;
|
|
93
93
|
body?: string | Record<string, unknown> | undefined;
|
|
@@ -97,10 +97,10 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
|
|
|
97
97
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
98
98
|
timeout?: number | undefined;
|
|
99
99
|
headers?: Record<string, string> | undefined;
|
|
100
|
-
method?: "
|
|
100
|
+
method?: "POST" | "DELETE" | "GET" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
101
101
|
body?: string | Record<string, unknown> | undefined;
|
|
102
102
|
followRedirects?: boolean | undefined;
|
|
103
|
-
authType?: "
|
|
103
|
+
authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
|
|
104
104
|
authHeader?: string | undefined;
|
|
105
105
|
}>;
|
|
106
106
|
static readonly resultSchema: z.ZodObject<{
|
|
@@ -11,17 +11,17 @@ declare const InsForgeDbParamsSchema: z.ZodObject<{
|
|
|
11
11
|
maxRows: z.ZodDefault<z.ZodNumber>;
|
|
12
12
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
|
-
parameters: unknown[];
|
|
15
14
|
timeout: number;
|
|
15
|
+
parameters: unknown[];
|
|
16
16
|
query: string;
|
|
17
17
|
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
|
|
18
18
|
maxRows: number;
|
|
19
19
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
20
20
|
}, {
|
|
21
21
|
query: string;
|
|
22
|
-
parameters?: unknown[] | undefined;
|
|
23
22
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
24
23
|
timeout?: number | undefined;
|
|
24
|
+
parameters?: unknown[] | undefined;
|
|
25
25
|
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
|
|
26
26
|
maxRows?: number | undefined;
|
|
27
27
|
}>;
|
|
@@ -36,17 +36,17 @@ declare const InsForgeDbResultSchema: z.ZodObject<{
|
|
|
36
36
|
error: z.ZodString;
|
|
37
37
|
cleanedJSONString: z.ZodString;
|
|
38
38
|
}, "strip", z.ZodTypeAny, {
|
|
39
|
-
executionTime: number;
|
|
40
39
|
error: string;
|
|
41
40
|
success: boolean;
|
|
41
|
+
executionTime: number;
|
|
42
42
|
rows: Record<string, unknown>[];
|
|
43
43
|
rowCount: number | null;
|
|
44
44
|
command: string;
|
|
45
45
|
cleanedJSONString: string;
|
|
46
46
|
}, {
|
|
47
|
-
executionTime: number;
|
|
48
47
|
error: string;
|
|
49
48
|
success: boolean;
|
|
49
|
+
executionTime: number;
|
|
50
50
|
rows: Record<string, unknown>[];
|
|
51
51
|
rowCount: number | null;
|
|
52
52
|
command: string;
|
|
@@ -85,17 +85,17 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
|
|
|
85
85
|
maxRows: z.ZodDefault<z.ZodNumber>;
|
|
86
86
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
87
87
|
}, "strip", z.ZodTypeAny, {
|
|
88
|
-
parameters: unknown[];
|
|
89
88
|
timeout: number;
|
|
89
|
+
parameters: unknown[];
|
|
90
90
|
query: string;
|
|
91
91
|
allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
|
|
92
92
|
maxRows: number;
|
|
93
93
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
94
94
|
}, {
|
|
95
95
|
query: string;
|
|
96
|
-
parameters?: unknown[] | undefined;
|
|
97
96
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
98
97
|
timeout?: number | undefined;
|
|
98
|
+
parameters?: unknown[] | undefined;
|
|
99
99
|
allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
|
|
100
100
|
maxRows?: number | undefined;
|
|
101
101
|
}>;
|
|
@@ -108,17 +108,17 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
|
|
|
108
108
|
error: z.ZodString;
|
|
109
109
|
cleanedJSONString: z.ZodString;
|
|
110
110
|
}, "strip", z.ZodTypeAny, {
|
|
111
|
-
executionTime: number;
|
|
112
111
|
error: string;
|
|
113
112
|
success: boolean;
|
|
113
|
+
executionTime: number;
|
|
114
114
|
rows: Record<string, unknown>[];
|
|
115
115
|
rowCount: number | null;
|
|
116
116
|
command: string;
|
|
117
117
|
cleanedJSONString: string;
|
|
118
118
|
}, {
|
|
119
|
-
executionTime: number;
|
|
120
119
|
error: string;
|
|
121
120
|
success: boolean;
|
|
121
|
+
executionTime: number;
|
|
122
122
|
rows: Record<string, unknown>[];
|
|
123
123
|
rowCount: number | null;
|
|
124
124
|
command: string;
|