@bubblelab/bubble-core 0.1.98 → 0.1.99

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 (53) hide show
  1. package/dist/bubble-bundle.d.ts +72 -72
  2. package/dist/bubbles/service-bubble/ai-agent.d.ts +84 -84
  3. package/dist/bubbles/service-bubble/airtable.d.ts +100 -100
  4. package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
  5. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +74 -74
  6. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +102 -102
  7. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
  8. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +4 -4
  9. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +4 -4
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +8 -8
  11. package/dist/bubbles/service-bubble/firecrawl.d.ts +272 -272
  12. package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
  13. package/dist/bubbles/service-bubble/github.d.ts +40 -40
  14. package/dist/bubbles/service-bubble/gmail.d.ts +104 -104
  15. package/dist/bubbles/service-bubble/google-calendar.d.ts +80 -80
  16. package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
  17. package/dist/bubbles/service-bubble/http.d.ts +4 -4
  18. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  19. package/dist/bubbles/service-bubble/jira/jira.d.ts +12 -12
  20. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +14 -14
  21. package/dist/bubbles/service-bubble/notion/notion.d.ts +68 -68
  22. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  23. package/dist/bubbles/service-bubble/resend.d.ts +24 -24
  24. package/dist/bubbles/service-bubble/resend.d.ts.map +1 -1
  25. package/dist/bubbles/service-bubble/resend.js +9 -7
  26. package/dist/bubbles/service-bubble/resend.js.map +1 -1
  27. package/dist/bubbles/service-bubble/slack/slack.d.ts +68 -68
  28. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  29. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +211 -4
  30. package/dist/bubbles/service-bubble/stripe/stripe.d.ts.map +1 -1
  31. package/dist/bubbles/service-bubble/stripe/stripe.js +87 -2
  32. package/dist/bubbles/service-bubble/stripe/stripe.js.map +1 -1
  33. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +243 -4
  34. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts.map +1 -1
  35. package/dist/bubbles/service-bubble/stripe/stripe.schema.js +118 -0
  36. package/dist/bubbles/service-bubble/stripe/stripe.schema.js.map +1 -1
  37. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
  38. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
  39. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +52 -52
  40. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  41. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  42. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +16 -16
  43. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +46 -46
  44. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  45. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  46. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  47. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  48. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +44 -44
  49. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
  50. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +2 -2
  51. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +26 -26
  52. package/dist/bubbles.json +306 -14
  53. package/package.json +4 -4
@@ -15,15 +15,15 @@ declare const GoogleDriveParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
15
15
  content: string;
16
16
  operation: "upload_file";
17
17
  convert_to_google_docs: boolean;
18
- mimeType?: string | undefined;
19
18
  credentials?: Partial<Record<CredentialType, string>> | undefined;
19
+ mimeType?: string | undefined;
20
20
  parent_folder_id?: string | undefined;
21
21
  }, {
22
22
  name: string;
23
23
  content: string;
24
24
  operation: "upload_file";
25
- mimeType?: string | undefined;
26
25
  credentials?: Partial<Record<CredentialType, string>> | undefined;
26
+ mimeType?: string | undefined;
27
27
  parent_folder_id?: string | undefined;
28
28
  convert_to_google_docs?: boolean | undefined;
29
29
  }>, z.ZodObject<{
@@ -273,8 +273,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
273
273
  emailAddress?: string | undefined;
274
274
  }>, "many">>;
275
275
  }, "strip", z.ZodTypeAny, {
276
- mimeType: string;
277
276
  name: string;
277
+ mimeType: string;
278
278
  id: string;
279
279
  size?: string | undefined;
280
280
  createdTime?: string | undefined;
@@ -288,8 +288,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
288
288
  emailAddress?: string | undefined;
289
289
  }[] | undefined;
