@bubblelab/bubble-core 0.1.73 → 0.1.75

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.
Files changed (60) hide show
  1. package/dist/bubble-bundle.d.ts +109 -109
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +112 -112
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
  4. package/dist/bubbles/service-bubble/airtable.d.ts +210 -210
  5. package/dist/bubbles/service-bubble/airtable.d.ts.map +1 -1
  6. package/dist/bubbles/service-bubble/airtable.js +3 -1
  7. package/dist/bubbles/service-bubble/airtable.js.map +1 -1
  8. package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
  9. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +134 -134
  10. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +16 -16
  11. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +31 -31
  12. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +53 -53
  13. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +90 -90
  14. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +30 -30
  15. package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
  16. package/dist/bubbles/service-bubble/firecrawl.d.ts +250 -250
  17. package/dist/bubbles/service-bubble/followupboss.d.ts +236 -236
  18. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +16 -16
  19. package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +30 -30
  20. package/dist/bubbles/service-bubble/github.d.ts +104 -104
  21. package/dist/bubbles/service-bubble/gmail.d.ts +176 -176
  22. package/dist/bubbles/service-bubble/google-calendar.d.ts +28 -28
  23. package/dist/bubbles/service-bubble/google-drive.d.ts +130 -130
  24. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +42 -42
  25. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +38 -38
  26. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  27. package/dist/bubbles/service-bubble/insforge-db.d.ts +12 -12
  28. package/dist/bubbles/service-bubble/jira/jira.d.ts +54 -54
  29. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +38 -38
  30. package/dist/bubbles/service-bubble/notion/notion.d.ts +512 -512
  31. package/dist/bubbles/service-bubble/postgresql.d.ts +12 -12
  32. package/dist/bubbles/service-bubble/resend.d.ts +12 -12
  33. package/dist/bubbles/service-bubble/slack/slack.d.ts +535 -535
  34. package/dist/bubbles/service-bubble/slack/slack.utils.d.ts.map +1 -1
  35. package/dist/bubbles/service-bubble/slack/slack.utils.js +29 -20
  36. package/dist/bubbles/service-bubble/slack/slack.utils.js.map +1 -1
  37. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  38. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +80 -80
  39. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +71 -71
  40. package/dist/bubbles/service-bubble/telegram.d.ts +110 -110
  41. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +24 -24
  42. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +24 -24
  43. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
  44. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
  45. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
  46. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +2 -2
  47. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +302 -302
  48. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
  49. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +64 -64
  50. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +94 -94
  51. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  52. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  53. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  54. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +8 -8
  55. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +14 -14
  56. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
  57. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +78 -78
  58. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +76 -76
  59. package/dist/bubbles.json +3 -2
  60. 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
- content: string;
15
- name: string;
16
14
  operation: "upload_file";
15
+ name: string;
16
+ content: string;
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
- content: string;
23
- name: string;
24
22
  operation: "upload_file";
23
+ name: string;
24
+ content: string;
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,8 +119,8 @@ 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
125
  role: "writer" | "reader" | "commenter" | "owner";
126
126
  send_notification: boolean;
@@ -178,15 +178,15 @@ declare const GoogleDriveParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
178
178
  tab_id: z.ZodOptional<z.ZodString>;
179
179
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
180
180
  }, "strip", z.ZodTypeAny, {
181
- content: string;
182
181
  operation: "update_doc";
182
+ content: string;
183
183
  mode: "replace" | "append";
184
184
  document_id: string;
185
185
  credentials?: Partial<Record<CredentialType, string>> | undefined;
186
186
  tab_id?: string | undefined;
187
187
  }, {
188
- content: string;
189
188
  operation: "update_doc";
189
+ content: string;
190
190
  document_id: string;
191
191
  credentials?: Partial<Record<CredentialType, string>> | undefined;
192
192
  mode?: "replace" | "append" | undefined;
@@ -274,10 +274,10 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
274
274
  }>, "many">>;
275
275
  }, "strip", z.ZodTypeAny, {
276
276
  name: string;
277
- mimeType: string;
278
277
  id: string;
279
- size?: string | undefined;
278
+ mimeType: string;
280
279
  createdTime?: string | undefined;
280
+ size?: string | undefined;
281
281
  modifiedTime?: string | undefined;
282
282
  webViewLink?: string | undefined;
283
283
  webContentLink?: string | undefined;
@@ -289,10 +289,10 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
289
289
  }[] | undefined;
290
290
  }, {
291
291
  name: string;
292
- mimeType: string;
293
292
  id: string;
294
- size?: string | undefined;
293
+ mimeType: string;
295
294
  createdTime?: string | undefined;
295
+ size?: string | undefined;
296
296
  modifiedTime?: string | undefined;
297
297
  webViewLink?: string | undefined;
298
298
  webContentLink?: string | undefined;
@@ -305,15 +305,15 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
305
305
  }>>;
