@bubblelab/bubble-core 0.1.38 → 0.1.39
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 +73 -73
- package/dist/bubbles/service-bubble/agi-inc.d.ts +60 -60
- package/dist/bubbles/service-bubble/airtable.d.ts +132 -132
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +88 -71
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.js +25 -6
- package/dist/bubbles/service-bubble/ashby/ashby.js.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +18 -3
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.schema.js +9 -5
- package/dist/bubbles/service-bubble/ashby/ashby.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +23 -23
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +63 -63
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +142 -92
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js +104 -2
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/index.d.ts +1 -1
- package/dist/bubbles/service-bubble/crustdata/index.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/index.js +2 -0
- package/dist/bubbles/service-bubble/crustdata/index.js.map +1 -1
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +32 -32
- package/dist/bubbles/service-bubble/firecrawl.d.ts +156 -156
- package/dist/bubbles/service-bubble/followupboss.d.ts +230 -230
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +108 -108
- package/dist/bubbles/service-bubble/github.d.ts +124 -124
- package/dist/bubbles/service-bubble/gmail.d.ts +70 -70
- package/dist/bubbles/service-bubble/google-calendar.d.ts +36 -36
- package/dist/bubbles/service-bubble/google-drive.d.ts +58 -58
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +30 -30
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.d.ts +33 -33
- package/dist/bubbles/service-bubble/notion/notion.d.ts +80 -80
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +112 -112
- package/dist/bubbles/service-bubble/storage.d.ts +30 -30
- package/dist/bubbles/service-bubble/telegram.d.ts +214 -214
- 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 +138 -138
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +42 -6
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.js +18 -7
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +346 -346
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +165 -165
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +28 -13
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-utils.d.ts +19 -0
- package/dist/bubbles/tool-bubble/people-search-utils.d.ts.map +1 -0
- package/dist/bubbles/tool-bubble/people-search-utils.js +268 -0
- package/dist/bubbles/tool-bubble/people-search-utils.js.map +1 -0
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +102 -102
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +34 -34
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +56 -77
- package/package.json +2 -2
|
@@ -11,17 +11,17 @@ declare const GoogleDriveParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
11
11
|
convert_to_google_docs: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
12
12
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
|
+
operation: "upload_file";
|
|
14
15
|
name: string;
|
|
15
16
|
content: string;
|
|
16
|
-
operation: "upload_file";
|
|
17
17
|
convert_to_google_docs: boolean;
|
|
18
18
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
19
19
|
mimeType?: string | undefined;
|
|
20
20
|
parent_folder_id?: string | undefined;
|
|
21
21
|
}, {
|
|
22
|
+
operation: "upload_file";
|
|
22
23
|
name: string;
|
|
23
24
|
content: string;
|
|
24
|
-
operation: "upload_file";
|
|
25
25
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
26
26
|
mimeType?: string | undefined;
|
|
27
27
|
parent_folder_id?: string | undefined;
|
|
@@ -71,13 +71,13 @@ declare const GoogleDriveParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
71
71
|
parent_folder_id: z.ZodOptional<z.ZodString>;
|
|
72
72
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
73
73
|
}, "strip", z.ZodTypeAny, {
|
|
74
|
-
name: string;
|
|
75
74
|
operation: "create_folder";
|
|
75
|
+
name: string;
|
|
76
76
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
77
77
|
parent_folder_id?: string | undefined;
|
|
78
78
|
}, {
|
|
79
|
-
name: string;
|
|
80
79
|
operation: "create_folder";
|
|
80
|
+
name: string;
|
|
81
81
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
82
82
|
parent_folder_id?: string | undefined;
|
|
83
83
|
}>, z.ZodObject<{
|
|
@@ -119,10 +119,10 @@ declare const GoogleDriveParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
119
119
|
send_notification: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
120
120
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
121
121
|
}, "strip", z.ZodTypeAny, {
|
|
122
|
-
type: "domain" | "user" | "group" | "anyone";
|
|
123
122
|
operation: "share_file";
|
|
123
|
+
type: "domain" | "user" | "group" | "anyone";
|
|
124
124
|
file_id: string;
|
|
125
|
-
role: "
|
|
125
|
+
role: "owner" | "writer" | "reader" | "commenter";
|
|
126
126
|
send_notification: boolean;
|
|
127
127
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
128
128
|
email_address?: string | undefined;
|
|
@@ -132,7 +132,7 @@ declare const GoogleDriveParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
132
132
|
type?: "domain" | "user" | "group" | "anyone" | undefined;
|
|
133
133
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
134
134
|
email_address?: string | undefined;
|
|
135
|
-
role?: "
|
|
135
|
+
role?: "owner" | "writer" | "reader" | "commenter" | undefined;
|
|
136
136
|
send_notification?: boolean | undefined;
|
|
137
137
|
}>, z.ZodObject<{
|
|
138
138
|
operation: z.ZodLiteral<"move_file">;
|
|
@@ -171,14 +171,14 @@ declare const GoogleDriveParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
171
171
|
mode: z.ZodDefault<z.ZodOptional<z.ZodEnum<["replace", "append"]>>>;
|
|
172
172
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
173
173
|
}, "strip", z.ZodTypeAny, {
|
|
174
|
-
content: string;
|
|
175
174
|
operation: "update_doc";
|
|
175
|
+
content: string;
|
|
176
176
|
mode: "replace" | "append";
|
|
177
177
|
document_id: string;
|
|
178
178
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
179
179
|
}, {
|
|
180
|
-
content: string;
|
|
181
180
|
operation: "update_doc";
|
|
181
|
+
content: string;
|
|
182
182
|
document_id: string;
|
|
183
183
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
184
184
|
mode?: "replace" | "append" | undefined;
|
|
@@ -240,9 +240,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
240
240
|
}>>;
|
|
241
241
|
error: z.ZodString;
|
|
242
242
|
}, "strip", z.ZodTypeAny, {
|
|
243
|
+
operation: "upload_file";
|
|
243
244
|
success: boolean;
|
|
244
245
|
error: string;
|
|
245
|
-
operation: "upload_file";
|
|
246
246
|
file?: {
|
|
247
247
|
name: string;
|
|
248
248
|
id: string;
|
|
@@ -260,9 +260,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
260
260
|
}[] | undefined;
|
|
261
261
|
} | undefined;
|
|
262
262
|
}, {
|
|
263
|
+
operation: "upload_file";
|
|
263
264
|
success: boolean;
|
|
264
265
|
error: string;
|
|
265
|
-
operation: "upload_file";
|
|
266
266
|
file?: {
|
|
267
267
|
name: string;
|
|
268
268
|
id: string;
|
|
@@ -287,16 +287,16 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
287
287
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
288
288
|
error: z.ZodString;
|
|
289
289
|
}, "strip", z.ZodTypeAny, {
|
|
290
|
+
operation: "download_file";
|
|
290
291
|
success: boolean;
|
|
291
292
|
error: string;
|
|
292
|
-
operation: "download_file";
|
|
293
293
|
content?: string | undefined;
|
|
294
294
|
mimeType?: string | undefined;
|
|
295
295
|
filename?: string | undefined;
|
|
296
296
|
}, {
|
|
297
|
+
operation: "download_file";
|
|
297
298
|
success: boolean;
|
|
298
299
|
error: string;
|
|
299
|
-
operation: "download_file";
|
|
300
300
|
content?: string | undefined;
|
|
301
301
|
mimeType?: string | undefined;
|
|
302
302
|
filename?: string | undefined;
|
|
@@ -359,9 +359,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
359
359
|
next_page_token: z.ZodOptional<z.ZodString>;
|
|
360
360
|
error: z.ZodString;
|
|
361
361
|
}, "strip", z.ZodTypeAny, {
|
|
362
|
+
operation: "list_files";
|
|
362
363
|
success: boolean;
|
|
363
364
|
error: string;
|
|
364
|
-
operation: "list_files";
|
|
365
365
|
total_count?: number | undefined;
|
|
366
366
|
files?: {
|
|
367
367
|
name: string;
|
|
@@ -381,9 +381,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
381
381
|
}[] | undefined;
|
|
382
382
|
next_page_token?: string | undefined;
|
|
383
383
|
}, {
|
|
384
|
+
operation: "list_files";
|
|
384
385
|
success: boolean;
|
|
385
386
|
error: string;
|
|
386
|
-
operation: "list_files";
|
|
387
387
|
total_count?: number | undefined;
|
|
388
388
|
files?: {
|
|
389
389
|
name: string;
|
|
@@ -423,9 +423,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
423
423
|
}>>;
|
|
424
424
|
error: z.ZodString;
|
|
425
425
|
}, "strip", z.ZodTypeAny, {
|
|
426
|
+
operation: "create_folder";
|
|
426
427
|
success: boolean;
|
|
427
428
|
error: string;
|
|
428
|
-
operation: "create_folder";
|
|
429
429
|
folder?: {
|
|
430
430
|
name: string;
|
|
431
431
|
id: string;
|
|
@@ -433,9 +433,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
433
433
|
parents?: string[] | undefined;
|
|
434
434
|
} | undefined;
|
|
435
435
|
}, {
|
|
436
|
+
operation: "create_folder";
|
|
436
437
|
success: boolean;
|
|
437
438
|
error: string;
|
|
438
|
-
operation: "create_folder";
|
|
439
439
|
folder?: {
|
|
440
440
|
name: string;
|
|
441
441
|
id: string;
|
|
@@ -448,14 +448,14 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
448
448
|
deleted_file_id: z.ZodOptional<z.ZodString>;
|
|
449
449
|
error: z.ZodString;
|
|
450
450
|
}, "strip", z.ZodTypeAny, {
|
|
451
|
+
operation: "delete_file";
|
|
451
452
|
success: boolean;
|
|
452
453
|
error: string;
|
|
453
|
-
operation: "delete_file";
|
|
454
454
|
deleted_file_id?: string | undefined;
|
|
455
455
|
}, {
|
|
456
|
+
operation: "delete_file";
|
|
456
457
|
success: boolean;
|
|
457
458
|
error: string;
|
|
458
|
-
operation: "delete_file";
|
|
459
459
|
deleted_file_id?: string | undefined;
|
|
460
460
|
}>, z.ZodObject<{
|
|
461
461
|
operation: z.ZodLiteral<"get_file_info">;
|
|
@@ -533,9 +533,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
533
533
|
}>, "many">>;
|
|
534
534
|
error: z.ZodString;
|
|
535
535
|
}, "strip", z.ZodTypeAny, {
|
|
536
|
+
operation: "get_file_info";
|
|
536
537
|
success: boolean;
|
|
537
538
|
error: string;
|
|
538
|
-
operation: "get_file_info";
|
|
539
539
|
file?: {
|
|
540
540
|
name: string;
|
|
541
541
|
id: string;
|
|
@@ -560,9 +560,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
560
560
|
emailAddress?: string | undefined;
|
|
561
561
|
}[] | undefined;
|
|
562
562
|
}, {
|
|
563
|
+
operation: "get_file_info";
|
|
563
564
|
success: boolean;
|
|
564
565
|
error: string;
|
|
565
|
-
operation: "get_file_info";
|
|
566
566
|
file?: {
|
|
567
567
|
name: string;
|
|
568
568
|
id: string;
|
|
@@ -593,15 +593,15 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
593
593
|
share_link: z.ZodOptional<z.ZodString>;
|
|
594
594
|
error: z.ZodString;
|
|
595
595
|
}, "strip", z.ZodTypeAny, {
|
|
596
|
+
operation: "share_file";
|
|
596
597
|
success: boolean;
|
|
597
598
|
error: string;
|
|
598
|
-
operation: "share_file";
|
|
599
599
|
permission_id?: string | undefined;
|
|
600
600
|
share_link?: string | undefined;
|
|
601
601
|
}, {
|
|
602
|
+
operation: "share_file";
|
|
602
603
|
success: boolean;
|
|
603
604
|
error: string;
|
|
604
|
-
operation: "share_file";
|
|
605
605
|
permission_id?: string | undefined;
|
|
606
606
|
share_link?: string | undefined;
|
|
607
607
|
}>, z.ZodObject<{
|
|
@@ -661,9 +661,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
661
661
|
}>>;
|
|
662
662
|
error: z.ZodString;
|
|
663
663
|
}, "strip", z.ZodTypeAny, {
|
|
664
|
+
operation: "move_file";
|
|
664
665
|
success: boolean;
|
|
665
666
|
error: string;
|
|
666
|
-
operation: "move_file";
|
|
667
667
|
file?: {
|
|
668
668
|
name: string;
|
|
669
669
|
id: string;
|
|
@@ -681,9 +681,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
681
681
|
}[] | undefined;
|
|
682
682
|
} | undefined;
|
|
683
683
|
}, {
|
|
684
|
+
operation: "move_file";
|
|
684
685
|
success: boolean;
|
|
685
686
|
error: string;
|
|
686
|
-
operation: "move_file";
|
|
687
687
|
file?: {
|
|
688
688
|
name: string;
|
|
689
689
|
id: string;
|
|
@@ -731,9 +731,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
731
731
|
plainText: z.ZodOptional<z.ZodString>;
|
|
732
732
|
error: z.ZodString;
|
|
733
733
|
}, "strip", z.ZodTypeAny, {
|
|
734
|
+
operation: "get_doc";
|
|
734
735
|
success: boolean;
|
|
735
736
|
error: string;
|
|
736
|
-
operation: "get_doc";
|
|
737
737
|
document?: z.objectOutputType<{
|
|
738
738
|
documentId: z.ZodString;
|
|
739
739
|
title: z.ZodString;
|
|
@@ -745,9 +745,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
745
745
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
746
746
|
plainText?: string | undefined;
|
|
747
747
|
}, {
|
|
748
|
+
operation: "get_doc";
|
|
748
749
|
success: boolean;
|
|
749
750
|
error: string;
|
|
750
|
-
operation: "get_doc";
|
|
751
751
|
document?: z.objectInputType<{
|
|
752
752
|
documentId: z.ZodString;
|
|
753
753
|
title: z.ZodString;
|
|
@@ -765,15 +765,15 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
765
765
|
revisionId: z.ZodOptional<z.ZodString>;
|
|
766
766
|
error: z.ZodString;
|
|
767
767
|
}, "strip", z.ZodTypeAny, {
|
|
768
|
+
operation: "update_doc";
|
|
768
769
|
success: boolean;
|
|
769
770
|
error: string;
|
|
770
|
-
operation: "update_doc";
|
|
771
771
|
documentId?: string | undefined;
|
|
772
772
|
revisionId?: string | undefined;
|
|
773
773
|
}, {
|
|
774
|
+
operation: "update_doc";
|
|
774
775
|
success: boolean;
|
|
775
776
|
error: string;
|
|
776
|
-
operation: "update_doc";
|
|
777
777
|
documentId?: string | undefined;
|
|
778
778
|
revisionId?: string | undefined;
|
|
779
779
|
}>]>;
|
|
@@ -799,17 +799,17 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
799
799
|
convert_to_google_docs: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
800
800
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
801
801
|
}, "strip", z.ZodTypeAny, {
|
|
802
|
+
operation: "upload_file";
|
|
802
803
|
name: string;
|
|
803
804
|
content: string;
|
|
804
|
-
operation: "upload_file";
|
|
805
805
|
convert_to_google_docs: boolean;
|
|
806
806
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
807
807
|
mimeType?: string | undefined;
|
|
808
808
|
parent_folder_id?: string | undefined;
|
|
809
809
|
}, {
|
|
810
|
+
operation: "upload_file";
|
|
810
811
|
name: string;
|
|
811
812
|
content: string;
|
|
812
|
-
operation: "upload_file";
|
|
813
813
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
814
814
|
mimeType?: string | undefined;
|
|
815
815
|
parent_folder_id?: string | undefined;
|
|
@@ -859,13 +859,13 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
859
859
|
parent_folder_id: z.ZodOptional<z.ZodString>;
|
|
860
860
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
861
861
|
}, "strip", z.ZodTypeAny, {
|
|
862
|
-
name: string;
|
|
863
862
|
operation: "create_folder";
|
|
863
|
+
name: string;
|
|
864
864
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
865
865
|
parent_folder_id?: string | undefined;
|
|
866
866
|
}, {
|
|
867
|
-
name: string;
|
|
868
867
|
operation: "create_folder";
|
|
868
|
+
name: string;
|
|
869
869
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
870
870
|
parent_folder_id?: string | undefined;
|
|
871
871
|
}>, z.ZodObject<{
|
|
@@ -907,10 +907,10 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
907
907
|
send_notification: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
908
908
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
909
909
|
}, "strip", z.ZodTypeAny, {
|
|
910
|
-
type: "domain" | "user" | "group" | "anyone";
|
|
911
910
|
operation: "share_file";
|
|
911
|
+
type: "domain" | "user" | "group" | "anyone";
|
|
912
912
|
file_id: string;
|
|
913
|
-
role: "
|
|
913
|
+
role: "owner" | "writer" | "reader" | "commenter";
|
|
914
914
|
send_notification: boolean;
|
|
915
915
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
916
916
|
email_address?: string | undefined;
|
|
@@ -920,7 +920,7 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
920
920
|
type?: "domain" | "user" | "group" | "anyone" | undefined;
|
|
921
921
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
922
922
|
email_address?: string | undefined;
|
|
923
|
-
role?: "
|
|
923
|
+
role?: "owner" | "writer" | "reader" | "commenter" | undefined;
|
|
924
924
|
send_notification?: boolean | undefined;
|
|
925
925
|
}>, z.ZodObject<{
|
|
926
926
|
operation: z.ZodLiteral<"move_file">;
|
|
@@ -959,14 +959,14 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
959
959
|
mode: z.ZodDefault<z.ZodOptional<z.ZodEnum<["replace", "append"]>>>;
|
|
960
960
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
961
961
|
}, "strip", z.ZodTypeAny, {
|
|
962
|
-
content: string;
|
|
963
962
|
operation: "update_doc";
|
|
963
|
+
content: string;
|
|
964
964
|
mode: "replace" | "append";
|
|
965
965
|
document_id: string;
|
|
966
966
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
967
967
|
}, {
|
|
968
|
-
content: string;
|
|
969
968
|
operation: "update_doc";
|
|
969
|
+
content: string;
|
|
970
970
|
document_id: string;
|
|
971
971
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
972
972
|
mode?: "replace" | "append" | undefined;
|
|
@@ -1028,9 +1028,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1028
1028
|
}>>;
|
|
1029
1029
|
error: z.ZodString;
|
|
1030
1030
|
}, "strip", z.ZodTypeAny, {
|
|
1031
|
+
operation: "upload_file";
|
|
1031
1032
|
success: boolean;
|
|
1032
1033
|
error: string;
|
|
1033
|
-
operation: "upload_file";
|
|
1034
1034
|
file?: {
|
|
1035
1035
|
name: string;
|
|
1036
1036
|
id: string;
|
|
@@ -1048,9 +1048,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1048
1048
|
}[] | undefined;
|
|
1049
1049
|
} | undefined;
|
|
1050
1050
|
}, {
|
|
1051
|
+
operation: "upload_file";
|
|
1051
1052
|
success: boolean;
|
|
1052
1053
|
error: string;
|
|
1053
|
-
operation: "upload_file";
|
|
1054
1054
|
file?: {
|
|
1055
1055
|
name: string;
|
|
1056
1056
|
id: string;
|
|
@@ -1075,16 +1075,16 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1075
1075
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
1076
1076
|
error: z.ZodString;
|
|
1077
1077
|
}, "strip", z.ZodTypeAny, {
|
|
1078
|
+
operation: "download_file";
|
|
1078
1079
|
success: boolean;
|
|
1079
1080
|
error: string;
|
|
1080
|
-
operation: "download_file";
|
|
1081
1081
|
content?: string | undefined;
|
|
1082
1082
|
mimeType?: string | undefined;
|
|
1083
1083
|
filename?: string | undefined;
|
|
1084
1084
|
}, {
|
|
1085
|
+
operation: "download_file";
|
|
1085
1086
|
success: boolean;
|
|
1086
1087
|
error: string;
|
|
1087
|
-
operation: "download_file";
|
|
1088
1088
|
content?: string | undefined;
|
|
1089
1089
|
mimeType?: string | undefined;
|
|
1090
1090
|
filename?: string | undefined;
|
|
@@ -1147,9 +1147,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1147
1147
|
next_page_token: z.ZodOptional<z.ZodString>;
|
|
1148
1148
|
error: z.ZodString;
|
|
1149
1149
|
}, "strip", z.ZodTypeAny, {
|
|
1150
|
+
operation: "list_files";
|
|
1150
1151
|
success: boolean;
|
|
1151
1152
|
error: string;
|
|
1152
|
-
operation: "list_files";
|
|
1153
1153
|
total_count?: number | undefined;
|
|
1154
1154
|
files?: {
|
|
1155
1155
|
name: string;
|
|
@@ -1169,9 +1169,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1169
1169
|
}[] | undefined;
|
|
1170
1170
|
next_page_token?: string | undefined;
|
|
1171
1171
|
}, {
|
|
1172
|
+
operation: "list_files";
|
|
1172
1173
|
success: boolean;
|
|
1173
1174
|
error: string;
|
|
1174
|
-
operation: "list_files";
|
|
1175
1175
|
total_count?: number | undefined;
|
|
1176
1176
|
files?: {
|
|
1177
1177
|
name: string;
|
|
@@ -1211,9 +1211,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1211
1211
|
}>>;
|
|
1212
1212
|
error: z.ZodString;
|
|
1213
1213
|
}, "strip", z.ZodTypeAny, {
|
|
1214
|
+
operation: "create_folder";
|
|
1214
1215
|
success: boolean;
|
|
1215
1216
|
error: string;
|
|
1216
|
-
operation: "create_folder";
|
|
1217
1217
|
folder?: {
|
|
1218
1218
|
name: string;
|
|
1219
1219
|
id: string;
|
|
@@ -1221,9 +1221,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1221
1221
|
parents?: string[] | undefined;
|
|
1222
1222
|
} | undefined;
|
|
1223
1223
|
}, {
|
|
1224
|
+
operation: "create_folder";
|
|
1224
1225
|
success: boolean;
|
|
1225
1226
|
error: string;
|
|
1226
|
-
operation: "create_folder";
|
|
1227
1227
|
folder?: {
|
|
1228
1228
|
name: string;
|
|
1229
1229
|
id: string;
|
|
@@ -1236,14 +1236,14 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1236
1236
|
deleted_file_id: z.ZodOptional<z.ZodString>;
|
|
1237
1237
|
error: z.ZodString;
|
|
1238
1238
|
}, "strip", z.ZodTypeAny, {
|
|
1239
|
+
operation: "delete_file";
|
|
1239
1240
|
success: boolean;
|
|
1240
1241
|
error: string;
|
|
1241
|
-
operation: "delete_file";
|
|
1242
1242
|
deleted_file_id?: string | undefined;
|
|
1243
1243
|
}, {
|
|
1244
|
+
operation: "delete_file";
|
|
1244
1245
|
success: boolean;
|
|
1245
1246
|
error: string;
|
|
1246
|
-
operation: "delete_file";
|
|
1247
1247
|
deleted_file_id?: string | undefined;
|
|
1248
1248
|
}>, z.ZodObject<{
|
|
1249
1249
|
operation: z.ZodLiteral<"get_file_info">;
|
|
@@ -1321,9 +1321,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1321
1321
|
}>, "many">>;
|
|
1322
1322
|
error: z.ZodString;
|
|
1323
1323
|
}, "strip", z.ZodTypeAny, {
|
|
1324
|
+
operation: "get_file_info";
|
|
1324
1325
|
success: boolean;
|
|
1325
1326
|
error: string;
|
|
1326
|
-
operation: "get_file_info";
|
|
1327
1327
|
file?: {
|
|
1328
1328
|
name: string;
|
|
1329
1329
|
id: string;
|
|
@@ -1348,9 +1348,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1348
1348
|
emailAddress?: string | undefined;
|
|
1349
1349
|
}[] | undefined;
|
|
1350
1350
|
}, {
|
|
1351
|
+
operation: "get_file_info";
|
|
1351
1352
|
success: boolean;
|
|
1352
1353
|
error: string;
|
|
1353
|
-
operation: "get_file_info";
|
|
1354
1354
|
file?: {
|
|
1355
1355
|
name: string;
|
|
1356
1356
|
id: string;
|
|
@@ -1381,15 +1381,15 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1381
1381
|
share_link: z.ZodOptional<z.ZodString>;
|
|
1382
1382
|
error: z.ZodString;
|
|
1383
1383
|
}, "strip", z.ZodTypeAny, {
|
|
1384
|
+
operation: "share_file";
|
|
1384
1385
|
success: boolean;
|
|
1385
1386
|
error: string;
|
|
1386
|
-
operation: "share_file";
|
|
1387
1387
|
permission_id?: string | undefined;
|
|
1388
1388
|
share_link?: string | undefined;
|
|
1389
1389
|
}, {
|
|
1390
|
+
operation: "share_file";
|
|
1390
1391
|
success: boolean;
|
|
1391
1392
|
error: string;
|
|
1392
|
-
operation: "share_file";
|
|
1393
1393
|
permission_id?: string | undefined;
|
|
1394
1394
|
share_link?: string | undefined;
|
|
1395
1395
|
}>, z.ZodObject<{
|
|
@@ -1449,9 +1449,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1449
1449
|
}>>;
|
|
1450
1450
|
error: z.ZodString;
|
|
1451
1451
|
}, "strip", z.ZodTypeAny, {
|
|
1452
|
+
operation: "move_file";
|
|
1452
1453
|
success: boolean;
|
|
1453
1454
|
error: string;
|
|
1454
|
-
operation: "move_file";
|
|
1455
1455
|
file?: {
|
|
1456
1456
|
name: string;
|
|
1457
1457
|
id: string;
|
|
@@ -1469,9 +1469,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1469
1469
|
}[] | undefined;
|
|
1470
1470
|
} | undefined;
|
|
1471
1471
|
}, {
|
|
1472
|
+
operation: "move_file";
|
|
1472
1473
|
success: boolean;
|
|
1473
1474
|
error: string;
|
|
1474
|
-
operation: "move_file";
|
|
1475
1475
|
file?: {
|
|
1476
1476
|
name: string;
|
|
1477
1477
|
id: string;
|
|
@@ -1519,9 +1519,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1519
1519
|
plainText: z.ZodOptional<z.ZodString>;
|
|
1520
1520
|
error: z.ZodString;
|
|
1521
1521
|
}, "strip", z.ZodTypeAny, {
|
|
1522
|
+
operation: "get_doc";
|
|
1522
1523
|
success: boolean;
|
|
1523
1524
|
error: string;
|
|
1524
|
-
operation: "get_doc";
|
|
1525
1525
|
document?: z.objectOutputType<{
|
|
1526
1526
|
documentId: z.ZodString;
|
|
1527
1527
|
title: z.ZodString;
|
|
@@ -1533,9 +1533,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1533
1533
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1534
1534
|
plainText?: string | undefined;
|
|
1535
1535
|
}, {
|
|
1536
|
+
operation: "get_doc";
|
|
1536
1537
|
success: boolean;
|
|
1537
1538
|
error: string;
|
|
1538
|
-
operation: "get_doc";
|
|
1539
1539
|
document?: z.objectInputType<{
|
|
1540
1540
|
documentId: z.ZodString;
|
|
1541
1541
|
title: z.ZodString;
|
|
@@ -1553,15 +1553,15 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1553
1553
|
revisionId: z.ZodOptional<z.ZodString>;
|
|
1554
1554
|
error: z.ZodString;
|
|
1555
1555
|
}, "strip", z.ZodTypeAny, {
|
|
1556
|
+
operation: "update_doc";
|
|
1556
1557
|
success: boolean;
|
|
1557
1558
|
error: string;
|
|
1558
|
-
operation: "update_doc";
|
|
1559
1559
|
documentId?: string | undefined;
|
|
1560
1560
|
revisionId?: string | undefined;
|
|
1561
1561
|
}, {
|
|
1562
|
+
operation: "update_doc";
|
|
1562
1563
|
success: boolean;
|
|
1563
1564
|
error: string;
|
|
1564
|
-
operation: "update_doc";
|
|
1565
1565
|
documentId?: string | undefined;
|
|
1566
1566
|
revisionId?: string | undefined;
|
|
1567
1567
|
}>]>;
|