@bubblelab/bubble-core 0.1.39 → 0.1.40

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 (63) hide show
  1. package/dist/bubble-bundle.d.ts +81 -81
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +114 -114
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +70 -70
  4. package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
  5. package/dist/bubbles/service-bubble/ai-agent.js +5 -0
  6. package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
  7. package/dist/bubbles/service-bubble/airtable.d.ts +122 -122
  8. package/dist/bubbles/service-bubble/apify/apify.d.ts +12 -12
  9. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +144 -144
  10. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +51 -51
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +84 -84
  12. package/dist/bubbles/service-bubble/eleven-labs.d.ts +56 -56
  13. package/dist/bubbles/service-bubble/firecrawl.d.ts +835 -835
  14. package/dist/bubbles/service-bubble/followupboss.d.ts +474 -474
  15. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +275 -275
  16. package/dist/bubbles/service-bubble/github.d.ts +196 -196
  17. package/dist/bubbles/service-bubble/gmail.d.ts +138 -138
  18. package/dist/bubbles/service-bubble/google-calendar.d.ts +136 -136
  19. package/dist/bubbles/service-bubble/google-drive.d.ts +144 -144
  20. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +68 -68
  21. package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
  22. package/dist/bubbles/service-bubble/http.d.ts +12 -12
  23. package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
  24. package/dist/bubbles/service-bubble/jira/jira.d.ts +59 -59
  25. package/dist/bubbles/service-bubble/notion/notion.d.ts +244 -244
  26. package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
  27. package/dist/bubbles/service-bubble/resend.d.ts +16 -16
  28. package/dist/bubbles/service-bubble/slack/slack.d.ts +442 -442
  29. package/dist/bubbles/service-bubble/storage.d.ts +60 -60
  30. package/dist/bubbles/service-bubble/telegram.d.ts +414 -414
  31. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +26 -26
  32. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
  33. package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +4 -4
  34. package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
  35. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +66 -66
  36. package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +4 -4
  37. package/dist/bubbles/tool-bubble/get-trigger-detail-tool.d.ts +4 -4
  38. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +28 -28
  39. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +16 -16
  40. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +422 -422
  41. package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +8 -8
  42. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +108 -108
  43. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +26 -26
  44. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +8 -8
  45. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
  46. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +24 -24
  47. package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
  48. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +113 -113
  49. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  50. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  51. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
  52. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +12 -12
  53. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +8 -8
  54. package/dist/bubbles/workflow-bubble/database-analyzer.workflow.d.ts +4 -4
  55. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +4 -4
  56. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
  57. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +90 -90
  58. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
  59. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +6 -6
  60. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +66 -66
  61. package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +8 -8
  62. package/dist/bubbles.json +1 -1
  63. package/package.json +2 -2