306
306
  error: z.ZodString;
307
307
  }, "strip", z.ZodTypeAny, {
308
+ operation: "upload_file";
308
309
  error: string;
309
310
  success: boolean;
310
- operation: "upload_file";
311
311
  file?: {
312
312
  name: string;
313
- mimeType: string;
314
313
  id: string;
315
- size?: string | undefined;
314
+ mimeType: string;
316
315
  createdTime?: string | undefined;
316
+ size?: string | undefined;
317
317
  modifiedTime?: string | undefined;
318
318
  webViewLink?: string | undefined;
319
319
  webContentLink?: string | undefined;
@@ -325,15 +325,15 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
325
325
  }[] | undefined;
326
326
  } | undefined;
327
327
  }, {
328
+ operation: "upload_file";
328
329
  error: string;
329
330
  success: boolean;
330
- operation: "upload_file";
331
331
  file?: {
332
332
  name: string;
333
- mimeType: string;
334
333
  id: string;
335
- size?: string | undefined;
334
+ mimeType: string;
336
335
  createdTime?: string | undefined;
336
+ size?: string | undefined;
337
337
  modifiedTime?: string | undefined;
338
338
  webViewLink?: string | undefined;
339
339
  webContentLink?: string | undefined;
@@ -352,16 +352,16 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
352
352
  mimeType: z.ZodOptional<z.ZodString>;
353
353
  error: z.ZodString;
354
354
  }, "strip", z.ZodTypeAny, {
355
+ operation: "download_file";
355
356
  error: string;
356
357
  success: boolean;
357
- operation: "download_file";
358
358
  content?: string | undefined;
359
359
  mimeType?: string | undefined;
360
360
  filename?: string | undefined;
361
361
  }, {
362
+ operation: "download_file";
362
363
  error: string;
363
364
  success: boolean;
364
- operation: "download_file";
365
365
  content?: string | undefined;
366
366
  mimeType?: string | undefined;
367
367
  filename?: string | undefined;
@@ -391,10 +391,10 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
391
391
  }>, "many">>;
392
392
  }, "strip", z.ZodTypeAny, {
393
393
  name: string;
394
- mimeType: string;
395
394
  id: string;
396
- size?: string | undefined;
395
+ mimeType: string;
397
396
  createdTime?: string | undefined;
397
+ size?: string | undefined;
398
398
  modifiedTime?: string | undefined;
399
399
  webViewLink?: string | undefined;
400
400
  webContentLink?: string | undefined;
@@ -406,10 +406,10 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
406
406
  }[] | undefined;
