@bubblelab/bubble-core 0.1.45 → 0.1.46

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 (44) hide show
  1. package/dist/bubble-bundle.d.ts +63 -63
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +24 -24
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
  4. package/dist/bubbles/service-bubble/airtable.d.ts +28 -28
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +10 -10
  6. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +48 -48
  7. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +21 -20
  8. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts.map +1 -1
  9. package/dist/bubbles/service-bubble/browserbase/browserbase.js +29 -8
  10. package/dist/bubbles/service-bubble/browserbase/browserbase.js.map +1 -1
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +16 -16
  12. package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
  13. package/dist/bubbles/service-bubble/firecrawl.d.ts +428 -428
  14. package/dist/bubbles/service-bubble/followupboss.d.ts +256 -256
  15. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +236 -236
  16. package/dist/bubbles/service-bubble/github.d.ts +64 -64
  17. package/dist/bubbles/service-bubble/gmail.d.ts +478 -478
  18. package/dist/bubbles/service-bubble/google-calendar.d.ts +6 -6
  19. package/dist/bubbles/service-bubble/google-drive.d.ts +32 -32
  20. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
  21. package/dist/bubbles/service-bubble/http.d.ts +12 -12
  22. package/dist/bubbles/service-bubble/insforge-db.d.ts +12 -12
  23. package/dist/bubbles/service-bubble/jira/jira.d.ts +10 -10
  24. package/dist/bubbles/service-bubble/notion/notion.d.ts +80 -80
  25. package/dist/bubbles/service-bubble/postgresql.d.ts +12 -12
  26. package/dist/bubbles/service-bubble/resend.d.ts +8 -8
  27. package/dist/bubbles/service-bubble/slack/slack.d.ts +248 -248
  28. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  29. package/dist/bubbles/service-bubble/telegram.d.ts +2 -2
  30. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +5 -5
  31. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +70 -70
  32. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +4 -4
  33. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +4 -4
  34. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +348 -348
  35. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +42 -42
  36. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  37. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
  38. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +90 -90
  39. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +6 -6
  40. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
  41. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +28 -28
  42. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +8 -8
  43. package/dist/bubbles.json +1 -1
  44. package/package.json +2 -2
