@bubblelab/bubble-core 0.1.101 → 0.1.102

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 (62) hide show
  1. package/dist/bubble-bundle.d.ts +80 -80
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +40 -40
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
  4. package/dist/bubbles/service-bubble/airtable.d.ts +84 -84
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +16 -16
  6. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +20 -20
  7. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
  8. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +116 -116
  9. package/dist/bubbles/service-bubble/eleven-labs.d.ts +12 -12
  10. package/dist/bubbles/service-bubble/firecrawl.d.ts +773 -773
  11. package/dist/bubbles/service-bubble/followupboss.d.ts +274 -274
  12. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +122 -122
  13. package/dist/bubbles/service-bubble/github.d.ts +240 -240
  14. package/dist/bubbles/service-bubble/gmail.d.ts +84 -84
  15. package/dist/bubbles/service-bubble/google-calendar.d.ts +118 -118
  16. package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
  17. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
  18. package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
  19. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  20. package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
  21. package/dist/bubbles/service-bubble/jira/jira.d.ts +38 -38
  22. package/dist/bubbles/service-bubble/notion/notion.d.ts +1007 -1007
  23. package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
  24. package/dist/bubbles/service-bubble/resend.d.ts +24 -24
  25. package/dist/bubbles/service-bubble/slack/slack.d.ts +638 -638
  26. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +152 -82
  27. package/dist/bubbles/service-bubble/stripe/stripe.d.ts.map +1 -1
  28. package/dist/bubbles/service-bubble/stripe/stripe.js +53 -8
  29. package/dist/bubbles/service-bubble/stripe/stripe.js.map +1 -1
  30. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +69 -0
  31. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts.map +1 -1
  32. package/dist/bubbles/service-bubble/stripe/stripe.schema.js +35 -0
  33. package/dist/bubbles/service-bubble/stripe/stripe.schema.js.map +1 -1
  34. package/dist/bubbles/service-bubble/telegram.d.ts +1129 -1129
  35. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +9 -9
  36. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +16 -16
  37. package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +20 -20
  38. package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
  39. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +86 -86
  40. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
  41. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +34 -34
  42. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
  43. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +210 -210
  44. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +254 -254
  45. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +60 -60
  46. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +24 -24
  47. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +44 -44
  48. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +24 -24
  49. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  50. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +6 -6
  51. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
  52. package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +88 -88
  53. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  54. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +24 -24
  55. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
  56. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +48 -48
  57. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
  58. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +30 -30
  59. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +84 -84
  60. package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
  61. package/dist/bubbles.json +109 -2
  62. package/package.json +2 -2
@@ -122,7 +122,7 @@ declare const GoogleDriveParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
122
122
  type: "user" | "group" | "domain" | "anyone";
123
123
  operation: "share_file";
124
124
  file_id: string;
125
- role: "writer" | "reader" | "commenter" | "owner";
125
+ role: "reader" | "writer" | "commenter" | "owner";
126
126
  send_notification: boolean;
127
127
  credentials?: Partial<Record<CredentialType, string>> | undefined;
128
128
  email_address?: string | undefined;
@@ -132,7 +132,7 @@ declare const GoogleDriveParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
132
132
  type?: "user" | "group" | "domain" | "anyone" | undefined;
133
133
  credentials?: Partial<Record<CredentialType, string>> | undefined;
134
134
  email_address?: string | undefined;
135
- role?: "writer" | "reader" | "commenter" | "owner" | undefined;
135
+ role?: "reader" | "writer" | "commenter" | "owner" | undefined;
136
136
  send_notification?: boolean | undefined;
137
137
  }>, z.ZodObject<{
138
138
  operation: z.ZodLiteral<"move_file">;
@@ -274,8 +274,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
274
274
  }>, "many">>;
275
275
  }, "strip", z.ZodTypeAny, {
276
276
  name: string;
277
- id: string;
278
277
  mimeType: string;
278
+ id: string;
279
279
  size?: string | undefined;
280
280
  createdTime?: string | undefined;
281
281
  modifiedTime?: string | undefined;
@@ -289,8 +289,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
289
289
  }[] | undefined;