407
407
  }, {
408
408
  name: string;
409
- mimeType: string;
410
409
  id: string;
411
- size?: string | undefined;
410
+ mimeType: string;
412
411
  createdTime?: string | undefined;
412
+ size?: string | undefined;
413
413
  modifiedTime?: string | undefined;
414
414
  webViewLink?: string | undefined;
415
415
  webContentLink?: string | undefined;
@@ -424,15 +424,15 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
424
424
  next_page_token: z.ZodOptional<z.ZodString>;
425
425
  error: z.ZodString;
426
426
  }, "strip", z.ZodTypeAny, {
427
+ operation: "list_files";
427
428
  error: string;
428
429
  success: boolean;
429
- operation: "list_files";
430
430
  files?: {
431
431
  name: string;
432
- mimeType: string;
433
432
  id: string;
434
- size?: string | undefined;
433
+ mimeType: string;
435
434
  createdTime?: string | undefined;
435
+ size?: string | undefined;
436
436
  modifiedTime?: string | undefined;
437
437
  webViewLink?: string | undefined;
438
438
  webContentLink?: string | undefined;
@@ -446,15 +446,15 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
446
446
  total_count?: number | undefined;
447
447
  next_page_token?: string | undefined;
448
448
  }, {
449
+ operation: "list_files";
449
450
  error: string;
450
451
  success: boolean;
451
- operation: "list_files";
452
452
  files?: {
453
453
  name: string;
454
- mimeType: string;
455
454
  id: string;
456
- size?: string | undefined;
455
+ mimeType: string;
457
456
  createdTime?: string | undefined;
457
+ size?: string | undefined;
458
458
  modifiedTime?: string | undefined;
459
459
  webViewLink?: string | undefined;
460
460
  webContentLink?: string | undefined;
@@ -488,9 +488,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
488
488
  }>>;
489
489
  error: z.ZodString;
490
490
  }, "strip", z.ZodTypeAny, {
491
+ operation: "create_folder";
491
492
  error: string;
492
493
  success: boolean;
493
- operation: "create_folder";
494
494
  folder?: {
495
495
  name: string;
496
496
  id: string;
@@ -498,9 +498,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
498
498
  parents?: string[] | undefined;
499
499
  } | undefined;
500
500
  }, {
501
+ operation: "create_folder";
501
502
  error: string;
502
503
  success: boolean;
503
- operation: "create_folder";
504
504
  folder?: {
505
505
  name: string;
506
506
  id: string;
@@ -513,14 +513,14 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
513
513
  deleted_file_id: z.ZodOptional<z.ZodString>;
514
514
  error: z.ZodString;
515
515
  }, "strip", z.ZodTypeAny, {
516
+ operation: "delete_file";
516
517
  error: string;
517
518
  success: boolean;
518
- operation: "delete_file";
519
519
  deleted_file_id?: string | undefined;
520
520
  }, {
521
+ operation: "delete_file";
521
522
  error: string;
522
523
  success: boolean;
523
- operation: "delete_file";
524
524
  deleted_file_id?: string | undefined;
525
525
  }>, z.ZodObject<{
526
526
  operation: z.ZodLiteral<"get_file_info">;
@@ -548,10 +548,10 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
548
548
  }>, "many">>;
549
549
  }, "strip", z.ZodTypeAny, {
550
550
  name: string;
551
- mimeType: string;
552
551
  id: string;
553
- size?: string | undefined;
552
+ mimeType: string;
554
553
  createdTime?: string | undefined;
554
+ size?: string | undefined;
555
555
  modifiedTime?: string | undefined;
556
556
  webViewLink?: string | undefined;
557
557
  webContentLink?: string | undefined;
@@ -563,10 +563,10 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
563
563
  }[] | undefined;
564
564
  }, {
565
565
  name: string;
566
- mimeType: string;
567
566
  id: string;
568
- size?: string | undefined;
567
+ mimeType: string;
569
568
  createdTime?: string | undefined;
569
+ size?: string | undefined;
570
570
  modifiedTime?: string | undefined;
571
571
  webViewLink?: string | undefined;
572
572
  webContentLink?: string | undefined;
@@ -598,15 +598,15 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
598
598
  }>, "many">>;
599
599
  error: z.ZodString;
600
600
  }, "strip", z.ZodTypeAny, {
601
+ operation: "get_file_info";
601
602
  error: string;
602
603
  success: boolean;
603
- operation: "get_file_info";
604
604
  file?: {
605
605
  name: string;
606
- mimeType: string;
607
606
  id: string;
608
- size?: string | undefined;
607
+ mimeType: string;
609
608
  createdTime?: string | undefined;
609
+ size?: string | undefined;
610
610
  modifiedTime?: string | undefined;
611
611
  webViewLink?: string | undefined;
612
612
  webContentLink?: string | undefined;
@@ -625,15 +625,15 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
625
625
  emailAddress?: string | undefined;
626
626
  }[] | undefined;
627
627
  }, {
628
+ operation: "get_file_info";
628
629
  error: string;
629
630
  success: boolean;
630
- operation: "get_file_info";
631
631
  file?: {
632
632
  name: string;
633
- mimeType: string;
634
633
  id: string;
635
- size?: string | undefined;
634
+ mimeType: string;
636
635
  createdTime?: string | undefined;
636
+ size?: string | undefined;
637
637
  modifiedTime?: string | undefined;
638
638
  webViewLink?: string | undefined;
639
639
  webContentLink?: string | undefined;
@@ -658,15 +658,15 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
658
658
  share_link: z.ZodOptional<z.ZodString>;
659
659
  error: z.ZodString;
660
660
  }, "strip", z.ZodTypeAny, {
661
+ operation: "share_file";
661
662
  error: string;
662
663
  success: boolean;
663
- operation: "share_file";
664
664
  permission_id?: string | undefined;
665
665
  share_link?: string | undefined;
666
666
  }, {
667
+ operation: "share_file";
667
668
  error: string;
668
669
  success: boolean;
669
- operation: "share_file";
670
670
  permission_id?: string | undefined;
671
671
  share_link?: string | undefined;
672
672
  }>, z.ZodObject<{
@@ -695,10 +695,10 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
695
695
  }>, "many">>;
696
696
  }, "strip", z.ZodTypeAny, {
697
697
  name: string;
698
- mimeType: string;
699
698
  id: string;
700
- size?: string | undefined;
699
+ mimeType: string;
701
700
  createdTime?: string | undefined;
701
+ size?: string | undefined;
702
702
  modifiedTime?: string | undefined;
703
703
  webViewLink?: string | undefined;
704
704
  webContentLink?: string | undefined;
@@ -710,10 +710,10 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
710
710
  }[] | undefined;
