@bubblelab/bubble-core 0.1.65 → 0.1.66

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 (54) hide show
  1. package/dist/bubble-bundle.d.ts +76 -76
  2. package/dist/bubbles/service-bubble/ai-agent.d.ts +113 -104
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
  4. package/dist/bubbles/service-bubble/ai-agent.js +129 -0
  5. package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
  6. package/dist/bubbles/service-bubble/airtable.d.ts +100 -100
  7. package/dist/bubbles/service-bubble/apify/apify.d.ts +10 -10
  8. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +95 -74
  9. package/dist/bubbles/service-bubble/ashby/ashby.d.ts.map +1 -1
  10. package/dist/bubbles/service-bubble/ashby/ashby.js +96 -0
  11. package/dist/bubbles/service-bubble/ashby/ashby.js.map +1 -1
  12. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +108 -102
  13. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts.map +1 -1
  14. package/dist/bubbles/service-bubble/ashby/ashby.schema.js +10 -1
  15. package/dist/bubbles/service-bubble/ashby/ashby.schema.js.map +1 -1
  16. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +2 -2
  17. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +2 -2
  18. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +8 -8
  19. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +16 -16
  20. package/dist/bubbles/service-bubble/firecrawl.d.ts +272 -272
  21. package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
  22. package/dist/bubbles/service-bubble/github.d.ts +40 -40
  23. package/dist/bubbles/service-bubble/gmail.d.ts +104 -104
  24. package/dist/bubbles/service-bubble/google-calendar.d.ts +80 -80
  25. package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
  26. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  27. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  28. package/dist/bubbles/service-bubble/notion/notion.d.ts +68 -68
  29. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  30. package/dist/bubbles/service-bubble/slack/slack.d.ts +32 -32
  31. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +4 -4
  32. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +4 -4
  33. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
  34. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
  35. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +18 -18
  36. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +52 -52
  37. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +10 -10
  38. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +10 -10
  39. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  40. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +16 -16
  41. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +46 -46
  42. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  43. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  44. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  45. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  46. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +10 -10
  47. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +10 -10
  48. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +36 -36
  49. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +20 -20
  50. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +8 -8
  51. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +20 -20
  52. package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +10 -10
  53. package/dist/bubbles.json +50 -21
  54. package/package.json +2 -2
@@ -303,6 +303,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
303
303
  thumbnail: string | null;
304
304
  }>>;
