@bubblelab/bubble-core 0.1.126 → 0.1.127

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 (49) hide show
  1. package/dist/bubble-bundle.d.ts +83 -82
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +72 -72
  4. package/dist/bubbles/service-bubble/airtable.d.ts +76 -76
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +22 -22
  6. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +2 -2
  7. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +2 -2
  8. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +1 -1
  9. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +1 -1
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +14 -14
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +32 -32
  12. package/dist/bubbles/service-bubble/firecrawl.d.ts +342 -342
  13. package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
  14. package/dist/bubbles/service-bubble/github.d.ts +60 -60
  15. package/dist/bubbles/service-bubble/gmail.d.ts +164 -164
  16. package/dist/bubbles/service-bubble/google-calendar.d.ts +6 -6
  17. package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
  18. package/dist/bubbles/service-bubble/http.d.ts +2 -2
  19. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  20. package/dist/bubbles/service-bubble/jira/jira.d.ts +42 -42
  21. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +50 -50
  22. package/dist/bubbles/service-bubble/notion/notion.d.ts +848 -848
  23. package/dist/bubbles/service-bubble/notion/notion.d.ts.map +1 -1
  24. package/dist/bubbles/service-bubble/notion/notion.js +14 -1
  25. package/dist/bubbles/service-bubble/notion/notion.js.map +1 -1
  26. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  27. package/dist/bubbles/service-bubble/slack/slack.d.ts +240 -240
  28. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +24 -24
  29. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +28 -28
  30. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
  31. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
  32. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
  33. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +28 -28
  34. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +304 -304
  35. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +44 -44
  36. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
  37. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  38. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  39. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +52 -52
  40. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +124 -124
  41. package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +36 -36
  42. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
  43. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
  44. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +16 -16
  45. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
  46. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +2 -2
  47. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +26 -26
  48. package/dist/bubbles.json +1 -1
  49. package/package.json +2 -2
@@ -123,12 +123,12 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
123
123
  dateTime?: string | undefined;
124
124
  };
125
125
  operation: "create_event";
126
- calendar_id: string;
127
126
  end: {
128
127
  date?: string | undefined;
129
128
  timeZone?: string | undefined;
130
129
  dateTime?: string | undefined;
131
130
  };
131
+ calendar_id: string;
132
132
  conference: boolean;
133
133
  description?: string | undefined;
134
134
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -155,13 +155,13 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
155
155
  description?: string | undefined;
156
156
  credentials?: Partial<Record<CredentialType, string>> | undefined;
157
157
  location?: string | undefined;
158
- calendar_id?: string | undefined;
159
158
  attendees?: {
160
159
  email: string;
161
160
  optional?: boolean | undefined;
162
161
  displayName?: string | undefined;
163
162
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
164
163
  }[] | undefined;
164
+ calendar_id?: string | undefined;
165
165
  conference?: boolean | undefined;
166
166
  }>, z.ZodObject<{
167
167
  operation: z.ZodLiteral<"update_event">;
@@ -249,7 +249,6 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
249
249
  dateTime?: string | undefined;
250
250
  } | undefined;
251
251
  location?: string | undefined;
252
- calendar_id?: string | undefined;
253
252
  end?: {
254
253
  date?: string | undefined;
255
254
  timeZone?: string | undefined;
@@ -261,6 +260,7 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
261
260
  displayName?: string | undefined;
262
261
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
263
262
  }[] | undefined;
263
+ calendar_id?: string | undefined;
264
264
  }>, z.ZodObject<{
265
265
  operation: z.ZodLiteral<"delete_event">;
266
266
  calendar_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -2206,12 +2206,12 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2206
2206
  dateTime?: string | undefined;
2207
2207
  };
2208
2208
  operation: "create_event";
2209
- calendar_id: string;
2210
2209
  end: {
2211
2210
  date?: string | undefined;
2212
2211
  timeZone?: string | undefined;
2213
2212
  dateTime?: string | undefined;
2214
2213
  };
2214
+ calendar_id: string;
2215
2215
  conference: boolean;
2216
2216
  description?: string | undefined;
2217
2217
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -2238,13 +2238,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2238
2238
  description?: string | undefined;
2239
2239
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2240
2240
  location?: string | undefined;
2241
- calendar_id?: string | undefined;
2242
2241
  attendees?: {
2243
2242
  email: string;
2244
2243
  optional?: boolean | undefined;
2245
2244
  displayName?: string | undefined;
2246
2245
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2247
2246
  }[] | undefined;
