@bubblelab/bubble-core 0.1.226 → 0.1.227

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 (47) hide show
  1. package/dist/bubble-bundle.d.ts +84 -84
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
  4. package/dist/bubbles/service-bubble/airtable.d.ts +24 -24
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +12 -12
  6. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +72 -72
  7. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +100 -100
  8. package/dist/bubbles/service-bubble/assembled/assembled.d.ts +2 -2
  9. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +2 -2
  10. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +2 -2
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +4 -4
  12. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +8 -8
  13. package/dist/bubbles/service-bubble/firecrawl.d.ts +212 -212
  14. package/dist/bubbles/service-bubble/github.d.ts +72 -72
  15. package/dist/bubbles/service-bubble/gmail.d.ts +148 -148
  16. package/dist/bubbles/service-bubble/google-calendar.d.ts +86 -86
  17. package/dist/bubbles/service-bubble/google-drive.d.ts +36 -36
  18. package/dist/bubbles/service-bubble/http.d.ts +4 -4
  19. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  20. package/dist/bubbles/service-bubble/jira/jira.d.ts +38 -38
  21. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +46 -46
  22. package/dist/bubbles/service-bubble/notion/notion.d.ts +380 -380
  23. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  24. package/dist/bubbles/service-bubble/posthog/posthog.d.ts +2 -2
  25. package/dist/bubbles/service-bubble/posthog/posthog.schema.d.ts +2 -2
  26. package/dist/bubbles/service-bubble/slack/slack.d.ts +210 -210
  27. package/dist/bubbles/service-bubble/zendesk/zendesk.d.ts +2 -2
  28. package/dist/bubbles/service-bubble/zendesk/zendesk.schema.d.ts +2 -2
  29. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
  30. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +10 -10
  31. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +270 -270
  32. package/dist/bubbles/tool-bubble/list-capabilities-tool.d.ts +8 -8
  33. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +34 -34
  34. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
  35. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  36. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +56 -56
  37. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +80 -80
  38. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  39. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  40. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  41. package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +4 -4
  42. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
  43. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +36 -36
  44. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
  45. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +24 -24
  46. package/dist/bubbles.json +1 -1
  47. package/package.json +2 -2