290
290
  }, {
291
- mimeType: string;
292
291
  name: string;
292
+ mimeType: string;
293
293
  id: string;
294
294
  size?: string | undefined;
295
295
  createdTime?: string | undefined;
@@ -309,8 +309,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
309
309
  success: boolean;
310
310
  operation: "upload_file";
311
311
  file?: {
312
- mimeType: string;
313
312
  name: string;
313
+ mimeType: string;
314
314
  id: string;
315
315
  size?: string | undefined;
316
316
  createdTime?: string | undefined;
@@ -329,8 +329,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
329
329
  success: boolean;
330
330
  operation: "upload_file";
331
331
  file?: {
332
- mimeType: string;
333
332
  name: string;
333
+ mimeType: string;
334
334
  id: string;
335
335
  size?: string | undefined;
336
336
  createdTime?: string | undefined;
@@ -355,15 +355,15 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
355
355
  error: string;
356
356
  success: boolean;
357
357
  operation: "download_file";
358
- mimeType?: string | undefined;
359
358
  content?: string | undefined;
359
+ mimeType?: string | undefined;
360
360
  filename?: string | undefined;
361
361
  }, {
362
362
  error: string;
363
363
  success: boolean;
364
364
  operation: "download_file";
365
- mimeType?: string | undefined;
366
365
  content?: string | undefined;
366
+ mimeType?: string | undefined;
367
367
  filename?: string | undefined;
368
368
  }>, z.ZodObject<{
369
369
  operation: z.ZodLiteral<"list_files">;
@@ -390,8 +390,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
390
390
  emailAddress?: string | undefined;
391
391
  }>, "many">>;
392
392
  }, "strip", z.ZodTypeAny, {
393
- mimeType: string;
394
393
  name: string;
394
+ mimeType: string;
395
395
  id: string;
396
396
  size?: string | undefined;
397
397
  createdTime?: string | undefined;
@@ -405,8 +405,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
405
405
  emailAddress?: string | undefined;
406
406
  }[] | undefined;
407
407
  }, {
408
- mimeType: string;
409
408
  name: string;
409
+ mimeType: string;
410
410
  id: string;
411
411
  size?: string | undefined;
412
412
  createdTime?: string | undefined;
@@ -428,8 +428,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
428
428
  success: boolean;
429
429
  operation: "list_files";
430
430
  files?: {
431
- mimeType: string;
432
431
  name: string;
432
+ mimeType: string;
433
433
  id: string;
434
434
  size?: string | undefined;
435
435
  createdTime?: string | undefined;
@@ -450,8 +450,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
450
450
  success: boolean;
451
451
  operation: "list_files";
452
452
  files?: {
453
- mimeType: string;
454
453
  name: string;
454
+ mimeType: string;
455
455
  id: string;
456
456
  size?: string | undefined;
457
457
  createdTime?: string | undefined;
@@ -547,8 +547,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
547
547
  emailAddress?: string | undefined;
548
548
  }>, "many">>;
549
549
  }, "strip", z.ZodTypeAny, {
550
- mimeType: string;
551
550
  name: string;
551
+ mimeType: string;
552
552
  id: string;
553
553
  size?: string | undefined;
554
554
  createdTime?: string | undefined;
@@ -562,8 +562,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
562
562
  emailAddress?: string | undefined;
563
563
  }[] | undefined;
564
564
  }, {
565
- mimeType: string;
566
565
  name: string;
566
+ mimeType: string;
567
567
  id: string;
568
568
  size?: string | undefined;
569
569
  createdTime?: string | undefined;
@@ -602,8 +602,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
602
602
  success: boolean;
603
603
  operation: "get_file_info";
604
604
  file?: {
605
- mimeType: string;
606
605
  name: string;
606
+ mimeType: string;
607
607
  id: string;
608
608
  size?: string | undefined;
609
609
  createdTime?: string | undefined;
@@ -629,8 +629,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
629
629
  success: boolean;
630
630
  operation: "get_file_info";
631
631
  file?: {
632
- mimeType: string;
633
632
  name: string;
633
+ mimeType: string;
634
634
  id: string;
635
635
  size?: string | undefined;
636
636
  createdTime?: string | undefined;
@@ -694,8 +694,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
694
694
  emailAddress?: string | undefined;
695
695
  }>, "many">>;
696
696
  }, "strip", z.ZodTypeAny, {
697
- mimeType: string;
698
697
  name: string;
698
+ mimeType: string;
699
699
  id: string;
700
700
  size?: string | undefined;
701
701
  createdTime?: string | undefined;
@@ -709,8 +709,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
709
709
  emailAddress?: string | undefined;
710
710
  }[] | undefined;
711
711
  }, {
712
- mimeType: string;
713
712
  name: string;
713
+ mimeType: string;
714
714
  id: string;
715
715
  size?: string | undefined;
716
716
  createdTime?: string | undefined;
@@ -730,8 +730,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
730
730
  success: boolean;
731
731
  operation: "move_file";
732
732
  file?: {
733
- mimeType: string;
734
733
  name: string;
734
+ mimeType: string;
735
735
  id: string;
736
736
  size?: string | undefined;
737
737
  createdTime?: string | undefined;
@@ -750,8 +750,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
750
750
  success: boolean;
751
751
  operation: "move_file";
752
752
  file?: {
753
- mimeType: string;
754
753
  name: string;
754
+ mimeType: string;
755
755
  id: string;
756
756
  size?: string | undefined;
757
757
  createdTime?: string | undefined;
@@ -929,15 +929,15 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
929
929
  content: string;
930
930
  operation: "upload_file";
931
931
  convert_to_google_docs: boolean;
932
- mimeType?: string | undefined;
933
932
  credentials?: Partial<Record<CredentialType, string>> | undefined;
933
+ mimeType?: string | undefined;
934
934
  parent_folder_id?: string | undefined;
935
935
  }, {
936
936
  name: string;
937
937
  content: string;
938
938
  operation: "upload_file";
939
- mimeType?: string | undefined;
940
939
  credentials?: Partial<Record<CredentialType, string>> | undefined;
940
+ mimeType?: string | undefined;
941
941
  parent_folder_id?: string | undefined;
942
942
  convert_to_google_docs?: boolean | undefined;
943
943
  }>, z.ZodObject<{
@@ -1187,8 +1187,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1187
1187
  emailAddress?: string | undefined;
1188
1188
  }>, "many">>;
1189
1189
  }, "strip", z.ZodTypeAny, {
1190
- mimeType: string;
1191
1190
  name: string;
1191
+ mimeType: string;
1192
1192
  id: string;
1193
1193
  size?: string | undefined;
1194
1194
  createdTime?: string | undefined;
@@ -1202,8 +1202,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1202
1202
  emailAddress?: string | undefined;
1203
1203
  }[] | undefined;
1204
1204
  }, {
1205
- mimeType: string;
1206
1205
  name: string;
1206
+ mimeType: string;
1207
1207
  id: string;
1208
1208
  size?: string | undefined;
1209
1209
  createdTime?: string | undefined;
@@ -1223,8 +1223,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1223
1223
  success: boolean;
1224
1224
  operation: "upload_file";
1225
1225
  file?: {
1226
- mimeType: string;
1227
1226
  name: string;
1227
+ mimeType: string;
1228
1228
  id: string;
1229
1229
  size?: string | undefined;
1230
1230
  createdTime?: string | undefined;
@@ -1243,8 +1243,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1243
1243
  success: boolean;
1244
1244
  operation: "upload_file";
1245
1245
  file?: {
1246
- mimeType: string;
1247
1246
  name: string;
1247
+ mimeType: string;
1248
1248
  id: string;
1249
1249
  size?: string | undefined;
1250
1250
  createdTime?: string | undefined;
@@ -1269,15 +1269,15 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1269
1269
  error: string;
1270
1270
  success: boolean;
1271
1271
  operation: "download_file";
1272
- mimeType?: string | undefined;
1273
1272
  content?: string | undefined;
1273
+ mimeType?: string | undefined;
1274
1274
  filename?: string | undefined;
1275
1275
  }, {
1276
1276
  error: string;
1277
1277
  success: boolean;
1278
1278
  operation: "download_file";
1279
- mimeType?: string | undefined;
1280
1279
  content?: string | undefined;
1280
+ mimeType?: string | undefined;
1281
1281
  filename?: string | undefined;
1282
1282
  }>, z.ZodObject<{
1283
1283
  operation: z.ZodLiteral<"list_files">;
@@ -1304,8 +1304,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1304
1304
  emailAddress?: string | undefined;
1305
1305
  }>, "many">>;
1306
1306
  }, "strip", z.ZodTypeAny, {
1307
- mimeType: string;
1308
1307
  name: string;
1308
+ mimeType: string;
1309
1309
  id: string;
1310
1310
  size?: string | undefined;
1311
1311
  createdTime?: string | undefined;
@@ -1319,8 +1319,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1319
1319
  emailAddress?: string | undefined;
1320
1320
  }[] | undefined;
1321
1321
  }, {
1322
- mimeType: string;
1323
1322
  name: string;
1323
+ mimeType: string;
1324
1324
  id: string;
1325
1325
  size?: string | undefined;
1326
1326
  createdTime?: string | undefined;
@@ -1342,8 +1342,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1342
1342
  success: boolean;
1343
1343
  operation: "list_files";
1344
1344
  files?: {
1345
- mimeType: string;
1346
1345
  name: string;
1346
+ mimeType: string;
1347
1347
  id: string;
1348
1348
  size?: string | undefined;
1349
1349
  createdTime?: string | undefined;
@@ -1364,8 +1364,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1364
1364
  success: boolean;
1365
1365
  operation: "list_files";
1366
1366
  files?: {
1367
- mimeType: string;
1368
1367
  name: string;
1368
+ mimeType: string;
1369
1369
  id: string;
1370
1370
  size?: string | undefined;
1371
1371
  createdTime?: string | undefined;
@@ -1461,8 +1461,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1461
1461
  emailAddress?: string | undefined;
1462
1462
  }>, "many">>;
1463
1463
  }, "strip", z.ZodTypeAny, {
1464
- mimeType: string;
1465
1464
  name: string;
1465
+ mimeType: string;
1466
1466
  id: string;
1467
1467
  size?: string | undefined;
1468
1468
  createdTime?: string | undefined;
@@ -1476,8 +1476,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1476
1476
  emailAddress?: string | undefined;
1477
1477
  }[] | undefined;
1478
1478
  }, {
1479
- mimeType: string;
1480
1479
  name: string;
1480
+ mimeType: string;
1481
1481
  id: string;
1482
1482
  size?: string | undefined;
1483
1483
  createdTime?: string | undefined;
@@ -1516,8 +1516,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1516
1516
  success: boolean;
1517
1517
  operation: "get_file_info";
1518
1518
  file?: {
1519
- mimeType: string;
1520
1519
  name: string;
1520
+ mimeType: string;
1521
1521
  id: string;
1522
1522
  size?: string | undefined;
1523
1523
  createdTime?: string | undefined;
@@ -1543,8 +1543,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1543
1543
  success: boolean;
1544
1544
  operation: "get_file_info";
1545
1545
  file?: {
1546
- mimeType: string;
1547
1546
  name: string;
1547
+ mimeType: string;
1548
1548
  id: string;
1549
1549
  size?: string | undefined;
1550
1550
  createdTime?: string | undefined;
@@ -1608,8 +1608,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1608
1608
  emailAddress?: string | undefined;
1609
1609
  }>, "many">>;
1610
1610
  }, "strip", z.ZodTypeAny, {
1611
- mimeType: string;
1612
1611
  name: string;
1612
+ mimeType: string;
1613
1613
  id: string;
1614
1614
  size?: string | undefined;
1615
1615
  createdTime?: string | undefined;
@@ -1623,8 +1623,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1623
1623
  emailAddress?: string | undefined;
1624
1624
  }[] | undefined;
1625
1625
  }, {
1626
- mimeType: string;
1627
1626
  name: string;
1627
+ mimeType: string;
1628
1628
  id: string;
1629
1629
  size?: string | undefined;
1630
1630
  createdTime?: string | undefined;
@@ -1644,8 +1644,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1644
1644
  success: boolean;
1645
1645
  operation: "move_file";
1646
1646
  file?: {
1647
- mimeType: string;
1648
1647
  name: string;
1648
+ mimeType: string;
1649
1649
  id: string;
1650
1650
  size?: string | undefined;
1651
1651
  createdTime?: string | undefined;
@@ -1664,8 +1664,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1664
1664
  success: boolean;
1665
1665
  operation: "move_file";
1666
1666
  file?: {
1667
- mimeType: string;
1668
1667
  name: string;
1668
+ mimeType: string;
1669
1669
  id: string;
1670
1670
  size?: string | undefined;
1671
1671
  createdTime?: string | undefined;
@@ -17,7 +17,7 @@ declare const HttpParamsSchema: z.ZodObject<{
17
17
  timeout: number;
18
18
  method: "POST" | "DELETE" | "GET" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
19
19
  followRedirects: boolean;
20
- authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header";
20
+ authType: "none" | "custom" | "bearer" | "basic" | "api-key" | "api-key-header";
21
21
  credentials?: Partial<Record<CredentialType, string>> | undefined;
22
22
  headers?: Record<string, string> | undefined;
23
23
  body?: string | Record<string, unknown> | undefined;
@@ -30,7 +30,7 @@ declare const HttpParamsSchema: z.ZodObject<{
30
30
  method?: "POST" | "DELETE" | "GET" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
31
31
  body?: string | Record<string, unknown> | undefined;
32
32
  followRedirects?: boolean | undefined;
33
- authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
33
+ authType?: "none" | "custom" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
34
34
  authHeader?: string | undefined;
35
35
  }>;
36
36
  type HttpParamsInput = z.input<typeof HttpParamsSchema>;
@@ -87,7 +87,7 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
87
87
  timeout: number;
88
88
  method: "POST" | "DELETE" | "GET" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
89
89
  followRedirects: boolean;
90
- authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header";
90
+ authType: "none" | "custom" | "bearer" | "basic" | "api-key" | "api-key-header";
91
91
  credentials?: Partial<Record<CredentialType, string>> | undefined;
92
92
  headers?: Record<string, string> | undefined;
93
93
  body?: string | Record<string, unknown> | undefined;
@@ -100,7 +100,7 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
100
100
  method?: "POST" | "DELETE" | "GET" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
101
101
  body?: string | Record<string, unknown> | undefined;
102
102
  followRedirects?: boolean | undefined;
103
- authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
103
+ authType?: "none" | "custom" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
104
104
  authHeader?: string | undefined;
105
105
  }>;
106
106
  static readonly resultSchema: z.ZodObject<{
@@ -11,17 +11,17 @@ declare const InsForgeDbParamsSchema: z.ZodObject<{
11
11
  maxRows: z.ZodDefault<z.ZodNumber>;
12
12
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
13
13
  }, "strip", z.ZodTypeAny, {
14
- timeout: number;
15
14
  parameters: unknown[];
15
+ timeout: number;
16
16
  query: string;
17
17
  allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
18
18
  maxRows: number;
19
19
  credentials?: Partial<Record<CredentialType, string>> | undefined;
20
20
  }, {
21
21
  query: string;
22
+ parameters?: unknown[] | undefined;
22
23
  credentials?: Partial<Record<CredentialType, string>> | undefined;
23
24
  timeout?: number | undefined;
24
- parameters?: unknown[] | undefined;
25
25
  allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
26
26
  maxRows?: number | undefined;
27
27
  }>;
@@ -36,17 +36,17 @@ declare const InsForgeDbResultSchema: z.ZodObject<{
36
36
  error: z.ZodString;
37
37
  cleanedJSONString: z.ZodString;
38
38
  }, "strip", z.ZodTypeAny, {
39
+ executionTime: number;
39
40
  error: string;
40
41
  success: boolean;
41
- executionTime: number;
42
42
  rows: Record<string, unknown>[];
43
43
  rowCount: number | null;
44
44
  command: string;
45
45
  cleanedJSONString: string;
46
46
  }, {
47
+ executionTime: number;
47
48
  error: string;
48
49
  success: boolean;
49
- executionTime: number;
50
50
  rows: Record<string, unknown>[];
51
51
  rowCount: number | null;
52
52
  command: string;
@@ -85,17 +85,17 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
85
85
  maxRows: z.ZodDefault<z.ZodNumber>;
86
86
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
87
87
  }, "strip", z.ZodTypeAny, {
88
- timeout: number;
89
88
  parameters: unknown[];
89
+ timeout: number;
90
90
  query: string;
91
91
  allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
92
92
  maxRows: number;
93
93
  credentials?: Partial<Record<CredentialType, string>> | undefined;
94
94
  }, {
95
95
  query: string;
96
+ parameters?: unknown[] | undefined;
96
97
  credentials?: Partial<Record<CredentialType, string>> | undefined;
97
98
  timeout?: number | undefined;
98
- parameters?: unknown[] | undefined;
99
99
  allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
100
100
  maxRows?: number | undefined;
101
101
  }>;
@@ -108,17 +108,17 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
108
108
  error: z.ZodString;
109
109
  cleanedJSONString: z.ZodString;
110
110
  }, "strip", z.ZodTypeAny, {
111
+ executionTime: number;
111
112
  error: string;
112
113
  success: boolean;
113
- executionTime: number;
114
114
  rows: Record<string, unknown>[];
115
115
  rowCount: number | null;
116
116
  command: string;
117
117
  cleanedJSONString: string;
118
118
  }, {
119
+ executionTime: number;
119
120
  error: string;
120
121
  success: boolean;
121
- executionTime: number;
122
122
  rows: Record<string, unknown>[];
123
123
  rowCount: number | null;
124
124
  command: string;
@@ -1413,6 +1413,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1413
1413
  }, import("zod").ZodTypeAny, "passthrough">>, "many">>;
1414
1414
  changelog: import("zod").ZodOptional<import("zod").ZodUnknown>;
1415
1415
  }, "strip", import("zod").ZodTypeAny, {
1416
+ key?: string | undefined;
1416
1417
  id?: string | undefined;
1417
1418
  fields?: import("zod").objectOutputType<{
1418
1419
  summary: import("zod").ZodOptional<import("zod").ZodString>;
@@ -1751,7 +1752,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1751
1752
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
1752
1753
  }, import("zod").ZodTypeAny, "passthrough">>>;
1753
1754
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
1754
- key?: string | undefined;
1755
1755
  changelog?: unknown;
1756
1756
  transitions?: import("zod").objectOutputType<{
1757
1757
  id: import("zod").ZodString;
@@ -1800,6 +1800,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
1800
1800
  expand?: string | undefined;
1801
1801
  self?: string | undefined;
1802
1802
  }, {
1803
+ key?: string | undefined;
1803
1804
  id?: string | undefined;
1804
1805
  fields?: import("zod").objectInputType<{
1805
1806
  summary: import("zod").ZodOptional<import("zod").ZodString>;
@@ -2138,7 +2139,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2138
2139
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
2139
2140
  }, import("zod").ZodTypeAny, "passthrough">>>;
2140
2141
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
2141
- key?: string | undefined;
2142
2142
  changelog?: unknown;
2143
2143
  transitions?: import("zod").objectInputType<{
2144
2144
  id: import("zod").ZodString;
@@ -2196,6 +2196,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2196
2196
  success: boolean;
2197
2197
  operation: "search";
2198
2198
  issues?: {
2199
+ key?: string | undefined;
2199
2200
  id?: string | undefined;
2200
2201
  fields?: import("zod").objectOutputType<{
2201
2202
  summary: import("zod").ZodOptional<import("zod").ZodString>;
@@ -2534,7 +2535,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2534
2535
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
2535
2536
  }, import("zod").ZodTypeAny, "passthrough">>>;
2536
2537
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
2537
- key?: string | undefined;
2538
2538
  changelog?: unknown;
2539
2539
  transitions?: import("zod").objectOutputType<{
2540
2540
  id: import("zod").ZodString;
@@ -2591,6 +2591,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2591
2591
  success: boolean;
2592
2592
  operation: "search";
2593
2593
  issues?: {
2594
+ key?: string | undefined;
2594
2595
  id?: string | undefined;
2595
2596
  fields?: import("zod").objectInputType<{
2596
2597
  summary: import("zod").ZodOptional<import("zod").ZodString>;
@@ -2929,7 +2930,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2929
2930
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
2930
2931
  }, import("zod").ZodTypeAny, "passthrough">>>;
2931
2932
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
2932
- key?: string | undefined;
2933
2933
  changelog?: unknown;
2934
2934
  transitions?: import("zod").objectInputType<{
2935
2935
  id: import("zod").ZodString;
@@ -4130,6 +4130,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
4130
4130
  }, import("zod").ZodTypeAny, "passthrough">>, "many">>;
4131
4131
  changelog: import("zod").ZodOptional<import("zod").ZodUnknown>;
4132
4132
  }, "strip", import("zod").ZodTypeAny, {
4133
+ key?: string | undefined;
4133
4134
  id?: string | undefined;
4134
4135
  fields?: import("zod").objectOutputType<{
4135
4136
  summary: import("zod").ZodOptional<import("zod").ZodString>;
@@ -4468,7 +4469,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
4468
4469
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
4469
4470
  }, import("zod").ZodTypeAny, "passthrough">>>;
4470
4471
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
4471
- key?: string | undefined;
4472
4472
  changelog?: unknown;
4473
4473
  transitions?: import("zod").objectOutputType<{
4474
4474
  id: import("zod").ZodString;
@@ -4517,6 +4517,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
4517
4517
  expand?: string | undefined;
4518
4518
  self?: string | undefined;
4519
4519
  }, {
4520
+ key?: string | undefined;
4520
4521
  id?: string | undefined;
4521
4522
  fields?: import("zod").objectInputType<{
4522
4523
  summary: import("zod").ZodOptional<import("zod").ZodString>;
@@ -4855,7 +4856,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
4855
4856
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
4856
4857
  }, import("zod").ZodTypeAny, "passthrough">>>;
4857
4858
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
4858
- key?: string | undefined;
4859
4859
  changelog?: unknown;
4860
4860
  transitions?: import("zod").objectInputType<{
4861
4861
  id: import("zod").ZodString;
@@ -4910,6 +4910,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
4910
4910
  success: boolean;
4911
4911
  operation: "get";
4912
4912
  issue?: {
4913
+ key?: string | undefined;
4913
4914
  id?: string | undefined;
4914
4915
  fields?: import("zod").objectOutputType<{
4915
4916
  summary: import("zod").ZodOptional<import("zod").ZodString>;
@@ -5248,7 +5249,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
5248
5249
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
5249
5250
  }, import("zod").ZodTypeAny, "passthrough">>>;
5250
5251
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
5251
- key?: string | undefined;
5252
5252
  changelog?: unknown;
5253
5253
  transitions?: import("zod").objectOutputType<{
5254
5254
  id: import("zod").ZodString;
@@ -5302,6 +5302,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
5302
5302
  success: boolean;
5303
5303
  operation: "get";
5304
5304
  issue?: {
5305
+ key?: string | undefined;
5305
5306
  id?: string | undefined;
5306
5307
  fields?: import("zod").objectInputType<{
5307
5308
  summary: import("zod").ZodOptional<import("zod").ZodString>;
@@ -5640,7 +5641,6 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
5640
5641
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
5641
5642
  }, import("zod").ZodTypeAny, "passthrough">>>;
5642
5643
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
5643
- key?: string | undefined;
5644
5644
  changelog?: unknown;
5645
5645
  transitions?: import("zod").objectInputType<{
5646
5646
  id: import("zod").ZodString;
@@ -5697,12 +5697,12 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
5697
5697
  key: import("zod").ZodString;
5698
5698
  self: import("zod").ZodOptional<import("zod").ZodString>;
5699
5699
  }, "strip", import("zod").ZodTypeAny, {
5700
- id: string;
5701
5700
  key: string;
5701
+ id: string;
5702
5702
  self?: string | undefined;
5703
5703
  }, {
5704
- id: string;
5705
5704
  key: string;
5705
+ id: string;
5706
5706
  self?: string | undefined;
5707
5707
  }>>;
5708
5708
  error: import("zod").ZodString;
@@ -5711,8 +5711,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
5711
5711
  success: boolean;
5712
5712
  operation: "create";
5713
5713
  issue?: {
5714
- id: string;
5715
5714
  key: string;
5715
+ id: string;
5716
5716
  self?: string | undefined;
5717
5717
  } | undefined;
5718
5718
  }, {
@@ -5720,8 +5720,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
5720
5720
  success: boolean;
5721
5721
  operation: "create";
5722
5722
  issue?: {
5723
- id: string;
5724
5723
  key: string;
5724
+ id: string;
5725
5725
  self?: string | undefined;
5726
5726
  } | undefined;
5727
5727
  }>, import("zod").ZodObject<{