711
711
  }, {
712
712
  name: string;
713
- mimeType: string;
714
713
  id: string;
715
- size?: string | undefined;
714
+ mimeType: string;
716
715
  createdTime?: string | undefined;
716
+ size?: string | undefined;
717
717
  modifiedTime?: string | undefined;
718
718
  webViewLink?: string | undefined;
719
719
  webContentLink?: string | undefined;
@@ -726,15 +726,15 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
726
726
  }>>;
727
727
  error: z.ZodString;
728
728
  }, "strip", z.ZodTypeAny, {
729
+ operation: "move_file";
729
730
  error: string;
730
731
  success: boolean;
731
- operation: "move_file";
732
732
  file?: {
733
733
  name: string;
734
- mimeType: string;
735
734
  id: string;
736
- size?: string | undefined;
735
+ mimeType: string;
737
736
  createdTime?: string | undefined;
737
+ size?: string | undefined;
738
738
  modifiedTime?: string | undefined;
739
739
  webViewLink?: string | undefined;
740
740
  webContentLink?: string | undefined;
@@ -746,15 +746,15 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
746
746
  }[] | undefined;
747
747
  } | undefined;
748
748
  }, {
749
+ operation: "move_file";
749
750
  error: string;
750
751
  success: boolean;
751
- operation: "move_file";
752
752
  file?: {
753
753
  name: string;
754
- mimeType: string;
755
754
  id: string;
756
- size?: string | undefined;
755
+ mimeType: string;
757
756
  createdTime?: string | undefined;
757
+ size?: string | undefined;
758
758
  modifiedTime?: string | undefined;
759
759
  webViewLink?: string | undefined;
760
760
  webContentLink?: string | undefined;
@@ -812,9 +812,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
812
812
  }>, "many">>;
813
813
  error: z.ZodString;
814
814
  }, "strip", z.ZodTypeAny, {
815
+ operation: "get_doc";
815
816
  error: string;
816
817
  success: boolean;
817
- operation: "get_doc";
818
818
  document?: z.objectOutputType<{
819
819
  documentId: z.ZodString;
820
820
  title: z.ZodString;
@@ -832,9 +832,9 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
832
832
  plainText?: string | undefined;
833
833
  }[] | undefined;
834
834
  }, {
835
+ operation: "get_doc";
835
836
  error: string;
836
837
  success: boolean;
837
- operation: "get_doc";
838
838
  document?: z.objectInputType<{
839
839
  documentId: z.ZodString;
840
840
  title: z.ZodString;
@@ -858,15 +858,15 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
858
858
  revisionId: z.ZodOptional<z.ZodString>;
859
859
  error: z.ZodString;
860
860
  }, "strip", z.ZodTypeAny, {
861
+ operation: "update_doc";
861
862
  error: string;
862
863
  success: boolean;
863
- operation: "update_doc";
864
864
  documentId?: string | undefined;
865
865
  revisionId?: string | undefined;
866
866
  }, {
867
+ operation: "update_doc";
867
868
  error: string;
868
869
  success: boolean;
869
- operation: "update_doc";
870
870
  documentId?: string | undefined;
871
871
  revisionId?: string | undefined;
872
872
  }>, z.ZodObject<{
@@ -875,14 +875,14 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
875
875
  replacements_made: z.ZodOptional<z.ZodNumber>;
876
876
  error: z.ZodString;
877
877
  }, "strip", z.ZodTypeAny, {
878
+ operation: "replace_text";
878
879
  error: string;
879
880
  success: boolean;
880
- operation: "replace_text";
881
881
  replacements_made?: number | undefined;
882
882
  }, {
883
+ operation: "replace_text";
883
884
  error: string;
884
885
  success: boolean;
885
- operation: "replace_text";
886
886
  replacements_made?: number | undefined;
887
887
  }>, z.ZodObject<{
888
888
  operation: z.ZodLiteral<"copy_doc">;
@@ -891,15 +891,15 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
891
891
  new_document_url: z.ZodOptional<z.ZodString>;
892
892
  error: z.ZodString;
893
893
  }, "strip", z.ZodTypeAny, {
894
+ operation: "copy_doc";
894
895
  error: string;
895
896
  success: boolean;
896
- operation: "copy_doc";
897
897
  new_document_id?: string | undefined;
898
898
  new_document_url?: string | undefined;
899
899
  }, {
900
+ operation: "copy_doc";
900
901
  error: string;
901
902
  success: boolean;
902
- operation: "copy_doc";
903
903
  new_document_id?: string | undefined;
904
904
  new_document_url?: string | undefined;
905
905
  }>]>;
@@ -925,17 +925,17 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
925
925
  convert_to_google_docs: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