@@ -305,6 +305,15 @@ declare const LinkedInPostSchema: z.ZodObject<{
305
305
  }, "strip", z.ZodTypeAny, {
306
306
  url: string | null;
307
307
  text: string | null;
308
+ urn: string | null;
309
+ author: {
310
+ username: string | null;
311
+ headline: string | null;
312
+ firstName: string | null;
313
+ lastName: string | null;
314
+ profileUrl: string | null;
315
+ profilePicture: string | null;
316
+ } | null;
308
317
  stats: {
309
318
  like: number | null;
310
319
  support: number | null;
@@ -316,15 +325,6 @@ declare const LinkedInPostSchema: z.ZodObject<{
316
325
  reposts: number | null;
317
326
  totalReactions: number | null;
318
327
  } | null;
319
- urn: string | null;
320
- author: {
321
- username: string | null;
322
- headline: string | null;
323
- firstName: string | null;
324
- lastName: string | null;
325
- profileUrl: string | null;
326
- profilePicture: string | null;
327
- } | null;
328
328
  media: {
329
329
  type: string | null;
330
330
  url: string | null;
@@ -344,6 +344,15 @@ declare const LinkedInPostSchema: z.ZodObject<{
344
344
  }, {
345
345
  url: string | null;
346
346
  text: string | null;
347
+ urn: string | null;
348
+ author: {
349
+ username: string | null;
350
+ headline: string | null;
351
+ firstName: string | null;
352
+ lastName: string | null;
353
+ profileUrl: string | null;
354
+ profilePicture: string | null;
355
+ } | null;
347
356
  stats: {
348
357
  like: number | null;
349
358
  support: number | null;
@@ -355,15 +364,6 @@ declare const LinkedInPostSchema: z.ZodObject<{
355
364
  reposts: number | null;
356
365
  totalReactions: number | null;
357
366
  } | null;
358
- urn: string | null;
359
- author: {
360
- username: string | null;
361
- headline: string | null;
362
- firstName: string | null;
363
- lastName: string | null;
364
- profileUrl: string | null;
365
- profilePicture: string | null;
366
- } | null;
367
367
  media: {
368
368
  type: string | null;
369
369
  url: string | null;
@@ -384,17 +384,6 @@ declare const LinkedInPostSchema: z.ZodObject<{
384
384
  }, "strip", z.ZodTypeAny, {
385
385
  url: string | null;
386
386
  text: string | null;
387
- stats: {
388
- like: number | null;
389
- support: number | null;
390
- love: number | null;
391
- insight: number | null;
392
- celebrate: number | null;
393
- funny: number | null;
394
- comments: number | null;
395
- reposts: number | null;
396
- totalReactions: number | null;
397
- } | null;
398
387
  document: {
399
388
  title: string | null;
400
389
  url: string | null;
@@ -410,6 +399,17 @@ declare const LinkedInPostSchema: z.ZodObject<{
410
399
  profileUrl: string | null;
411
400
  profilePicture: string | null;
412
401
  } | null;
402
+ stats: {
403
+ like: number | null;
404
+ support: number | null;
405
+ love: number | null;
406
+ insight: number | null;
407
+ celebrate: number | null;
408
+ funny: number | null;
409
+ comments: number | null;
410
+ reposts: number | null;
411
+ totalReactions: number | null;
412
+ } | null;
413
413
  media: {
414
414
  type: string | null;
415
415
  url: string | null;
@@ -436,6 +436,15 @@ declare const LinkedInPostSchema: z.ZodObject<{
436
436
  resharedPost: {
437
437
  url: string | null;
438
438
  text: string | null;
439
+ urn: string | null;
440
+ author: {
441
+ username: string | null;
442
+ headline: string | null;
443
+ firstName: string | null;
444
+ lastName: string | null;
445
+ profileUrl: string | null;
446
+ profilePicture: string | null;
447
+ } | null;
439
448
  stats: {
440
449
  like: number | null;
441
450
  support: number | null;
@@ -447,15 +456,6 @@ declare const LinkedInPostSchema: z.ZodObject<{
447
456
  reposts: number | null;
448
457
  totalReactions: number | null;
449
458
  } | null;
450
- urn: string | null;
451
- author: {
452
- username: string | null;
453
- headline: string | null;
454
- firstName: string | null;
455
- lastName: string | null;
456
- profileUrl: string | null;
457
- profilePicture: string | null;
458
- } | null;
459
459
  media: {
460
460
  type: string | null;
461
461
  url: string | null;
@@ -476,17 +476,6 @@ declare const LinkedInPostSchema: z.ZodObject<{
476
476
  }, {
477
477
  url: string | null;
478
478
  text: string | null;
479
- stats: {
480
- like: number | null;
481
- support: number | null;
482
- love: number | null;
483
- insight: number | null;
484
- celebrate: number | null;
485
- funny: number | null;
486
- comments: number | null;
487
- reposts: number | null;
488
- totalReactions: number | null;
489
- } | null;
490
479
  document: {
491
480
  title: string | null;
492
481
  url: string | null;
@@ -502,6 +491,17 @@ declare const LinkedInPostSchema: z.ZodObject<{
502
491
  profileUrl: string | null;
503
492
  profilePicture: string | null;
504
493
  } | null;
494
+ stats: {
495
+ like: number | null;
496
+ support: number | null;
497
+ love: number | null;
498
+ insight: number | null;
499
+ celebrate: number | null;
500
+ funny: number | null;
501
+ comments: number | null;
502
+ reposts: number | null;
503
+ totalReactions: number | null;
504
+ } | null;
505
505
  media: {
506
506
  type: string | null;
507
507
  url: string | null;
@@ -528,6 +528,15 @@ declare const LinkedInPostSchema: z.ZodObject<{
528
528
  resharedPost: {
529
529
  url: string | null;
530
530
  text: string | null;
531
+ urn: string | null;
532
+ author: {
533
+ username: string | null;
534
+ headline: string | null;
535
+ firstName: string | null;
536
+ lastName: string | null;
537
+ profileUrl: string | null;
538
+ profilePicture: string | null;
539
+ } | null;
531
540
  stats: {
532
541
  like: number | null;
533
542
  support: number | null;
@@ -539,15 +548,6 @@ declare const LinkedInPostSchema: z.ZodObject<{
539
548
  reposts: number | null;
540
549
  totalReactions: number | null;
541
550
  } | null;
542
- urn: string | null;
543
- author: {
544
- username: string | null;
545
- headline: string | null;
546
- firstName: string | null;
547
- lastName: string | null;
548
- profileUrl: string | null;
549
- profilePicture: string | null;
550
- } | null;
551
551
  media: {
552
552
  type: string | null;
553
553
  url: string | null;
@@ -1043,11 +1043,11 @@ declare const LinkedInToolParamsSchema: z.ZodObject<{
1043
1043
  pageNumber?: number | undefined;
1044
1044
  location?: string | undefined;
1045
1045
  keyword?: string | undefined;
1046
- dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
1047
1046
  workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
1047
+ dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
1048
1048
  profileUrl?: string | undefined;
1049
1049
  jobType?: ("full-time" | "part-time" | "contract" | "temporary" | "internship")[] | undefined;
1050
- experienceLevel?: ("executive" | "associate" | "internship" | "entry-level" | "mid-senior" | "director")[] | undefined;
1050
+ experienceLevel?: ("internship" | "entry-level" | "associate" | "mid-senior" | "director" | "executive")[] | undefined;
1051
1051
  sortBy?: "relevance" | "date_posted" | undefined;
1052
1052
  }, {
1053
1053
  operation: "scrapeProfile" | "scrapePosts" | "searchPosts" | "scrapeJobs";
@@ -1057,11 +1057,11 @@ declare const LinkedInToolParamsSchema: z.ZodObject<{
1057
1057
  pageNumber?: number | undefined;
1058
1058
  location?: string | undefined;
1059
1059
  keyword?: string | undefined;
1060
- dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
1061
1060
  workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
1061
+ dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
1062
1062
  profileUrl?: string | undefined;
1063
1063
  jobType?: ("full-time" | "part-time" | "contract" | "temporary" | "internship")[] | undefined;
1064
- experienceLevel?: ("executive" | "associate" | "internship" | "entry-level" | "mid-senior" | "director")[] | undefined;
1064
+ experienceLevel?: ("internship" | "entry-level" | "associate" | "mid-senior" | "director" | "executive")[] | undefined;
1065
1065
  sortBy?: "relevance" | "date_posted" | undefined;
1066
1066
  }>;
1067
1067
  declare const LinkedInToolResultSchema: z.ZodObject<{
@@ -1771,6 +1771,15 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1771
1771
  }, "strip", z.ZodTypeAny, {
1772
1772
  url: string | null;
1773
1773
  text: string | null;
1774
+ urn: string | null;
1775
+ author: {
1776
+ username: string | null;
1777
+ headline: string | null;
1778
+ firstName: string | null;
1779
+ lastName: string | null;
1780
+ profileUrl: string | null;
1781
+ profilePicture: string | null;
1782
+ } | null;
1774
1783
  stats: {
1775
1784
  like: number | null;
1776
1785
  support: number | null;
@@ -1782,15 +1791,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1782
1791
  reposts: number | null;
1783
1792
  totalReactions: number | null;
1784
1793
  } | null;
1785
- urn: string | null;
1786
- author: {
1787
- username: string | null;
1788
- headline: string | null;
1789
- firstName: string | null;
1790
- lastName: string | null;
1791
- profileUrl: string | null;
1792
- profilePicture: string | null;
1793
- } | null;
1794
1794
  media: {
1795
1795
  type: string | null;
1796
1796
  url: string | null;
@@ -1810,6 +1810,15 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1810
1810
  }, {
1811
1811
  url: string | null;
1812
1812
  text: string | null;
1813
+ urn: string | null;
1814
+ author: {
1815
+ username: string | null;
1816
+ headline: string | null;
1817
+ firstName: string | null;
1818
+ lastName: string | null;
1819
+ profileUrl: string | null;
1820
+ profilePicture: string | null;
1821
+ } | null;
1813
1822
  stats: {
1814
1823
  like: number | null;
1815
1824
  support: number | null;
@@ -1821,15 +1830,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1821
1830
  reposts: number | null;
1822
1831
  totalReactions: number | null;
1823
1832
  } | null;
1824
- urn: string | null;
1825
- author: {
1826
- username: string | null;
1827
- headline: string | null;
1828
- firstName: string | null;
1829
- lastName: string | null;
1830
- profileUrl: string | null;
1831
- profilePicture: string | null;
1832
- } | null;
1833
1833
  media: {
1834
1834
  type: string | null;
1835
1835
  url: string | null;
@@ -1850,17 +1850,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1850
1850
  }, "strip", z.ZodTypeAny, {
1851
1851
  url: string | null;
1852
1852
  text: string | null;
1853
- stats: {
1854
- like: number | null;
1855
- support: number | null;
1856
- love: number | null;
1857
- insight: number | null;
1858
- celebrate: number | null;
1859
- funny: number | null;
1860
- comments: number | null;
1861
- reposts: number | null;
1862
- totalReactions: number | null;
1863
- } | null;
1864
1853
  document: {
1865
1854
  title: string | null;
1866
1855
  url: string | null;
@@ -1876,6 +1865,17 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1876
1865
  profileUrl: string | null;
1877
1866
  profilePicture: string | null;
1878
1867
  } | null;
1868
+ stats: {
1869
+ like: number | null;
1870
+ support: number | null;
1871
+ love: number | null;
1872
+ insight: number | null;
1873
+ celebrate: number | null;
1874
+ funny: number | null;
1875
+ comments: number | null;
1876
+ reposts: number | null;
1877
+ totalReactions: number | null;
1878
+ } | null;
1879
1879
  media: {
1880
1880
  type: string | null;
1881
1881
  url: string | null;
@@ -1902,6 +1902,15 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1902
1902
  resharedPost: {
1903
1903
  url: string | null;
1904
1904
  text: string | null;
1905
+ urn: string | null;
1906
+ author: {
1907
+ username: string | null;
1908
+ headline: string | null;
1909
+ firstName: string | null;
1910
+ lastName: string | null;
1911
+ profileUrl: string | null;
1912
+ profilePicture: string | null;
1913
+ } | null;
1905
1914
  stats: {
1906
1915
  like: number | null;
1907
1916
  support: number | null;
@@ -1913,15 +1922,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1913
1922
  reposts: number | null;
1914
1923
  totalReactions: number | null;
1915
1924
  } | null;
1916
- urn: string | null;
1917
- author: {
1918
- username: string | null;
1919
- headline: string | null;
1920
- firstName: string | null;
1921
- lastName: string | null;
1922
- profileUrl: string | null;
1923
- profilePicture: string | null;
1924
- } | null;
1925
1925
  media: {
1926
1926
  type: string | null;
1927
1927
  url: string | null;
@@ -1942,17 +1942,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1942
1942
  }, {
1943
1943
  url: string | null;
1944
1944
  text: string | null;
1945
- stats: {
1946
- like: number | null;
1947
- support: number | null;
1948
- love: number | null;
1949
- insight: number | null;
1950
- celebrate: number | null;
1951
- funny: number | null;
1952
- comments: number | null;
1953
- reposts: number | null;
1954
- totalReactions: number | null;
1955
- } | null;
1956
1945
  document: {
1957
1946
  title: string | null;
1958
1947
  url: string | null;
@@ -1968,6 +1957,17 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1968
1957
  profileUrl: string | null;
1969
1958
  profilePicture: string | null;
1970
1959
  } | null;
1960
+ stats: {
1961
+ like: number | null;
1962
+ support: number | null;
1963
+ love: number | null;
1964
+ insight: number | null;
1965
+ celebrate: number | null;
1966
+ funny: number | null;
1967
+ comments: number | null;
1968
+ reposts: number | null;
1969
+ totalReactions: number | null;
1970
+ } | null;
1971
1971
  media: {
1972
1972
  type: string | null;
1973
1973
  url: string | null;
@@ -1994,6 +1994,15 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1994
1994
  resharedPost: {
1995
1995
  url: string | null;
1996
1996
  text: string | null;
1997
+ urn: string | null;
1998
+ author: {
1999
+ username: string | null;
2000
+ headline: string | null;
2001
+ firstName: string | null;
2002
+ lastName: string | null;
2003
+ profileUrl: string | null;
2004
+ profilePicture: string | null;
2005
+ } | null;
1997
2006
  stats: {
1998
2007
  like: number | null;
1999
2008
  support: number | null;
@@ -2005,15 +2014,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
2005
2014
  reposts: number | null;
2006
2015
  totalReactions: number | null;
2007
2016
  } | null;
2008
- urn: string | null;
2009
- author: {
2010
- username: string | null;
2011
- headline: string | null;
2012
- firstName: string | null;
2013
- lastName: string | null;
2014
- profileUrl: string | null;
2015
- profilePicture: string | null;
2016
- } | null;
2017
2017
  media: {
2018
2018
  type: string | null;
2019
2019
  url: string | null;
@@ -2047,17 +2047,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
2047
2047
  posts: {
2048
2048
  url: string | null;
2049
2049
  text: string | null;
2050
- stats: {
2051
- like: number | null;
2052
- support: number | null;
2053
- love: number | null;
2054
- insight: number | null;
2055
- celebrate: number | null;
2056
- funny: number | null;
2057
- comments: number | null;
2058
- reposts: number | null;
2059
- totalReactions: number | null;
2060
- } | null;
2061
2050
  document: {
2062
2051
  title: string | null;
2063
2052
  url: string | null;
@@ -2073,6 +2062,17 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
2073
2062
  profileUrl: string | null;
2074
2063
  profilePicture: string | null;
2075
2064
  } | null;
2065
+ stats: {
2066
+ like: number | null;
2067
+ support: number | null;
2068
+ love: number | null;
2069
+ insight: number | null;
2070
+ celebrate: number | null;
2071
+ funny: number | null;
2072
+ comments: number | null;
2073
+ reposts: number | null;
2074
+ totalReactions: number | null;
2075
+ } | null;
2076
2076
  media: {
2077
2077
  type: string | null;
2078
2078
  url: string | null;
@@ -2099,6 +2099,15 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
2099
2099
  resharedPost: {
2100
2100
  url: string | null;
2101
2101
  text: string | null;
2102
+ urn: string | null;
2103
+ author: {
2104
+ username: string | null;
2105
+ headline: string | null;
2106
+ firstName: string | null;
2107
+ lastName: string | null;
2108
+ profileUrl: string | null;
2109
+ profilePicture: string | null;
2110
+ } | null;
2102
2111
  stats: {
2103
2112
  like: number | null;
2104
2113
  support: number | null;
@@ -2110,15 +2119,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
2110
2119
  reposts: number | null;
2111
2120
  totalReactions: number | null;
2112
2121
  } | null;
2113
- urn: string | null;
2114
- author: {
2115
- username: string | null;
2116
- headline: string | null;
2117
- firstName: string | null;
2118
- lastName: string | null;
2119
- profileUrl: string | null;
2120
- profilePicture: string | null;
2121
- } | null;
2122
2122
  media: {
2123
2123
  type: string | null;
2124
2124
  url: string | null;
@@ -2138,6 +2138,7 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
2138
2138
  } | null;
2139
2139
  }[];
2140
2140
  totalPosts: number;
2141
+ username?: string | undefined;
2141
2142
  profile?: {
2142
2143
  id: string | null;
2143
2144
  photo: string | null;
@@ -2216,7 +2217,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
2216
2217
  proficiency: string | null;
2217
2218
  }[] | null;
2218
2219
  } | null | undefined;
2219
- username?: string | undefined;
2220
2220
  keyword?: string | undefined;
2221
2221
  jobs?: {
2222
2222
  description: string | null;
@@ -2241,9 +2241,9 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
2241
2241
  logo: string | null;
2242
2242
  } | null;
2243
2243
  }[] | undefined;
2244
- hasNextPage?: boolean | null | undefined;
2245
2244
  totalResults?: number | null | undefined;
2246
2245
  paginationToken?: string | null | undefined;
2246
+ hasNextPage?: boolean | null | undefined;
2247
2247
  }, {
2248
2248
  error: string;
2249
2249
  success: boolean;
@@ -2251,17 +2251,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
2251
2251
  posts: {
2252
2252
  url: string | null;
2253
2253
  text: string | null;
2254
- stats: {
2255
- like: number | null;
2256
- support: number | null;
2257
- love: number | null;
2258
- insight: number | null;
2259
- celebrate: number | null;
2260
- funny: number | null;
2261
- comments: number | null;
2262
- reposts: number | null;
2263
- totalReactions: number | null;
2264
- } | null;
2265
2254
  document: {
2266
2255
  title: string | null;
2267
2256
  url: string | null;
@@ -2277,6 +2266,17 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
2277
2266
  profileUrl: string | null;
2278
2267
  profilePicture: string | null;
2279
2268
  } | null;
2269
+ stats: {
2270
+ like: number | null;
2271
+ support: number | null;
2272
+ love: number | null;
2273
+ insight: number | null;
2274
+ celebrate: number | null;
2275
+ funny: number | null;
2276
+ comments: number | null;
2277
+ reposts: number | null;
2278
+ totalReactions: number | null;
2279
+ } | null;
2280
2280
  media: {
2281
2281
  type: string | null;
2282
2282
  url: string | null;
@@ -2303,6 +2303,15 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
2303
2303
  resharedPost: {
2304
2304
  url: string | null;
2305
2305
  text: string | null;
2306
+ urn: string | null;
2307
+ author: {
2308
+ username: string | null;
2309
+ headline: string | null;
2310
+ firstName: string | null;
2311
+ lastName: string | null;
2312
+ profileUrl: string | null;
2313
+ profilePicture: string | null;
2314
+ } | null;
2306
2315
  stats: {
2307
2316
  like: number | null;
2308
2317
  support: number | null;
@@ -2314,15 +2323,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
2314
2323
  reposts: number | null;
2315
2324
  totalReactions: number | null;
2316
2325
  } | null;
2317
- urn: string | null;
2318
- author: {
2319
- username: string | null;
2320
- headline: string | null;
2321
- firstName: string | null;
2322
- lastName: string | null;
2323
- profileUrl: string | null;
2324
- profilePicture: string | null;
2325
- } | null;
2326
2326
  media: {
2327
2327
  type: string | null;
2328
2328
  url: string | null;
@@ -2342,6 +2342,7 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
2342
2342
  } | null;
2343
2343
  }[];
2344
2344
  totalPosts: number;
2345
+ username?: string | undefined;
2345
2346
  profile?: {
2346
2347
  id: string | null;
2347
2348
  photo: string | null;
@@ -2420,7 +2421,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
2420
2421
  proficiency: string | null;
2421
2422
  }[] | null;
2422
2423
  } | null | undefined;
2423
- username?: string | undefined;
2424
2424
  keyword?: string | undefined;
2425
2425
  jobs?: {
2426
2426
  description: string | null;
@@ -2445,9 +2445,9 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
2445
2445
  logo: string | null;
2446
2446
  } | null;
2447
2447
  }[] | undefined;
2448
- hasNextPage?: boolean | null | undefined;
2449
2448
  totalResults?: number | null | undefined;
2450
2449
  paginationToken?: string | null | undefined;
2450
+ hasNextPage?: boolean | null | undefined;
2451
2451
  }>;
2452
2452
  type LinkedInToolParams = z.output<typeof LinkedInToolParamsSchema>;
2453
2453
  type LinkedInToolResult = z.output<typeof LinkedInToolResultSchema>;
@@ -2496,11 +2496,11 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2496
2496
  pageNumber?: number | undefined;
2497
2497
  location?: string | undefined;
2498
2498
  keyword?: string | undefined;
2499
- dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
2500
2499
  workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
2500
+ dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
2501
2501
  profileUrl?: string | undefined;
2502
2502
  jobType?: ("full-time" | "part-time" | "contract" | "temporary" | "internship")[] | undefined;
2503
- experienceLevel?: ("executive" | "associate" | "internship" | "entry-level" | "mid-senior" | "director")[] | undefined;
2503
+ experienceLevel?: ("internship" | "entry-level" | "associate" | "mid-senior" | "director" | "executive")[] | undefined;
2504
2504
  sortBy?: "relevance" | "date_posted" | undefined;
2505
2505
  }, {
2506
2506
  operation: "scrapeProfile" | "scrapePosts" | "searchPosts" | "scrapeJobs";
@@ -2510,11 +2510,11 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2510
2510
  pageNumber?: number | undefined;
2511
2511
  location?: string | undefined;
2512
2512
  keyword?: string | undefined;
2513
- dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
2514
2513
  workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
2514
+ dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
2515
2515
  profileUrl?: string | undefined;
2516
2516
  jobType?: ("full-time" | "part-time" | "contract" | "temporary" | "internship")[] | undefined;
2517
- experienceLevel?: ("executive" | "associate" | "internship" | "entry-level" | "mid-senior" | "director")[] | undefined;
2517
+ experienceLevel?: ("internship" | "entry-level" | "associate" | "mid-senior" | "director" | "executive")[] | undefined;
2518
2518
  sortBy?: "relevance" | "date_posted" | undefined;
2519
2519
  }>;
2520
2520
  static readonly resultSchema: z.ZodObject<{
@@ -3224,6 +3224,15 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3224
3224
  }, "strip", z.ZodTypeAny, {
3225
3225
  url: string | null;
3226
3226
  text: string | null;
3227
+ urn: string | null;
3228
+ author: {
3229
+ username: string | null;
3230
+ headline: string | null;
3231
+ firstName: string | null;
3232
+ lastName: string | null;
3233
+ profileUrl: string | null;
3234
+ profilePicture: string | null;
3235
+ } | null;
3227
3236
  stats: {
3228
3237
  like: number | null;
3229
3238
  support: number | null;
@@ -3235,15 +3244,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3235
3244
  reposts: number | null;
3236
3245
  totalReactions: number | null;
3237
3246
  } | null;
3238
- urn: string | null;
3239
- author: {
3240
- username: string | null;
3241
- headline: string | null;
3242
- firstName: string | null;
3243
- lastName: string | null;
3244
- profileUrl: string | null;
3245
- profilePicture: string | null;
3246
- } | null;
3247
3247
  media: {
3248
3248
  type: string | null;
3249
3249
  url: string | null;
@@ -3263,6 +3263,15 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3263
3263
  }, {
3264
3264
  url: string | null;
3265
3265
  text: string | null;
3266
+ urn: string | null;
3267
+ author: {
3268
+ username: string | null;
3269
+ headline: string | null;
3270
+ firstName: string | null;
3271
+ lastName: string | null;
3272
+ profileUrl: string | null;
3273
+ profilePicture: string | null;
3274
+ } | null;
3266
3275
  stats: {
3267
3276
  like: number | null;
3268
3277
  support: number | null;
@@ -3274,15 +3283,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3274
3283
  reposts: number | null;
3275
3284
  totalReactions: number | null;
3276
3285
  } | null;
3277
- urn: string | null;
3278
- author: {
3279
- username: string | null;
3280
- headline: string | null;
3281
- firstName: string | null;
3282
- lastName: string | null;
3283
- profileUrl: string | null;
3284
- profilePicture: string | null;
3285
- } | null;
3286
3286
  media: {
3287
3287
  type: string | null;
3288
3288
  url: string | null;
@@ -3303,17 +3303,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3303
3303
  }, "strip", z.ZodTypeAny, {
3304
3304
  url: string | null;
3305
3305
  text: string | null;
3306
- stats: {
3307
- like: number | null;
3308
- support: number | null;
3309
- love: number | null;
3310
- insight: number | null;
3311
- celebrate: number | null;
3312
- funny: number | null;
3313
- comments: number | null;
3314
- reposts: number | null;
3315
- totalReactions: number | null;
3316
- } | null;
3317
3306
  document: {
3318
3307
  title: string | null;
3319
3308
  url: string | null;
@@ -3329,6 +3318,17 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3329
3318
  profileUrl: string | null;
3330
3319
  profilePicture: string | null;
3331
3320
  } | null;
3321
+ stats: {
3322
+ like: number | null;
3323
+ support: number | null;
3324
+ love: number | null;
3325
+ insight: number | null;
3326
+ celebrate: number | null;
3327
+ funny: number | null;
3328
+ comments: number | null;
3329
+ reposts: number | null;
3330
+ totalReactions: number | null;
3331
+ } | null;
3332
3332
  media: {
3333
3333
  type: string | null;
3334
3334
  url: string | null;
@@ -3355,6 +3355,15 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3355
3355
  resharedPost: {
3356
3356
  url: string | null;
3357
3357
  text: string | null;
3358
+ urn: string | null;
3359
+ author: {
3360
+ username: string | null;
3361
+ headline: string | null;
3362
+ firstName: string | null;
3363
+ lastName: string | null;
3364
+ profileUrl: string | null;
3365
+ profilePicture: string | null;
3366
+ } | null;
3358
3367
  stats: {
3359
3368
  like: number | null;
3360
3369
  support: number | null;
@@ -3366,15 +3375,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3366
3375
  reposts: number | null;
3367
3376
  totalReactions: number | null;
3368
3377
  } | null;
3369
- urn: string | null;
3370
- author: {
3371
- username: string | null;
3372
- headline: string | null;
3373
- firstName: string | null;
3374
- lastName: string | null;
3375
- profileUrl: string | null;
3376
- profilePicture: string | null;
3377
- } | null;
3378
3378
  media: {
3379
3379
  type: string | null;
3380
3380
  url: string | null;
@@ -3395,17 +3395,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3395
3395
  }, {
3396
3396
  url: string | null;
3397
3397
  text: string | null;
3398
- stats: {
3399
- like: number | null;
3400
- support: number | null;
3401
- love: number | null;
3402
- insight: number | null;
3403
- celebrate: number | null;
3404
- funny: number | null;
3405
- comments: number | null;
3406
- reposts: number | null;
3407
- totalReactions: number | null;
3408
- } | null;
3409
3398
  document: {
3410
3399
  title: string | null;
3411
3400
  url: string | null;
@@ -3421,6 +3410,17 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3421
3410
  profileUrl: string | null;
3422
3411
  profilePicture: string | null;
3423
3412
  } | null;
3413
+ stats: {
3414
+ like: number | null;
3415
+ support: number | null;
3416
+ love: number | null;
3417
+ insight: number | null;
3418
+ celebrate: number | null;
3419
+ funny: number | null;
3420
+ comments: number | null;
3421
+ reposts: number | null;
3422
+ totalReactions: number | null;
3423
+ } | null;
3424
3424
  media: {
3425
3425
  type: string | null;
3426
3426
  url: string | null;
@@ -3447,6 +3447,15 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3447
3447
  resharedPost: {
3448
3448
  url: string | null;
3449
3449
  text: string | null;
3450
+ urn: string | null;
3451
+ author: {
3452
+ username: string | null;
3453
+ headline: string | null;
3454
+ firstName: string | null;
3455
+ lastName: string | null;
3456
+ profileUrl: string | null;
3457
+ profilePicture: string | null;
3458
+ } | null;
3450
3459
  stats: {
3451
3460
  like: number | null;
3452
3461
  support: number | null;
@@ -3458,15 +3467,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3458
3467
  reposts: number | null;
3459
3468
  totalReactions: number | null;
3460
3469
  } | null;
3461
- urn: string | null;
3462
- author: {
3463
- username: string | null;
3464
- headline: string | null;
3465
- firstName: string | null;
3466
- lastName: string | null;
3467
- profileUrl: string | null;
3468
- profilePicture: string | null;
3469
- } | null;
3470
3470
  media: {
3471
3471
  type: string | null;
3472
3472
  url: string | null;
@@ -3500,17 +3500,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3500
3500
  posts: {
3501
3501
  url: string | null;
3502
3502
  text: string | null;
3503
- stats: {
3504
- like: number | null;
3505
- support: number | null;
3506
- love: number | null;
3507
- insight: number | null;
3508
- celebrate: number | null;
3509
- funny: number | null;
3510
- comments: number | null;
3511
- reposts: number | null;
3512
- totalReactions: number | null;
3513
- } | null;
3514
3503
  document: {
3515
3504
  title: string | null;
3516
3505
  url: string | null;
@@ -3526,6 +3515,17 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3526
3515
  profileUrl: string | null;
3527
3516
  profilePicture: string | null;
3528
3517
  } | null;
3518
+ stats: {
3519
+ like: number | null;
3520
+ support: number | null;
3521
+ love: number | null;
3522
+ insight: number | null;
3523
+ celebrate: number | null;
3524
+ funny: number | null;
3525
+ comments: number | null;
3526
+ reposts: number | null;
3527
+ totalReactions: number | null;
3528
+ } | null;
3529
3529
  media: {
3530
3530
  type: string | null;
3531
3531
  url: string | null;
@@ -3552,6 +3552,15 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3552
3552
  resharedPost: {
3553
3553
  url: string | null;
3554
3554
  text: string | null;
3555
+ urn: string | null;
3556
+ author: {
3557
+ username: string | null;
3558
+ headline: string | null;
3559
+ firstName: string | null;
3560
+ lastName: string | null;
3561
+ profileUrl: string | null;
3562
+ profilePicture: string | null;
3563
+ } | null;
3555
3564
  stats: {
3556
3565
  like: number | null;
3557
3566
  support: number | null;
@@ -3563,15 +3572,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3563
3572
  reposts: number | null;
3564
3573
  totalReactions: number | null;
3565
3574
  } | null;
3566
- urn: string | null;
3567
- author: {
3568
- username: string | null;
3569
- headline: string | null;
3570
- firstName: string | null;
3571
- lastName: string | null;
3572
- profileUrl: string | null;
3573
- profilePicture: string | null;
3574
- } | null;
3575
3575
  media: {
3576
3576
  type: string | null;
3577
3577
  url: string | null;
@@ -3591,6 +3591,7 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3591
3591
  } | null;
3592
3592
  }[];
3593
3593
  totalPosts: number;
3594
+ username?: string | undefined;
3594
3595
  profile?: {
3595
3596
  id: string | null;
3596
3597
  photo: string | null;
@@ -3669,7 +3670,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3669
3670
  proficiency: string | null;
3670
3671
  }[] | null;
3671
3672
  } | null | undefined;
3672
- username?: string | undefined;
3673
3673
  keyword?: string | undefined;
3674
3674
  jobs?: {
3675
3675
  description: string | null;
@@ -3694,9 +3694,9 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3694
3694
  logo: string | null;
3695
3695
  } | null;
3696
3696
  }[] | undefined;
3697
- hasNextPage?: boolean | null | undefined;
3698
3697
  totalResults?: number | null | undefined;
3699
3698
  paginationToken?: string | null | undefined;
3699
+ hasNextPage?: boolean | null | undefined;
3700
3700
  }, {
3701
3701
  error: string;
3702
3702
  success: boolean;
@@ -3704,17 +3704,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3704
3704
  posts: {
3705
3705
  url: string | null;
3706
3706
  text: string | null;
3707
- stats: {
3708
- like: number | null;
3709
- support: number | null;
3710
- love: number | null;
3711
- insight: number | null;
3712
- celebrate: number | null;
3713
- funny: number | null;
3714
- comments: number | null;
3715
- reposts: number | null;
3716
- totalReactions: number | null;
3717
- } | null;
3718
3707
  document: {
3719
3708
  title: string | null;
3720
3709
  url: string | null;
@@ -3730,6 +3719,17 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3730
3719
  profileUrl: string | null;
3731
3720
  profilePicture: string | null;
3732
3721
  } | null;
3722
+ stats: {
3723
+ like: number | null;
3724
+ support: number | null;
3725
+ love: number | null;
3726
+ insight: number | null;
3727
+ celebrate: number | null;
3728
+ funny: number | null;
3729
+ comments: number | null;
3730
+ reposts: number | null;
3731
+ totalReactions: number | null;
3732
+ } | null;
3733
3733
  media: {
3734
3734
  type: string | null;
3735
3735
  url: string | null;
@@ -3756,6 +3756,15 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3756
3756
  resharedPost: {
3757
3757
  url: string | null;
3758
3758
  text: string | null;
3759
+ urn: string | null;
3760
+ author: {
3761
+ username: string | null;
3762
+ headline: string | null;
3763
+ firstName: string | null;
3764
+ lastName: string | null;
3765
+ profileUrl: string | null;
3766
+ profilePicture: string | null;
3767
+ } | null;
3759
3768
  stats: {
3760
3769
  like: number | null;
3761
3770
  support: number | null;
@@ -3767,15 +3776,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3767
3776
  reposts: number | null;
3768
3777
  totalReactions: number | null;
3769
3778
  } | null;
3770
- urn: string | null;
3771
- author: {
3772
- username: string | null;
3773
- headline: string | null;
3774
- firstName: string | null;
3775
- lastName: string | null;
3776
- profileUrl: string | null;
3777
- profilePicture: string | null;
3778
- } | null;
3779
3779
  media: {
3780
3780
  type: string | null;
3781
3781
  url: string | null;
@@ -3795,6 +3795,7 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3795
3795
  } | null;
3796
3796
  }[];
3797
3797
  totalPosts: number;
3798
+ username?: string | undefined;
3798
3799
  profile?: {
3799
3800
  id: string | null;
3800
3801
  photo: string | null;
@@ -3873,7 +3874,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3873
3874
  proficiency: string | null;
3874
3875
  }[] | null;
3875
3876
  } | null | undefined;
3876
- username?: string | undefined;
3877
3877
  keyword?: string | undefined;
3878
3878
  jobs?: {
3879
3879
  description: string | null;
@@ -3898,9 +3898,9 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
3898
3898
  logo: string | null;
3899
3899
  } | null;
3900
3900
  }[] | undefined;
3901
- hasNextPage?: boolean | null | undefined;
3902
3901
  totalResults?: number | null | undefined;
3903
3902
  paginationToken?: string | null | undefined;
3903
+ hasNextPage?: boolean | null | undefined;
3904
3904
  }>;
3905
3905
  static readonly shortDescription = "Look up LinkedIn profiles by URL, scrape posts by profile, or search posts/jobs by keyword.";
3906
3906
  static readonly longDescription = "\n Universal LinkedIn tool for profile lookup, post scraping, and job search.\n\n **DO NOT USE research-agent-tool or web-scrape-tool for LinkedIn** - This tool is specifically optimized for LinkedIn.\n\n **OPERATIONS:**\n\n 1. **scrapeProfile**: Get full profile info from a LinkedIn URL\n - **USE THIS when you have a LinkedIn URL or username and need to know who someone is**\n - Returns: name, headline, about, current company, work experience, education, skills, location, certifications, languages, and more\n - Accepts full URLs (https://www.linkedin.com/in/williamhgates) or just usernames (\"williamhgates\")\n - This is the RIGHT tool for \"look up this LinkedIn profile\" or \"who is this person on LinkedIn?\"\n\n 2. **scrapePosts**: Scrape posts from a LinkedIn profile\n - Get posts from specific users by username\n - Extract post text, engagement stats, media, articles, documents\n - **DO NOT use scrapePosts to get profile info** - use scrapeProfile instead\n\n 3. **searchPosts**: Search LinkedIn posts by keyword\n - Find posts across all of LinkedIn by keyword\n - Filter by date (past 24h, week, month)\n - Sort by relevance or date\n\n 4. **scrapeJobs**: Search LinkedIn job postings\n - Search jobs by keyword and location\n - Filter by job type, workplace type, experience level\n\n **CHOOSING THE RIGHT OPERATION:**\n - \"Look up this LinkedIn profile\" \u2192 **scrapeProfile**\n - \"Who is this person?\" (with LinkedIn URL) \u2192 **scrapeProfile**\n - \"Get their name, company, experience\" \u2192 **scrapeProfile**\n - \"What has this person been posting?\" \u2192 **scrapePosts**\n - \"Find posts about AI on LinkedIn\" \u2192 **searchPosts**\n - \"Find software engineer jobs\" \u2192 **scrapeJobs**\n ";