2247
+ calendar_id?: string | undefined;
2248
2248
  conference?: boolean | undefined;
2249
2249
  }>, z.ZodObject<{
2250
2250
  operation: z.ZodLiteral<"update_event">;
@@ -2332,7 +2332,6 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2332
2332
  dateTime?: string | undefined;
2333
2333
  } | undefined;
2334
2334
  location?: string | undefined;
2335
- calendar_id?: string | undefined;
2336
2335
  end?: {
2337
2336
  date?: string | undefined;
2338
2337
  timeZone?: string | undefined;
@@ -2344,6 +2343,7 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2344
2343
  displayName?: string | undefined;
2345
2344
  responseStatus?: "needsAction" | "declined" | "tentative" | "accepted" | undefined;
2346
2345
  }[] | undefined;
2346
+ calendar_id?: string | undefined;
2347
2347
  }>, z.ZodObject<{
2348
2348
  operation: z.ZodLiteral<"delete_event">;
2349
2349
  calendar_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -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<{
@@ -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
- mimeType: string;
278
277
  id: string;
278
+ mimeType: 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
- mimeType: string;
293
292
  id: string;
293
+ mimeType: 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
- mimeType: string;
314
313
  id: string;
314
+ mimeType: 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
- mimeType: string;
334
333
  id: string;
334
+ mimeType: string;
335
335
  size?: string | undefined;
336
336
  createdTime?: string | undefined;
337
337
  modifiedTime?: 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">;
@@ -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
- mimeType: string;
395
394
  id: string;
395
+ mimeType: 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
- mimeType: string;
410
409
  id: string;
410
+ mimeType: string;
411
411
  size?: string | undefined;
412
412
  createdTime?: string | undefined;
413
413
  modifiedTime?: string | undefined;
@@ -429,8 +429,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
429
429
  operation: "list_files";
430
430
  files?: {
431
431
  name: string;
432
- mimeType: string;
433
432
  id: string;
433
+ mimeType: string;
434
434
  size?: string | undefined;
435
435
  createdTime?: string | undefined;
436
436
  modifiedTime?: string | undefined;
@@ -451,8 +451,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
451
451
  operation: "list_files";
452
452
  files?: {
453
453
  name: string;
454
- mimeType: string;
455
454
  id: string;
455
+ mimeType: string;
456
456
  size?: string | undefined;
457
457
  createdTime?: string | undefined;
458
458
  modifiedTime?: string | undefined;
@@ -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
- mimeType: string;
552
551
  id: string;
552
+ mimeType: 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
- mimeType: string;
567
566
  id: string;
567
+ mimeType: 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
- mimeType: string;
607
606
  id: string;
607
+ mimeType: 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
- mimeType: string;
634
633
  id: string;
634
+ mimeType: 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
- mimeType: string;
699
698
  id: string;
699
+ mimeType: 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
- mimeType: string;
714
713
  id: string;
714
+ mimeType: 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
- mimeType: string;
735
734
  id: string;
735
+ mimeType: 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
- mimeType: string;
755
754
  id: string;
755
+ mimeType: string;
756
756
  size?: string | undefined;
757
757
  createdTime?: string | undefined;
758
758
  modifiedTime?: 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<{
@@ -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
- mimeType: string;
1192
1191
  id: string;
1192
+ mimeType: 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
- mimeType: string;
1207
1206
  id: string;
1207
+ mimeType: 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
- mimeType: string;
1228
1227
  id: string;
1228
+ mimeType: 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
- mimeType: string;
1248
1247
  id: string;
1248
+ mimeType: string;
1249
1249
  size?: string | undefined;
1250
1250
  createdTime?: string | undefined;
1251
1251
  modifiedTime?: 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">;
@@ -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
- mimeType: string;
1309
1308
  id: string;
1309
+ mimeType: 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
- mimeType: string;
1324
1323
  id: string;
1324
+ mimeType: string;
1325
1325
  size?: string | undefined;
1326
1326
  createdTime?: string | undefined;
1327
1327
  modifiedTime?: string | undefined;
@@ -1343,8 +1343,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1343
1343
  operation: "list_files";
1344
1344
  files?: {
1345
1345
  name: string;
1346
- mimeType: string;
1347
1346
  id: string;
1347
+ mimeType: string;
1348
1348
  size?: string | undefined;
1349
1349
  createdTime?: string | undefined;
1350
1350
  modifiedTime?: string | undefined;
@@ -1365,8 +1365,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1365
1365
  operation: "list_files";
1366
1366
  files?: {
1367
1367
  name: string;
1368
- mimeType: string;
1369
1368
  id: string;
1369
+ mimeType: string;
1370
1370
  size?: string | undefined;
1371
1371
  createdTime?: string | undefined;
1372
1372
  modifiedTime?: string | undefined;
@@ -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
- mimeType: string;
1466
1465
  id: string;
1466
+ mimeType: 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
- mimeType: string;
1481
1480
  id: string;
1481
+ mimeType: 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
- mimeType: string;
1521
1520
  id: string;
1521
+ mimeType: 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
- mimeType: string;
1548
1547
  id: string;
1548
+ mimeType: 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
- mimeType: string;
1613
1612
  id: string;
1613
+ mimeType: 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
- mimeType: string;
1628
1627
  id: string;
1628
+ mimeType: 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
- mimeType: string;
1649
1648
  id: string;
1649
+ mimeType: 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
- mimeType: string;
1669
1668
  id: string;
1669
+ mimeType: string;
1670
1670
  size?: string | undefined;
1671
1671
  createdTime?: string | undefined;
1672
1672
  modifiedTime?: string | undefined;
@@ -13,8 +13,8 @@ declare const HttpParamsSchema: z.ZodObject<{
13
13
  authHeader: z.ZodOptional<z.ZodString>;
14
14
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
15
15
  }, "strip", z.ZodTypeAny, {
16
- url: string;
17
16
  timeout: number;
17
+ url: string;
18
18
  method: "POST" | "DELETE" | "GET" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
19
19
  followRedirects: boolean;
20
20
  authType: "none" | "custom" | "bearer" | "basic" | "api-key" | "api-key-header";
@@ -83,8 +83,8 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
83
83
  authHeader: z.ZodOptional<z.ZodString>;
84
84
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
85
85
  }, "strip", z.ZodTypeAny, {
86
- url: string;
87
86
  timeout: number;
87
+ url: string;
88
88
  method: "POST" | "DELETE" | "GET" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
89
89
  followRedirects: boolean;
90
90
  authType: "none" | "custom" | "bearer" | "basic" | "api-key" | "api-key-header";
@@ -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
+ parameters: unknown[];
14
15
  timeout: number;
15
16
  query: string;
16
17
  allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
17
- parameters: unknown[];
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
25
  allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
25
- parameters?: unknown[] | undefined;
26
26
  maxRows?: number | undefined;
27
27
  }>;
28
28
  type InsForgeDbParamsInput = z.input<typeof InsForgeDbParamsSchema>;
@@ -36,20 +36,20 @@ 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
42
  rows: Record<string, unknown>[];
42
43
  rowCount: number | null;
43
44
  command: string;
44
- executionTime: number;
45
45
  cleanedJSONString: string;
46
46
  }, {
47
+ executionTime: number;
47
48
  error: string;
48
49
  success: boolean;
49
50
  rows: Record<string, unknown>[];
50
51
  rowCount: number | null;
51
52
  command: string;
52
- executionTime: number;
53
53
  cleanedJSONString: string;
54
54
  }>;
55
55
  type InsForgeDbResult = z.output<typeof InsForgeDbResultSchema>;
@@ -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
+ parameters: unknown[];
88
89
  timeout: number;
89
90
  query: string;
90
91
  allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
91
- parameters: unknown[];
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
99
  allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
99
- parameters?: unknown[] | undefined;
100
100
  maxRows?: number | undefined;
101
101
  }>;
102
102
  static readonly resultSchema: z.ZodObject<{
@@ -108,20 +108,20 @@ 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
114
  rows: Record<string, unknown>[];
114
115
  rowCount: number | null;
115
116
  command: string;
116
- executionTime: number;
117
117
  cleanedJSONString: string;
118
118
  }, {
119
+ executionTime: number;
119
120
  error: string;
120
121
  success: boolean;
121
122
  rows: Record<string, unknown>[];
122
123
  rowCount: number | null;
123
124
  command: string;
124
- executionTime: number;
125
125
  cleanedJSONString: string;
126
126
  }>;
127
127
  static readonly shortDescription = "InsForge is the backend built for AI-assisted development. Connect InsForge with any agent. Add authentication, database, storage, functions, and AI integrations to your app in seconds.";