@bubblelab/bubble-core 0.1.30 → 0.1.31

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 (38) hide show
  1. package/dist/bubble-bundle.d.ts +48 -48
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +12 -12
  3. package/dist/bubbles/service-bubble/airtable.d.ts +156 -156
  4. package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
  5. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +1 -1
  6. package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
  7. package/dist/bubbles/service-bubble/firecrawl.d.ts +8 -8
  8. package/dist/bubbles/service-bubble/followupboss.d.ts +78 -78
  9. package/dist/bubbles/service-bubble/github.d.ts +98 -98
  10. package/dist/bubbles/service-bubble/gmail.d.ts +30 -30
  11. package/dist/bubbles/service-bubble/google-calendar.d.ts +88 -88
  12. package/dist/bubbles/service-bubble/google-drive.d.ts +50 -50
  13. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +8 -8
  14. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  15. package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
  16. package/dist/bubbles/service-bubble/jira/index.d.ts +1 -1
  17. package/dist/bubbles/service-bubble/jira/index.d.ts.map +1 -1
  18. package/dist/bubbles/service-bubble/jira/index.js.map +1 -1
  19. package/dist/bubbles/service-bubble/jira/jira.d.ts +497 -497
  20. package/dist/bubbles/service-bubble/jira/jira.d.ts.map +1 -1
  21. package/dist/bubbles/service-bubble/jira/jira.js +40 -2
  22. package/dist/bubbles/service-bubble/jira/jira.js.map +1 -1
  23. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +69 -68
  24. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts.map +1 -1
  25. package/dist/bubbles/service-bubble/jira/jira.schema.js +1 -4
  26. package/dist/bubbles/service-bubble/jira/jira.schema.js.map +1 -1
  27. package/dist/bubbles/service-bubble/notion/notion.d.ts +148 -148
  28. package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
  29. package/dist/bubbles/service-bubble/resend.d.ts +4 -4
  30. package/dist/bubbles/service-bubble/slack/slack.d.ts +60 -60
  31. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  32. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +36 -36
  33. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
  34. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +28 -28
  35. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
  36. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +30 -30
  37. package/dist/bubbles.json +10 -6
  38. package/package.json +2 -2
@@ -11,16 +11,16 @@ 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
- name: string;
15
14
  operation: "upload_file";
15
+ name: string;
16
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
- name: string;
23
22
  operation: "upload_file";
23
+ name: string;
24
24
  content: string;
25
25
  credentials?: Partial<Record<CredentialType, string>> | undefined;
26
26
  mimeType?: 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;
@@ -208,8 +208,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
208
208
  emailAddress?: string | undefined;
209
209
  }>, "many">>;
210
210
  }, "strip", z.ZodTypeAny, {
211
- id: string;
212
211
  name: string;
212
+ id: string;
213
213
  mimeType: string;
214
214
  size?: string | undefined;
215
215
  createdTime?: string | undefined;
@@ -223,8 +223,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
223
223
  emailAddress?: string | undefined;
224
224
  }[] | undefined;