926
926
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
927
927
  }, "strip", z.ZodTypeAny, {
928
- content: string;
929
- name: string;
930
928
  operation: "upload_file";
929
+ name: string;
930
+ content: string;
931
931
  convert_to_google_docs: boolean;
932
932
  credentials?: Partial<Record<CredentialType, string>> | undefined;
933
933
  mimeType?: string | undefined;
934
934
  parent_folder_id?: string | undefined;
935
935
  }, {
936
- content: string;
937
- name: string;
938
936
  operation: "upload_file";
937
+ name: string;
938
+ content: string;
939
939
  credentials?: Partial<Record<CredentialType, string>> | undefined;
940
940
  mimeType?: string | undefined;
941
941
  parent_folder_id?: string | undefined;
@@ -985,13 +985,13 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
985
985
  parent_folder_id: z.ZodOptional<z.ZodString>;
986
986
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
987
987
  }, "strip", z.ZodTypeAny, {
988
- name: string;
989
988
  operation: "create_folder";
989
+ name: string;
990
990
  credentials?: Partial<Record<CredentialType, string>> | undefined;
991
991
  parent_folder_id?: string | undefined;
992
992
  }, {
993
- name: string;
994
993
  operation: "create_folder";
994
+ name: string;
995
995
  credentials?: Partial<Record<CredentialType, string>> | undefined;
996
996
  parent_folder_id?: string | undefined;
997
997
  }>, z.ZodObject<{
@@ -1033,8 +1033,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1033
1033
  send_notification: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1034
1034
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
1035
1035
  }, "strip", z.ZodTypeAny, {
1036
- type: "user" | "group" | "domain" | "anyone";
1037
1036
  operation: "share_file";
1037
+ type: "user" | "group" | "domain" | "anyone";
1038
1038
  file_id: string;
1039
1039
  role: "writer" | "reader" | "commenter" | "owner";
1040
1040
  send_notification: boolean;
@@ -1092,15 +1092,15 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1092
1092
  tab_id: z.ZodOptional<z.ZodString>;
1093
1093
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
1094
1094
  }, "strip", z.ZodTypeAny, {
1095
- content: string;
1096
1095
  operation: "update_doc";
1096
+ content: string;
1097
1097
  mode: "replace" | "append";
1098
1098
  document_id: string;
1099
1099
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1100
1100
  tab_id?: string | undefined;
1101
1101
  }, {
1102
- content: string;
1103
1102
  operation: "update_doc";
1103
+ content: string;
1104
1104
  document_id: string;
1105
1105
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1106
1106
  mode?: "replace" | "append" | undefined;
@@ -1188,10 +1188,10 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1188
1188
  }>, "many">>;
1189
1189
  }, "strip", z.ZodTypeAny, {
1190
1190
  name: string;
1191
- mimeType: string;
1192
1191
  id: string;
1193
- size?: string | undefined;
1192
+ mimeType: string;
1194
1193
  createdTime?: string | undefined;
1194
+ size?: string | undefined;
1195
1195
  modifiedTime?: string | undefined;
1196
1196
  webViewLink?: string | undefined;
1197
1197
  webContentLink?: string | undefined;
@@ -1203,10 +1203,10 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1203
1203
  }[] | undefined;
1204
1204
  }, {
1205
1205
  name: string;
1206
- mimeType: string;
1207
1206
  id: string;
1208
- size?: string | undefined;
1207
+ mimeType: string;
1209
1208
  createdTime?: string | undefined;
1209
+ size?: string | undefined;
1210
1210
  modifiedTime?: string | undefined;
1211
1211
  webViewLink?: string | undefined;
1212
1212
  webContentLink?: string | undefined;
@@ -1219,15 +1219,15 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1219
1219
  }>>;
1220
1220
  error: z.ZodString;
1221
1221
  }, "strip", z.ZodTypeAny, {
1222
+ operation: "upload_file";
1222
1223
  error: string;
1223
1224
  success: boolean;
1224
- operation: "upload_file";
1225
1225
  file?: {
1226
1226
  name: string;
1227
- mimeType: string;
1228
1227
  id: string;
1229
- size?: string | undefined;
1228
+ mimeType: string;
1230
1229
  createdTime?: string | undefined;
1230
+ size?: string | undefined;
1231
1231
  modifiedTime?: string | undefined;
1232
1232
  webViewLink?: string | undefined;
1233
1233
  webContentLink?: string | undefined;
@@ -1239,15 +1239,15 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1239
1239
  }[] | undefined;
1240
1240
  } | undefined;