290
290
  }, {
291
291
  name: string;
292
- id: string;
293
292
  mimeType: string;
293
+ id: string;
294
294
  size?: string | undefined;
295
295
  createdTime?: string | undefined;
296
296
  modifiedTime?: string | undefined;
@@ -310,8 +310,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
310
310
  operation: "upload_file";
311
311
  file?: {
312
312
  name: string;
313
- id: string;
314
313
  mimeType: string;
314
+ id: string;
315
315
  size?: string | undefined;
316
316
  createdTime?: string | undefined;
317
317
  modifiedTime?: string | undefined;
@@ -330,8 +330,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
330
330
  operation: "upload_file";
331
331
  file?: {
332
332
  name: string;
333
- id: string;
334
333
  mimeType: string;
334
+ id: string;
335
335
  size?: string | undefined;
336
336
  createdTime?: string | undefined;
337
337
  modifiedTime?: string | undefined;
@@ -391,8 +391,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
391
391
  }>, "many">>;
392
392
  }, "strip", z.ZodTypeAny, {
393
393
  name: string;
394
- id: string;
395
394
  mimeType: string;
395
+ id: string;
396
396
  size?: string | undefined;
397
397
  createdTime?: string | undefined;
398
398
  modifiedTime?: string | undefined;
@@ -406,8 +406,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
406
406
  }[] | undefined;
407
407
  }, {
408
408
  name: string;
409
- id: string;
410
409
  mimeType: string;
410
+ id: string;
411
411
  size?: string | undefined;
412
412
  createdTime?: string | undefined;
413
413
  modifiedTime?: string | undefined;
@@ -427,11 +427,10 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
427
427
  success: boolean;
428
428
  error: string;
429
429
  operation: "list_files";
430
- total_count?: number | undefined;
431
430
  files?: {
432
431
  name: string;
433
- id: string;
434
432
  mimeType: string;
433
+ id: string;
435
434
  size?: string | undefined;
436
435
  createdTime?: string | undefined;
437
436
  modifiedTime?: string | undefined;
@@ -444,16 +443,16 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
444
443
  emailAddress?: string | undefined;
445
444
  }[] | undefined;
446
445
  }[] | undefined;
446
+ total_count?: number | undefined;
447
447
  next_page_token?: string | undefined;
448
448
  }, {
449
449
  success: boolean;
450
450
  error: string;
451
451
  operation: "list_files";
452
- total_count?: number | undefined;
453
452
  files?: {
454
453
  name: string;
455
- id: string;
456
454
  mimeType: string;
455
+ id: string;
457
456
  size?: string | undefined;
458
457
  createdTime?: string | undefined;
459
458
  modifiedTime?: string | undefined;
@@ -466,6 +465,7 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
466
465
  emailAddress?: string | undefined;
467
466
  }[] | undefined;
468
467
  }[] | undefined;
468
+ total_count?: number | undefined;
469
469
  next_page_token?: string | undefined;
470
470
  }>, z.ZodObject<{
471
471
  operation: z.ZodLiteral<"create_folder">;
@@ -548,8 +548,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
548
548
  }>, "many">>;
549
549
  }, "strip", z.ZodTypeAny, {
550
550
  name: string;
551
- id: string;
552
551
  mimeType: string;
552
+ id: string;
553
553
  size?: string | undefined;
554
554
  createdTime?: string | undefined;
555
555
  modifiedTime?: string | undefined;
@@ -563,8 +563,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
563
563
  }[] | undefined;