225
225
  }, {
226
- id: string;
227
226
  name: string;
227
+ id: string;
228
228
  mimeType: string;
229
229
  size?: string | undefined;
230
230
  createdTime?: string | undefined;
@@ -244,8 +244,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
244
244
  success: boolean;
245
245
  error: string;
246
246
  file?: {
247
- id: string;
248
247
  name: string;
248
+ id: string;
249
249
  mimeType: string;
250
250
  size?: string | undefined;
251
251
  createdTime?: string | undefined;
@@ -264,8 +264,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
264
264
  success: boolean;
265
265
  error: string;
266
266
  file?: {
267
- id: string;
268
267
  name: string;
268
+ id: string;
269
269
  mimeType: string;
270
270
  size?: string | undefined;
271
271
  createdTime?: string | undefined;
@@ -325,8 +325,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
325
325
  emailAddress?: string | undefined;
326
326
  }>, "many">>;
327
327
  }, "strip", z.ZodTypeAny, {
328
- id: string;
329
328
  name: string;
329
+ id: string;
330
330
  mimeType: string;
331
331
  size?: string | undefined;
332
332
  createdTime?: string | undefined;
@@ -340,8 +340,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
340
340
  emailAddress?: string | undefined;
341
341
  }[] | undefined;
342
342
  }, {
343
- id: string;
344
343
  name: string;
344
+ id: string;
345
345
  mimeType: string;
346
346
  size?: string | undefined;
347
347
  createdTime?: string | undefined;
@@ -363,8 +363,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
363
363
  success: boolean;
364
364
  error: string;
365
365
  files?: {
366
- id: string;
367
366
  name: string;
367
+ id: string;
368
368
  mimeType: string;
369
369
  size?: string | undefined;
370
370
  createdTime?: string | undefined;
@@ -385,8 +385,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
385
385
  success: boolean;
386
386
  error: string;
387
387
  files?: {
388
- id: string;
389
388
  name: string;
389
+ id: string;
390
390
  mimeType: string;
391
391
  size?: string | undefined;
392
392
  createdTime?: string | undefined;
@@ -411,13 +411,13 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
411
411
  webViewLink: z.ZodOptional<z.ZodString>;
412
412
  parents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
413
413
  }, "strip", z.ZodTypeAny, {
414
- id: string;
415
414
  name: string;
415
+ id: string;
416
416
  webViewLink?: string | undefined;
417
417
  parents?: string[] | undefined;
418
418
  }, {
419
- id: string;
420
419
  name: string;
420
+ id: string;
421
421
  webViewLink?: string | undefined;
422
422
  parents?: string[] | undefined;
423
423
  }>>;
@@ -427,8 +427,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
427
427
  success: boolean;
428
428
  error: string;
429
429
  folder?: {
430
- id: string;
431
430
  name: string;
431
+ id: string;
432
432
  webViewLink?: string | undefined;
433
433
  parents?: string[] | undefined;
434
434
  } | undefined;
@@ -437,8 +437,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
437
437
  success: boolean;
438
438
  error: string;
439
439
  folder?: {
440
- id: string;
441
440
  name: string;
441
+ id: string;
442
442
  webViewLink?: string | undefined;
443
443
  parents?: string[] | undefined;
444
444
  } | undefined;
@@ -482,8 +482,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
482
482
  emailAddress?: string | undefined;
483
483
  }>, "many">>;
484
484
  }, "strip", z.ZodTypeAny, {
485
- id: string;
486
485
  name: string;
486
+ id: string;
487
487
  mimeType: string;
488
488
  size?: string | undefined;
489
489
  createdTime?: string | undefined;
@@ -497,8 +497,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
497
497
  emailAddress?: string | undefined;
498
498
  }[] | undefined;