@@ -42,9 +42,9 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
42
42
  }, {
43
43
  operation: "list_events";
44
44
  credentials?: Partial<Record<CredentialType, string>> | undefined;
45
+ q?: string | undefined;
45
46
  max_results?: number | undefined;
46
47
  order_by?: "updated" | "startTime" | undefined;
47
- q?: string | undefined;
48
48
  page_token?: string | undefined;
49
49
  calendar_id?: string | undefined;
50
50
  time_min?: string | undefined;
@@ -219,13 +219,13 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
219
219
  event_id: string;
220
220
  description?: string | undefined;
221
221
  credentials?: Partial<Record<CredentialType, string>> | undefined;
222
- location?: string | undefined;
223
222
  summary?: string | undefined;
224
223
  start?: {
225
224
  date?: string | undefined;
226
225
  timeZone?: string | undefined;
227
226
  dateTime?: string | undefined;
228
227
  } | undefined;
228
+ location?: string | undefined;
229
229
  end?: {
230
230
  date?: string | undefined;
231
231
  timeZone?: string | undefined;
@@ -242,13 +242,13 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
242
242
  event_id: string;
243
243
  description?: string | undefined;
244
244
  credentials?: Partial<Record<CredentialType, string>> | undefined;
245
- location?: string | undefined;
246
245
  summary?: string | undefined;
247
246
  start?: {
248
247
  date?: string | undefined;
249
248
  timeZone?: string | undefined;
250
249
  dateTime?: string | undefined;
251
250
  } | undefined;
251
+ location?: string | undefined;
252
252
  end?: {
253
253
  date?: string | undefined;
254
254
  timeZone?: string | undefined;
@@ -2125,9 +2125,9 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2125
2125
  }, {
2126
2126
  operation: "list_events";
2127
2127
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2128
+ q?: string | undefined;
2128
2129
  max_results?: number | undefined;
2129
2130
  order_by?: "updated" | "startTime" | undefined;
2130
- q?: string | undefined;
2131
2131
  page_token?: string | undefined;
2132
2132
  calendar_id?: string | undefined;
2133
2133
  time_min?: string | undefined;
@@ -2302,13 +2302,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2302
2302
  event_id: string;
2303
2303
  description?: string | undefined;
2304
2304
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2305
- location?: string | undefined;
2306
2305
  summary?: string | undefined;
2307
2306
  start?: {
2308
2307
  date?: string | undefined;
2309
2308
  timeZone?: string | undefined;
2310
2309
  dateTime?: string | undefined;
2311
2310
  } | undefined;
2311
+ location?: string | undefined;
2312
2312
  end?: {
2313
2313
  date?: string | undefined;
2314
2314
  timeZone?: string | undefined;
@@ -2325,13 +2325,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2325
2325
  event_id: string;
2326
2326
  description?: string | undefined;
2327
2327
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2328
- location?: string | undefined;
2329
2328
  summary?: string | undefined;
2330
2329
  start?: {
2331
2330
  date?: string | undefined;
2332
2331
  timeZone?: string | undefined;
2333
2332
  dateTime?: string | undefined;
2334
2333
  } | undefined;
2334
+ location?: string | undefined;
2335
2335
  end?: {
2336
2336
  date?: string | undefined;
2337
2337
  timeZone?: string | undefined;
@@ -209,8 +209,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
209
209
  }>, "many">>;
210
210
  }, "strip", z.ZodTypeAny, {
211
211
  name: string;
212
- id: string;
213
212
  mimeType: string;
213
+ id: string;
214
214
  size?: string | undefined;
215
215
  createdTime?: string | undefined;
216
216
  modifiedTime?: string | undefined;
@@ -224,8 +224,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
224
224
  }[] | undefined;
225
225
  }, {
226
226
  name: string;
227
- id: string;
228
227
  mimeType: string;
228
+ id: string;
229
229
  size?: string | undefined;
230
230
  createdTime?: string | undefined;
231
231
  modifiedTime?: string | undefined;
@@ -245,8 +245,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
245
245
  error: string;
246
246
  file?: {
247
247
  name: string;
248
- id: string;
249
248
  mimeType: string;
249
+ id: string;
250
250
  size?: string | undefined;
251
251
  createdTime?: string | undefined;
252
252
  modifiedTime?: string | undefined;
@@ -265,8 +265,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
265
265
  error: string;
266
266
  file?: {
267
267
  name: string;
268
- id: string;
269
268
  mimeType: string;
269
+ id: string;
270
270
  size?: string | undefined;
271
271
  createdTime?: string | undefined;
272
272
  modifiedTime?: string | undefined;
@@ -326,8 +326,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
326
326
  }>, "many">>;
327
327
  }, "strip", z.ZodTypeAny, {
328
328
  name: string;
329
- id: string;
330
329
  mimeType: string;
330
+ id: string;
331
331
  size?: string | undefined;
332
332
  createdTime?: string | undefined;
333
333
  modifiedTime?: string | undefined;
@@ -341,8 +341,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
341
341
  }[] | undefined;
342
342
  }, {
343
343
  name: string;
344
- id: string;
345
344
  mimeType: string;
345
+ id: string;
346
346
  size?: string | undefined;
347
347
  createdTime?: string | undefined;
348
348
  modifiedTime?: string | undefined;
@@ -364,8 +364,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
364
364
  error: string;
365
365
  files?: {
366
366
  name: string;
367
- id: string;
368
367
  mimeType: string;
368
+ id: string;
369
369
  size?: string | undefined;
370
370
  createdTime?: string | undefined;
371
371
  modifiedTime?: string | undefined;
@@ -386,8 +386,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
386
386
  error: string;
387
387
  files?: {
388
388
  name: string;
389
- id: string;
390
389
  mimeType: string;
390
+ id: string;
391
391
  size?: string | undefined;
392
392
  createdTime?: string | undefined;
393
393
  modifiedTime?: string | undefined;
@@ -483,8 +483,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
483
483
  }>, "many">>;
484
484
  }, "strip", z.ZodTypeAny, {
485
485
  name: string;
486
- id: string;
487
486
  mimeType: string;
487
+ id: string;
488
488
  size?: string | undefined;
489
489
  createdTime?: string | undefined;
490
490
  modifiedTime?: string | undefined;
@@ -498,8 +498,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
498
498
  }[] | undefined;
499
499
  }, {
500
500
  name: string;
501
- id: string;
502
501
  mimeType: string;
502
+ id: string;
503
503
  size?: string | undefined;
504
504
  createdTime?: string | undefined;
505
505
  modifiedTime?: string | undefined;
@@ -538,8 +538,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
538
538
  error: string;
539
539
  file?: {
540
540
  name: string;
541
- id: string;
542
541
  mimeType: string;
542
+ id: string;
543
543
  size?: string | undefined;
544
544
  createdTime?: string | undefined;
545
545
  modifiedTime?: string | undefined;
@@ -565,8 +565,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
565
565
  error: string;
566
566
  file?: {
567
567
  name: string;
568
- id: string;
569
568
  mimeType: string;
569
+ id: string;
570
570
  size?: string | undefined;
571
571
  createdTime?: string | undefined;
572
572
  modifiedTime?: string | undefined;
@@ -630,8 +630,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
630
630
  }>, "many">>;
631
631
  }, "strip", z.ZodTypeAny, {
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;
@@ -645,8 +645,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
645
645
  }[] | undefined;
646
646
  }, {
647
647
  name: string;
648
- id: string;
649
648
  mimeType: string;
649
+ id: string;
650
650
  size?: string | undefined;
651
651
  createdTime?: string | undefined;
652
652
  modifiedTime?: string | undefined;
@@ -666,8 +666,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
666
666
  error: string;
667
667
  file?: {
668
668
  name: string;
669
- id: string;
670
669
  mimeType: string;
670
+ id: string;
671
671
  size?: string | undefined;
672
672
  createdTime?: string | undefined;
673
673
  modifiedTime?: string | undefined;
@@ -686,8 +686,8 @@ declare const GoogleDriveResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
686
686
  error: string;
687
687
  file?: {
688
688
  name: string;
689
- id: string;
690
689
  mimeType: string;
690
+ id: string;
691
691
  size?: string | undefined;
692
692
  createdTime?: string | undefined;
693
693
  modifiedTime?: string | undefined;
@@ -997,8 +997,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
997
997
  }>, "many">>;
998
998
  }, "strip", z.ZodTypeAny, {
999
999
  name: string;
1000
- id: string;
1001
1000
  mimeType: string;
1001
+ id: string;
1002
1002
  size?: string | undefined;
1003
1003
  createdTime?: string | undefined;
1004
1004
  modifiedTime?: string | undefined;
@@ -1012,8 +1012,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1012
1012
  }[] | undefined;
1013
1013
  }, {
1014
1014
  name: string;
1015
- id: string;
1016
1015
  mimeType: string;
1016
+ id: string;
1017
1017
  size?: string | undefined;
1018
1018
  createdTime?: string | undefined;
1019
1019
  modifiedTime?: string | undefined;
@@ -1033,8 +1033,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1033
1033
  error: string;
1034
1034
  file?: {
1035
1035
  name: string;
1036
- id: string;
1037
1036
  mimeType: string;
1037
+ id: string;
1038
1038
  size?: string | undefined;
1039
1039
  createdTime?: string | undefined;
1040
1040
  modifiedTime?: string | undefined;
@@ -1053,8 +1053,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1053
1053
  error: string;
1054
1054
  file?: {
1055
1055
  name: string;
1056
- id: string;
1057
1056
  mimeType: string;
1057
+ id: string;
1058
1058
  size?: string | undefined;
1059
1059
  createdTime?: string | undefined;
1060
1060
  modifiedTime?: string | undefined;
@@ -1114,8 +1114,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1114
1114
  }>, "many">>;
1115
1115
  }, "strip", z.ZodTypeAny, {
1116
1116
  name: string;
1117
- id: string;
1118
1117
  mimeType: string;
1118
+ id: string;
1119
1119
  size?: string | undefined;
1120
1120
  createdTime?: string | undefined;
1121
1121
  modifiedTime?: string | undefined;
@@ -1129,8 +1129,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1129
1129
  }[] | undefined;
1130
1130
  }, {
1131
1131
  name: string;
1132
- id: string;
1133
1132
  mimeType: string;
1133
+ id: string;
1134
1134
  size?: string | undefined;
1135
1135
  createdTime?: string | undefined;
1136
1136
  modifiedTime?: string | undefined;
@@ -1152,8 +1152,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1152
1152
  error: string;
1153
1153
  files?: {
1154
1154
  name: string;
1155
- id: string;
1156
1155
  mimeType: string;
1156
+ id: string;
1157
1157
  size?: string | undefined;
1158
1158
  createdTime?: string | undefined;
1159
1159
  modifiedTime?: string | undefined;
@@ -1174,8 +1174,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1174
1174
  error: string;
1175
1175
  files?: {
1176
1176
  name: string;
1177
- id: string;
1178
1177
  mimeType: string;
1178
+ id: string;
1179
1179
  size?: string | undefined;
1180
1180
  createdTime?: string | undefined;
1181
1181
  modifiedTime?: string | undefined;
@@ -1271,8 +1271,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1271
1271
  }>, "many">>;
1272
1272
  }, "strip", z.ZodTypeAny, {
1273
1273
  name: string;
1274
- id: string;
1275
1274
  mimeType: string;
1275
+ id: string;
1276
1276
  size?: string | undefined;
1277
1277
  createdTime?: string | undefined;
1278
1278
  modifiedTime?: string | undefined;
@@ -1286,8 +1286,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1286
1286
  }[] | undefined;
1287
1287
  }, {
1288
1288
  name: string;
1289
- id: string;
1290
1289
  mimeType: string;
1290
+ id: string;
1291
1291
  size?: string | undefined;
1292
1292
  createdTime?: string | undefined;
1293
1293
  modifiedTime?: string | undefined;
@@ -1326,8 +1326,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1326
1326
  error: string;
1327
1327
  file?: {
1328
1328
  name: string;
1329
- id: string;
1330
1329
  mimeType: string;
1330
+ id: string;
1331
1331
  size?: string | undefined;
1332
1332
  createdTime?: string | undefined;
1333
1333
  modifiedTime?: string | undefined;
@@ -1353,8 +1353,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1353
1353
  error: string;
1354
1354
  file?: {
1355
1355
  name: string;
1356
- id: string;
1357
1356
  mimeType: string;
1357
+ id: string;
1358
1358
  size?: string | undefined;
1359
1359
  createdTime?: string | undefined;
1360
1360
  modifiedTime?: string | undefined;
@@ -1418,8 +1418,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1418
1418
  }>, "many">>;
1419
1419
  }, "strip", z.ZodTypeAny, {
1420
1420
  name: string;
1421
- id: string;
1422
1421
  mimeType: string;
1422
+ id: string;
1423
1423
  size?: string | undefined;
1424
1424
  createdTime?: string | undefined;
1425
1425
  modifiedTime?: string | undefined;
@@ -1433,8 +1433,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1433
1433
  }[] | undefined;
1434
1434
  }, {
1435
1435
  name: string;
1436
- id: string;
1437
1436
  mimeType: string;
1437
+ id: string;
1438
1438
  size?: string | undefined;
1439
1439
  createdTime?: string | undefined;
1440
1440
  modifiedTime?: string | undefined;
@@ -1454,8 +1454,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1454
1454
  error: string;
1455
1455
  file?: {
1456
1456
  name: string;
1457
- id: string;
1458
1457
  mimeType: string;
1458
+ id: string;
1459
1459
  size?: string | undefined;
1460
1460
  createdTime?: string | undefined;
1461
1461
  modifiedTime?: string | undefined;
@@ -1474,8 +1474,8 @@ export declare class GoogleDriveBubble<T extends GoogleDriveParams = GoogleDrive
1474
1474
  error: string;
1475
1475
  file?: {
1476
1476
  name: string;
1477
- id: string;
1478
1477
  mimeType: string;
1478
+ id: string;
1479
1479
  size?: string | undefined;
1480
1480
  createdTime?: string | undefined;
1481
1481
  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
  operation: "write_values";
71
71
  values: (string | number | boolean)[][];
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
  operation: "write_values";
80
80
  values: unknown[][];
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
  operation: "update_values";
98
98
  values: (string | number | boolean)[][];
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
  operation: "update_values";
107
107
  values: unknown[][];
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
  operation: "append_values";
126
126
  values: (string | number | boolean)[][];
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
  operation: "append_values";
136
136
  values: unknown[][];
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">;
@@ -14,21 +14,21 @@ declare const HttpParamsSchema: z.ZodObject<{
14
14
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
15
15
  }, "strip", z.ZodTypeAny, {
16
16
  url: string;
17
- method: "GET" | "POST" | "DELETE" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
18
17
  timeout: number;
18
+ method: "GET" | "POST" | "PATCH" | "DELETE" | "PUT" | "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;
22
- headers?: Record<string, string> | undefined;
23
22
  body?: string | Record<string, unknown> | undefined;
23
+ headers?: Record<string, string> | undefined;
24
24
  authHeader?: string | undefined;
25
25
  }, {
26
26
  url: string;
27
27
  credentials?: Partial<Record<CredentialType, string>> | undefined;
28
- method?: "GET" | "POST" | "DELETE" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
29
28
  timeout?: number | undefined;
30
- headers?: Record<string, string> | undefined;
31
29
  body?: string | Record<string, unknown> | undefined;
30
+ headers?: Record<string, string> | undefined;
31
+ method?: "GET" | "POST" | "PATCH" | "DELETE" | "PUT" | "HEAD" | "OPTIONS" | undefined;
32
32
  followRedirects?: boolean | undefined;
33
33
  authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
34
34
  authHeader?: string | undefined;
@@ -49,9 +49,9 @@ declare const HttpResultSchema: z.ZodObject<{
49
49
  status: number;
50
50
  success: boolean;
51
51
  error: string;
52
+ body: string;
52
53
  headers: Record<string, string>;
53
54
  size: number;
54
- body: string;
55
55
  statusText: string;
56
56
  responseTime: number;
57
57
  json?: unknown;
@@ -59,9 +59,9 @@ declare const HttpResultSchema: z.ZodObject<{
59
59
  status: number;
60
60
  success: boolean;
61
61
  error: string;
62
+ body: string;
62
63
  headers: Record<string, string>;
63
64
  size: number;
64
- body: string;
65
65
  statusText: string;
66
66
  responseTime: number;
67
67
  json?: unknown;
@@ -84,21 +84,21 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
84
84
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
85
85
  }, "strip", z.ZodTypeAny, {
86
86
  url: string;
87
- method: "GET" | "POST" | "DELETE" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
88
87
  timeout: number;
88
+ method: "GET" | "POST" | "PATCH" | "DELETE" | "PUT" | "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;
92
- headers?: Record<string, string> | undefined;
93
92
  body?: string | Record<string, unknown> | undefined;
93
+ headers?: Record<string, string> | undefined;
94
94
  authHeader?: string | undefined;
95
95
  }, {
96
96
  url: string;
97
97
  credentials?: Partial<Record<CredentialType, string>> | undefined;
98
- method?: "GET" | "POST" | "DELETE" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
99
98
  timeout?: number | undefined;
100
- headers?: Record<string, string> | undefined;
101
99
  body?: string | Record<string, unknown> | undefined;
100
+ headers?: Record<string, string> | undefined;
101
+ method?: "GET" | "POST" | "PATCH" | "DELETE" | "PUT" | "HEAD" | "OPTIONS" | undefined;
102
102
  followRedirects?: boolean | undefined;
103
103
  authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
104
104
  authHeader?: string | undefined;
@@ -117,9 +117,9 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
117
117
  status: number;
118
118
  success: boolean;
119
119
  error: string;
120
+ body: string;
120
121
  headers: Record<string, string>;
121
122
  size: number;
122
- body: string;
123
123
  statusText: string;
124
124
  responseTime: number;
125
125
  json?: unknown;
@@ -127,9 +127,9 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
127
127
  status: number;
128
128
  success: boolean;
129
129
  error: string;
130
+ body: string;
130
131
  headers: Record<string, string>;
131
132
  size: number;
132
- body: string;
133
133
  statusText: string;
134
134
  responseTime: number;
135
135
  json?: unknown;
@@ -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[];
15
14
  timeout: number;
16
15
  query: string;
17
- allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
16
+ allowedOperations: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "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
22
  credentials?: Partial<Record<CredentialType, string>> | undefined;
23
- parameters?: unknown[] | undefined;
24
23
  timeout?: number | undefined;
25
- allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
24
+ allowedOperations?: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
25
+ parameters?: unknown[] | undefined;
26
26
  maxRows?: number | undefined;
27
27
  }>;
28
28
  type InsForgeDbParamsInput = z.input<typeof InsForgeDbParamsSchema>;
@@ -38,18 +38,18 @@ declare const InsForgeDbResultSchema: z.ZodObject<{
38
38
  }, "strip", z.ZodTypeAny, {
39
39
  success: boolean;
40
40
  error: string;
41
- executionTime: number;
42
41
  rows: Record<string, unknown>[];
43
42
  rowCount: number | null;
44
43
  command: string;
44
+ executionTime: number;
45
45
  cleanedJSONString: string;
46
46
  }, {
47
47
  success: boolean;
48
48
  error: string;
49
- executionTime: number;
50
49
  rows: Record<string, unknown>[];
51
50
  rowCount: number | null;
52
51
  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[];
89
88
  timeout: number;
90
89
  query: string;
91
- allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
90
+ allowedOperations: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "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
96
  credentials?: Partial<Record<CredentialType, string>> | undefined;
97
- parameters?: unknown[] | undefined;
98
97
  timeout?: number | undefined;
99
- allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
98
+ allowedOperations?: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
99
+ parameters?: unknown[] | undefined;
100
100
  maxRows?: number | undefined;
101
101
  }>;
102
102
  static readonly resultSchema: z.ZodObject<{
@@ -110,18 +110,18 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
110
110
  }, "strip", z.ZodTypeAny, {
111
111
  success: boolean;
112
112
  error: string;
113
- executionTime: number;
114
113
  rows: Record<string, unknown>[];
115
114
  rowCount: number | null;
116
115
  command: string;
116
+ executionTime: number;
117
117
  cleanedJSONString: string;
118
118
  }, {
119
119
  success: boolean;
120
120
  error: string;
121
- executionTime: number;
122
121
  rows: Record<string, unknown>[];
123
122
  rowCount: number | null;
124
123
  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.";