564
564
  }, {
565
565
  name: string;
566
- id: string;
567
566
  mimeType: string;
567
+ id: string;
568
568
  size?: string | undefined;
569
569
  createdTime?: string | undefined;
570
570
  modifiedTime?: string | undefined;
@@ -603,8 +603,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
603
603
  operation: "get_file_info";
604
604
  file?: {
605
605
  name: string;
606
- id: string;
607
606
  mimeType: string;
607
+ id: string;
608
608
  size?: string | undefined;
609
609
  createdTime?: string | undefined;
610
610
  modifiedTime?: string | undefined;
@@ -630,8 +630,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
630
630
  operation: "get_file_info";
631
631
  file?: {
632
632
  name: string;
633
- id: string;
634
633
  mimeType: string;
634
+ id: string;
635
635
  size?: string | undefined;
636
636
  createdTime?: string | undefined;
637
637
  modifiedTime?: string | undefined;
@@ -695,8 +695,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
695
695
  }>, "many">>;
696
696
  }, "strip", z.ZodTypeAny, {
697
697
  name: string;
698
- id: string;
699
698
  mimeType: string;
699
+ id: string;
700
700
  size?: string | undefined;
701
701
  createdTime?: string | undefined;
702
702
  modifiedTime?: string | undefined;
@@ -710,8 +710,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
710
710
  }[] | undefined;
711
711
  }, {
712
712
  name: string;
713
- id: string;
714
713
  mimeType: string;
714
+ id: string;
715
715
  size?: string | undefined;
716
716
  createdTime?: string | undefined;
717
717
  modifiedTime?: string | undefined;
@@ -731,8 +731,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
731
731
  operation: "move_file";
732
732
  file?: {
733
733
  name: string;
734
- id: string;
735
734
  mimeType: string;
735
+ id: string;
736
736
  size?: string | undefined;
737
737
  createdTime?: string | undefined;
738
738
  modifiedTime?: string | undefined;
@@ -751,8 +751,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
751
751
  operation: "move_file";
752
752
  file?: {
753
753
  name: string;
754
- id: string;
755
754
  mimeType: string;
755
+ id: string;
756
756
  size?: string | undefined;
757
757
  createdTime?: string | undefined;
758
758
  modifiedTime?: string | undefined;
@@ -1036,7 +1036,7 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1036
1036
  type: "user" | "group" | "domain" | "anyone";
1037
1037
  operation: "share_file";
1038
1038
  file_id: string;
1039
- role: "writer" | "reader" | "commenter" | "owner";
1039
+ role: "reader" | "writer" | "commenter" | "owner";
1040
1040
  send_notification: boolean;
1041
1041
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1042
1042
  email_address?: string | undefined;
@@ -1046,7 +1046,7 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1046
1046
  type?: "user" | "group" | "domain" | "anyone" | undefined;
1047
1047
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1048
1048
  email_address?: string | undefined;
1049
- role?: "writer" | "reader" | "commenter" | "owner" | undefined;
1049
+ role?: "reader" | "writer" | "commenter" | "owner" | undefined;
1050
1050
  send_notification?: boolean | undefined;
1051
1051
  }>, z.ZodObject<{
1052
1052
  operation: z.ZodLiteral<"move_file">;
@@ -1188,8 +1188,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1188
1188
  }>, "many">>;
1189
1189
  }, "strip", z.ZodTypeAny, {
1190
1190
  name: string;
1191
- id: string;
1192
1191
  mimeType: string;
1192
+ id: string;
1193
1193
  size?: string | undefined;
1194
1194
  createdTime?: string | undefined;
1195
1195
  modifiedTime?: string | undefined;
@@ -1203,8 +1203,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1203
1203
  }[] | undefined;
1204
1204
  }, {
1205
1205
  name: string;
1206
- id: string;
1207
1206
  mimeType: string;
1207
+ id: string;
1208
1208
  size?: string | undefined;
1209
1209
  createdTime?: string | undefined;
1210
1210
  modifiedTime?: string | undefined;
@@ -1224,8 +1224,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1224
1224
  operation: "upload_file";
1225
1225
  file?: {
1226
1226
  name: string;
1227
- id: string;
1228
1227
  mimeType: string;
1228
+ id: string;
1229
1229
  size?: string | undefined;
1230
1230
  createdTime?: string | undefined;
1231
1231
  modifiedTime?: string | undefined;
@@ -1244,8 +1244,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1244
1244
  operation: "upload_file";
1245
1245
  file?: {
1246
1246
  name: string;
1247
- id: string;
1248
1247
  mimeType: string;
1248
+ id: string;
1249
1249
  size?: string | undefined;
1250
1250
  createdTime?: string | undefined;
1251
1251
  modifiedTime?: string | undefined;
@@ -1305,8 +1305,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1305
1305
  }>, "many">>;
1306
1306
  }, "strip", z.ZodTypeAny, {
1307
1307
  name: string;
1308
- id: string;
1309
1308
  mimeType: string;
1309
+ id: string;
1310
1310
  size?: string | undefined;
1311
1311
  createdTime?: string | undefined;
1312
1312
  modifiedTime?: string | undefined;
@@ -1320,8 +1320,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1320
1320
  }[] | undefined;
1321
1321
  }, {
1322
1322
  name: string;
1323
- id: string;
1324
1323
  mimeType: string;
1324
+ id: string;
1325
1325
  size?: string | undefined;
1326
1326
  createdTime?: string | undefined;
1327
1327
  modifiedTime?: string | undefined;
@@ -1341,11 +1341,10 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1341
1341
  success: boolean;
1342
1342
  error: string;
1343
1343
  operation: "list_files";
1344
- total_count?: number | undefined;
1345
1344
  files?: {
1346
1345
  name: string;
1347
- id: string;
1348
1346
  mimeType: string;
1347
+ id: string;
1349
1348
  size?: string | undefined;
1350
1349
  createdTime?: string | undefined;
1351
1350
  modifiedTime?: string | undefined;
@@ -1358,16 +1357,16 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1358
1357
  emailAddress?: string | undefined;
1359
1358
  }[] | undefined;
1360
1359
  }[] | undefined;