499
499
  }, {
500
- id: string;
501
500
  name: string;
501
+ id: string;
502
502
  mimeType: string;
503
503
  size?: string | undefined;
504
504
  createdTime?: string | undefined;
@@ -537,8 +537,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
537
537
  success: boolean;
538
538
  error: string;
539
539
  file?: {
540
- id: string;
541
540
  name: string;
541
+ id: string;
542
542
  mimeType: string;
543
543
  size?: string | undefined;
544
544
  createdTime?: string | undefined;
@@ -564,8 +564,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
564
564
  success: boolean;
565
565
  error: string;
566
566
  file?: {
567
- id: string;
568
567
  name: string;
568
+ id: string;
569
569
  mimeType: string;
570
570
  size?: string | undefined;
571
571
  createdTime?: string | undefined;
@@ -629,8 +629,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
629
629
  emailAddress?: string | undefined;
630
630
  }>, "many">>;
631
631
  }, "strip", z.ZodTypeAny, {
632
- id: string;
633
632
  name: string;
633
+ id: string;
634
634
  mimeType: string;
635
635
  size?: string | undefined;
636
636
  createdTime?: string | undefined;
@@ -644,8 +644,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
644
644
  emailAddress?: string | undefined;
645
645
  }[] | undefined;
646
646
  }, {
647
- id: string;
648
647
  name: string;
648
+ id: string;
649
649
  mimeType: string;
650
650
  size?: string | undefined;
651
651
  createdTime?: string | undefined;
@@ -665,8 +665,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
665
665
  success: boolean;
666
666
  error: string;
667
667
  file?: {
668
- id: string;
669
668
  name: string;
669
+ id: string;
670
670
  mimeType: string;
671
671
  size?: string | undefined;
672
672
  createdTime?: string | undefined;
@@ -685,8 +685,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
685
685
  success: boolean;
686
686
  error: string;
687
687
  file?: {
688
- id: string;
689
688
  name: string;
689
+ id: string;
690
690
  mimeType: string;
691
691
  size?: string | undefined;
692
692
  createdTime?: string | undefined;
@@ -799,16 +799,16 @@ 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
- name: string;
803
802
  operation: "upload_file";
803
+ name: string;
804
804
  content: string;
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
- name: string;
811
810
  operation: "upload_file";
811
+ name: string;
812
812
  content: string;
813
813
  credentials?: Partial<Record<CredentialType, string>> | undefined;
814
814
  mimeType?: 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,8 +907,8 @@ 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: "user" | "group" | "domain" | "anyone";
911
910
  operation: "share_file";
911
+ type: "user" | "group" | "domain" | "anyone";
912
912
  file_id: string;
913
913
  role: "writer" | "reader" | "commenter" | "owner";
914
914
  send_notification: boolean;
@@ -996,8 +996,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
996
996
  emailAddress?: string | undefined;
997
997
  }>, "many">>;
998
998
  }, "strip", z.ZodTypeAny, {
999
- id: string;
1000
999
  name: string;
1000
+ id: string;
1001
1001
  mimeType: string;
1002
1002
  size?: string | undefined;
1003
1003
  createdTime?: string | undefined;
@@ -1011,8 +1011,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1011
1011
  emailAddress?: string | undefined;
1012
1012
  }[] | undefined;
1013
1013
  }, {
1014
- id: string;
1015
1014
  name: string;
1015
+ id: string;
1016
1016
  mimeType: string;
1017
1017
  size?: string | undefined;
1018
1018
  createdTime?: string | undefined;
@@ -1032,8 +1032,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1032
1032
  success: boolean;
1033
1033
  error: string;
1034
1034
  file?: {
1035
- id: string;
1036
1035
  name: string;
1036
+ id: string;
1037
1037
  mimeType: string;
1038
1038
  size?: string | undefined;
1039
1039
  createdTime?: string | undefined;
@@ -1052,8 +1052,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1052
1052
  success: boolean;
1053
1053
  error: string;
1054
1054
  file?: {
1055
- id: string;
1056
1055
  name: string;
1056
+ id: string;
1057
1057
  mimeType: string;
1058
1058
  size?: string | undefined;
1059
1059
  createdTime?: string | undefined;
@@ -1113,8 +1113,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1113
1113
  emailAddress?: string | undefined;
1114
1114
  }>, "many">>;
1115
1115
  }, "strip", z.ZodTypeAny, {
1116
- id: string;
1117
1116
  name: string;
1117
+ id: string;
1118
1118
  mimeType: string;
1119
1119
  size?: string | undefined;
1120
1120
  createdTime?: string | undefined;
@@ -1128,8 +1128,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1128
1128
  emailAddress?: string | undefined;
1129
1129
  }[] | undefined;
1130
1130
  }, {
1131
- id: string;
1132
1131
  name: string;
1132
+ id: string;
1133
1133
  mimeType: string;
1134
1134
  size?: string | undefined;
1135
1135
  createdTime?: string | undefined;
@@ -1151,8 +1151,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1151
1151
  success: boolean;
1152
1152
  error: string;
1153
1153
  files?: {
1154
- id: string;
1155
1154
  name: string;
1155
+ id: string;
1156
1156
  mimeType: string;
1157
1157
  size?: string | undefined;
1158
1158
  createdTime?: string | undefined;
@@ -1173,8 +1173,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1173
1173
  success: boolean;
1174
1174
  error: string;
1175
1175
  files?: {
1176
- id: string;
1177
1176
  name: string;
1177
+ id: string;
1178
1178
  mimeType: string;
1179
1179
  size?: string | undefined;
1180
1180
  createdTime?: string | undefined;
@@ -1199,13 +1199,13 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1199
1199
  webViewLink: z.ZodOptional<z.ZodString>;
1200
1200
  parents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1201
1201
  }, "strip", z.ZodTypeAny, {
1202
- id: string;
1203
1202
  name: string;
1203
+ id: string;
1204
1204
  webViewLink?: string | undefined;
1205
1205
  parents?: string[] | undefined;
1206
1206
  }, {
1207
- id: string;
1208
1207
  name: string;
1208
+ id: string;
1209
1209
  webViewLink?: string | undefined;
1210
1210
  parents?: string[] | undefined;
1211
1211
  }>>;
@@ -1215,8 +1215,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1215
1215
  success: boolean;
1216
1216
  error: string;
1217
1217
  folder?: {
1218
- id: string;
1219
1218
  name: string;
1219
+ id: string;
1220
1220
  webViewLink?: string | undefined;
1221
1221
  parents?: string[] | undefined;
1222
1222
  } | undefined;
@@ -1225,8 +1225,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1225
1225
  success: boolean;
1226
1226
  error: string;
1227
1227
  folder?: {
1228
- id: string;
1229
1228
  name: string;
1229
+ id: string;
1230
1230
  webViewLink?: string | undefined;
1231
1231
  parents?: string[] | undefined;
1232
1232
  } | undefined;
@@ -1270,8 +1270,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1270
1270
  emailAddress?: string | undefined;
1271
1271
  }>, "many">>;
1272
1272
  }, "strip", z.ZodTypeAny, {
1273
- id: string;
1274
1273
  name: string;
1274
+ id: string;
1275
1275
  mimeType: string;
1276
1276
  size?: string | undefined;
1277
1277
  createdTime?: string | undefined;
@@ -1285,8 +1285,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1285
1285
  emailAddress?: string | undefined;
1286
1286
  }[] | undefined;