305
305
  }, "strip", z.ZodTypeAny, {
306
+ url: string | null;
307
+ text: string | null;
306
308
  stats: {
307
309
  like: number | null;
308
310
  support: number | null;
@@ -314,8 +316,6 @@ declare const LinkedInPostSchema: z.ZodObject<{
314
316
  reposts: number | null;
315
317
  totalReactions: number | null;
316
318
  } | null;
317
- url: string | null;
318
- text: string | null;
319
319
  urn: string | null;
320
320
  author: {
321
321
  username: string | null;
@@ -342,6 +342,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
342
342
  } | null;
343
343
  postType: string | null;
344
344
  }, {
345
+ url: string | null;
346
+ text: string | null;
345
347
  stats: {
346
348
  like: number | null;
347
349
  support: number | null;
@@ -353,8 +355,6 @@ declare const LinkedInPostSchema: z.ZodObject<{
353
355
  reposts: number | null;
354
356
  totalReactions: number | null;
355
357
  } | null;
356
- url: string | null;
357
- text: string | null;
358
358
  urn: string | null;
359
359
  author: {
360
360
  username: string | null;
@@ -382,6 +382,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
382
382
  postType: string | null;
383
383
  }>>;
384
384
  }, "strip", z.ZodTypeAny, {
385
+ url: string | null;
386
+ text: string | null;
385
387
  stats: {
386
388
  like: number | null;
387
389
  support: number | null;
@@ -393,8 +395,6 @@ declare const LinkedInPostSchema: z.ZodObject<{
393
395
  reposts: number | null;
394
396
  totalReactions: number | null;
395
397
  } | null;
396
- url: string | null;
397
- text: string | null;
398
398
  document: {
399
399
  title: string | null;
400
400
  url: string | null;
@@ -434,6 +434,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
434
434
  fullUrn: string | null;
435
435
  postType: string | null;
436
436
  resharedPost: {
437
+ url: string | null;
438
+ text: string | null;
437
439
  stats: {
438
440
  like: number | null;
439
441
  support: number | null;
@@ -445,8 +447,6 @@ declare const LinkedInPostSchema: z.ZodObject<{
445
447
  reposts: number | null;
446
448
  totalReactions: number | null;
447
449
  } | null;
448
- url: string | null;
449
- text: string | null;
450
450
  urn: string | null;
451
451
  author: {
452
452
  username: string | null;
@@ -474,6 +474,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
474
474
  postType: string | null;
475
475
  } | null;
476
476
  }, {
477
+ url: string | null;
478
+ text: string | null;
477
479
  stats: {
478
480
  like: number | null;
479
481
  support: number | null;
@@ -485,8 +487,6 @@ declare const LinkedInPostSchema: z.ZodObject<{
485
487
  reposts: number | null;
486
488
  totalReactions: number | null;
487
489
  } | null;
488
- url: string | null;
489
- text: string | null;
490
490
  document: {
491
491
  title: string | null;
492
492
  url: string | null;
@@ -526,6 +526,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
526
526
  fullUrn: string | null;
527
527
  postType: string | null;
528
528
  resharedPost: {
529
+ url: string | null;
530
+ text: string | null;
529
531
  stats: {
530
532
  like: number | null;
531
533
  support: number | null;
@@ -537,8 +539,6 @@ declare const LinkedInPostSchema: z.ZodObject<{
537
539
  reposts: number | null;
538
540
  totalReactions: number | null;
539
541
  } | null;
540
- url: string | null;
541
- text: string | null;
542
542
  urn: string | null;
543
543
  author: {
544
544
  username: string | null;
@@ -1026,6 +1026,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1026
1026
  thumbnail: string | null;
1027
1027
  }>>;
1028
1028
  }, "strip", z.ZodTypeAny, {
1029
+ url: string | null;
1030
+ text: string | null;
1029
1031
  stats: {
1030
1032
  like: number | null;
1031
1033
  support: number | null;
@@ -1037,8 +1039,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1037
1039
  reposts: number | null;
1038
1040
  totalReactions: number | null;
1039
1041
  } | null;
1040
- url: string | null;
1041
- text: string | null;
1042
1042
  urn: string | null;
1043
1043
  author: {
1044
1044
  username: string | null;
@@ -1065,6 +1065,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1065
1065
  } | null;
1066
1066
  postType: string | null;
1067
1067
  }, {
1068
+ url: string | null;
1069
+ text: string | null;
1068
1070
  stats: {
1069
1071
  like: number | null;
1070
1072
  support: number | null;
@@ -1076,8 +1078,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1076
1078
  reposts: number | null;
1077
1079
  totalReactions: number | null;
1078
1080
  } | null;
1079
- url: string | null;
1080
- text: string | null;
1081
1081
  urn: string | null;
1082
1082
  author: {
1083
1083
  username: string | null;
@@ -1105,6 +1105,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1105
1105
  postType: string | null;
1106
1106
  }>>;
1107
1107
  }, "strip", z.ZodTypeAny, {
1108
+ url: string | null;
1109
+ text: string | null;
1108
1110
  stats: {
1109
1111
  like: number | null;
1110
1112
  support: number | null;
@@ -1116,8 +1118,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1116
1118
  reposts: number | null;
1117
1119
  totalReactions: number | null;
1118
1120
  } | null;
1119
- url: string | null;
1120
- text: string | null;
1121
1121
  document: {
1122
1122
  title: string | null;
1123
1123
  url: string | null;
@@ -1157,6 +1157,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1157
1157
  fullUrn: string | null;
1158
1158
  postType: string | null;
1159
1159
  resharedPost: {
1160
+ url: string | null;
1161
+ text: string | null;
1160
1162
  stats: {
1161
1163
  like: number | null;
1162
1164
  support: number | null;
@@ -1168,8 +1170,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1168
1170
  reposts: number | null;
1169
1171
  totalReactions: number | null;
1170
1172
  } | null;
1171
- url: string | null;
1172
- text: string | null;
1173
1173
  urn: string | null;
1174
1174
  author: {
1175
1175
  username: string | null;
@@ -1197,6 +1197,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1197
1197
  postType: string | null;
1198
1198
  } | null;
1199
1199
  }, {
1200
+ url: string | null;
1201
+ text: string | null;
1200
1202
  stats: {
1201
1203
  like: number | null;
1202
1204
  support: number | null;
@@ -1208,8 +1210,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1208
1210
  reposts: number | null;
1209
1211
  totalReactions: number | null;
1210
1212
  } | null;
1211
- url: string | null;
1212
- text: string | null;
1213
1213
  document: {
1214
1214
  title: string | null;
1215
1215
  url: string | null;
@@ -1249,6 +1249,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1249
1249
  fullUrn: string | null;
1250
1250
  postType: string | null;
1251
1251
  resharedPost: {
1252
+ url: string | null;
1253
+ text: string | null;
1252
1254
  stats: {
1253
1255
  like: number | null;
1254
1256
  support: number | null;
@@ -1260,8 +1262,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1260
1262
  reposts: number | null;
1261
1263
  totalReactions: number | null;
1262
1264
  } | null;
1263
- url: string | null;
1264
- text: string | null;
1265
1265
  urn: string | null;
1266
1266
  author: {
1267
1267
  username: string | null;
@@ -1302,6 +1302,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1302
1302
  success: boolean;
1303
1303
  operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
1304
1304
  posts: {
1305
+ url: string | null;
1306
+ text: string | null;
1305
1307
  stats: {
1306
1308
  like: number | null;
1307
1309
  support: number | null;
@@ -1313,8 +1315,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1313
1315
  reposts: number | null;
1314
1316
  totalReactions: number | null;
1315
1317
  } | null;
1316
- url: string | null;
1317
- text: string | null;
1318
1318
  document: {
1319
1319
  title: string | null;
1320
1320
  url: string | null;
@@ -1354,6 +1354,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1354
1354
  fullUrn: string | null;
1355
1355
  postType: string | null;
1356
1356
  resharedPost: {
1357
+ url: string | null;
1358
+ text: string | null;
1357
1359
  stats: {
1358
1360
  like: number | null;
1359
1361
  support: number | null;
@@ -1365,8 +1367,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1365
1367
  reposts: number | null;
1366
1368
  totalReactions: number | null;
1367
1369
  } | null;
1368
- url: string | null;
1369
- text: string | null;
1370
1370
  urn: string | null;
1371
1371
  author: {
1372
1372
  username: string | null;
@@ -1428,6 +1428,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1428
1428
  success: boolean;
1429
1429
  operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
1430
1430
  posts: {
1431
+ url: string | null;
1432
+ text: string | null;
1431
1433
  stats: {
1432
1434
  like: number | null;
1433
1435
  support: number | null;
@@ -1439,8 +1441,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1439
1441
  reposts: number | null;
1440
1442
  totalReactions: number | null;
1441
1443
  } | null;
1442
- url: string | null;
1443
- text: string | null;
1444
1444
  document: {
1445
1445
  title: string | null;
1446
1446
  url: string | null;
@@ -1480,6 +1480,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1480
1480
  fullUrn: string | null;
1481
1481
  postType: string | null;
1482
1482
  resharedPost: {
1483
+ url: string | null;
1484
+ text: string | null;
1483
1485
  stats: {
1484
1486
  like: number | null;
1485
1487
  support: number | null;
@@ -1491,8 +1493,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1491
1493
  reposts: number | null;
1492
1494
  totalReactions: number | null;
1493
1495
  } | null;
1494
- url: string | null;
1495
- text: string | null;
1496
1496
  urn: string | null;
1497
1497
  author: {
1498
1498
  username: string | null;
@@ -1949,6 +1949,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1949
1949
  thumbnail: string | null;
1950
1950
  }>>;
1951
1951
  }, "strip", z.ZodTypeAny, {
1952
+ url: string | null;
1953
+ text: string | null;
1952
1954
  stats: {
1953
1955
  like: number | null;
1954
1956
  support: number | null;
@@ -1960,8 +1962,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1960
1962
  reposts: number | null;
1961
1963
  totalReactions: number | null;
1962
1964
  } | null;
1963
- url: string | null;
1964
- text: string | null;
1965
1965
  urn: string | null;
1966
1966
  author: {
1967
1967
  username: string | null;
@@ -1988,6 +1988,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1988
1988
  } | null;
1989
1989
  postType: string | null;
1990
1990
  }, {
1991
+ url: string | null;
1992
+ text: string | null;
1991
1993
  stats: {
1992
1994
  like: number | null;
1993
1995
  support: number | null;
@@ -1999,8 +2001,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1999
2001
  reposts: number | null;
2000
2002
  totalReactions: number | null;
2001
2003
  } | null;
2002
- url: string | null;
2003
- text: string | null;
2004
2004
  urn: string | null;
2005
2005
  author: {
2006
2006
  username: string | null;
@@ -2028,6 +2028,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2028
2028
  postType: string | null;
2029
2029
  }>>;
2030
2030
  }, "strip", z.ZodTypeAny, {
2031
+ url: string | null;
2032
+ text: string | null;
2031
2033
  stats: {
2032
2034
  like: number | null;
2033
2035
  support: number | null;
@@ -2039,8 +2041,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2039
2041
  reposts: number | null;
2040
2042
  totalReactions: number | null;
2041
2043
  } | null;
2042
- url: string | null;
2043
- text: string | null;
2044
2044
  document: {
2045
2045
  title: string | null;
2046
2046
  url: string | null;
@@ -2080,6 +2080,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2080
2080
  fullUrn: string | null;
2081
2081
  postType: string | null;
2082
2082
  resharedPost: {
2083
+ url: string | null;
2084
+ text: string | null;
2083
2085
  stats: {
2084
2086
  like: number | null;
2085
2087
  support: number | null;
@@ -2091,8 +2093,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2091
2093
  reposts: number | null;
2092
2094
  totalReactions: number | null;
2093
2095
  } | null;
2094
- url: string | null;
2095
- text: string | null;
2096
2096
  urn: string | null;
2097
2097
  author: {
2098
2098
  username: string | null;
@@ -2120,6 +2120,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2120
2120
  postType: string | null;
2121
2121
  } | null;
2122
2122
  }, {
2123
+ url: string | null;
2124
+ text: string | null;
2123
2125
  stats: {
2124
2126
  like: number | null;
2125
2127
  support: number | null;
@@ -2131,8 +2133,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2131
2133
  reposts: number | null;
2132
2134
  totalReactions: number | null;
2133
2135
  } | null;
2134
- url: string | null;
2135
- text: string | null;
2136
2136
  document: {
2137
2137
  title: string | null;
2138
2138
  url: string | null;
@@ -2172,6 +2172,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2172
2172
  fullUrn: string | null;
2173
2173
  postType: string | null;
2174
2174
  resharedPost: {
2175
+ url: string | null;
2176
+ text: string | null;
2175
2177
  stats: {
2176
2178
  like: number | null;
2177
2179
  support: number | null;
@@ -2183,8 +2185,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2183
2185
  reposts: number | null;
2184
2186
  totalReactions: number | null;
2185
2187
  } | null;
2186
- url: string | null;
2187
- text: string | null;
2188
2188
  urn: string | null;
2189
2189
  author: {
2190
2190
  username: string | null;
@@ -2225,6 +2225,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2225
2225
  success: boolean;
2226
2226
  operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
2227
2227
  posts: {
2228
+ url: string | null;
2229
+ text: string | null;
2228
2230
  stats: {
2229
2231
  like: number | null;
2230
2232
  support: number | null;
@@ -2236,8 +2238,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2236
2238
  reposts: number | null;
2237
2239
  totalReactions: number | null;
2238
2240
  } | null;
2239
- url: string | null;
2240
- text: string | null;
2241
2241
  document: {
2242
2242
  title: string | null;
2243
2243
  url: string | null;
@@ -2277,6 +2277,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2277
2277
  fullUrn: string | null;
2278
2278
  postType: string | null;
2279
2279
  resharedPost: {
2280
+ url: string | null;
2281
+ text: string | null;
2280
2282
  stats: {
2281
2283
  like: number | null;
2282
2284
  support: number | null;
@@ -2288,8 +2290,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2288
2290
  reposts: number | null;
2289
2291
  totalReactions: number | null;
2290
2292
  } | null;
2291
- url: string | null;
2292
- text: string | null;
2293
2293
  urn: string | null;
2294
2294
  author: {
2295
2295
  username: string | null;
@@ -2351,6 +2351,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2351
2351
  success: boolean;
2352
2352
  operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
2353
2353
  posts: {
2354
+ url: string | null;
2355
+ text: string | null;
2354
2356
  stats: {
2355
2357
  like: number | null;
2356
2358
  support: number | null;
@@ -2362,8 +2364,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2362
2364
  reposts: number | null;
2363
2365
  totalReactions: number | null;
2364
2366
  } | null;
2365
- url: string | null;
2366
- text: string | null;
2367
2367
  document: {
2368
2368
  title: string | null;
2369
2369
  url: string | null;
@@ -2403,6 +2403,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2403
2403
  fullUrn: string | null;
2404
2404
  postType: string | null;
2405
2405
  resharedPost: {
2406
+ url: string | null;
2407
+ text: string | null;
2406
2408
  stats: {
2407
2409
  like: number | null;
2408
2410
  support: number | null;
@@ -2414,8 +2416,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2414
2416
  reposts: number | null;
2415
2417
  totalReactions: number | null;
2416
2418
  } | null;
2417
- url: string | null;
2418
- text: string | null;
2419
2419
  urn: string | null;
2420
2420
  author: {
2421
2421
  username: string | null;
@@ -114,6 +114,7 @@ declare const PersonResultSchema: z.ZodObject<{
114
114
  headline: string | null;
115
115
  seniorityLevel: string | null;
116
116
  emails: string[] | null;
117
+ linkedinUrl: string | null;
117
118
  languages: string[] | null;
118
119
  skills: string[] | null;
119
120
  education: {
@@ -122,7 +123,6 @@ declare const PersonResultSchema: z.ZodObject<{
122
123
  fieldOfStudy: string | null;
123
124
  }[] | null;
124
125
  websites: string[] | null;
125
- linkedinUrl: string | null;
126
126
  profilePictureUrl: string | null;
127
127
  twitterHandle: string | null;
128
128
  yearsOfExperience: number | null;
@@ -166,6 +166,7 @@ declare const PersonResultSchema: z.ZodObject<{
166
166
  headline: string | null;
167
167
  seniorityLevel: string | null;
168
168
  emails: string[] | null;
169
+ linkedinUrl: string | null;
169
170
  languages: string[] | null;
170
171
  skills: string[] | null;
171
172
  education: {
@@ -174,7 +175,6 @@ declare const PersonResultSchema: z.ZodObject<{
174
175
  fieldOfStudy: string | null;
175
176
  }[] | null;
176
177
  websites: string[] | null;
177
- linkedinUrl: string | null;
178
178
  profilePictureUrl: string | null;
179
179
  twitterHandle: string | null;
180
180
  yearsOfExperience: number | null;
@@ -433,6 +433,7 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
433
433
  headline: string | null;
434
434
  seniorityLevel: string | null;
435
435
  emails: string[] | null;
436
+ linkedinUrl: string | null;
436
437
  languages: string[] | null;
437
438
  skills: string[] | null;
438
439
  education: {
@@ -441,7 +442,6 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
441
442
  fieldOfStudy: string | null;
442
443
  }[] | null;
443
444
  websites: string[] | null;
444
- linkedinUrl: string | null;
445
445
  profilePictureUrl: string | null;
446
446
  twitterHandle: string | null;
447
447
  yearsOfExperience: number | null;
@@ -485,6 +485,7 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
485
485
  headline: string | null;
486
486
  seniorityLevel: string | null;
487
487
  emails: string[] | null;
488
+ linkedinUrl: string | null;
488
489
  languages: string[] | null;
489
490
  skills: string[] | null;
490
491
  education: {
@@ -493,7 +494,6 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
493
494
  fieldOfStudy: string | null;
494
495
  }[] | null;
495
496
  websites: string[] | null;
496
- linkedinUrl: string | null;
497
497
  profilePictureUrl: string | null;
498
498
  twitterHandle: string | null;
499
499
  yearsOfExperience: number | null;
@@ -545,6 +545,7 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
545
545
  headline: string | null;
546
546
  seniorityLevel: string | null;
547
547
  emails: string[] | null;
548
+ linkedinUrl: string | null;
548
549
  languages: string[] | null;
549
550
  skills: string[] | null;
550
551
  education: {
@@ -553,7 +554,6 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
553
554
  fieldOfStudy: string | null;
554
555
  }[] | null;
555
556
  websites: string[] | null;
556
- linkedinUrl: string | null;
557
557
  profilePictureUrl: string | null;
558
558
  twitterHandle: string | null;
559
559
  yearsOfExperience: number | null;
@@ -603,6 +603,7 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
603
603
  headline: string | null;
604
604
  seniorityLevel: string | null;
605
605
  emails: string[] | null;
606
+ linkedinUrl: string | null;
606
607
  languages: string[] | null;
607
608
  skills: string[] | null;
608
609
  education: {
@@ -611,7 +612,6 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
611
612
  fieldOfStudy: string | null;
612
613
  }[] | null;
613
614
  websites: string[] | null;
614
- linkedinUrl: string | null;
615
615
  profilePictureUrl: string | null;
616
616
  twitterHandle: string | null;
617
617
  yearsOfExperience: number | null;
@@ -902,6 +902,7 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
902
902
  headline: string | null;
903
903
  seniorityLevel: string | null;
904
904
  emails: string[] | null;
905
+ linkedinUrl: string | null;
905
906
  languages: string[] | null;
906
907
  skills: string[] | null;
907
908
  education: {
@@ -910,7 +911,6 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
910
911
  fieldOfStudy: string | null;
911
912
  }[] | null;
912
913
  websites: string[] | null;
913
- linkedinUrl: string | null;
914
914
  profilePictureUrl: string | null;
915
915
  twitterHandle: string | null;
916
916
  yearsOfExperience: number | null;
@@ -954,6 +954,7 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
954
954
  headline: string | null;
955
955
  seniorityLevel: string | null;
956
956
  emails: string[] | null;
957
+ linkedinUrl: string | null;
957
958
  languages: string[] | null;
958
959
  skills: string[] | null;
959
960
  education: {
@@ -962,7 +963,6 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
962
963
  fieldOfStudy: string | null;
963
964
  }[] | null;
964
965
  websites: string[] | null;
965
- linkedinUrl: string | null;
966
966
  profilePictureUrl: string | null;
967
967
  twitterHandle: string | null;
968
968
  yearsOfExperience: number | null;
@@ -1014,6 +1014,7 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
1014
1014
  headline: string | null;
1015
1015
  seniorityLevel: string | null;
1016
1016
  emails: string[] | null;
1017
+ linkedinUrl: string | null;
1017
1018
  languages: string[] | null;
1018
1019
  skills: string[] | null;
1019
1020
  education: {
@@ -1022,7 +1023,6 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
1022
1023
  fieldOfStudy: string | null;
1023
1024
  }[] | null;
1024
1025
  websites: string[] | null;
1025
- linkedinUrl: string | null;
1026
1026
  profilePictureUrl: string | null;
1027
1027
  twitterHandle: string | null;
1028
1028
  yearsOfExperience: number | null;
@@ -1072,6 +1072,7 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
1072
1072
  headline: string | null;
1073
1073
  seniorityLevel: string | null;
1074
1074
  emails: string[] | null;
1075
+ linkedinUrl: string | null;
1075
1076
  languages: string[] | null;
1076
1077
  skills: string[] | null;
1077
1078
  education: {
@@ -1080,7 +1081,6 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
1080
1081
  fieldOfStudy: string | null;
1081
1082
  }[] | null;
1082
1083
  websites: string[] | null;
1083
- linkedinUrl: string | null;
1084
1084
  profilePictureUrl: string | null;
1085
1085
  twitterHandle: string | null;
1086
1086
  yearsOfExperience: number | null;
@@ -5,23 +5,23 @@ import { CredentialType, type BubbleName } from '@bubblelab/shared-schemas';
5
5
  declare const ResearchAgentToolParamsSchema: z.ZodObject<{
6
6
  task: z.ZodString;
7
7
  expectedResultSchema: z.ZodUnion<[z.ZodType<z.ZodTypeAny, z.ZodTypeDef, z.ZodTypeAny>, z.ZodString]>;
8
- model: z.ZodDefault<z.ZodEnum<["openai/gpt-5", "openai/gpt-5-mini", "openai/gpt-5.1", "openai/gpt-5.2", "google/gemini-2.5-pro", "google/gemini-2.5-flash", "google/gemini-2.5-flash-lite", "google/gemini-2.5-flash-image-preview", "google/gemini-3-pro-preview", "google/gemini-3-pro-image-preview", "google/gemini-3-flash-preview", "anthropic/claude-sonnet-4-5", "anthropic/claude-opus-4-5", "anthropic/claude-haiku-4-5", "openrouter/x-ai/grok-code-fast-1", "openrouter/z-ai/glm-4.6", "openrouter/anthropic/claude-sonnet-4.5", "openrouter/google/gemini-3-pro-preview", "openrouter/morph/morph-v3-large", "openrouter/openai/gpt-oss-120b"]>>;
8
+ model: z.ZodDefault<z.ZodEnum<["openai/gpt-5", "openai/gpt-5-mini", "openai/gpt-5.1", "openai/gpt-5.2", "google/gemini-2.5-pro", "google/gemini-2.5-flash", "google/gemini-2.5-flash-lite", "google/gemini-2.5-flash-image-preview", "google/gemini-3-pro-preview", "google/gemini-3-pro-image-preview", "google/gemini-3-flash-preview", "anthropic/claude-sonnet-4-5", "anthropic/claude-opus-4-5", "anthropic/claude-haiku-4-5", "openrouter/x-ai/grok-code-fast-1", "openrouter/z-ai/glm-4.6", "openrouter/anthropic/claude-sonnet-4.5", "openrouter/google/gemini-3-pro-preview", "openrouter/morph/morph-v3-large", "openrouter/openai/gpt-oss-120b", "openrouter/openai/o3-deep-research", "openrouter/openai/o4-mini-deep-research"]>>;
9
9
  maxTokens: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
10
10
  maxIterations: z.ZodDefault<z.ZodNumber>;
11
11
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
12
12
  }, "strip", z.ZodTypeAny, {
13
- model: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/openai/gpt-oss-120b";
13
+ model: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/openai/gpt-oss-120b" | "openrouter/openai/o3-deep-research" | "openrouter/openai/o4-mini-deep-research";
14
14
  maxIterations: number;
15
15
  task: string;
16
16
  expectedResultSchema: string | z.ZodTypeAny;
17
- credentials?: Partial<Record<CredentialType, string>> | undefined;
18
17
  maxTokens?: number | undefined;
18
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
19
19
  }, {
20
20
  task: string;
21
21
  expectedResultSchema: string | z.ZodTypeAny;
22
- credentials?: Partial<Record<CredentialType, string>> | undefined;
23
- model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/openai/gpt-oss-120b" | undefined;
22
+ model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/openai/gpt-oss-120b" | "openrouter/openai/o3-deep-research" | "openrouter/openai/o4-mini-deep-research" | undefined;
24
23
  maxTokens?: number | undefined;
24
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
25
25
  maxIterations?: number | undefined;
26
26
  }>;
27
27
  declare const ResearchAgentToolResultSchema: z.ZodObject<{
@@ -54,23 +54,23 @@ export declare class ResearchAgentTool extends ToolBubble<ResearchAgentToolParam
54
54
  static readonly schema: z.ZodObject<{
55
55
  task: z.ZodString;
56
56
  expectedResultSchema: z.ZodUnion<[z.ZodType<z.ZodTypeAny, z.ZodTypeDef, z.ZodTypeAny>, z.ZodString]>;
57
- model: z.ZodDefault<z.ZodEnum<["openai/gpt-5", "openai/gpt-5-mini", "openai/gpt-5.1", "openai/gpt-5.2", "google/gemini-2.5-pro", "google/gemini-2.5-flash", "google/gemini-2.5-flash-lite", "google/gemini-2.5-flash-image-preview", "google/gemini-3-pro-preview", "google/gemini-3-pro-image-preview", "google/gemini-3-flash-preview", "anthropic/claude-sonnet-4-5", "anthropic/claude-opus-4-5", "anthropic/claude-haiku-4-5", "openrouter/x-ai/grok-code-fast-1", "openrouter/z-ai/glm-4.6", "openrouter/anthropic/claude-sonnet-4.5", "openrouter/google/gemini-3-pro-preview", "openrouter/morph/morph-v3-large", "openrouter/openai/gpt-oss-120b"]>>;
57
+ model: z.ZodDefault<z.ZodEnum<["openai/gpt-5", "openai/gpt-5-mini", "openai/gpt-5.1", "openai/gpt-5.2", "google/gemini-2.5-pro", "google/gemini-2.5-flash", "google/gemini-2.5-flash-lite", "google/gemini-2.5-flash-image-preview", "google/gemini-3-pro-preview", "google/gemini-3-pro-image-preview", "google/gemini-3-flash-preview", "anthropic/claude-sonnet-4-5", "anthropic/claude-opus-4-5", "anthropic/claude-haiku-4-5", "openrouter/x-ai/grok-code-fast-1", "openrouter/z-ai/glm-4.6", "openrouter/anthropic/claude-sonnet-4.5", "openrouter/google/gemini-3-pro-preview", "openrouter/morph/morph-v3-large", "openrouter/openai/gpt-oss-120b", "openrouter/openai/o3-deep-research", "openrouter/openai/o4-mini-deep-research"]>>;
58
58
  maxTokens: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
59
59
  maxIterations: z.ZodDefault<z.ZodNumber>;
60
60
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
61
61
  }, "strip", z.ZodTypeAny, {
62
- model: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/openai/gpt-oss-120b";
62
+ model: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/openai/gpt-oss-120b" | "openrouter/openai/o3-deep-research" | "openrouter/openai/o4-mini-deep-research";
63
63
  maxIterations: number;
64
64
  task: string;
65
65
  expectedResultSchema: string | z.ZodTypeAny;
66
- credentials?: Partial<Record<CredentialType, string>> | undefined;
67
66
  maxTokens?: number | undefined;
67
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
68
68
  }, {
69
69
  task: string;
70
70
  expectedResultSchema: string | z.ZodTypeAny;
71
- credentials?: Partial<Record<CredentialType, string>> | undefined;
72
- model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/openai/gpt-oss-120b" | undefined;
71
+ model?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/openai/gpt-oss-120b" | "openrouter/openai/o3-deep-research" | "openrouter/openai/o4-mini-deep-research" | undefined;
73
72
  maxTokens?: number | undefined;
73
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
74
74
  maxIterations?: number | undefined;
75
75
  }>;
76
76
  static readonly resultSchema: z.ZodObject<{