1241
1241
  }, {
1242
+ operation: "upload_file";
1242
1243
  error: string;
1243
1244
  success: boolean;
1244
- operation: "upload_file";
1245
1245
  file?: {
1246
1246
  name: string;
1247
- mimeType: string;
1248
1247
  id: string;
1249
- size?: string | undefined;
1248
+ mimeType: string;
1250
1249
  createdTime?: string | undefined;
1250
+ size?: string | undefined;
1251
1251
  modifiedTime?: string | undefined;
1252
1252
  webViewLink?: string | undefined;
1253
1253
  webContentLink?: string | undefined;
@@ -1266,16 +1266,16 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1266
1266
  mimeType: z.ZodOptional<z.ZodString>;
1267
1267
  error: z.ZodString;
1268
1268
  }, "strip", z.ZodTypeAny, {
1269
+ operation: "download_file";
1269
1270
  error: string;
1270
1271
  success: boolean;
1271
- operation: "download_file";
1272
1272
  content?: string | undefined;
1273
1273
  mimeType?: string | undefined;
1274
1274
  filename?: string | undefined;
1275
1275
  }, {
1276
+ operation: "download_file";
1276
1277
  error: string;
1277
1278
  success: boolean;
1278
- operation: "download_file";
1279
1279
  content?: string | undefined;
1280
1280
  mimeType?: string | undefined;
1281
1281
  filename?: string | undefined;
@@ -1305,10 +1305,10 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1305
1305
  }>, "many">>;
1306
1306
  }, "strip", z.ZodTypeAny, {
1307
1307
  name: string;
1308
- mimeType: string;
1309
1308
  id: string;
1310
- size?: string | undefined;
1309
+ mimeType: string;
1311
1310
  createdTime?: string | undefined;
1311
+ size?: string | undefined;
1312
1312
  modifiedTime?: string | undefined;
1313
1313
  webViewLink?: string | undefined;
1314
1314
  webContentLink?: string | undefined;
@@ -1320,10 +1320,10 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1320
1320
  }[] | undefined;
1321
1321
  }, {
1322
1322
  name: string;
1323
- mimeType: string;
1324
1323
  id: string;
1325
- size?: string | undefined;
1324
+ mimeType: string;
1326
1325
  createdTime?: string | undefined;
1326
+ size?: string | undefined;
1327
1327
  modifiedTime?: string | undefined;
1328
1328
  webViewLink?: string | undefined;
1329
1329
  webContentLink?: string | undefined;
@@ -1338,15 +1338,15 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1338
1338
  next_page_token: z.ZodOptional<z.ZodString>;
1339
1339
  error: z.ZodString;
1340
1340
  }, "strip", z.ZodTypeAny, {
1341
+ operation: "list_files";
1341
1342
  error: string;
1342
1343
  success: boolean;
1343
- operation: "list_files";
1344
1344
  files?: {
1345
1345
  name: string;
1346
- mimeType: string;
1347
1346
  id: string;
1348
- size?: string | undefined;
1347
+ mimeType: string;
1349
1348
  createdTime?: string | undefined;
1349
+ size?: string | undefined;
1350
1350
  modifiedTime?: string | undefined;
1351
1351
  webViewLink?: string | undefined;
1352
1352
  webContentLink?: string | undefined;
@@ -1360,15 +1360,15 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1360
1360
  total_count?: number | undefined;
1361
1361
  next_page_token?: string | undefined;
1362
1362
  }, {
1363
+ operation: "list_files";
1363
1364
  error: string;
1364
1365
  success: boolean;
1365
- operation: "list_files";
1366
1366
  files?: {
1367
1367
  name: string;
1368
- mimeType: string;
1369
1368
  id: string;
1370
- size?: string | undefined;
1369
+ mimeType: string;
1371
1370
  createdTime?: string | undefined;
1371
+ size?: string | undefined;
1372
1372
  modifiedTime?: string | undefined;
1373
1373
  webViewLink?: string | undefined;
1374
1374
  webContentLink?: string | undefined;
@@ -1402,9 +1402,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1402
1402
  }>>;
1403
1403
  error: z.ZodString;
1404
1404
  }, "strip", z.ZodTypeAny, {
1405
+ operation: "create_folder";
1405
1406
  error: string;
1406
1407
  success: boolean;
1407
- operation: "create_folder";
1408
1408
  folder?: {
1409
1409
  name: string;
1410
1410
  id: string;
@@ -1412,9 +1412,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1412
1412
  parents?: string[] | undefined;
1413
1413
  } | undefined;
1414
1414
  }, {
1415
+ operation: "create_folder";
1415
1416
  error: string;
1416
1417
  success: boolean;
1417
- operation: "create_folder";
1418
1418
  folder?: {
1419
1419
  name: string;
1420
1420
  id: string;
@@ -1427,14 +1427,14 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1427
1427
  deleted_file_id: z.ZodOptional<z.ZodString>;
1428
1428
  error: z.ZodString;
1429
1429
  }, "strip", z.ZodTypeAny, {
1430
+ operation: "delete_file";
1430
1431
  error: string;
1431
1432
  success: boolean;
1432
- operation: "delete_file";
1433
1433
  deleted_file_id?: string | undefined;
1434
1434
  }, {
1435
+ operation: "delete_file";
1435
1436
  error: string;
1436
1437
  success: boolean;
1437
- operation: "delete_file";
1438
1438
  deleted_file_id?: string | undefined;
1439
1439
  }>, z.ZodObject<{
1440
1440
  operation: z.ZodLiteral<"get_file_info">;
@@ -1462,10 +1462,10 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1462
1462
  }>, "many">>;
1463
1463
  }, "strip", z.ZodTypeAny, {
1464
1464
  name: string;
1465
- mimeType: string;
1466
1465
  id: string;
1467
- size?: string | undefined;
1466
+ mimeType: string;
1468
1467
  createdTime?: string | undefined;
1468
+ size?: string | undefined;
1469
1469
  modifiedTime?: string | undefined;
1470
1470
  webViewLink?: string | undefined;
1471
1471
  webContentLink?: string | undefined;
@@ -1477,10 +1477,10 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1477
1477
  }[] | undefined;
1478
1478
  }, {
1479
1479
  name: string;
1480
- mimeType: string;
1481
1480
  id: string;
1482
- size?: string | undefined;
1481
+ mimeType: string;
1483
1482
  createdTime?: string | undefined;
1483
+ size?: string | undefined;
1484
1484
  modifiedTime?: string | undefined;
1485
1485
  webViewLink?: string | undefined;
1486
1486
  webContentLink?: string | undefined;
@@ -1512,15 +1512,15 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1512
1512
  }>, "many">>;