1287
1287
  }, {
1288
- id: string;
1289
1288
  name: string;
1289
+ id: string;
1290
1290
  mimeType: string;
1291
1291
  size?: string | undefined;
1292
1292
  createdTime?: string | undefined;
@@ -1325,8 +1325,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1325
1325
  success: boolean;
1326
1326
  error: string;
1327
1327
  file?: {
1328
- id: string;
1329
1328
  name: string;
1329
+ id: string;
1330
1330
  mimeType: string;
1331
1331
  size?: string | undefined;
1332
1332
  createdTime?: string | undefined;
@@ -1352,8 +1352,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1352
1352
  success: boolean;
1353
1353
  error: string;
1354
1354
  file?: {
1355
- id: string;
1356
1355
  name: string;
1356
+ id: string;
1357
1357
  mimeType: string;
1358
1358
  size?: string | undefined;
1359
1359
  createdTime?: string | undefined;
@@ -1417,8 +1417,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1417
1417
  emailAddress?: string | undefined;
1418
1418
  }>, "many">>;
1419
1419
  }, "strip", z.ZodTypeAny, {
1420
- id: string;
1421
1420
  name: string;
1421
+ id: string;
1422
1422
  mimeType: string;
1423
1423
  size?: string | undefined;
1424
1424
  createdTime?: string | undefined;
@@ -1432,8 +1432,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1432
1432
  emailAddress?: string | undefined;
1433
1433
  }[] | undefined;
1434
1434
  }, {
1435
- id: string;
1436
1435
  name: string;
1436
+ id: string;
1437
1437
  mimeType: string;
1438
1438
  size?: string | undefined;
1439
1439
  createdTime?: string | undefined;
@@ -1453,8 +1453,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1453
1453
  success: boolean;
1454
1454
  error: string;
1455
1455
  file?: {
1456
- id: string;
1457
1456
  name: string;
1457
+ id: string;
1458
1458
  mimeType: string;
1459
1459
  size?: string | undefined;
1460
1460
  createdTime?: string | undefined;
@@ -1473,8 +1473,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1473
1473
  success: boolean;
1474
1474
  error: string;
1475
1475
  file?: {
1476
- id: string;
1477
1476
  name: string;
1477
+ id: string;
1478
1478
  mimeType: string;
1479
1479
  size?: string | undefined;
1480
1480
  createdTime?: string | undefined;
@@ -67,8 +67,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
67
67
  include_values_in_response: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
68
68
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
69
69
  }, "strip", import("zod").ZodTypeAny, {
70
- values: (string | number | boolean)[][];
71
70
  operation: "write_values";
71
+ values: (string | number | boolean)[][];
72
72
  spreadsheet_id: string;
73
73
  range: string;
74
74
  major_dimension: "ROWS" | "COLUMNS";
@@ -76,8 +76,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
76
76
  include_values_in_response: boolean;
77
77
  credentials?: Partial<Record<CredentialType, string>> | undefined;
78
78
  }, {
79
- values: unknown[][];
80
79
  operation: "write_values";
80
+ values: unknown[][];
81
81
  spreadsheet_id: string;
82
82
  range: string;
83
83
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -94,8 +94,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
94
94
  include_values_in_response: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
95
95
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
96
96
  }, "strip", import("zod").ZodTypeAny, {
97
- values: (string | number | boolean)[][];
98
97
  operation: "update_values";
98
+ values: (string | number | boolean)[][];
99
99
  spreadsheet_id: string;
100
100
  range: string;
101
101
  major_dimension: "ROWS" | "COLUMNS";
@@ -103,8 +103,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
103
103
  include_values_in_response: boolean;
104
104
  credentials?: Partial<Record<CredentialType, string>> | undefined;
105
105
  }, {
106
- values: unknown[][];
107
106
  operation: "update_values";
107
+ values: unknown[][];
108
108
  spreadsheet_id: string;
109
109
  range: string;
110
110
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -122,8 +122,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
122
122
  include_values_in_response: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
123
123
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
124
124
  }, "strip", import("zod").ZodTypeAny, {
125
- values: (string | number | boolean)[][];
126
125
  operation: "append_values";
126
+ values: (string | number | boolean)[][];
127
127
  spreadsheet_id: string;
128
128
  range: string;
129
129
  major_dimension: "ROWS" | "COLUMNS";
@@ -132,8 +132,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
132
132
  insert_data_option: "OVERWRITE" | "INSERT_ROWS";
133
133
  credentials?: Partial<Record<CredentialType, string>> | undefined;
134
134
  }, {
135
- values: unknown[][];
136
135
  operation: "append_values";
136
+ values: unknown[][];
137
137
  spreadsheet_id: string;
138
138
  range: string;
139
139
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -242,13 +242,13 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
242
242
  sheet_titles: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>>;
243
243
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
244
244
  }, "strip", import("zod").ZodTypeAny, {
245
- title: string;
246
245
  operation: "create_spreadsheet";
246
+ title: string;
247
247
  sheet_titles: string[];
248
248
  credentials?: Partial<Record<CredentialType, string>> | undefined;
249
249
  }, {
250
- title: string;
251
250
  operation: "create_spreadsheet";
251
+ title: string;
252
252
  credentials?: Partial<Record<CredentialType, string>> | undefined;
253
253
  sheet_titles?: string[] | undefined;
254
254
  }>, import("zod").ZodObject<{
@@ -15,20 +15,20 @@ declare const HttpParamsSchema: z.ZodObject<{
15
15
  }, "strip", z.ZodTypeAny, {
16
16
  url: string;
17
17
  timeout: number;
18
- method: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
18
+ method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
19
19
  followRedirects: boolean;
20
20
  authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header";
21
- body?: string | Record<string, unknown> | undefined;
22
21
  credentials?: Partial<Record<CredentialType, string>> | undefined;
22
+ body?: string | Record<string, unknown> | undefined;
23
23
  headers?: Record<string, string> | undefined;
24
24
  authHeader?: string | undefined;
25
25
  }, {
26
26
  url: string;
27
- body?: string | Record<string, unknown> | undefined;
28
27
  credentials?: Partial<Record<CredentialType, string>> | undefined;
28
+ body?: string | Record<string, unknown> | undefined;
29
29
  timeout?: number | undefined;
30
30
  headers?: Record<string, string> | undefined;
31
- method?: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
31
+ method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
32
32
  followRedirects?: boolean | undefined;
33
33
  authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
34
34
  authHeader?: string | undefined;
@@ -85,20 +85,20 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
85
85
  }, "strip", z.ZodTypeAny, {
86
86
  url: string;
87
87
  timeout: number;
88
- method: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
88
+ method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
89
89
  followRedirects: boolean;
90
90
  authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header";
91
- body?: string | Record<string, unknown> | undefined;
92
91
  credentials?: Partial<Record<CredentialType, string>> | undefined;
92
+ body?: string | Record<string, unknown> | undefined;
93
93
  headers?: Record<string, string> | undefined;
94
94
  authHeader?: string | undefined;
95
95
  }, {
96
96
  url: string;
97
- body?: string | Record<string, unknown> | undefined;
98
97
  credentials?: Partial<Record<CredentialType, string>> | undefined;
98
+ body?: string | Record<string, unknown> | undefined;
99
99
  timeout?: number | undefined;
100
100
  headers?: Record<string, string> | undefined;
101
- method?: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
101
+ method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
102
102
  followRedirects?: boolean | undefined;
103
103
  authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
104
104
  authHeader?: string | undefined;
@@ -13,7 +13,7 @@ declare const InsForgeDbParamsSchema: z.ZodObject<{
13
13
  }, "strip", z.ZodTypeAny, {
14
14
  timeout: number;
15
15
  query: string;
16
- allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
16
+ allowedOperations: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[];
17
17
  parameters: unknown[];
18
18
  maxRows: number;
19
19
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -21,7 +21,7 @@ declare const InsForgeDbParamsSchema: z.ZodObject<{
21
21
  query: string;
22
22
  credentials?: Partial<Record<CredentialType, string>> | undefined;
23
23
  timeout?: number | undefined;
24
- allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
24
+ allowedOperations?: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
25
25
  parameters?: unknown[] | undefined;
26
26
  maxRows?: number | undefined;
27
27
  }>;
@@ -87,7 +87,7 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
87
87
  }, "strip", z.ZodTypeAny, {
88
88
  timeout: number;
89
89
  query: string;
90
- allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
90
+ allowedOperations: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[];
91
91
  parameters: unknown[];
92
92
  maxRows: number;
93
93
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -95,7 +95,7 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
95
95
  query: string;
96
96
  credentials?: Partial<Record<CredentialType, string>> | undefined;
97
97
  timeout?: number | undefined;
98
- allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
98
+ allowedOperations?: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
99
99
  parameters?: unknown[] | undefined;
100
100
  maxRows?: number | undefined;
101
101
  }>;
@@ -1,5 +1,5 @@
1
1
  export { JiraBubble } from './jira.js';
2
- export { JiraParamsSchema, JiraResultSchema, JiraUserSchema, JiraIssueTypeSchema, JiraStatusSchema, JiraPrioritySchema, JiraProjectSchema, JiraCommentSchema, JiraTransitionSchema, JiraIssueSchema, type JiraParams, type JiraParamsInput, type JiraResult, type JiraSearchParams, type JiraGetParams, type JiraCreateParams, type JiraUpdateParams, type JiraTransitionParams, type JiraListTransitionsParams, type JiraListProjectsParams, type JiraListIssueTypesParams, type JiraAddCommentParams, type JiraGetCommentsParams, } from './jira.schema.js';
2
+ export { JiraParamsSchema, JiraResultSchema, JiraUserSchema, JiraIssueTypeSchema, JiraStatusSchema, JiraPrioritySchema, JiraProjectSchema, JiraCommentSchema, JiraTransitionSchema, JiraIssueSchema, type JiraParams, type JiraParamsInput, type JiraResult, type JiraSearchParams, type JiraGetParams, type JiraCreateParams, type JiraUpdateParams, type JiraTransitionParams, type JiraListTransitionsParams, type JiraListProjectsParams, type JiraListIssueTypesParams, type JiraAddCommentParams, type JiraGetCommentsParams, type JiraIssue, } from './jira.schema.js';
3
3
  export { textToADF, adfToText, enhanceErrorMessage, normalizeDate, findTransitionByStatus, } from './jira.utils.js';
4
4
  export { JiraIntegrationFlow } from './jira.integration.flow.js';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/jira/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AACvC,OAAO,EACL,gBAAgB,EAChB,gBAAgB,EAChB,cAAc,EACd,mBAAmB,EACnB,gBAAgB,EAChB,kBAAkB,EAClB,iBAAiB,EACjB,iBAAiB,EACjB,oBAAoB,EACpB,eAAe,EACf,KAAK,UAAU,EACf,KAAK,eAAe,EACpB,KAAK,UAAU,EACf,KAAK,gBAAgB,EACrB,KAAK,aAAa,EAClB,KAAK,gBAAgB,EACrB,KAAK,gBAAgB,EACrB,KAAK,oBAAoB,EACzB,KAAK,yBAAyB,EAC9B,KAAK,sBAAsB,EAC3B,KAAK,wBAAwB,EAC7B,KAAK,oBAAoB,EACzB,KAAK,qBAAqB,GAC3B,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EACL,SAAS,EACT,SAAS,EACT,mBAAmB,EACnB,aAAa,EACb,sBAAsB,GACvB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/jira/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AACvC,OAAO,EACL,gBAAgB,EAChB,gBAAgB,EAChB,cAAc,EACd,mBAAmB,EACnB,gBAAgB,EAChB,kBAAkB,EAClB,iBAAiB,EACjB,iBAAiB,EACjB,oBAAoB,EACpB,eAAe,EACf,KAAK,UAAU,EACf,KAAK,eAAe,EACpB,KAAK,UAAU,EACf,KAAK,gBAAgB,EACrB,KAAK,aAAa,EAClB,KAAK,gBAAgB,EACrB,KAAK,gBAAgB,EACrB,KAAK,oBAAoB,EACzB,KAAK,yBAAyB,EAC9B,KAAK,sBAAsB,EAC3B,KAAK,wBAAwB,EAC7B,KAAK,oBAAoB,EACzB,KAAK,qBAAqB,EAC1B,KAAK,SAAS,GACf,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EACL,SAAS,EACT,SAAS,EACT,mBAAmB,EACnB,aAAa,EACb,sBAAsB,GACvB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/jira/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AACvC,OAAO,EACL,gBAAgB,EAChB,gBAAgB,EAChB,cAAc,EACd,mBAAmB,EACnB,gBAAgB,EAChB,kBAAkB,EAClB,iBAAiB,EACjB,iBAAiB,EACjB,oBAAoB,EACpB,eAAe,GAchB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EACL,SAAS,EACT,SAAS,EACT,mBAAmB,EACnB,aAAa,EACb,sBAAsB,GACvB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/jira/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AACvC,OAAO,EACL,gBAAgB,EAChB,gBAAgB,EAChB,cAAc,EACd,mBAAmB,EACnB,gBAAgB,EAChB,kBAAkB,EAClB,iBAAiB,EACjB,iBAAiB,EACjB,oBAAoB,EACpB,eAAe,GAehB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EACL,SAAS,EACT,SAAS,EACT,mBAAmB,EACnB,aAAa,EACb,sBAAsB,GACvB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC"}