1360
+ total_count?: number | undefined;
1361
1361
  next_page_token?: string | undefined;
1362
1362
  }, {
1363
1363
  success: boolean;
1364
1364
  error: string;
1365
1365
  operation: "list_files";
1366
- total_count?: number | undefined;
1367
1366
  files?: {
1368
1367
  name: string;
1369
- id: string;
1370
1368
  mimeType: string;
1369
+ id: string;
1371
1370
  size?: string | undefined;
1372
1371
  createdTime?: string | undefined;
1373
1372
  modifiedTime?: string | undefined;
@@ -1380,6 +1379,7 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1380
1379
  emailAddress?: string | undefined;
1381
1380
  }[] | undefined;
1382
1381
  }[] | undefined;
1382
+ total_count?: number | undefined;
1383
1383
  next_page_token?: string | undefined;
1384
1384
  }>, z.ZodObject<{
1385
1385
  operation: z.ZodLiteral<"create_folder">;
@@ -1462,8 +1462,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1462
1462
  }>, "many">>;
1463
1463
  }, "strip", z.ZodTypeAny, {
1464
1464
  name: string;
1465
- id: string;
1466
1465
  mimeType: string;
1466
+ id: string;
1467
1467
  size?: string | undefined;
1468
1468
  createdTime?: string | undefined;
1469
1469
  modifiedTime?: string | undefined;
@@ -1477,8 +1477,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1477
1477
  }[] | undefined;