1513
1513
  error: z.ZodString;
1514
1514
  }, "strip", z.ZodTypeAny, {
1515
+ operation: "get_file_info";
1515
1516
  error: string;
1516
1517
  success: boolean;
1517
- operation: "get_file_info";
1518
1518
  file?: {
1519
1519
  name: string;
1520
- mimeType: string;
1521
1520
  id: string;
1522
- size?: string | undefined;
1521
+ mimeType: string;
1523
1522
  createdTime?: string | undefined;
1523
+ size?: string | undefined;
1524
1524
  modifiedTime?: string | undefined;
1525
1525
  webViewLink?: string | undefined;
1526
1526
  webContentLink?: string | undefined;
@@ -1539,15 +1539,15 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1539
1539
  emailAddress?: string | undefined;
1540
1540
  }[] | undefined;
1541
1541
  }, {
1542
+ operation: "get_file_info";
1542
1543
  error: string;
1543
1544
  success: boolean;
1544
- operation: "get_file_info";
1545
1545
  file?: {
1546
1546
  name: string;
1547
- mimeType: string;
1548
1547
  id: string;
1549
- size?: string | undefined;
1548
+ mimeType: string;
1550
1549
  createdTime?: string | undefined;
1550
+ size?: string | undefined;
1551
1551
  modifiedTime?: string | undefined;
1552
1552
  webViewLink?: string | undefined;
1553
1553
  webContentLink?: string | undefined;
@@ -1572,15 +1572,15 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1572
1572
  share_link: z.ZodOptional<z.ZodString>;
1573
1573
  error: z.ZodString;
1574
1574
  }, "strip", z.ZodTypeAny, {
1575
+ operation: "share_file";
1575
1576
  error: string;
1576
1577
  success: boolean;
1577
- operation: "share_file";
1578
1578
  permission_id?: string | undefined;
1579
1579
  share_link?: string | undefined;
1580
1580
  }, {
1581
+ operation: "share_file";
1581
1582
  error: string;
1582
1583
  success: boolean;
1583
- operation: "share_file";
1584
1584
  permission_id?: string | undefined;
1585
1585
  share_link?: string | undefined;
1586
1586
  }>, z.ZodObject<{
@@ -1609,10 +1609,10 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1609
1609
  }>, "many">>;
1610
1610
  }, "strip", z.ZodTypeAny, {
1611
1611
  name: string;
1612
- mimeType: string;
1613
1612
  id: string;
1614
- size?: string | undefined;
1613
+ mimeType: string;
1615
1614
  createdTime?: string | undefined;
1615
+ size?: string | undefined;
1616
1616
  modifiedTime?: string | undefined;
1617
1617
  webViewLink?: string | undefined;
1618
1618
  webContentLink?: string | undefined;
@@ -1624,10 +1624,10 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1624
1624
  }[] | undefined;
1625
1625
  }, {
1626
1626
  name: string;
1627
- mimeType: string;
1628
1627
  id: string;
1629
- size?: string | undefined;
1628
+ mimeType: string;
1630
1629
  createdTime?: string | undefined;
1630
+ size?: string | undefined;
1631
1631
  modifiedTime?: string | undefined;
1632
1632
  webViewLink?: string | undefined;
1633
1633
  webContentLink?: string | undefined;
@@ -1640,15 +1640,15 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1640
1640
  }>>;
