@bubblelab/bubble-core 0.1.13 → 0.1.14
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 +70 -70
- package/dist/bubbles/service-bubble/agi-inc.d.ts +112 -112
- package/dist/bubbles/service-bubble/ai-agent.d.ts +40 -40
- package/dist/bubbles/service-bubble/airtable.d.ts +152 -152
- package/dist/bubbles/service-bubble/apify/apify.d.ts +26 -26
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +51 -51
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +52 -52
- package/dist/bubbles/service-bubble/firecrawl.d.ts +202 -202
- package/dist/bubbles/service-bubble/followupboss.d.ts +260 -260
- package/dist/bubbles/service-bubble/github.d.ts +168 -168
- package/dist/bubbles/service-bubble/gmail.d.ts +352 -352
- package/dist/bubbles/service-bubble/google-calendar.d.ts +148 -148
- package/dist/bubbles/service-bubble/google-drive.d.ts +130 -130
- package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-drive.js +55 -17
- package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +62 -62
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +16 -16
- package/dist/bubbles/service-bubble/insforge-db.d.ts +18 -18
- package/dist/bubbles/service-bubble/notion/notion.d.ts +152 -152
- package/dist/bubbles/service-bubble/postgresql.d.ts +18 -18
- package/dist/bubbles/service-bubble/resend.d.ts +20 -20
- package/dist/bubbles/service-bubble/slack.d.ts +318 -318
- package/dist/bubbles/service-bubble/storage.d.ts +40 -40
- package/dist/bubbles/service-bubble/telegram.d.ts +256 -256
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +33 -33
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/get-trigger-detail-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +294 -294
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +104 -104
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +18 -18
- package/dist/bubbles/workflow-bubble/database-analyzer.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +50 -50
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +36 -36
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -11,21 +11,21 @@ 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
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
19
18
|
mimeType?: string | undefined;
|
|
20
19
|
parent_folder_id?: string | undefined;
|
|
20
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
21
21
|
}, {
|
|
22
|
+
operation: "upload_file";
|
|
22
23
|
name: string;
|
|
23
24
|
content: string;
|
|
24
|
-
operation: "upload_file";
|
|
25
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
26
25
|
mimeType?: string | undefined;
|
|
27
26
|
parent_folder_id?: string | undefined;
|
|
28
27
|
convert_to_google_docs?: boolean | undefined;
|
|
28
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
29
29
|
}>, z.ZodObject<{
|
|
30
30
|
operation: z.ZodLiteral<"download_file">;
|
|
31
31
|
file_id: z.ZodString;
|
|
@@ -55,13 +55,13 @@ declare const GoogleDriveParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
55
55
|
include_folders: boolean;
|
|
56
56
|
order_by: string;
|
|
57
57
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
58
|
-
query?: string | undefined;
|
|
59
58
|
folder_id?: string | undefined;
|
|
59
|
+
query?: string | undefined;
|
|
60
60
|
}, {
|
|
61
61
|
operation: "list_files";
|
|
62
62
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
63
|
-
query?: string | undefined;
|
|
64
63
|
folder_id?: string | undefined;
|
|
64
|
+
query?: string | undefined;
|
|
65
65
|
max_results?: number | undefined;
|
|
66
66
|
include_folders?: boolean | undefined;
|
|
67
67
|
order_by?: string | undefined;
|
|
@@ -71,15 +71,15 @@ 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";
|
|
76
|
-
|
|
75
|
+
name: string;
|
|
77
76
|
parent_folder_id?: string | undefined;
|
|
77
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
78
78
|
}, {
|
|
79
|
-
name: string;
|
|
80
79
|
operation: "create_folder";
|
|
81
|
-
|
|
80
|
+
name: string;
|
|
82
81
|
parent_folder_id?: string | undefined;
|
|
82
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
83
83
|
}>, z.ZodObject<{
|
|
84
84
|
operation: z.ZodLiteral<"delete_file">;
|
|
85
85
|
file_id: z.ZodString;
|
|
@@ -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: "user" | "group" | "domain" | "anyone";
|
|
123
122
|
operation: "share_file";
|
|
123
|
+
type: "user" | "group" | "domain" | "anyone";
|
|
124
124
|
file_id: string;
|
|
125
|
-
role: "
|
|
125
|
+
role: "reader" | "writer" | "commenter" | "owner";
|
|
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?: "user" | "group" | "domain" | "anyone" | undefined;
|
|
133
133
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
134
134
|
email_address?: string | undefined;
|
|
135
|
-
role?: "
|
|
135
|
+
role?: "reader" | "writer" | "commenter" | "owner" | undefined;
|
|
136
136
|
send_notification?: boolean | undefined;
|
|
137
137
|
}>, z.ZodObject<{
|
|
138
138
|
operation: z.ZodLiteral<"move_file">;
|
|
@@ -179,8 +179,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
179
179
|
}>, "many">>;
|
|
180
180
|
}, "strip", z.ZodTypeAny, {
|
|
181
181
|
name: string;
|
|
182
|
-
id: string;
|
|
183
182
|
mimeType: string;
|
|
183
|
+
id: string;
|
|
184
184
|
size?: string | undefined;
|
|
185
185
|
createdTime?: string | undefined;
|
|
186
186
|
modifiedTime?: string | undefined;
|
|
@@ -194,8 +194,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
194
194
|
}[] | undefined;
|
|
195
195
|
}, {
|
|
196
196
|
name: string;
|
|
197
|
-
id: string;
|
|
198
197
|
mimeType: string;
|
|
198
|
+
id: string;
|
|
199
199
|
size?: string | undefined;
|
|
200
200
|
createdTime?: string | undefined;
|
|
201
201
|
modifiedTime?: string | undefined;
|
|
@@ -210,13 +210,13 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
210
210
|
}>>;
|
|
211
211
|
error: z.ZodString;
|
|
212
212
|
}, "strip", z.ZodTypeAny, {
|
|
213
|
-
error: string;
|
|
214
|
-
success: boolean;
|
|
215
213
|
operation: "upload_file";
|
|
214
|
+
success: boolean;
|
|
215
|
+
error: string;
|
|
216
216
|
file?: {
|
|
217
217
|
name: string;
|
|
218
|
-
id: string;
|
|
219
218
|
mimeType: string;
|
|
219
|
+
id: string;
|
|
220
220
|
size?: string | undefined;
|
|
221
221
|
createdTime?: string | undefined;
|
|
222
222
|
modifiedTime?: string | undefined;
|
|
@@ -230,13 +230,13 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
230
230
|
}[] | undefined;
|
|
231
231
|
} | undefined;
|
|
232
232
|
}, {
|
|
233
|
-
error: string;
|
|
234
|
-
success: boolean;
|
|
235
233
|
operation: "upload_file";
|
|
234
|
+
success: boolean;
|
|
235
|
+
error: string;
|
|
236
236
|
file?: {
|
|
237
237
|
name: string;
|
|
238
|
-
id: string;
|
|
239
238
|
mimeType: string;
|
|
239
|
+
id: string;
|
|
240
240
|
size?: string | undefined;
|
|
241
241
|
createdTime?: string | undefined;
|
|
242
242
|
modifiedTime?: string | undefined;
|
|
@@ -257,16 +257,16 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
257
257
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
258
258
|
error: z.ZodString;
|
|
259
259
|
}, "strip", z.ZodTypeAny, {
|
|
260
|
-
error: string;
|
|
261
|
-
success: boolean;
|
|
262
260
|
operation: "download_file";
|
|
261
|
+
success: boolean;
|
|
262
|
+
error: string;
|
|
263
263
|
content?: string | undefined;
|
|
264
264
|
mimeType?: string | undefined;
|
|
265
265
|
filename?: string | undefined;
|
|
266
266
|
}, {
|
|
267
|
-
error: string;
|
|
268
|
-
success: boolean;
|
|
269
267
|
operation: "download_file";
|
|
268
|
+
success: boolean;
|
|
269
|
+
error: string;
|
|
270
270
|
content?: string | undefined;
|
|
271
271
|
mimeType?: string | undefined;
|
|
272
272
|
filename?: string | undefined;
|
|
@@ -296,8 +296,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
296
296
|
}>, "many">>;
|
|
297
297
|
}, "strip", z.ZodTypeAny, {
|
|
298
298
|
name: string;
|
|
299
|
-
id: string;
|
|
300
299
|
mimeType: string;
|
|
300
|
+
id: string;
|
|
301
301
|
size?: string | undefined;
|
|
302
302
|
createdTime?: string | undefined;
|
|
303
303
|
modifiedTime?: string | undefined;
|
|
@@ -311,8 +311,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
311
311
|
}[] | undefined;
|
|
312
312
|
}, {
|
|
313
313
|
name: string;
|
|
314
|
-
id: string;
|
|
315
314
|
mimeType: string;
|
|
315
|
+
id: string;
|
|
316
316
|
size?: string | undefined;
|
|
317
317
|
createdTime?: string | undefined;
|
|
318
318
|
modifiedTime?: string | undefined;
|
|
@@ -329,13 +329,13 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
329
329
|
next_page_token: z.ZodOptional<z.ZodString>;
|
|
330
330
|
error: z.ZodString;
|
|
331
331
|
}, "strip", z.ZodTypeAny, {
|
|
332
|
-
error: string;
|
|
333
|
-
success: boolean;
|
|
334
332
|
operation: "list_files";
|
|
333
|
+
success: boolean;
|
|
334
|
+
error: string;
|
|
335
335
|
files?: {
|
|
336
336
|
name: string;
|
|
337
|
-
id: string;
|
|
338
337
|
mimeType: string;
|
|
338
|
+
id: string;
|
|
339
339
|
size?: string | undefined;
|
|
340
340
|
createdTime?: string | undefined;
|
|
341
341
|
modifiedTime?: string | undefined;
|
|
@@ -351,13 +351,13 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
351
351
|
total_count?: number | undefined;
|
|
352
352
|
next_page_token?: string | undefined;
|
|
353
353
|
}, {
|
|
354
|
-
error: string;
|
|
355
|
-
success: boolean;
|
|
356
354
|
operation: "list_files";
|
|
355
|
+
success: boolean;
|
|
356
|
+
error: string;
|
|
357
357
|
files?: {
|
|
358
358
|
name: string;
|
|
359
|
-
id: string;
|
|
360
359
|
mimeType: string;
|
|
360
|
+
id: string;
|
|
361
361
|
size?: string | undefined;
|
|
362
362
|
createdTime?: string | undefined;
|
|
363
363
|
modifiedTime?: string | undefined;
|
|
@@ -393,9 +393,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
393
393
|
}>>;
|
|
394
394
|
error: z.ZodString;
|
|
395
395
|
}, "strip", z.ZodTypeAny, {
|
|
396
|
-
error: string;
|
|
397
|
-
success: boolean;
|
|
398
396
|
operation: "create_folder";
|
|
397
|
+
success: boolean;
|
|
398
|
+
error: string;
|
|
399
399
|
folder?: {
|
|
400
400
|
name: string;
|
|
401
401
|
id: string;
|
|
@@ -403,9 +403,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
403
403
|
parents?: string[] | undefined;
|
|
404
404
|
} | undefined;
|
|
405
405
|
}, {
|
|
406
|
-
error: string;
|
|
407
|
-
success: boolean;
|
|
408
406
|
operation: "create_folder";
|
|
407
|
+
success: boolean;
|
|
408
|
+
error: string;
|
|
409
409
|
folder?: {
|
|
410
410
|
name: string;
|
|
411
411
|
id: string;
|
|
@@ -418,14 +418,14 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
418
418
|
deleted_file_id: z.ZodOptional<z.ZodString>;
|
|
419
419
|
error: z.ZodString;
|
|
420
420
|
}, "strip", z.ZodTypeAny, {
|
|
421
|
-
error: string;
|
|
422
|
-
success: boolean;
|
|
423
421
|
operation: "delete_file";
|
|
422
|
+
success: boolean;
|
|
423
|
+
error: string;
|
|
424
424
|
deleted_file_id?: string | undefined;
|
|
425
425
|
}, {
|
|
426
|
-
error: string;
|
|
427
|
-
success: boolean;
|
|
428
426
|
operation: "delete_file";
|
|
427
|
+
success: boolean;
|
|
428
|
+
error: string;
|
|
429
429
|
deleted_file_id?: string | undefined;
|
|
430
430
|
}>, z.ZodObject<{
|
|
431
431
|
operation: z.ZodLiteral<"get_file_info">;
|
|
@@ -453,8 +453,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
453
453
|
}>, "many">>;
|
|
454
454
|
}, "strip", z.ZodTypeAny, {
|
|
455
455
|
name: string;
|
|
456
|
-
id: string;
|
|
457
456
|
mimeType: string;
|
|
457
|
+
id: string;
|
|
458
458
|
size?: string | undefined;
|
|
459
459
|
createdTime?: string | undefined;
|
|
460
460
|
modifiedTime?: string | undefined;
|
|
@@ -468,8 +468,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
468
468
|
}[] | undefined;
|
|
469
469
|
}, {
|
|
470
470
|
name: string;
|
|
471
|
-
id: string;
|
|
472
471
|
mimeType: string;
|
|
472
|
+
id: string;
|
|
473
473
|
size?: string | undefined;
|
|
474
474
|
createdTime?: string | undefined;
|
|
475
475
|
modifiedTime?: string | undefined;
|
|
@@ -490,26 +490,26 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
490
490
|
displayName: z.ZodOptional<z.ZodString>;
|
|
491
491
|
}, "strip", z.ZodTypeAny, {
|
|
492
492
|
type: string;
|
|
493
|
-
id: string;
|
|
494
493
|
role: string;
|
|
494
|
+
id: string;
|
|
495
495
|
displayName?: string | undefined;
|
|
496
496
|
emailAddress?: string | undefined;
|
|
497
497
|
}, {
|
|
498
498
|
type: string;
|
|
499
|
-
id: string;
|
|
500
499
|
role: string;
|
|
500
|
+
id: string;
|
|
501
501
|
displayName?: string | undefined;
|
|
502
502
|
emailAddress?: string | undefined;
|
|
503
503
|
}>, "many">>;
|
|
504
504
|
error: z.ZodString;
|
|
505
505
|
}, "strip", z.ZodTypeAny, {
|
|
506
|
-
error: string;
|
|
507
|
-
success: boolean;
|
|
508
506
|
operation: "get_file_info";
|
|
507
|
+
success: boolean;
|
|
508
|
+
error: string;
|
|
509
509
|
file?: {
|
|
510
510
|
name: string;
|
|
511
|
-
id: string;
|
|
512
511
|
mimeType: string;
|
|
512
|
+
id: string;
|
|
513
513
|
size?: string | undefined;
|
|
514
514
|
createdTime?: string | undefined;
|
|
515
515
|
modifiedTime?: string | undefined;
|
|
@@ -524,19 +524,19 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
524
524
|
} | undefined;
|
|
525
525
|
permissions?: {
|
|
526
526
|
type: string;
|
|
527
|
-
id: string;
|
|
528
527
|
role: string;
|
|
528
|
+
id: string;
|
|
529
529
|
displayName?: string | undefined;
|
|
530
530
|
emailAddress?: string | undefined;
|
|
531
531
|
}[] | undefined;
|
|
532
532
|
}, {
|
|
533
|
-
error: string;
|
|
534
|
-
success: boolean;
|
|
535
533
|
operation: "get_file_info";
|
|
534
|
+
success: boolean;
|
|
535
|
+
error: string;
|
|
536
536
|
file?: {
|
|
537
537
|
name: string;
|
|
538
|
-
id: string;
|
|
539
538
|
mimeType: string;
|
|
539
|
+
id: string;
|
|
540
540
|
size?: string | undefined;
|
|
541
541
|
createdTime?: string | undefined;
|
|
542
542
|
modifiedTime?: string | undefined;
|
|
@@ -551,8 +551,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
551
551
|
} | undefined;
|
|
552
552
|
permissions?: {
|
|
553
553
|
type: string;
|
|
554
|
-
id: string;
|
|
555
554
|
role: string;
|
|
555
|
+
id: string;
|
|
556
556
|
displayName?: string | undefined;
|
|
557
557
|
emailAddress?: string | undefined;
|
|
558
558
|
}[] | undefined;
|
|
@@ -563,15 +563,15 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
563
563
|
share_link: z.ZodOptional<z.ZodString>;
|
|
564
564
|
error: z.ZodString;
|
|
565
565
|
}, "strip", z.ZodTypeAny, {
|
|
566
|
-
error: string;
|
|
567
|
-
success: boolean;
|
|
568
566
|
operation: "share_file";
|
|
567
|
+
success: boolean;
|
|
568
|
+
error: string;
|
|
569
569
|
permission_id?: string | undefined;
|
|
570
570
|
share_link?: string | undefined;
|
|
571
571
|
}, {
|
|
572
|
-
error: string;
|
|
573
|
-
success: boolean;
|
|
574
572
|
operation: "share_file";
|
|
573
|
+
success: boolean;
|
|
574
|
+
error: string;
|
|
575
575
|
permission_id?: string | undefined;
|
|
576
576
|
share_link?: string | undefined;
|
|
577
577
|
}>, z.ZodObject<{
|
|
@@ -600,8 +600,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
600
600
|
}>, "many">>;
|
|
601
601
|
}, "strip", z.ZodTypeAny, {
|
|
602
602
|
name: string;
|
|
603
|
-
id: string;
|
|
604
603
|
mimeType: string;
|
|
604
|
+
id: string;
|
|
605
605
|
size?: string | undefined;
|
|
606
606
|
createdTime?: string | undefined;
|
|
607
607
|
modifiedTime?: string | undefined;
|
|
@@ -615,8 +615,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
615
615
|
}[] | undefined;
|
|
616
616
|
}, {
|
|
617
617
|
name: string;
|
|
618
|
-
id: string;
|
|
619
618
|
mimeType: string;
|
|
619
|
+
id: string;
|
|
620
620
|
size?: string | undefined;
|
|
621
621
|
createdTime?: string | undefined;
|
|
622
622
|
modifiedTime?: string | undefined;
|
|
@@ -631,13 +631,13 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
631
631
|
}>>;
|
|
632
632
|
error: z.ZodString;
|
|
633
633
|
}, "strip", z.ZodTypeAny, {
|
|
634
|
-
error: string;
|
|
635
|
-
success: boolean;
|
|
636
634
|
operation: "move_file";
|
|
635
|
+
success: boolean;
|
|
636
|
+
error: string;
|
|
637
637
|
file?: {
|
|
638
638
|
name: string;
|
|
639
|
-
id: string;
|
|
640
639
|
mimeType: string;
|
|
640
|
+
id: string;
|
|
641
641
|
size?: string | undefined;
|
|
642
642
|
createdTime?: string | undefined;
|
|
643
643
|
modifiedTime?: string | undefined;
|
|
@@ -651,13 +651,13 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
|
|
|
651
651
|
}[] | undefined;
|
|
652
652
|
} | undefined;
|
|
653
653
|
}, {
|
|
654
|
-
error: string;
|
|
655
|
-
success: boolean;
|
|
656
654
|
operation: "move_file";
|
|
655
|
+
success: boolean;
|
|
656
|
+
error: string;
|
|
657
657
|
file?: {
|
|
658
658
|
name: string;
|
|
659
|
-
id: string;
|
|
660
659
|
mimeType: string;
|
|
660
|
+
id: string;
|
|
661
661
|
size?: string | undefined;
|
|
662
662
|
createdTime?: string | undefined;
|
|
663
663
|
modifiedTime?: string | undefined;
|
|
@@ -693,21 +693,21 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
693
693
|
convert_to_google_docs: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
694
694
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
695
695
|
}, "strip", z.ZodTypeAny, {
|
|
696
|
+
operation: "upload_file";
|
|
696
697
|
name: string;
|
|
697
698
|
content: string;
|
|
698
|
-
operation: "upload_file";
|
|
699
699
|
convert_to_google_docs: boolean;
|
|
700
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
701
700
|
mimeType?: string | undefined;
|
|
702
701
|
parent_folder_id?: string | undefined;
|
|
702
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
703
703
|
}, {
|
|
704
|
+
operation: "upload_file";
|
|
704
705
|
name: string;
|
|
705
706
|
content: string;
|
|
706
|
-
operation: "upload_file";
|
|
707
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
708
707
|
mimeType?: string | undefined;
|
|
709
708
|
parent_folder_id?: string | undefined;
|
|
710
709
|
convert_to_google_docs?: boolean | undefined;
|
|
710
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
711
711
|
}>, z.ZodObject<{
|
|
712
712
|
operation: z.ZodLiteral<"download_file">;
|
|
713
713
|
file_id: z.ZodString;
|
|
@@ -737,13 +737,13 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
737
737
|
include_folders: boolean;
|
|
738
738
|
order_by: string;
|
|
739
739
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
740
|
-
query?: string | undefined;
|
|
741
740
|
folder_id?: string | undefined;
|
|
741
|
+
query?: string | undefined;
|
|
742
742
|
}, {
|
|
743
743
|
operation: "list_files";
|
|
744
744
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
745
|
-
query?: string | undefined;
|
|
746
745
|
folder_id?: string | undefined;
|
|
746
|
+
query?: string | undefined;
|
|
747
747
|
max_results?: number | undefined;
|
|
748
748
|
include_folders?: boolean | undefined;
|
|
749
749
|
order_by?: string | undefined;
|
|
@@ -753,15 +753,15 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
753
753
|
parent_folder_id: z.ZodOptional<z.ZodString>;
|
|
754
754
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
755
755
|
}, "strip", z.ZodTypeAny, {
|
|
756
|
-
name: string;
|
|
757
756
|
operation: "create_folder";
|
|
758
|
-
|
|
757
|
+
name: string;
|
|
759
758
|
parent_folder_id?: string | undefined;
|
|
759
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
760
760
|
}, {
|
|
761
|
-
name: string;
|
|
762
761
|
operation: "create_folder";
|
|
763
|
-
|
|
762
|
+
name: string;
|
|
764
763
|
parent_folder_id?: string | undefined;
|
|
764
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
765
765
|
}>, z.ZodObject<{
|
|
766
766
|
operation: z.ZodLiteral<"delete_file">;
|
|
767
767
|
file_id: z.ZodString;
|
|
@@ -801,10 +801,10 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
801
801
|
send_notification: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
802
802
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
803
803
|
}, "strip", z.ZodTypeAny, {
|
|
804
|
-
type: "user" | "group" | "domain" | "anyone";
|
|
805
804
|
operation: "share_file";
|
|
805
|
+
type: "user" | "group" | "domain" | "anyone";
|
|
806
806
|
file_id: string;
|
|
807
|
-
role: "
|
|
807
|
+
role: "reader" | "writer" | "commenter" | "owner";
|
|
808
808
|
send_notification: boolean;
|
|
809
809
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
810
810
|
email_address?: string | undefined;
|
|
@@ -814,7 +814,7 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
814
814
|
type?: "user" | "group" | "domain" | "anyone" | undefined;
|
|
815
815
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
816
816
|
email_address?: string | undefined;
|
|
817
|
-
role?: "
|
|
817
|
+
role?: "reader" | "writer" | "commenter" | "owner" | undefined;
|
|
818
818
|
send_notification?: boolean | undefined;
|
|
819
819
|
}>, z.ZodObject<{
|
|
820
820
|
operation: z.ZodLiteral<"move_file">;
|
|
@@ -861,8 +861,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
861
861
|
}>, "many">>;
|
|
862
862
|
}, "strip", z.ZodTypeAny, {
|
|
863
863
|
name: string;
|
|
864
|
-
id: string;
|
|
865
864
|
mimeType: string;
|
|
865
|
+
id: string;
|
|
866
866
|
size?: string | undefined;
|
|
867
867
|
createdTime?: string | undefined;
|
|
868
868
|
modifiedTime?: string | undefined;
|
|
@@ -876,8 +876,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
876
876
|
}[] | undefined;
|
|
877
877
|
}, {
|
|
878
878
|
name: string;
|
|
879
|
-
id: string;
|
|
880
879
|
mimeType: string;
|
|
880
|
+
id: string;
|
|
881
881
|
size?: string | undefined;
|
|
882
882
|
createdTime?: string | undefined;
|
|
883
883
|
modifiedTime?: string | undefined;
|
|
@@ -892,13 +892,13 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
892
892
|
}>>;
|
|
893
893
|
error: z.ZodString;
|
|
894
894
|
}, "strip", z.ZodTypeAny, {
|
|
895
|
-
error: string;
|
|
896
|
-
success: boolean;
|
|
897
895
|
operation: "upload_file";
|
|
896
|
+
success: boolean;
|
|
897
|
+
error: string;
|
|
898
898
|
file?: {
|
|
899
899
|
name: string;
|
|
900
|
-
id: string;
|
|
901
900
|
mimeType: string;
|
|
901
|
+
id: string;
|
|
902
902
|
size?: string | undefined;
|
|
903
903
|
createdTime?: string | undefined;
|
|
904
904
|
modifiedTime?: string | undefined;
|
|
@@ -912,13 +912,13 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
912
912
|
}[] | undefined;
|
|
913
913
|
} | undefined;
|
|
914
914
|
}, {
|
|
915
|
-
error: string;
|
|
916
|
-
success: boolean;
|
|
917
915
|
operation: "upload_file";
|
|
916
|
+
success: boolean;
|
|
917
|
+
error: string;
|
|
918
918
|
file?: {
|
|
919
919
|
name: string;
|
|
920
|
-
id: string;
|
|
921
920
|
mimeType: string;
|
|
921
|
+
id: string;
|
|
922
922
|
size?: string | undefined;
|
|
923
923
|
createdTime?: string | undefined;
|
|
924
924
|
modifiedTime?: string | undefined;
|
|
@@ -939,16 +939,16 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
939
939
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
940
940
|
error: z.ZodString;
|
|
941
941
|
}, "strip", z.ZodTypeAny, {
|
|
942
|
-
error: string;
|
|
943
|
-
success: boolean;
|
|
944
942
|
operation: "download_file";
|
|
943
|
+
success: boolean;
|
|
944
|
+
error: string;
|
|
945
945
|
content?: string | undefined;
|
|
946
946
|
mimeType?: string | undefined;
|
|
947
947
|
filename?: string | undefined;
|
|
948
948
|
}, {
|
|
949
|
-
error: string;
|
|
950
|
-
success: boolean;
|
|
951
949
|
operation: "download_file";
|
|
950
|
+
success: boolean;
|
|
951
|
+
error: string;
|
|
952
952
|
content?: string | undefined;
|
|
953
953
|
mimeType?: string | undefined;
|
|
954
954
|
filename?: string | undefined;
|
|
@@ -978,8 +978,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
978
978
|
}>, "many">>;
|
|
979
979
|
}, "strip", z.ZodTypeAny, {
|
|
980
980
|
name: string;
|
|
981
|
-
id: string;
|
|
982
981
|
mimeType: string;
|
|
982
|
+
id: string;
|
|
983
983
|
size?: string | undefined;
|
|
984
984
|
createdTime?: string | undefined;
|
|
985
985
|
modifiedTime?: string | undefined;
|
|
@@ -993,8 +993,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
993
993
|
}[] | undefined;
|
|
994
994
|
}, {
|
|
995
995
|
name: string;
|
|
996
|
-
id: string;
|
|
997
996
|
mimeType: string;
|
|
997
|
+
id: string;
|
|
998
998
|
size?: string | undefined;
|
|
999
999
|
createdTime?: string | undefined;
|
|
1000
1000
|
modifiedTime?: string | undefined;
|
|
@@ -1011,13 +1011,13 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1011
1011
|
next_page_token: z.ZodOptional<z.ZodString>;
|
|
1012
1012
|
error: z.ZodString;
|
|
1013
1013
|
}, "strip", z.ZodTypeAny, {
|
|
1014
|
-
error: string;
|
|
1015
|
-
success: boolean;
|
|
1016
1014
|
operation: "list_files";
|
|
1015
|
+
success: boolean;
|
|
1016
|
+
error: string;
|
|
1017
1017
|
files?: {
|
|
1018
1018
|
name: string;
|
|
1019
|
-
id: string;
|
|
1020
1019
|
mimeType: string;
|
|
1020
|
+
id: string;
|
|
1021
1021
|
size?: string | undefined;
|
|
1022
1022
|
createdTime?: string | undefined;
|
|
1023
1023
|
modifiedTime?: string | undefined;
|
|
@@ -1033,13 +1033,13 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1033
1033
|
total_count?: number | undefined;
|
|
1034
1034
|
next_page_token?: string | undefined;
|
|
1035
1035
|
}, {
|
|
1036
|
-
error: string;
|
|
1037
|
-
success: boolean;
|
|
1038
1036
|
operation: "list_files";
|
|
1037
|
+
success: boolean;
|
|
1038
|
+
error: string;
|
|
1039
1039
|
files?: {
|
|
1040
1040
|
name: string;
|
|
1041
|
-
id: string;
|
|
1042
1041
|
mimeType: string;
|
|
1042
|
+
id: string;
|
|
1043
1043
|
size?: string | undefined;
|
|
1044
1044
|
createdTime?: string | undefined;
|
|
1045
1045
|
modifiedTime?: string | undefined;
|
|
@@ -1075,9 +1075,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1075
1075
|
}>>;
|
|
1076
1076
|
error: z.ZodString;
|
|
1077
1077
|
}, "strip", z.ZodTypeAny, {
|
|
1078
|
-
error: string;
|
|
1079
|
-
success: boolean;
|
|
1080
1078
|
operation: "create_folder";
|
|
1079
|
+
success: boolean;
|
|
1080
|
+
error: string;
|
|
1081
1081
|
folder?: {
|
|
1082
1082
|
name: string;
|
|
1083
1083
|
id: string;
|
|
@@ -1085,9 +1085,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1085
1085
|
parents?: string[] | undefined;
|
|
1086
1086
|
} | undefined;
|
|
1087
1087
|
}, {
|
|
1088
|
-
error: string;
|
|
1089
|
-
success: boolean;
|
|
1090
1088
|
operation: "create_folder";
|
|
1089
|
+
success: boolean;
|
|
1090
|
+
error: string;
|
|
1091
1091
|
folder?: {
|
|
1092
1092
|
name: string;
|
|
1093
1093
|
id: string;
|
|
@@ -1100,14 +1100,14 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1100
1100
|
deleted_file_id: z.ZodOptional<z.ZodString>;
|
|
1101
1101
|
error: z.ZodString;
|
|
1102
1102
|
}, "strip", z.ZodTypeAny, {
|
|
1103
|
-
error: string;
|
|
1104
|
-
success: boolean;
|
|
1105
1103
|
operation: "delete_file";
|
|
1104
|
+
success: boolean;
|
|
1105
|
+
error: string;
|
|
1106
1106
|
deleted_file_id?: string | undefined;
|
|
1107
1107
|
}, {
|
|
1108
|
-
error: string;
|
|
1109
|
-
success: boolean;
|
|
1110
1108
|
operation: "delete_file";
|
|
1109
|
+
success: boolean;
|
|
1110
|
+
error: string;
|
|
1111
1111
|
deleted_file_id?: string | undefined;
|
|
1112
1112
|
}>, z.ZodObject<{
|
|
1113
1113
|
operation: z.ZodLiteral<"get_file_info">;
|
|
@@ -1135,8 +1135,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1135
1135
|
}>, "many">>;
|
|
1136
1136
|
}, "strip", z.ZodTypeAny, {
|
|
1137
1137
|
name: string;
|
|
1138
|
-
id: string;
|
|
1139
1138
|
mimeType: string;
|
|
1139
|
+
id: string;
|
|
1140
1140
|
size?: string | undefined;
|
|
1141
1141
|
createdTime?: string | undefined;
|
|
1142
1142
|
modifiedTime?: string | undefined;
|
|
@@ -1150,8 +1150,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1150
1150
|
}[] | undefined;
|
|
1151
1151
|
}, {
|
|
1152
1152
|
name: string;
|
|
1153
|
-
id: string;
|
|
1154
1153
|
mimeType: string;
|
|
1154
|
+
id: string;
|
|
1155
1155
|
size?: string | undefined;
|
|
1156
1156
|
createdTime?: string | undefined;
|
|
1157
1157
|
modifiedTime?: string | undefined;
|
|
@@ -1172,26 +1172,26 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1172
1172
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1173
1173
|
}, "strip", z.ZodTypeAny, {
|
|
1174
1174
|
type: string;
|
|
1175
|
-
id: string;
|
|
1176
1175
|
role: string;
|
|
1176
|
+
id: string;
|
|
1177
1177
|
displayName?: string | undefined;
|
|
1178
1178
|
emailAddress?: string | undefined;
|
|
1179
1179
|
}, {
|
|
1180
1180
|
type: string;
|
|
1181
|
-
id: string;
|
|
1182
1181
|
role: string;
|
|
1182
|
+
id: string;
|
|
1183
1183
|
displayName?: string | undefined;
|
|
1184
1184
|
emailAddress?: string | undefined;
|
|
1185
1185
|
}>, "many">>;
|
|
1186
1186
|
error: z.ZodString;
|
|
1187
1187
|
}, "strip", z.ZodTypeAny, {
|
|
1188
|
-
error: string;
|
|
1189
|
-
success: boolean;
|
|
1190
1188
|
operation: "get_file_info";
|
|
1189
|
+
success: boolean;
|
|
1190
|
+
error: string;
|
|
1191
1191
|
file?: {
|
|
1192
1192
|
name: string;
|
|
1193
|
-
id: string;
|
|
1194
1193
|
mimeType: string;
|
|
1194
|
+
id: string;
|
|
1195
1195
|
size?: string | undefined;
|
|
1196
1196
|
createdTime?: string | undefined;
|
|
1197
1197
|
modifiedTime?: string | undefined;
|
|
@@ -1206,19 +1206,19 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1206
1206
|
} | undefined;
|
|
1207
1207
|
permissions?: {
|
|
1208
1208
|
type: string;
|
|
1209
|
-
id: string;
|
|
1210
1209
|
role: string;
|
|
1210
|
+
id: string;
|
|
1211
1211
|
displayName?: string | undefined;
|
|
1212
1212
|
emailAddress?: string | undefined;
|
|
1213
1213
|
}[] | undefined;
|
|
1214
1214
|
}, {
|
|
1215
|
-
error: string;
|
|
1216
|
-
success: boolean;
|
|
1217
1215
|
operation: "get_file_info";
|
|
1216
|
+
success: boolean;
|
|
1217
|
+
error: string;
|
|
1218
1218
|
file?: {
|
|
1219
1219
|
name: string;
|
|
1220
|
-
id: string;
|
|
1221
1220
|
mimeType: string;
|
|
1221
|
+
id: string;
|
|
1222
1222
|
size?: string | undefined;
|
|
1223
1223
|
createdTime?: string | undefined;
|
|
1224
1224
|
modifiedTime?: string | undefined;
|
|
@@ -1233,8 +1233,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1233
1233
|
} | undefined;
|
|
1234
1234
|
permissions?: {
|
|
1235
1235
|
type: string;
|
|
1236
|
-
id: string;
|
|
1237
1236
|
role: string;
|
|
1237
|
+
id: string;
|
|
1238
1238
|
displayName?: string | undefined;
|
|
1239
1239
|
emailAddress?: string | undefined;
|
|
1240
1240
|
}[] | undefined;
|
|
@@ -1245,15 +1245,15 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1245
1245
|
share_link: z.ZodOptional<z.ZodString>;
|
|
1246
1246
|
error: z.ZodString;
|
|
1247
1247
|
}, "strip", z.ZodTypeAny, {
|
|
1248
|
-
error: string;
|
|
1249
|
-
success: boolean;
|
|
1250
1248
|
operation: "share_file";
|
|
1249
|
+
success: boolean;
|
|
1250
|
+
error: string;
|
|
1251
1251
|
permission_id?: string | undefined;
|
|
1252
1252
|
share_link?: string | undefined;
|
|
1253
1253
|
}, {
|
|
1254
|
-
error: string;
|
|
1255
|
-
success: boolean;
|
|
1256
1254
|
operation: "share_file";
|
|
1255
|
+
success: boolean;
|
|
1256
|
+
error: string;
|
|
1257
1257
|
permission_id?: string | undefined;
|
|
1258
1258
|
share_link?: string | undefined;
|
|
1259
1259
|
}>, z.ZodObject<{
|
|
@@ -1282,8 +1282,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1282
1282
|
}>, "many">>;
|
|
1283
1283
|
}, "strip", z.ZodTypeAny, {
|
|
1284
1284
|
name: string;
|
|
1285
|
-
id: string;
|
|
1286
1285
|
mimeType: string;
|
|
1286
|
+
id: string;
|
|
1287
1287
|
size?: string | undefined;
|
|
1288
1288
|
createdTime?: string | undefined;
|
|
1289
1289
|
modifiedTime?: string | undefined;
|
|
@@ -1297,8 +1297,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1297
1297
|
}[] | undefined;
|
|
1298
1298
|
}, {
|
|
1299
1299
|
name: string;
|
|
1300
|
-
id: string;
|
|
1301
1300
|
mimeType: string;
|
|
1301
|
+
id: string;
|
|
1302
1302
|
size?: string | undefined;
|
|
1303
1303
|
createdTime?: string | undefined;
|
|
1304
1304
|
modifiedTime?: string | undefined;
|
|
@@ -1313,13 +1313,13 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1313
1313
|
}>>;
|
|
1314
1314
|
error: z.ZodString;
|
|
1315
1315
|
}, "strip", z.ZodTypeAny, {
|
|
1316
|
-
error: string;
|
|
1317
|
-
success: boolean;
|
|
1318
1316
|
operation: "move_file";
|
|
1317
|
+
success: boolean;
|
|
1318
|
+
error: string;
|
|
1319
1319
|
file?: {
|
|
1320
1320
|
name: string;
|
|
1321
|
-
id: string;
|
|
1322
1321
|
mimeType: string;
|
|
1322
|
+
id: string;
|
|
1323
1323
|
size?: string | undefined;
|
|
1324
1324
|
createdTime?: string | undefined;
|
|
1325
1325
|
modifiedTime?: string | undefined;
|
|
@@ -1333,13 +1333,13 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
|
|
|
1333
1333
|
}[] | undefined;
|
|
1334
1334
|
} | undefined;
|
|
1335
1335
|
}, {
|
|
1336
|
-
error: string;
|
|
1337
|
-
success: boolean;
|
|
1338
1336
|
operation: "move_file";
|
|
1337
|
+
success: boolean;
|
|
1338
|
+
error: string;
|
|
1339
1339
|
file?: {
|
|
1340
1340
|
name: string;
|
|
1341
|
-
id: string;
|
|
1342
1341
|
mimeType: string;
|
|
1342
|
+
id: string;
|
|
1343
1343
|
size?: string | undefined;
|
|
1344
1344
|
createdTime?: string | undefined;
|
|
1345
1345
|
modifiedTime?: string | undefined;
|