1478
1478
  }, {
1479
1479
  name: string;
1480
- id: string;
1481
1480
  mimeType: string;
1481
+ id: string;
1482
1482
  size?: string | undefined;
1483
1483
  createdTime?: string | undefined;
1484
1484
  modifiedTime?: string | undefined;
@@ -1517,8 +1517,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1517
1517
  operation: "get_file_info";
1518
1518
  file?: {
1519
1519
  name: string;
1520
- id: string;
1521
1520
  mimeType: string;
1521
+ id: string;
1522
1522
  size?: string | undefined;
1523
1523
  createdTime?: string | undefined;
1524
1524
  modifiedTime?: string | undefined;
@@ -1544,8 +1544,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1544
1544
  operation: "get_file_info";
1545
1545
  file?: {
1546
1546
  name: string;
1547
- id: string;
1548
1547
  mimeType: string;
1548
+ id: string;
1549
1549
  size?: string | undefined;
1550
1550
  createdTime?: string | undefined;
1551
1551
  modifiedTime?: string | undefined;
@@ -1609,8 +1609,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1609
1609
  }>, "many">>;
1610
1610
  }, "strip", z.ZodTypeAny, {
1611
1611
  name: string;
1612
- id: string;
1613
1612
  mimeType: string;
1613
+ id: string;
1614
1614
  size?: string | undefined;
1615
1615
  createdTime?: string | undefined;
1616
1616
  modifiedTime?: string | undefined;
@@ -1624,8 +1624,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1624
1624
  }[] | undefined;
1625
1625
  }, {
1626
1626
  name: string;
1627
- id: string;
1628
1627
  mimeType: string;
1628
+ id: string;
1629
1629
  size?: string | undefined;
1630
1630
  createdTime?: string | undefined;
1631
1631
  modifiedTime?: string | undefined;
@@ -1645,8 +1645,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1645
1645
  operation: "move_file";
1646
1646
  file?: {
1647
1647
  name: string;
1648
- id: string;
1649
1648
  mimeType: string;
1649
+ id: string;
1650
1650
  size?: string | undefined;
1651
1651
  createdTime?: string | undefined;
1652
1652
  modifiedTime?: string | undefined;
@@ -1665,8 +1665,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1665
1665
  operation: "move_file";
1666
1666
  file?: {
1667
1667
  name: string;
1668
- id: string;
1669
1668
  mimeType: string;
1669
+ id: string;
1670
1670
  size?: string | undefined;
1671
1671
  createdTime?: string | undefined;
1672
1672
  modifiedTime?: string | undefined;
@@ -43,16 +43,16 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
43
43
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
44
44
  }, "strip", import("zod").ZodTypeAny, {
45
45
  operation: "read_values";
46
- range: string;
47
46
  spreadsheet_id: string;
47
+ range: string;
48
48
  major_dimension: "ROWS" | "COLUMNS";
49
49
  value_render_option: "FORMATTED_VALUE" | "UNFORMATTED_VALUE" | "FORMULA";
50
50
  date_time_render_option: "SERIAL_NUMBER" | "FORMATTED_STRING";
51
51
  credentials?: Partial<Record<CredentialType, string>> | undefined;
52
52
  }, {
53
53
  operation: "read_values";
54
- range: string;
55
54
  spreadsheet_id: string;
55
+ range: string;
56
56
  credentials?: Partial<Record<CredentialType, string>> | undefined;
57
57
  major_dimension?: "ROWS" | "COLUMNS" | undefined;
58
58
  value_render_option?: "FORMATTED_VALUE" | "UNFORMATTED_VALUE" | "FORMULA" | undefined;
@@ -69,8 +69,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
69
69
  }, "strip", import("zod").ZodTypeAny, {
70
70
  values: (string | number | boolean)[][];
71
71
  operation: "write_values";
72
- range: string;
73
72
  spreadsheet_id: string;
73
+ range: string;
74
74
  major_dimension: "ROWS" | "COLUMNS";
75
75
  value_input_option: "RAW" | "USER_ENTERED";
76
76
  include_values_in_response: boolean;
@@ -78,8 +78,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
78
78
  }, {
79
79
  values: unknown[][];
80
80
  operation: "write_values";
81
- range: string;
82
81
  spreadsheet_id: string;
82
+ range: string;
83
83
  credentials?: Partial<Record<CredentialType, string>> | undefined;
84
84
  major_dimension?: "ROWS" | "COLUMNS" | undefined;
85
85
  value_input_option?: "RAW" | "USER_ENTERED" | undefined;
@@ -96,8 +96,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
96
96
  }, "strip", import("zod").ZodTypeAny, {
97
97
  values: (string | number | boolean)[][];
98
98
  operation: "update_values";
99
- range: string;
100
99
  spreadsheet_id: string;
100
+ range: string;
101
101
  major_dimension: "ROWS" | "COLUMNS";
102
102
  value_input_option: "RAW" | "USER_ENTERED";
103
103
  include_values_in_response: boolean;
@@ -105,8 +105,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
105
105
  }, {
106
106
  values: unknown[][];
107
107
  operation: "update_values";
108
- range: string;
109
108
  spreadsheet_id: string;
109
+ range: string;
110
110
  credentials?: Partial<Record<CredentialType, string>> | undefined;
111
111
  major_dimension?: "ROWS" | "COLUMNS" | undefined;
112
112
  value_input_option?: "RAW" | "USER_ENTERED" | undefined;
@@ -124,8 +124,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
124
124
  }, "strip", import("zod").ZodTypeAny, {
125
125
  values: (string | number | boolean)[][];
126
126
  operation: "append_values";
127
- range: string;
128
127
  spreadsheet_id: string;
128
+ range: string;
129
129
  major_dimension: "ROWS" | "COLUMNS";
130
130
  value_input_option: "RAW" | "USER_ENTERED";
131
131
  include_values_in_response: boolean;
@@ -134,8 +134,8 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
134
134
  }, {
135
135
  values: unknown[][];
136
136
  operation: "append_values";
137
- range: string;
138
137
  spreadsheet_id: string;
138
+ range: string;
139
139
  credentials?: Partial<Record<CredentialType, string>> | undefined;
140
140
  major_dimension?: "ROWS" | "COLUMNS" | undefined;
141
141
  value_input_option?: "RAW" | "USER_ENTERED" | undefined;
@@ -148,13 +148,13 @@ export declare class GoogleSheetsBubble<T extends GoogleSheetsParamsInput = Goog
148
148
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
149
149
  }, "strip", import("zod").ZodTypeAny, {
150
150
  operation: "clear_values";
151
- range: string;
152
151
  spreadsheet_id: string;
152
+ range: string;
153
153
  credentials?: Partial<Record<CredentialType, string>> | undefined;
154
154
  }, {
155
155
  operation: "clear_values";
156
- range: string;
157
156
  spreadsheet_id: string;
157
+ range: string;
158
158
  credentials?: Partial<Record<CredentialType, string>> | undefined;
159
159
  }>, import("zod").ZodObject<{
160
160
  operation: import("zod").ZodLiteral<"batch_read_values">;
@@ -22,13 +22,13 @@ declare const HelloWorldResultSchema: z.ZodObject<{
22
22
  success: z.ZodBoolean;
23
23
  error: z.ZodString;
24
24
  }, "strip", z.ZodTypeAny, {
25
+ greeting: string;
25
26
  success: boolean;
26
27
  error: string;
27
- greeting: string;
28
28
  }, {
29
+ greeting: string;
29
30
  success: boolean;
30
31
  error: string;
31
- greeting: string;
32
32
  }>;
33
33
  type HelloWorldResult = z.output<typeof HelloWorldResultSchema>;
34
34
  export declare class HelloWorldBubble extends ServiceBubble<HelloWorldParams, HelloWorldResult> {
@@ -54,13 +54,13 @@ export declare class HelloWorldBubble extends ServiceBubble<HelloWorldParams, He
54
54
  success: z.ZodBoolean;
55
55
  error: z.ZodString;
56
56
  }, "strip", z.ZodTypeAny, {
57
+ greeting: string;
57
58
  success: boolean;
58
59
  error: string;
59
- greeting: string;
60
60
  }, {
61
+ greeting: string;
61
62
  success: boolean;
62
63
  error: string;
63
- greeting: string;
64
64
  }>;
65
65
  static readonly shortDescription = "Simple hello world bubble for testing purposes";
66
66
  static readonly longDescription = "\n A basic hello world bubble that demonstrates the NodeX bubble system.\n Use cases:\n - Testing the bubble execution system\n - Validating NodeX integration\n - Learning bubble development patterns\n ";
@@ -15,7 +15,7 @@ declare const HttpParamsSchema: z.ZodObject<{
15
15
  }, "strip", z.ZodTypeAny, {
16
16
  url: string;
17
17
  timeout: number;
18
- method: "POST" | "DELETE" | "GET" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
18
+ method: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
19
19
  followRedirects: boolean;
20
20
  authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header";
21
21
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -27,7 +27,7 @@ declare const HttpParamsSchema: z.ZodObject<{
27
27
  credentials?: Partial<Record<CredentialType, string>> | undefined;
28
28
  timeout?: number | undefined;
29
29
  headers?: Record<string, string> | undefined;
30
- method?: "POST" | "DELETE" | "GET" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
30
+ method?: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
31
31
  body?: string | Record<string, unknown> | undefined;
32
32
  followRedirects?: boolean | undefined;
33
33
  authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
@@ -49,8 +49,8 @@ declare const HttpResultSchema: z.ZodObject<{
49
49
  status: number;
50
50
  success: boolean;
51
51
  error: string;
52
- headers: Record<string, string>;
53
52
  size: number;
53
+ headers: Record<string, string>;
54
54
  body: string;
55
55
  statusText: string;
56
56
  responseTime: number;
@@ -59,8 +59,8 @@ declare const HttpResultSchema: z.ZodObject<{
59
59
  status: number;
60
60
  success: boolean;
61
61
  error: string;
62
- headers: Record<string, string>;
63
62
  size: number;
63
+ headers: Record<string, string>;
64
64
  body: string;
65
65
  statusText: string;
66
66
  responseTime: number;
@@ -85,7 +85,7 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
85
85
  }, "strip", z.ZodTypeAny, {
86
86
  url: string;
87
87
  timeout: number;
88
- method: "POST" | "DELETE" | "GET" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
88
+ method: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
89
89
  followRedirects: boolean;
90
90
  authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header";
91
91
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -97,7 +97,7 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
97
97
  credentials?: Partial<Record<CredentialType, string>> | undefined;
98
98
  timeout?: number | undefined;
99
99
  headers?: Record<string, string> | undefined;
100
- method?: "POST" | "DELETE" | "GET" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
100
+ method?: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
101
101
  body?: string | Record<string, unknown> | undefined;
102
102
  followRedirects?: boolean | undefined;
103
103
  authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
@@ -117,8 +117,8 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
117
117
  status: number;
118
118
  success: boolean;
119
119
  error: string;
120
- headers: Record<string, string>;
121
120
  size: number;
121
+ headers: Record<string, string>;
122
122
  body: string;
123
123
  statusText: string;
124
124
  responseTime: number;
@@ -127,8 +127,8 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
127
127
  status: number;
128
128
  success: boolean;
129
129
  error: string;
130
- headers: Record<string, string>;
131
130
  size: number;
131
+ headers: Record<string, string>;
132
132
  body: string;
133
133
  statusText: string;
134
134
  responseTime: number;
@@ -11,18 +11,18 @@ 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
  query: string;
16
15
  allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
17
16
  parameters: unknown[];
17
+ timeout: number;
18
18
  maxRows: number;
19
19
  credentials?: Partial<Record<CredentialType, string>> | undefined;
20
20
  }, {
21
21
  query: string;
22
22
  credentials?: Partial<Record<CredentialType, string>> | undefined;
23
- timeout?: number | undefined;
24
23
  allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
25
24
  parameters?: unknown[] | undefined;
25
+ timeout?: number | undefined;
26
26
  maxRows?: number | undefined;
27
27
  }>;
28
28
  type InsForgeDbParamsInput = z.input<typeof InsForgeDbParamsSchema>;
@@ -85,18 +85,18 @@ 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
  query: string;
90
89
  allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
91
90
  parameters: unknown[];
91
+ timeout: number;
92
92
  maxRows: number;
93
93
  credentials?: Partial<Record<CredentialType, string>> | undefined;
94
94
  }, {
95
95
  query: string;
96
96
  credentials?: Partial<Record<CredentialType, string>> | undefined;
97
- timeout?: number | undefined;
98
97
  allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
99
98
  parameters?: unknown[] | undefined;
99
+ timeout?: number | undefined;
100
100
  maxRows?: number | undefined;
101
101
  }>;
102
102
  static readonly resultSchema: z.ZodObject<{