1641
1641
  error: z.ZodString;
1642
1642
  }, "strip", z.ZodTypeAny, {
1643
+ operation: "move_file";
1643
1644
  error: string;
1644
1645
  success: boolean;
1645
- operation: "move_file";
1646
1646
  file?: {
1647
1647
  name: string;
1648
- mimeType: string;
1649
1648
  id: string;
1650
- size?: string | undefined;
1649
+ mimeType: string;
1651
1650
  createdTime?: string | undefined;
1651
+ size?: string | undefined;
1652
1652
  modifiedTime?: string | undefined;
1653
1653
  webViewLink?: string | undefined;
1654
1654
  webContentLink?: string | undefined;
@@ -1660,15 +1660,15 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1660
1660
  }[] | undefined;
1661
1661
  } | undefined;
1662
1662
  }, {
1663
+ operation: "move_file";
1663
1664
  error: string;
1664
1665
  success: boolean;
1665
- operation: "move_file";
1666
1666
  file?: {
1667
1667
  name: string;
1668
- mimeType: string;
1669
1668
  id: string;
1670
- size?: string | undefined;
1669
+ mimeType: string;
1671
1670
  createdTime?: string | undefined;
1671
+ size?: string | undefined;
1672
1672
  modifiedTime?: string | undefined;
1673
1673
  webViewLink?: string | undefined;
1674
1674
  webContentLink?: string | undefined;
@@ -1726,9 +1726,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1726
1726
  }>, "many">>;
1727
1727
  error: z.ZodString;
1728
1728
  }, "strip", z.ZodTypeAny, {
1729
+ operation: "get_doc";
1729
1730
  error: string;
1730
1731
  success: boolean;
1731
- operation: "get_doc";
1732
1732
  document?: z.objectOutputType<{
1733
1733
  documentId: z.ZodString;
1734
1734
  title: z.ZodString;
@@ -1746,9 +1746,9 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1746
1746
  plainText?: string | undefined;
1747
1747
  }[] | undefined;
1748
1748
  }, {
1749
+ operation: "get_doc";
1749
1750
  error: string;
1750
1751
  success: boolean;
1751
- operation: "get_doc";
1752
1752
  document?: z.objectInputType<{
1753
1753
  documentId: z.ZodString;
1754
1754
  title: z.ZodString;
@@ -1772,15 +1772,15 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1772
1772
  revisionId: z.ZodOptional<z.ZodString>;
1773
1773
  error: z.ZodString;
1774
1774
  }, "strip", z.ZodTypeAny, {
1775
+ operation: "update_doc";
1775
1776
  error: string;
1776
1777
  success: boolean;
1777
- operation: "update_doc";
1778
1778
  documentId?: string | undefined;
1779
1779
  revisionId?: string | undefined;
1780
1780
  }, {
1781
+ operation: "update_doc";
1781
1782
  error: string;
1782
1783
  success: boolean;
1783
- operation: "update_doc";
1784
1784
  documentId?: string | undefined;
1785
1785
  revisionId?: string | undefined;
1786
1786
  }>, z.ZodObject<{
@@ -1789,14 +1789,14 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1789
1789
  replacements_made: z.ZodOptional<z.ZodNumber>;
1790
1790
  error: z.ZodString;
1791
1791
  }, "strip", z.ZodTypeAny, {
1792
+ operation: "replace_text";
1792
1793
  error: string;
1793
1794
  success: boolean;
1794
- operation: "replace_text";
1795
1795
  replacements_made?: number | undefined;
1796
1796
  }, {
1797
+ operation: "replace_text";
1797
1798
  error: string;
1798
1799
  success: boolean;
1799
- operation: "replace_text";
1800
1800
  replacements_made?: number | undefined;
1801
1801
  }>, z.ZodObject<{
1802
1802
  operation: z.ZodLiteral<"copy_doc">;
@@ -1805,15 +1805,15 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1805
1805
  new_document_url: z.ZodOptional<z.ZodString>;
1806
1806
  error: z.ZodString;
1807
1807
  }, "strip", z.ZodTypeAny, {
1808
+ operation: "copy_doc";
1808
1809
  error: string;
1809
1810
  success: boolean;
1810
- operation: "copy_doc";
1811
1811
  new_document_id?: string | undefined;
1812
1812
  new_document_url?: string | undefined;
1813
1813
  }, {
1814
+ operation: "copy_doc";
1814
1815
  error: string;
1815
1816
  success: boolean;
1816
- operation: "copy_doc";
1817
1817
  new_document_id?: string | undefined;
1818
1818
  new_document_url?: string | undefined;
1819
1819
  }>]>;