@@ -10,15 +10,15 @@ declare const LinkedInAuthorSchema: z.ZodObject<{
10
10
  profileUrl: z.ZodNullable<z.ZodString>;
11
11
  profilePicture: z.ZodNullable<z.ZodString>;
12
12
  }, "strip", z.ZodTypeAny, {
13
- headline: string | null;
14
13
  username: string | null;
14
+ headline: string | null;
15
15
  profileUrl: string | null;
16
16
  profilePicture: string | null;
17
17
  firstName: string | null;
18
18
  lastName: string | null;
19
19
  }, {
20
- headline: string | null;
21
20
  username: string | null;
21
+ headline: string | null;
22
22
  profileUrl: string | null;
23
23
  profilePicture: string | null;
24
24
  firstName: string | null;
@@ -35,8 +35,8 @@ declare const LinkedInStatsSchema: z.ZodObject<{
35
35
  comments: z.ZodNullable<z.ZodNumber>;
36
36
  reposts: z.ZodNullable<z.ZodNumber>;
37
37
  }, "strip", z.ZodTypeAny, {
38
- support: number | null;
39
38
  like: number | null;
39
+ support: number | null;
40
40
  love: number | null;
41
41
  insight: number | null;
42
42
  celebrate: number | null;
@@ -45,8 +45,8 @@ declare const LinkedInStatsSchema: z.ZodObject<{
45
45
  reposts: number | null;
46
46
  totalReactions: number | null;
47
47
  }, {
48
- support: number | null;
49
48
  like: number | null;
49
+ support: number | null;
50
50
  love: number | null;
51
51
  insight: number | null;
52
52
  celebrate: number | null;
@@ -82,15 +82,15 @@ declare const LinkedInPostSchema: z.ZodObject<{
82
82
  profileUrl: z.ZodNullable<z.ZodString>;
83
83
  profilePicture: z.ZodNullable<z.ZodString>;
84
84
  }, "strip", z.ZodTypeAny, {
85
- headline: string | null;
86
85
  username: string | null;
86
+ headline: string | null;
87
87
  profileUrl: string | null;
88
88
  profilePicture: string | null;
89
89
  firstName: string | null;
90
90
  lastName: string | null;
91
91
  }, {
92
- headline: string | null;
93
92
  username: string | null;
93
+ headline: string | null;
94
94
  profileUrl: string | null;
95
95
  profilePicture: string | null;
96
96
  firstName: string | null;
@@ -107,8 +107,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
107
107
  comments: z.ZodNullable<z.ZodNumber>;
108
108
  reposts: z.ZodNullable<z.ZodNumber>;
109
109
  }, "strip", z.ZodTypeAny, {
110
- support: number | null;
111
110
  like: number | null;
111
+ support: number | null;
112
112
  love: number | null;
113
113
  insight: number | null;
114
114
  celebrate: number | null;
@@ -117,8 +117,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
117
117
  reposts: number | null;
118
118
  totalReactions: number | null;
119
119
  }, {
120
- support: number | null;
121
120
  like: number | null;
121
+ support: number | null;
122
122
  love: number | null;
123
123
  insight: number | null;
124
124
  celebrate: number | null;
@@ -221,15 +221,15 @@ declare const LinkedInPostSchema: z.ZodObject<{
221
221
  profileUrl: z.ZodNullable<z.ZodString>;
222
222
  profilePicture: z.ZodNullable<z.ZodString>;
223
223
  }, "strip", z.ZodTypeAny, {
224
- headline: string | null;
225
224
  username: string | null;
225
+ headline: string | null;
226
226
  profileUrl: string | null;
227
227
  profilePicture: string | null;
228
228
  firstName: string | null;
229
229
  lastName: string | null;
230
230
  }, {
231
- headline: string | null;
232
231
  username: string | null;
232
+ headline: string | null;
233
233
  profileUrl: string | null;
234
234
  profilePicture: string | null;
235
235
  firstName: string | null;
@@ -246,8 +246,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
246
246
  comments: z.ZodNullable<z.ZodNumber>;
247
247
  reposts: z.ZodNullable<z.ZodNumber>;
248
248
  }, "strip", z.ZodTypeAny, {
249
- support: number | null;
250
249
  like: number | null;
250
+ support: number | null;
251
251
  love: number | null;
252
252
  insight: number | null;
253
253
  celebrate: number | null;
@@ -256,8 +256,8 @@ declare const LinkedInPostSchema: z.ZodObject<{
256
256
  reposts: number | null;
257
257
  totalReactions: number | null;
258
258
  }, {
259
- support: number | null;
260
259
  like: number | null;
260
+ support: number | null;
261
261
  love: number | null;
262
262
  insight: number | null;
263
263
  celebrate: number | null;
@@ -304,29 +304,19 @@ declare const LinkedInPostSchema: z.ZodObject<{
304
304
  }>>;
305
305
  }, "strip", z.ZodTypeAny, {
306
306
  url: string | null;
307
- media: {
308
- type: string | null;
309
- url: string | null;
310
- images: {
311
- url: string | null;
312
- width: number | null;
313
- height: number | null;
314
- }[] | null;
315
- thumbnail: string | null;
316
- } | null;
317
307
  text: string | null;
318
308
  urn: string | null;
319
309
  author: {
320
- headline: string | null;
321
310
  username: string | null;
311
+ headline: string | null;
322
312
  profileUrl: string | null;
323
313
  profilePicture: string | null;
324
314
  firstName: string | null;
325
315
  lastName: string | null;
326
316
  } | null;
327
317
  stats: {
328
- support: number | null;
329
318
  like: number | null;
319
+ support: number | null;
330
320
  love: number | null;
331
321
  insight: number | null;
332
322
  celebrate: number | null;
@@ -335,14 +325,6 @@ declare const LinkedInPostSchema: z.ZodObject<{
335
325
  reposts: number | null;
336
326
  totalReactions: number | null;
337
327
  } | null;
338
- postedAt: {
339
- date: string | null;
340
- timestamp: number | null;
341
- relative: string | null;
342
- } | null;
343
- postType: string | null;
344
- }, {
345
- url: string | null;
346
328
  media: {
347
329
  type: string | null;
348
330
  url: string | null;
@@ -353,19 +335,27 @@ declare const LinkedInPostSchema: z.ZodObject<{
353
335
  }[] | null;
354
336
  thumbnail: string | null;
355
337
  } | null;
338
+ postedAt: {
339
+ date: string | null;
340
+ timestamp: number | null;
341
+ relative: string | null;
342
+ } | null;
343
+ postType: string | null;
344
+ }, {
345
+ url: string | null;
356
346
  text: string | null;
357
347
  urn: string | null;
358
348
  author: {
359
- headline: string | null;
360
349
  username: string | null;
350
+ headline: string | null;
361
351
  profileUrl: string | null;
362
352
  profilePicture: string | null;
363
353
  firstName: string | null;
364
354
  lastName: string | null;
365
355
  } | null;
366
356
  stats: {
367
- support: number | null;
368
357
  like: number | null;
358
+ support: number | null;
369
359
  love: number | null;
370
360
  insight: number | null;
371
361
  celebrate: number | null;
@@ -374,6 +364,16 @@ declare const LinkedInPostSchema: z.ZodObject<{
374
364
  reposts: number | null;
375
365
  totalReactions: number | null;
376
366
  } | null;
367
+ media: {
368
+ type: string | null;
369
+ url: string | null;
370
+ images: {
371
+ url: string | null;
372
+ width: number | null;
373
+ height: number | null;
374
+ }[] | null;
375
+ thumbnail: string | null;
376
+ } | null;
377
377
  postedAt: {
378
378
  date: string | null;
379
379
  timestamp: number | null;
@@ -383,16 +383,6 @@ declare const LinkedInPostSchema: z.ZodObject<{
383
383
  }>>;
384
384
  }, "strip", z.ZodTypeAny, {
385
385
  url: string | null;
386
- media: {
387
- type: string | null;
388
- url: string | null;
389
- images: {
390
- url: string | null;
391
- width: number | null;
392
- height: number | null;
393
- }[] | null;
394
- thumbnail: string | null;
395
- } | null;
396
386
  text: string | null;
397
387
  document: {
398
388
  title: string | null;
@@ -402,16 +392,16 @@ declare const LinkedInPostSchema: z.ZodObject<{
402
392
  } | null;
403
393
  urn: string | null;
404
394
  author: {
405
- headline: string | null;
406
395
  username: string | null;
396
+ headline: string | null;
407
397
  profileUrl: string | null;
408
398
  profilePicture: string | null;
409
399
  firstName: string | null;
410
400
  lastName: string | null;
411
401
  } | null;
412
402
  stats: {
413
- support: number | null;
414
403
  like: number | null;
404
+ support: number | null;
415
405
  love: number | null;
416
406
  insight: number | null;
417
407
  celebrate: number | null;
@@ -420,6 +410,16 @@ declare const LinkedInPostSchema: z.ZodObject<{
420
410
  reposts: number | null;
421
411
  totalReactions: number | null;
422
412
  } | null;
413
+ media: {
414
+ type: string | null;
415
+ url: string | null;
416
+ images: {
417
+ url: string | null;
418
+ width: number | null;
419
+ height: number | null;
420
+ }[] | null;
421
+ thumbnail: string | null;
422
+ } | null;
423
423
  article: {
424
424
  title: string | null;
425
425
  url: string | null;
@@ -435,29 +435,19 @@ declare const LinkedInPostSchema: z.ZodObject<{
435
435
  postType: string | null;
436
436
  resharedPost: {
437
437
  url: string | null;
438
- media: {
439
- type: string | null;
440
- url: string | null;
441
- images: {
442
- url: string | null;
443
- width: number | null;
444
- height: number | null;
445
- }[] | null;
446
- thumbnail: string | null;
447
- } | null;
448
438
  text: string | null;
449
439
  urn: string | null;
450
440
  author: {
451
- headline: string | null;
452
441
  username: string | null;
442
+ headline: string | null;
453
443
  profileUrl: string | null;
454
444
  profilePicture: string | null;
455
445
  firstName: string | null;
456
446
  lastName: string | null;
457
447
  } | null;
458
448
  stats: {
459
- support: number | null;
460
449
  like: number | null;
450
+ support: number | null;
461
451
  love: number | null;
462
452
  insight: number | null;
463
453
  celebrate: number | null;
@@ -466,6 +456,16 @@ declare const LinkedInPostSchema: z.ZodObject<{
466
456
  reposts: number | null;
467
457
  totalReactions: number | null;
468
458
  } | null;
459
+ media: {
460
+ type: string | null;
461
+ url: string | null;
462
+ images: {
463
+ url: string | null;
464
+ width: number | null;
465
+ height: number | null;
466
+ }[] | null;
467
+ thumbnail: string | null;
468
+ } | null;
469
469
  postedAt: {
470
470
  date: string | null;
471
471
  timestamp: number | null;
@@ -475,16 +475,6 @@ declare const LinkedInPostSchema: z.ZodObject<{
475
475
  } | null;
476
476
  }, {
477
477
  url: string | null;
478
- media: {
479
- type: string | null;
480
- url: string | null;
481
- images: {
482
- url: string | null;
483
- width: number | null;
484
- height: number | null;
485
- }[] | null;
486
- thumbnail: string | null;
487
- } | null;
488
478
  text: string | null;
489
479
  document: {
490
480
  title: string | null;
@@ -494,16 +484,16 @@ declare const LinkedInPostSchema: z.ZodObject<{
494
484
  } | null;
495
485
  urn: string | null;
496
486
  author: {
497
- headline: string | null;
498
487
  username: string | null;
488
+ headline: string | null;
499
489
  profileUrl: string | null;
500
490
  profilePicture: string | null;
501
491
  firstName: string | null;
502
492
  lastName: string | null;
503
493
  } | null;
504
494
  stats: {
505
- support: number | null;
506
495
  like: number | null;
496
+ support: number | null;
507
497
  love: number | null;
508
498
  insight: number | null;
509
499
  celebrate: number | null;
@@ -512,6 +502,16 @@ declare const LinkedInPostSchema: z.ZodObject<{
512
502
  reposts: number | null;
513
503
  totalReactions: number | null;
514
504
  } | null;
505
+ media: {
506
+ type: string | null;
507
+ url: string | null;
508
+ images: {
509
+ url: string | null;
510
+ width: number | null;
511
+ height: number | null;
512
+ }[] | null;
513
+ thumbnail: string | null;
514
+ } | null;
515
515
  article: {
516
516
  title: string | null;
517
517
  url: string | null;
@@ -527,29 +527,19 @@ declare const LinkedInPostSchema: z.ZodObject<{
527
527
  postType: string | null;
528
528
  resharedPost: {
529
529
  url: string | null;
530
- media: {
531
- type: string | null;
532
- url: string | null;
533
- images: {
534
- url: string | null;
535
- width: number | null;
536
- height: number | null;
537
- }[] | null;
538
- thumbnail: string | null;
539
- } | null;
540
530
  text: string | null;
541
531
  urn: string | null;
542
532
  author: {
543
- headline: string | null;
544
533
  username: string | null;
534
+ headline: string | null;
545
535
  profileUrl: string | null;
546
536
  profilePicture: string | null;
547
537
  firstName: string | null;
548
538
  lastName: string | null;
549
539
  } | null;
550
540
  stats: {
551
- support: number | null;
552
541
  like: number | null;
542
+ support: number | null;
553
543
  love: number | null;
554
544
  insight: number | null;
555
545
  celebrate: number | null;
@@ -558,6 +548,16 @@ declare const LinkedInPostSchema: z.ZodObject<{
558
548
  reposts: number | null;
559
549
  totalReactions: number | null;
560
550
  } | null;
551
+ media: {
552
+ type: string | null;
553
+ url: string | null;
554
+ images: {
555
+ url: string | null;
556
+ width: number | null;
557
+ height: number | null;
558
+ }[] | null;
559
+ thumbnail: string | null;
560
+ } | null;
561
561
  postedAt: {
562
562
  date: string | null;
563
563
  timestamp: number | null;
@@ -611,14 +611,7 @@ declare const LinkedInJobSchema: z.ZodObject<{
611
611
  title: string | null;
612
612
  url: string | null;
613
613
  id: string | null;
614
- company: {
615
- name: string | null;
616
- url: string | null;
617
- logo: string | null;
618
- } | null;
619
614
  location: string | null;
620
- skills: string[] | null;
621
- seniorityLevel: string | null;
622
615
  postedAt: string | null;
623
616
  applyUrl: string | null;
624
617
  salary: {
@@ -627,20 +620,20 @@ declare const LinkedInJobSchema: z.ZodObject<{
627
620
  currency: string | null;
628
621
  period: string | null;
629
622
  } | null;
623
+ seniorityLevel: string | null;
630
624
  employmentType: string | null;
631
- }, {
632
- description: string | null;
633
- title: string | null;
634
- url: string | null;
635
- id: string | null;
636
625
  company: {
637
626
  name: string | null;
638
627
  url: string | null;
639
628
  logo: string | null;
640
629
  } | null;
641
- location: string | null;
642
630
  skills: string[] | null;
643
- seniorityLevel: string | null;
631
+ }, {
632
+ description: string | null;
633
+ title: string | null;
634
+ url: string | null;
635
+ id: string | null;
636
+ location: string | null;
644
637
  postedAt: string | null;
645
638
  applyUrl: string | null;
646
639
  salary: {
@@ -649,7 +642,14 @@ declare const LinkedInJobSchema: z.ZodObject<{
649
642
  currency: string | null;
650
643
  period: string | null;
651
644
  } | null;
645
+ seniorityLevel: string | null;
652
646
  employmentType: string | null;
647
+ company: {
648
+ name: string | null;
649
+ url: string | null;
650
+ logo: string | null;
651
+ } | null;
652
+ skills: string[] | null;
653
653
  }>;
654
654
  declare const LinkedInToolParamsSchema: z.ZodObject<{
655
655
  operation: z.ZodEnum<["scrapePosts", "searchPosts", "scrapeJobs"]>;
@@ -666,11 +666,11 @@ declare const LinkedInToolParamsSchema: z.ZodObject<{
666
666
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
667
667
  }, "strip", z.ZodTypeAny, {
668
668
  operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
669
- limit?: number | undefined;
670
669
  credentials?: Partial<Record<CredentialType, string>> | undefined;
671
- location?: string | undefined;
672
670
  username?: string | undefined;
671
+ limit?: number | undefined;
673
672
  pageNumber?: number | undefined;
673
+ location?: string | undefined;
674
674
  keyword?: string | undefined;
675
675
  dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
676
676
  jobType?: ("full-time" | "part-time" | "contract" | "temporary" | "internship")[] | undefined;
@@ -679,11 +679,11 @@ declare const LinkedInToolParamsSchema: z.ZodObject<{
679
679
  sortBy?: "relevance" | "date_posted" | undefined;
680
680
  }, {
681
681
  operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
682
- limit?: number | undefined;
683
682
  credentials?: Partial<Record<CredentialType, string>> | undefined;
684
- location?: string | undefined;
685
683
  username?: string | undefined;
684
+ limit?: number | undefined;
686
685
  pageNumber?: number | undefined;
686
+ location?: string | undefined;
687
687
  keyword?: string | undefined;
688
688
  dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
689
689
  jobType?: ("full-time" | "part-time" | "contract" | "temporary" | "internship")[] | undefined;
@@ -738,14 +738,7 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
738
738
  title: string | null;
739
739
  url: string | null;
740
740
  id: string | null;
741
- company: {
742
- name: string | null;
743
- url: string | null;
744
- logo: string | null;
745
- } | null;
746
741
  location: string | null;
747
- skills: string[] | null;
748
- seniorityLevel: string | null;
749
742
  postedAt: string | null;
750
743
  applyUrl: string | null;
751
744
  salary: {
@@ -754,20 +747,20 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
754
747
  currency: string | null;
755
748
  period: string | null;
756
749
  } | null;
750
+ seniorityLevel: string | null;
757
751
  employmentType: string | null;
758
- }, {
759
- description: string | null;
760
- title: string | null;
761
- url: string | null;
762
- id: string | null;
763
752
  company: {
764
753
  name: string | null;
765
754
  url: string | null;
766
755
  logo: string | null;
767
756
  } | null;
768
- location: string | null;
769
757
  skills: string[] | null;
770
- seniorityLevel: string | null;
758
+ }, {
759
+ description: string | null;
760
+ title: string | null;
761
+ url: string | null;
762
+ id: string | null;
763
+ location: string | null;
771
764
  postedAt: string | null;
772
765
  applyUrl: string | null;
773
766
  salary: {
@@ -776,7 +769,14 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
776
769
  currency: string | null;
777
770
  period: string | null;
778
771
  } | null;
772
+ seniorityLevel: string | null;
779
773
  employmentType: string | null;
774
+ company: {
775
+ name: string | null;
776
+ url: string | null;
777
+ logo: string | null;
778
+ } | null;
779
+ skills: string[] | null;
780
780
  }>, "many">>;
781
781
  posts: z.ZodArray<z.ZodObject<{
782
782
  urn: z.ZodNullable<z.ZodString>;
@@ -805,15 +805,15 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
805
805
  profileUrl: z.ZodNullable<z.ZodString>;
806
806
  profilePicture: z.ZodNullable<z.ZodString>;
807
807
  }, "strip", z.ZodTypeAny, {
808
- headline: string | null;
809
808
  username: string | null;
809
+ headline: string | null;
810
810
  profileUrl: string | null;
811
811
  profilePicture: string | null;
812
812
  firstName: string | null;
813
813
  lastName: string | null;
814
814
  }, {
815
- headline: string | null;
816
815
  username: string | null;
816
+ headline: string | null;
817
817
  profileUrl: string | null;
818
818
  profilePicture: string | null;
819
819
  firstName: string | null;
@@ -830,8 +830,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
830
830
  comments: z.ZodNullable<z.ZodNumber>;
831
831
  reposts: z.ZodNullable<z.ZodNumber>;
832
832
  }, "strip", z.ZodTypeAny, {
833
- support: number | null;
834
833
  like: number | null;
834
+ support: number | null;
835
835
  love: number | null;
836
836
  insight: number | null;
837
837
  celebrate: number | null;
@@ -840,8 +840,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
840
840
  reposts: number | null;
841
841
  totalReactions: number | null;
842
842
  }, {
843
- support: number | null;
844
843
  like: number | null;
844
+ support: number | null;
845
845
  love: number | null;
846
846
  insight: number | null;
847
847
  celebrate: number | null;
@@ -944,15 +944,15 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
944
944
  profileUrl: z.ZodNullable<z.ZodString>;
945
945
  profilePicture: z.ZodNullable<z.ZodString>;
946
946
  }, "strip", z.ZodTypeAny, {
947
- headline: string | null;
948
947
  username: string | null;
948
+ headline: string | null;
949
949
  profileUrl: string | null;
950
950
  profilePicture: string | null;
951
951
  firstName: string | null;
952
952
  lastName: string | null;
953
953
  }, {
954
- headline: string | null;
955
954
  username: string | null;
955
+ headline: string | null;
956
956
  profileUrl: string | null;
957
957
  profilePicture: string | null;
958
958
  firstName: string | null;
@@ -969,8 +969,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
969
969
  comments: z.ZodNullable<z.ZodNumber>;
970
970
  reposts: z.ZodNullable<z.ZodNumber>;
971
971
  }, "strip", z.ZodTypeAny, {
972
- support: number | null;
973
972
  like: number | null;
973
+ support: number | null;
974
974
  love: number | null;
975
975
  insight: number | null;
976
976
  celebrate: number | null;
@@ -979,8 +979,8 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
979
979
  reposts: number | null;
980
980
  totalReactions: number | null;
981
981
  }, {
982
- support: number | null;
983
982
  like: number | null;
983
+ support: number | null;
984
984
  love: number | null;
985
985
  insight: number | null;
986
986
  celebrate: number | null;
@@ -1027,29 +1027,19 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1027
1027
  }>>;
1028
1028
  }, "strip", z.ZodTypeAny, {
1029
1029
  url: string | null;
1030
- media: {
1031
- type: string | null;
1032
- url: string | null;
1033
- images: {
1034
- url: string | null;
1035
- width: number | null;
1036
- height: number | null;
1037
- }[] | null;
1038
- thumbnail: string | null;
1039
- } | null;
1040
1030
  text: string | null;
1041
1031
  urn: string | null;
1042
1032
  author: {
1043
- headline: string | null;
1044
1033
  username: string | null;
1034
+ headline: string | null;
1045
1035
  profileUrl: string | null;
1046
1036
  profilePicture: string | null;
1047
1037
  firstName: string | null;
1048
1038
  lastName: string | null;
1049
1039
  } | null;
1050
1040
  stats: {
1051
- support: number | null;
1052
1041
  like: number | null;
1042
+ support: number | null;
1053
1043
  love: number | null;
1054
1044
  insight: number | null;
1055
1045
  celebrate: number | null;
@@ -1058,14 +1048,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1058
1048
  reposts: number | null;
1059
1049
  totalReactions: number | null;
1060
1050
  } | null;
1061
- postedAt: {
1062
- date: string | null;
1063
- timestamp: number | null;
1064
- relative: string | null;
1065
- } | null;
1066
- postType: string | null;
1067
- }, {
1068
- url: string | null;
1069
1051
  media: {
1070
1052
  type: string | null;
1071
1053
  url: string | null;
@@ -1076,19 +1058,27 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1076
1058
  }[] | null;
1077
1059
  thumbnail: string | null;
1078
1060
  } | null;
1061
+ postedAt: {
1062
+ date: string | null;
1063
+ timestamp: number | null;
1064
+ relative: string | null;
1065
+ } | null;
1066
+ postType: string | null;
1067
+ }, {
1068
+ url: string | null;
1079
1069
  text: string | null;
1080
1070
  urn: string | null;
1081
1071
  author: {
1082
- headline: string | null;
1083
1072
  username: string | null;
1073
+ headline: string | null;
1084
1074
  profileUrl: string | null;
1085
1075
  profilePicture: string | null;
1086
1076
  firstName: string | null;
1087
1077
  lastName: string | null;
1088
1078
  } | null;
1089
1079
  stats: {
1090
- support: number | null;
1091
1080
  like: number | null;
1081
+ support: number | null;
1092
1082
  love: number | null;
1093
1083
  insight: number | null;
1094
1084
  celebrate: number | null;
@@ -1097,6 +1087,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1097
1087
  reposts: number | null;
1098
1088
  totalReactions: number | null;
1099
1089
  } | null;
1090
+ media: {
1091
+ type: string | null;
1092
+ url: string | null;
1093
+ images: {
1094
+ url: string | null;
1095
+ width: number | null;
1096
+ height: number | null;
1097
+ }[] | null;
1098
+ thumbnail: string | null;
1099
+ } | null;
1100
1100
  postedAt: {
1101
1101
  date: string | null;
1102
1102
  timestamp: number | null;
@@ -1106,16 +1106,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1106
1106
  }>>;
1107
1107
  }, "strip", z.ZodTypeAny, {
1108
1108
  url: string | null;
1109
- media: {
1110
- type: string | null;
1111
- url: string | null;
1112
- images: {
1113
- url: string | null;
1114
- width: number | null;
1115
- height: number | null;
1116
- }[] | null;
1117
- thumbnail: string | null;
1118
- } | null;
1119
1109
  text: string | null;
1120
1110
  document: {
1121
1111
  title: string | null;
@@ -1125,16 +1115,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1125
1115
  } | null;
1126
1116
  urn: string | null;
1127
1117
  author: {
1128
- headline: string | null;
1129
1118
  username: string | null;
1119
+ headline: string | null;
1130
1120
  profileUrl: string | null;
1131
1121
  profilePicture: string | null;
1132
1122
  firstName: string | null;
1133
1123
  lastName: string | null;
1134
1124
  } | null;
1135
1125
  stats: {
1136
- support: number | null;
1137
1126
  like: number | null;
1127
+ support: number | null;
1138
1128
  love: number | null;
1139
1129
  insight: number | null;
1140
1130
  celebrate: number | null;
@@ -1143,6 +1133,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1143
1133
  reposts: number | null;
1144
1134
  totalReactions: number | null;
1145
1135
  } | null;
1136
+ media: {
1137
+ type: string | null;
1138
+ url: string | null;
1139
+ images: {
1140
+ url: string | null;
1141
+ width: number | null;
1142
+ height: number | null;
1143
+ }[] | null;
1144
+ thumbnail: string | null;
1145
+ } | null;
1146
1146
  article: {
1147
1147
  title: string | null;
1148
1148
  url: string | null;
@@ -1158,29 +1158,19 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1158
1158
  postType: string | null;
1159
1159
  resharedPost: {
1160
1160
  url: string | null;
1161
- media: {
1162
- type: string | null;
1163
- url: string | null;
1164
- images: {
1165
- url: string | null;
1166
- width: number | null;
1167
- height: number | null;
1168
- }[] | null;
1169
- thumbnail: string | null;
1170
- } | null;
1171
1161
  text: string | null;
1172
1162
  urn: string | null;
1173
1163
  author: {
1174
- headline: string | null;
1175
1164
  username: string | null;
1165
+ headline: string | null;
1176
1166
  profileUrl: string | null;
1177
1167
  profilePicture: string | null;
1178
1168
  firstName: string | null;
1179
1169
  lastName: string | null;
1180
1170
  } | null;
1181
1171
  stats: {
1182
- support: number | null;
1183
1172
  like: number | null;
1173
+ support: number | null;
1184
1174
  love: number | null;
1185
1175
  insight: number | null;
1186
1176
  celebrate: number | null;
@@ -1189,6 +1179,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1189
1179
  reposts: number | null;
1190
1180
  totalReactions: number | null;
1191
1181
  } | null;
1182
+ media: {
1183
+ type: string | null;
1184
+ url: string | null;
1185
+ images: {
1186
+ url: string | null;
1187
+ width: number | null;
1188
+ height: number | null;
1189
+ }[] | null;
1190
+ thumbnail: string | null;
1191
+ } | null;
1192
1192
  postedAt: {
1193
1193
  date: string | null;
1194
1194
  timestamp: number | null;
@@ -1198,16 +1198,6 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1198
1198
  } | null;
1199
1199
  }, {
1200
1200
  url: string | null;
1201
- media: {
1202
- type: string | null;
1203
- url: string | null;
1204
- images: {
1205
- url: string | null;
1206
- width: number | null;
1207
- height: number | null;
1208
- }[] | null;
1209
- thumbnail: string | null;
1210
- } | null;
1211
1201
  text: string | null;
1212
1202
  document: {
1213
1203
  title: string | null;
@@ -1217,16 +1207,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1217
1207
  } | null;
1218
1208
  urn: string | null;
1219
1209
  author: {
1220
- headline: string | null;
1221
1210
  username: string | null;
1211
+ headline: string | null;
1222
1212
  profileUrl: string | null;
1223
1213
  profilePicture: string | null;
1224
1214
  firstName: string | null;
1225
1215
  lastName: string | null;
1226
1216
  } | null;
1227
1217
  stats: {
1228
- support: number | null;
1229
1218
  like: number | null;
1219
+ support: number | null;
1230
1220
  love: number | null;
1231
1221
  insight: number | null;
1232
1222
  celebrate: number | null;
@@ -1235,6 +1225,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1235
1225
  reposts: number | null;
1236
1226
  totalReactions: number | null;
1237
1227
  } | null;
1228
+ media: {
1229
+ type: string | null;
1230
+ url: string | null;
1231
+ images: {
1232
+ url: string | null;
1233
+ width: number | null;
1234
+ height: number | null;
1235
+ }[] | null;
1236
+ thumbnail: string | null;
1237
+ } | null;
1238
1238
  article: {
1239
1239
  title: string | null;
1240
1240
  url: string | null;
@@ -1250,29 +1250,19 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1250
1250
  postType: string | null;
1251
1251
  resharedPost: {
1252
1252
  url: string | null;
1253
- media: {
1254
- type: string | null;
1255
- url: string | null;
1256
- images: {
1257
- url: string | null;
1258
- width: number | null;
1259
- height: number | null;
1260
- }[] | null;
1261
- thumbnail: string | null;
1262
- } | null;
1263
1253
  text: string | null;
1264
1254
  urn: string | null;
1265
1255
  author: {
1266
- headline: string | null;
1267
1256
  username: string | null;
1257
+ headline: string | null;
1268
1258
  profileUrl: string | null;
1269
1259
  profilePicture: string | null;
1270
1260
  firstName: string | null;
1271
1261
  lastName: string | null;
1272
1262
  } | null;
1273
1263
  stats: {
1274
- support: number | null;
1275
1264
  like: number | null;
1265
+ support: number | null;
1276
1266
  love: number | null;
1277
1267
  insight: number | null;
1278
1268
  celebrate: number | null;
@@ -1281,6 +1271,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1281
1271
  reposts: number | null;
1282
1272
  totalReactions: number | null;
1283
1273
  } | null;
1274
+ media: {
1275
+ type: string | null;
1276
+ url: string | null;
1277
+ images: {
1278
+ url: string | null;
1279
+ width: number | null;
1280
+ height: number | null;
1281
+ }[] | null;
1282
+ thumbnail: string | null;
1283
+ } | null;
1284
1284
  postedAt: {
1285
1285
  date: string | null;
1286
1286
  timestamp: number | null;
@@ -1298,21 +1298,11 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1298
1298
  success: z.ZodBoolean;
1299
1299
  error: z.ZodString;
1300
1300
  }, "strip", z.ZodTypeAny, {
1301
- operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
1302
- success: boolean;
1303
1301
  error: string;
1302
+ success: boolean;
1303
+ operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
1304
1304
  posts: {
1305
1305
  url: string | null;
1306
- media: {
1307
- type: string | null;
1308
- url: string | null;
1309
- images: {
1310
- url: string | null;
1311
- width: number | null;
1312
- height: number | null;
1313
- }[] | null;
1314
- thumbnail: string | null;
1315
- } | null;
1316
1306
  text: string | null;
1317
1307
  document: {
1318
1308
  title: string | null;
@@ -1322,16 +1312,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1322
1312
  } | null;
1323
1313
  urn: string | null;
1324
1314
  author: {
1325
- headline: string | null;
1326
1315
  username: string | null;
1316
+ headline: string | null;
1327
1317
  profileUrl: string | null;
1328
1318
  profilePicture: string | null;
1329
1319
  firstName: string | null;
1330
1320
  lastName: string | null;
1331
1321
  } | null;
1332
1322
  stats: {
1333
- support: number | null;
1334
1323
  like: number | null;
1324
+ support: number | null;
1335
1325
  love: number | null;
1336
1326
  insight: number | null;
1337
1327
  celebrate: number | null;
@@ -1340,6 +1330,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1340
1330
  reposts: number | null;
1341
1331
  totalReactions: number | null;
1342
1332
  } | null;
1333
+ media: {
1334
+ type: string | null;
1335
+ url: string | null;
1336
+ images: {
1337
+ url: string | null;
1338
+ width: number | null;
1339
+ height: number | null;
1340
+ }[] | null;
1341
+ thumbnail: string | null;
1342
+ } | null;
1343
1343
  article: {
1344
1344
  title: string | null;
1345
1345
  url: string | null;
@@ -1355,29 +1355,19 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1355
1355
  postType: string | null;
1356
1356
  resharedPost: {
1357
1357
  url: string | null;
1358
- media: {
1359
- type: string | null;
1360
- url: string | null;
1361
- images: {
1362
- url: string | null;
1363
- width: number | null;
1364
- height: number | null;
1365
- }[] | null;
1366
- thumbnail: string | null;
1367
- } | null;
1368
1358
  text: string | null;
1369
1359
  urn: string | null;
1370
1360
  author: {
1371
- headline: string | null;
1372
1361
  username: string | null;
1362
+ headline: string | null;
1373
1363
  profileUrl: string | null;
1374
1364
  profilePicture: string | null;
1375
1365
  firstName: string | null;
1376
1366
  lastName: string | null;
1377
1367
  } | null;
1378
1368
  stats: {
1379
- support: number | null;
1380
1369
  like: number | null;
1370
+ support: number | null;
1381
1371
  love: number | null;
1382
1372
  insight: number | null;
1383
1373
  celebrate: number | null;
@@ -1386,6 +1376,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1386
1376
  reposts: number | null;
1387
1377
  totalReactions: number | null;
1388
1378
  } | null;
1379
+ media: {
1380
+ type: string | null;
1381
+ url: string | null;
1382
+ images: {
1383
+ url: string | null;
1384
+ width: number | null;
1385
+ height: number | null;
1386
+ }[] | null;
1387
+ thumbnail: string | null;
1388
+ } | null;
1389
1389
  postedAt: {
1390
1390
  date: string | null;
1391
1391
  timestamp: number | null;
@@ -1402,14 +1402,7 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1402
1402
  title: string | null;
1403
1403
  url: string | null;
1404
1404
  id: string | null;
1405
- company: {
1406
- name: string | null;
1407
- url: string | null;
1408
- logo: string | null;
1409
- } | null;
1410
1405
  location: string | null;
1411
- skills: string[] | null;
1412
- seniorityLevel: string | null;
1413
1406
  postedAt: string | null;
1414
1407
  applyUrl: string | null;
1415
1408
  salary: {
@@ -1418,27 +1411,24 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1418
1411
  currency: string | null;
1419
1412
  period: string | null;
1420
1413
  } | null;
1414
+ seniorityLevel: string | null;
1421
1415
  employmentType: string | null;
1416
+ company: {
1417
+ name: string | null;
1418
+ url: string | null;
1419
+ logo: string | null;
1420
+ } | null;
1421
+ skills: string[] | null;
1422
1422
  }[] | undefined;
1423
1423
  totalResults?: number | null | undefined;
1424
1424
  paginationToken?: string | null | undefined;
1425
1425
  hasNextPage?: boolean | null | undefined;
1426
1426
  }, {
1427
- operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
1428
- success: boolean;
1429
1427
  error: string;
1428
+ success: boolean;
1429
+ operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
1430
1430
  posts: {
1431
1431
  url: string | null;
1432
- media: {
1433
- type: string | null;
1434
- url: string | null;
1435
- images: {
1436
- url: string | null;
1437
- width: number | null;
1438
- height: number | null;
1439
- }[] | null;
1440
- thumbnail: string | null;
1441
- } | null;
1442
1432
  text: string | null;
1443
1433
  document: {
1444
1434
  title: string | null;
@@ -1448,16 +1438,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1448
1438
  } | null;
1449
1439
  urn: string | null;
1450
1440
  author: {
1451
- headline: string | null;
1452
1441
  username: string | null;
1442
+ headline: string | null;
1453
1443
  profileUrl: string | null;
1454
1444
  profilePicture: string | null;
1455
1445
  firstName: string | null;
1456
1446
  lastName: string | null;
1457
1447
  } | null;
1458
1448
  stats: {
1459
- support: number | null;
1460
1449
  like: number | null;
1450
+ support: number | null;
1461
1451
  love: number | null;
1462
1452
  insight: number | null;
1463
1453
  celebrate: number | null;
@@ -1466,6 +1456,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1466
1456
  reposts: number | null;
1467
1457
  totalReactions: number | null;
1468
1458
  } | null;
1459
+ media: {
1460
+ type: string | null;
1461
+ url: string | null;
1462
+ images: {
1463
+ url: string | null;
1464
+ width: number | null;
1465
+ height: number | null;
1466
+ }[] | null;
1467
+ thumbnail: string | null;
1468
+ } | null;
1469
1469
  article: {
1470
1470
  title: string | null;
1471
1471
  url: string | null;
@@ -1481,29 +1481,19 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1481
1481
  postType: string | null;
1482
1482
  resharedPost: {
1483
1483
  url: string | null;
1484
- media: {
1485
- type: string | null;
1486
- url: string | null;
1487
- images: {
1488
- url: string | null;
1489
- width: number | null;
1490
- height: number | null;
1491
- }[] | null;
1492
- thumbnail: string | null;
1493
- } | null;
1494
1484
  text: string | null;
1495
1485
  urn: string | null;
1496
1486
  author: {
1497
- headline: string | null;
1498
1487
  username: string | null;
1488
+ headline: string | null;
1499
1489
  profileUrl: string | null;
1500
1490
  profilePicture: string | null;
1501
1491
  firstName: string | null;
1502
1492
  lastName: string | null;
1503
1493
  } | null;
1504
1494
  stats: {
1505
- support: number | null;
1506
1495
  like: number | null;
1496
+ support: number | null;
1507
1497
  love: number | null;
1508
1498
  insight: number | null;
1509
1499
  celebrate: number | null;
@@ -1512,6 +1502,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1512
1502
  reposts: number | null;
1513
1503
  totalReactions: number | null;
1514
1504
  } | null;
1505
+ media: {
1506
+ type: string | null;
1507
+ url: string | null;
1508
+ images: {
1509
+ url: string | null;
1510
+ width: number | null;
1511
+ height: number | null;
1512
+ }[] | null;
1513
+ thumbnail: string | null;
1514
+ } | null;
1515
1515
  postedAt: {
1516
1516
  date: string | null;
1517
1517
  timestamp: number | null;
@@ -1528,14 +1528,7 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1528
1528
  title: string | null;
1529
1529
  url: string | null;
1530
1530
  id: string | null;
1531
- company: {
1532
- name: string | null;
1533
- url: string | null;
1534
- logo: string | null;
1535
- } | null;
1536
1531
  location: string | null;
1537
- skills: string[] | null;
1538
- seniorityLevel: string | null;
1539
1532
  postedAt: string | null;
1540
1533
  applyUrl: string | null;
1541
1534
  salary: {
@@ -1544,9 +1537,16 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
1544
1537
  currency: string | null;
1545
1538
  period: string | null;
1546
1539
  } | null;
1540
+ seniorityLevel: string | null;
1547
1541
  employmentType: string | null;
1548
- }[] | undefined;
1549
- totalResults?: number | null | undefined;
1542
+ company: {
1543
+ name: string | null;
1544
+ url: string | null;
1545
+ logo: string | null;
1546
+ } | null;
1547
+ skills: string[] | null;
1548
+ }[] | undefined;
1549
+ totalResults?: number | null | undefined;
1550
1550
  paginationToken?: string | null | undefined;
1551
1551
  hasNextPage?: boolean | null | undefined;
1552
1552
  }>;
@@ -1589,11 +1589,11 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1589
1589
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
1590
1590
  }, "strip", z.ZodTypeAny, {
1591
1591
  operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
1592
- limit?: number | undefined;
1593
1592
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1594
- location?: string | undefined;
1595
1593
  username?: string | undefined;
1594
+ limit?: number | undefined;
1596
1595
  pageNumber?: number | undefined;
1596
+ location?: string | undefined;
1597
1597
  keyword?: string | undefined;
1598
1598
  dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
1599
1599
  jobType?: ("full-time" | "part-time" | "contract" | "temporary" | "internship")[] | undefined;
@@ -1602,11 +1602,11 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1602
1602
  sortBy?: "relevance" | "date_posted" | undefined;
1603
1603
  }, {
1604
1604
  operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
1605
- limit?: number | undefined;
1606
1605
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1607
- location?: string | undefined;
1608
1606
  username?: string | undefined;
1607
+ limit?: number | undefined;
1609
1608
  pageNumber?: number | undefined;
1609
+ location?: string | undefined;
1610
1610
  keyword?: string | undefined;
1611
1611
  dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
1612
1612
  jobType?: ("full-time" | "part-time" | "contract" | "temporary" | "internship")[] | undefined;
@@ -1661,14 +1661,7 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1661
1661
  title: string | null;
1662
1662
  url: string | null;
1663
1663
  id: string | null;
1664
- company: {
1665
- name: string | null;
1666
- url: string | null;
1667
- logo: string | null;
1668
- } | null;
1669
1664
  location: string | null;
1670
- skills: string[] | null;
1671
- seniorityLevel: string | null;
1672
1665
  postedAt: string | null;
1673
1666
  applyUrl: string | null;
1674
1667
  salary: {
@@ -1677,20 +1670,20 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1677
1670
  currency: string | null;
1678
1671
  period: string | null;
1679
1672
  } | null;
1673
+ seniorityLevel: string | null;
1680
1674
  employmentType: string | null;
1681
- }, {
1682
- description: string | null;
1683
- title: string | null;
1684
- url: string | null;
1685
- id: string | null;
1686
1675
  company: {
1687
1676
  name: string | null;
1688
1677
  url: string | null;
1689
1678
  logo: string | null;
1690
1679
  } | null;
1691
- location: string | null;
1692
1680
  skills: string[] | null;
1693
- seniorityLevel: string | null;
1681
+ }, {
1682
+ description: string | null;
1683
+ title: string | null;
1684
+ url: string | null;
1685
+ id: string | null;
1686
+ location: string | null;
1694
1687
  postedAt: string | null;
1695
1688
  applyUrl: string | null;
1696
1689
  salary: {
@@ -1699,7 +1692,14 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1699
1692
  currency: string | null;
1700
1693
  period: string | null;
1701
1694
  } | null;
1695
+ seniorityLevel: string | null;
1702
1696
  employmentType: string | null;
1697
+ company: {
1698
+ name: string | null;
1699
+ url: string | null;
1700
+ logo: string | null;
1701
+ } | null;
1702
+ skills: string[] | null;
1703
1703
  }>, "many">>;
1704
1704
  posts: z.ZodArray<z.ZodObject<{
1705
1705
  urn: z.ZodNullable<z.ZodString>;
@@ -1728,15 +1728,15 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1728
1728
  profileUrl: z.ZodNullable<z.ZodString>;
1729
1729
  profilePicture: z.ZodNullable<z.ZodString>;
1730
1730
  }, "strip", z.ZodTypeAny, {
1731
- headline: string | null;
1732
1731
  username: string | null;
1732
+ headline: string | null;
1733
1733
  profileUrl: string | null;
1734
1734
  profilePicture: string | null;
1735
1735
  firstName: string | null;
1736
1736
  lastName: string | null;
1737
1737
  }, {
1738
- headline: string | null;
1739
1738
  username: string | null;
1739
+ headline: string | null;
1740
1740
  profileUrl: string | null;
1741
1741
  profilePicture: string | null;
1742
1742
  firstName: string | null;
@@ -1753,8 +1753,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1753
1753
  comments: z.ZodNullable<z.ZodNumber>;
1754
1754
  reposts: z.ZodNullable<z.ZodNumber>;
1755
1755
  }, "strip", z.ZodTypeAny, {
1756
- support: number | null;
1757
1756
  like: number | null;
1757
+ support: number | null;
1758
1758
  love: number | null;
1759
1759
  insight: number | null;
1760
1760
  celebrate: number | null;
@@ -1763,8 +1763,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1763
1763
  reposts: number | null;
1764
1764
  totalReactions: number | null;
1765
1765
  }, {
1766
- support: number | null;
1767
1766
  like: number | null;
1767
+ support: number | null;
1768
1768
  love: number | null;
1769
1769
  insight: number | null;
1770
1770
  celebrate: number | null;
@@ -1867,15 +1867,15 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1867
1867
  profileUrl: z.ZodNullable<z.ZodString>;
1868
1868
  profilePicture: z.ZodNullable<z.ZodString>;
1869
1869
  }, "strip", z.ZodTypeAny, {
1870
- headline: string | null;
1871
1870
  username: string | null;
1871
+ headline: string | null;
1872
1872
  profileUrl: string | null;
1873
1873
  profilePicture: string | null;
1874
1874
  firstName: string | null;
1875
1875
  lastName: string | null;
1876
1876
  }, {
1877
- headline: string | null;
1878
1877
  username: string | null;
1878
+ headline: string | null;
1879
1879
  profileUrl: string | null;
1880
1880
  profilePicture: string | null;
1881
1881
  firstName: string | null;
@@ -1892,8 +1892,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1892
1892
  comments: z.ZodNullable<z.ZodNumber>;
1893
1893
  reposts: z.ZodNullable<z.ZodNumber>;
1894
1894
  }, "strip", z.ZodTypeAny, {
1895
- support: number | null;
1896
1895
  like: number | null;
1896
+ support: number | null;
1897
1897
  love: number | null;
1898
1898
  insight: number | null;
1899
1899
  celebrate: number | null;
@@ -1902,8 +1902,8 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1902
1902
  reposts: number | null;
1903
1903
  totalReactions: number | null;
1904
1904
  }, {
1905
- support: number | null;
1906
1905
  like: number | null;
1906
+ support: number | null;
1907
1907
  love: number | null;
1908
1908
  insight: number | null;
1909
1909
  celebrate: number | null;
@@ -1950,29 +1950,19 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1950
1950
  }>>;
1951
1951
  }, "strip", z.ZodTypeAny, {
1952
1952
  url: string | null;
1953
- media: {
1954
- type: string | null;
1955
- url: string | null;
1956
- images: {
1957
- url: string | null;
1958
- width: number | null;
1959
- height: number | null;
1960
- }[] | null;
1961
- thumbnail: string | null;
1962
- } | null;
1963
1953
  text: string | null;
1964
1954
  urn: string | null;
1965
1955
  author: {
1966
- headline: string | null;
1967
1956
  username: string | null;
1957
+ headline: string | null;
1968
1958
  profileUrl: string | null;
1969
1959
  profilePicture: string | null;
1970
1960
  firstName: string | null;
1971
1961
  lastName: string | null;
1972
1962
  } | null;
1973
1963
  stats: {
1974
- support: number | null;
1975
1964
  like: number | null;
1965
+ support: number | null;
1976
1966
  love: number | null;
1977
1967
  insight: number | null;
1978
1968
  celebrate: number | null;
@@ -1981,14 +1971,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1981
1971
  reposts: number | null;
1982
1972
  totalReactions: number | null;
1983
1973
  } | null;
1984
- postedAt: {
1985
- date: string | null;
1986
- timestamp: number | null;
1987
- relative: string | null;
1988
- } | null;
1989
- postType: string | null;
1990
- }, {
1991
- url: string | null;
1992
1974
  media: {
1993
1975
  type: string | null;
1994
1976
  url: string | null;
@@ -1999,19 +1981,27 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
1999
1981
  }[] | null;
2000
1982
  thumbnail: string | null;
2001
1983
  } | null;
1984
+ postedAt: {
1985
+ date: string | null;
1986
+ timestamp: number | null;
1987
+ relative: string | null;
1988
+ } | null;
1989
+ postType: string | null;
1990
+ }, {
1991
+ url: string | null;
2002
1992
  text: string | null;
2003
1993
  urn: string | null;
2004
1994
  author: {
2005
- headline: string | null;
2006
1995
  username: string | null;
1996
+ headline: string | null;
2007
1997
  profileUrl: string | null;
2008
1998
  profilePicture: string | null;
2009
1999
  firstName: string | null;
2010
2000
  lastName: string | null;
2011
2001
  } | null;
2012
2002
  stats: {
2013
- support: number | null;
2014
2003
  like: number | null;
2004
+ support: number | null;
2015
2005
  love: number | null;
2016
2006
  insight: number | null;
2017
2007
  celebrate: number | null;
@@ -2020,6 +2010,16 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2020
2010
  reposts: number | null;
2021
2011
  totalReactions: number | null;
2022
2012
  } | null;
2013
+ media: {
2014
+ type: string | null;
2015
+ url: string | null;
2016
+ images: {
2017
+ url: string | null;
2018
+ width: number | null;
2019
+ height: number | null;
2020
+ }[] | null;
2021
+ thumbnail: string | null;
2022
+ } | null;
2023
2023
  postedAt: {
2024
2024
  date: string | null;
2025
2025
  timestamp: number | null;
@@ -2029,16 +2029,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2029
2029
  }>>;
2030
2030
  }, "strip", z.ZodTypeAny, {
2031
2031
  url: string | null;
2032
- media: {
2033
- type: string | null;
2034
- url: string | null;
2035
- images: {
2036
- url: string | null;
2037
- width: number | null;
2038
- height: number | null;
2039
- }[] | null;
2040
- thumbnail: string | null;
2041
- } | null;
2042
2032
  text: string | null;
2043
2033
  document: {
2044
2034
  title: string | null;
@@ -2048,16 +2038,16 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2048
2038
  } | null;
2049
2039
  urn: string | null;
2050
2040
  author: {
2051
- headline: string | null;
2052
2041
  username: string | null;
2042
+ headline: string | null;
2053
2043
  profileUrl: string | null;
2054
2044
  profilePicture: string | null;
2055
2045
  firstName: string | null;
2056
2046
  lastName: string | null;
2057
2047
  } | null;
2058
2048
  stats: {
2059
- support: number | null;
2060
2049
  like: number | null;
2050
+ support: number | null;
2061
2051
  love: number | null;
2062
2052
  insight: number | null;
2063
2053
  celebrate: number | null;
@@ -2066,6 +2056,16 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2066
2056
  reposts: number | null;
2067
2057
  totalReactions: number | null;
2068
2058
  } | null;
2059
+ media: {
2060
+ type: string | null;
2061
+ url: string | null;
2062
+ images: {
2063
+ url: string | null;
2064
+ width: number | null;
2065
+ height: number | null;
2066
+ }[] | null;
2067
+ thumbnail: string | null;
2068
+ } | null;
2069
2069
  article: {
2070
2070
  title: string | null;
2071
2071
  url: string | null;
@@ -2081,29 +2081,19 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2081
2081
  postType: string | null;
2082
2082
  resharedPost: {
2083
2083
  url: string | null;
2084
- media: {
2085
- type: string | null;
2086
- url: string | null;
2087
- images: {
2088
- url: string | null;
2089
- width: number | null;
2090
- height: number | null;
2091
- }[] | null;
2092
- thumbnail: string | null;
2093
- } | null;
2094
2084
  text: string | null;
2095
2085
  urn: string | null;
2096
2086
  author: {
2097
- headline: string | null;
2098
2087
  username: string | null;
2088
+ headline: string | null;
2099
2089
  profileUrl: string | null;
2100
2090
  profilePicture: string | null;
2101
2091
  firstName: string | null;
2102
2092
  lastName: string | null;
2103
2093
  } | null;
2104
2094
  stats: {
2105
- support: number | null;
2106
2095
  like: number | null;
2096
+ support: number | null;
2107
2097
  love: number | null;
2108
2098
  insight: number | null;
2109
2099
  celebrate: number | null;
@@ -2112,6 +2102,16 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2112
2102
  reposts: number | null;
2113
2103
  totalReactions: number | null;
2114
2104
  } | null;
2105
+ media: {
2106
+ type: string | null;
2107
+ url: string | null;
2108
+ images: {
2109
+ url: string | null;
2110
+ width: number | null;
2111
+ height: number | null;
2112
+ }[] | null;
2113
+ thumbnail: string | null;
2114
+ } | null;
2115
2115
  postedAt: {
2116
2116
  date: string | null;
2117
2117
  timestamp: number | null;
@@ -2121,16 +2121,6 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2121
2121
  } | null;
2122
2122
  }, {
2123
2123
  url: string | null;
2124
- media: {
2125
- type: string | null;
2126
- url: string | null;
2127
- images: {
2128
- url: string | null;
2129
- width: number | null;
2130
- height: number | null;
2131
- }[] | null;
2132
- thumbnail: string | null;
2133
- } | null;
2134
2124
  text: string | null;
2135
2125
  document: {
2136
2126
  title: string | null;
@@ -2140,16 +2130,16 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2140
2130
  } | null;
2141
2131
  urn: string | null;
2142
2132
  author: {
2143
- headline: string | null;
2144
2133
  username: string | null;
2134
+ headline: string | null;
2145
2135
  profileUrl: string | null;
2146
2136
  profilePicture: string | null;
2147
2137
  firstName: string | null;
2148
2138
  lastName: string | null;
2149
2139
  } | null;
2150
2140
  stats: {
2151
- support: number | null;
2152
2141
  like: number | null;
2142
+ support: number | null;
2153
2143
  love: number | null;
2154
2144
  insight: number | null;
2155
2145
  celebrate: number | null;
@@ -2158,6 +2148,16 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2158
2148
  reposts: number | null;
2159
2149
  totalReactions: number | null;
2160
2150
  } | null;
2151
+ media: {
2152
+ type: string | null;
2153
+ url: string | null;
2154
+ images: {
2155
+ url: string | null;
2156
+ width: number | null;
2157
+ height: number | null;
2158
+ }[] | null;
2159
+ thumbnail: string | null;
2160
+ } | null;
2161
2161
  article: {
2162
2162
  title: string | null;
2163
2163
  url: string | null;
@@ -2173,29 +2173,19 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2173
2173
  postType: string | null;
2174
2174
  resharedPost: {
2175
2175
  url: string | null;
2176
- media: {
2177
- type: string | null;
2178
- url: string | null;
2179
- images: {
2180
- url: string | null;
2181
- width: number | null;
2182
- height: number | null;
2183
- }[] | null;
2184
- thumbnail: string | null;
2185
- } | null;
2186
2176
  text: string | null;
2187
2177
  urn: string | null;
2188
2178
  author: {
2189
- headline: string | null;
2190
2179
  username: string | null;
2180
+ headline: string | null;
2191
2181
  profileUrl: string | null;
2192
2182
  profilePicture: string | null;
2193
2183
  firstName: string | null;
2194
2184
  lastName: string | null;
2195
2185
  } | null;
2196
2186
  stats: {
2197
- support: number | null;
2198
2187
  like: number | null;
2188
+ support: number | null;
2199
2189
  love: number | null;
2200
2190
  insight: number | null;
2201
2191
  celebrate: number | null;
@@ -2204,6 +2194,16 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2204
2194
  reposts: number | null;
2205
2195
  totalReactions: number | null;
2206
2196
  } | null;
2197
+ media: {
2198
+ type: string | null;
2199
+ url: string | null;
2200
+ images: {
2201
+ url: string | null;
2202
+ width: number | null;
2203
+ height: number | null;
2204
+ }[] | null;
2205
+ thumbnail: string | null;
2206
+ } | null;
2207
2207
  postedAt: {
2208
2208
  date: string | null;
2209
2209
  timestamp: number | null;
@@ -2221,21 +2221,11 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2221
2221
  success: z.ZodBoolean;
2222
2222
  error: z.ZodString;
2223
2223
  }, "strip", z.ZodTypeAny, {
2224
- operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
2225
- success: boolean;
2226
2224
  error: string;
2225
+ success: boolean;
2226
+ operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
2227
2227
  posts: {
2228
2228
  url: string | null;
2229
- media: {
2230
- type: string | null;
2231
- url: string | null;
2232
- images: {
2233
- url: string | null;
2234
- width: number | null;
2235
- height: number | null;
2236
- }[] | null;
2237
- thumbnail: string | null;
2238
- } | null;
2239
2229
  text: string | null;
2240
2230
  document: {
2241
2231
  title: string | null;
@@ -2245,16 +2235,16 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2245
2235
  } | null;
2246
2236
  urn: string | null;
2247
2237
  author: {
2248
- headline: string | null;
2249
2238
  username: string | null;
2239
+ headline: string | null;
2250
2240
  profileUrl: string | null;
2251
2241
  profilePicture: string | null;
2252
2242
  firstName: string | null;
2253
2243
  lastName: string | null;
2254
2244
  } | null;
2255
2245
  stats: {
2256
- support: number | null;
2257
2246
  like: number | null;
2247
+ support: number | null;
2258
2248
  love: number | null;
2259
2249
  insight: number | null;
2260
2250
  celebrate: number | null;
@@ -2263,6 +2253,16 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2263
2253
  reposts: number | null;
2264
2254
  totalReactions: number | null;
2265
2255
  } | null;
2256
+ media: {
2257
+ type: string | null;
2258
+ url: string | null;
2259
+ images: {
2260
+ url: string | null;
2261
+ width: number | null;
2262
+ height: number | null;
2263
+ }[] | null;
2264
+ thumbnail: string | null;
2265
+ } | null;
2266
2266
  article: {
2267
2267
  title: string | null;
2268
2268
  url: string | null;
@@ -2278,29 +2278,19 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2278
2278
  postType: string | null;
2279
2279
  resharedPost: {
2280
2280
  url: string | null;
2281
- media: {
2282
- type: string | null;
2283
- url: string | null;
2284
- images: {
2285
- url: string | null;
2286
- width: number | null;
2287
- height: number | null;
2288
- }[] | null;
2289
- thumbnail: string | null;
2290
- } | null;
2291
2281
  text: string | null;
2292
2282
  urn: string | null;
2293
2283
  author: {
2294
- headline: string | null;
2295
2284
  username: string | null;
2285
+ headline: string | null;
2296
2286
  profileUrl: string | null;
2297
2287
  profilePicture: string | null;
2298
2288
  firstName: string | null;
2299
2289
  lastName: string | null;
2300
2290
  } | null;
2301
2291
  stats: {
2302
- support: number | null;
2303
2292
  like: number | null;
2293
+ support: number | null;
2304
2294
  love: number | null;
2305
2295
  insight: number | null;
2306
2296
  celebrate: number | null;
@@ -2309,6 +2299,16 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2309
2299
  reposts: number | null;
2310
2300
  totalReactions: number | null;
2311
2301
  } | null;
2302
+ media: {
2303
+ type: string | null;
2304
+ url: string | null;
2305
+ images: {
2306
+ url: string | null;
2307
+ width: number | null;
2308
+ height: number | null;
2309
+ }[] | null;
2310
+ thumbnail: string | null;
2311
+ } | null;
2312
2312
  postedAt: {
2313
2313
  date: string | null;
2314
2314
  timestamp: number | null;
@@ -2325,14 +2325,7 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2325
2325
  title: string | null;
2326
2326
  url: string | null;
2327
2327
  id: string | null;
2328
- company: {
2329
- name: string | null;
2330
- url: string | null;
2331
- logo: string | null;
2332
- } | null;
2333
2328
  location: string | null;
2334
- skills: string[] | null;
2335
- seniorityLevel: string | null;
2336
2329
  postedAt: string | null;
2337
2330
  applyUrl: string | null;
2338
2331
  salary: {
@@ -2341,27 +2334,24 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2341
2334
  currency: string | null;
2342
2335
  period: string | null;
2343
2336
  } | null;
2337
+ seniorityLevel: string | null;
2344
2338
  employmentType: string | null;
2339
+ company: {
2340
+ name: string | null;
2341
+ url: string | null;
2342
+ logo: string | null;
2343
+ } | null;
2344
+ skills: string[] | null;
2345
2345
  }[] | undefined;
2346
2346
  totalResults?: number | null | undefined;
2347
2347
  paginationToken?: string | null | undefined;
2348
2348
  hasNextPage?: boolean | null | undefined;
2349
2349
  }, {
2350
- operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
2351
- success: boolean;
2352
2350
  error: string;
2351
+ success: boolean;
2352
+ operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
2353
2353
  posts: {
2354
2354
  url: string | null;
2355
- media: {
2356
- type: string | null;
2357
- url: string | null;
2358
- images: {
2359
- url: string | null;
2360
- width: number | null;
2361
- height: number | null;
2362
- }[] | null;
2363
- thumbnail: string | null;
2364
- } | null;
2365
2355
  text: string | null;
2366
2356
  document: {
2367
2357
  title: string | null;
@@ -2371,16 +2361,16 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2371
2361
  } | null;
2372
2362
  urn: string | null;
2373
2363
  author: {
2374
- headline: string | null;
2375
2364
  username: string | null;
2365
+ headline: string | null;
2376
2366
  profileUrl: string | null;
2377
2367
  profilePicture: string | null;
2378
2368
  firstName: string | null;
2379
2369
  lastName: string | null;
2380
2370
  } | null;
2381
2371
  stats: {
2382
- support: number | null;
2383
2372
  like: number | null;
2373
+ support: number | null;
2384
2374
  love: number | null;
2385
2375
  insight: number | null;
2386
2376
  celebrate: number | null;
@@ -2389,6 +2379,16 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2389
2379
  reposts: number | null;
2390
2380
  totalReactions: number | null;
2391
2381
  } | null;
2382
+ media: {
2383
+ type: string | null;
2384
+ url: string | null;
2385
+ images: {
2386
+ url: string | null;
2387
+ width: number | null;
2388
+ height: number | null;
2389
+ }[] | null;
2390
+ thumbnail: string | null;
2391
+ } | null;
2392
2392
  article: {
2393
2393
  title: string | null;
2394
2394
  url: string | null;
@@ -2404,29 +2404,19 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2404
2404
  postType: string | null;
2405
2405
  resharedPost: {
2406
2406
  url: string | null;
2407
- media: {
2408
- type: string | null;
2409
- url: string | null;
2410
- images: {
2411
- url: string | null;
2412
- width: number | null;
2413
- height: number | null;
2414
- }[] | null;
2415
- thumbnail: string | null;
2416
- } | null;
2417
2407
  text: string | null;
2418
2408
  urn: string | null;
2419
2409
  author: {
2420
- headline: string | null;
2421
2410
  username: string | null;
2411
+ headline: string | null;
2422
2412
  profileUrl: string | null;
2423
2413
  profilePicture: string | null;
2424
2414
  firstName: string | null;
2425
2415
  lastName: string | null;
2426
2416
  } | null;
2427
2417
  stats: {
2428
- support: number | null;
2429
2418
  like: number | null;
2419
+ support: number | null;
2430
2420
  love: number | null;
2431
2421
  insight: number | null;
2432
2422
  celebrate: number | null;
@@ -2435,6 +2425,16 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2435
2425
  reposts: number | null;
2436
2426
  totalReactions: number | null;
2437
2427
  } | null;
2428
+ media: {
2429
+ type: string | null;
2430
+ url: string | null;
2431
+ images: {
2432
+ url: string | null;
2433
+ width: number | null;
2434
+ height: number | null;
2435
+ }[] | null;
2436
+ thumbnail: string | null;
2437
+ } | null;
2438
2438
  postedAt: {
2439
2439
  date: string | null;
2440
2440
  timestamp: number | null;
@@ -2451,14 +2451,7 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2451
2451
  title: string | null;
2452
2452
  url: string | null;
2453
2453
  id: string | null;
2454
- company: {
2455
- name: string | null;
2456
- url: string | null;
2457
- logo: string | null;
2458
- } | null;
2459
2454
  location: string | null;
2460
- skills: string[] | null;
2461
- seniorityLevel: string | null;
2462
2455
  postedAt: string | null;
2463
2456
  applyUrl: string | null;
2464
2457
  salary: {
@@ -2467,7 +2460,14 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
2467
2460
  currency: string | null;
2468
2461
  period: string | null;
2469
2462
  } | null;
2463
+ seniorityLevel: string | null;
2470
2464
  employmentType: string | null;
2465
+ company: {
2466
+ name: string | null;
2467
+ url: string | null;
2468
+ logo: string | null;
2469
+ } | null;
2470
+ skills: string[] | null;
2471
2471
  }[] | undefined;
2472
2472
  totalResults?: number | null | undefined;
2473
2473
  paginationToken?: string | null | undefined;