@bubblelab/bubble-core 0.1.137 → 0.1.138
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.
- package/dist/bubble-bundle.d.ts +34 -34
- package/dist/bubbles/service-bubble/apify/actors/google-maps-scraper.d.ts +6 -6
- package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.d.ts +806 -0
- package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.d.ts.map +1 -0
- package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.js +256 -0
- package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.js.map +1 -0
- package/dist/bubbles/service-bubble/apify/apify-scraper.schema.d.ts +813 -6
- package/dist/bubbles/service-bubble/apify/apify-scraper.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/apify/apify-scraper.schema.js +8 -0
- package/dist/bubbles/service-bubble/apify/apify-scraper.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/apify/apify.d.ts +1 -1
- package/dist/bubbles/service-bubble/apify/apify.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/apify/apify.js +1 -0
- package/dist/bubbles/service-bubble/apify/apify.js.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +4 -4
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +6 -6
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +6 -6
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/firecrawl.d.ts +16 -16
- package/dist/bubbles/service-bubble/followupboss.d.ts +8 -8
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +28 -28
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +62 -62
- package/dist/bubbles/service-bubble/jira/jira.d.ts +2 -2
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +2 -2
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +54 -54
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +1579 -141
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/linkedin-tool.js +300 -56
- package/dist/bubbles/tool-bubble/linkedin-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +74 -74
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +10 -10
- package/dist/bubbles.json +481 -6
- package/package.json +2 -2
|
@@ -12,17 +12,17 @@ declare const LinkedInAuthorSchema: z.ZodObject<{
|
|
|
12
12
|
}, "strip", z.ZodTypeAny, {
|
|
13
13
|
username: string | null;
|
|
14
14
|
headline: string | null;
|
|
15
|
-
profileUrl: string | null;
|
|
16
|
-
profilePicture: string | null;
|
|
17
15
|
firstName: string | null;
|
|
18
16
|
lastName: string | null;
|
|
17
|
+
profileUrl: string | null;
|
|
18
|
+
profilePicture: string | null;
|
|
19
19
|
}, {
|
|
20
20
|
username: string | null;
|
|
21
21
|
headline: string | null;
|
|
22
|
-
profileUrl: string | null;
|
|
23
|
-
profilePicture: string | null;
|
|
24
22
|
firstName: string | null;
|
|
25
23
|
lastName: string | null;
|
|
24
|
+
profileUrl: string | null;
|
|
25
|
+
profilePicture: string | null;
|
|
26
26
|
}>;
|
|
27
27
|
declare const LinkedInStatsSchema: z.ZodObject<{
|
|
28
28
|
totalReactions: z.ZodNullable<z.ZodNumber>;
|
|
@@ -84,17 +84,17 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
84
84
|
}, "strip", z.ZodTypeAny, {
|
|
85
85
|
username: string | null;
|
|
86
86
|
headline: string | null;
|
|
87
|
-
profileUrl: string | null;
|
|
88
|
-
profilePicture: string | null;
|
|
89
87
|
firstName: string | null;
|
|
90
88
|
lastName: string | null;
|
|
89
|
+
profileUrl: string | null;
|
|
90
|
+
profilePicture: string | null;
|
|
91
91
|
}, {
|
|
92
92
|
username: string | null;
|
|
93
93
|
headline: string | null;
|
|
94
|
-
profileUrl: string | null;
|
|
95
|
-
profilePicture: string | null;
|
|
96
94
|
firstName: string | null;
|
|
97
95
|
lastName: string | null;
|
|
96
|
+
profileUrl: string | null;
|
|
97
|
+
profilePicture: string | null;
|
|
98
98
|
}>>;
|
|
99
99
|
stats: z.ZodNullable<z.ZodObject<{
|
|
100
100
|
totalReactions: z.ZodNullable<z.ZodNumber>;
|
|
@@ -223,17 +223,17 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
223
223
|
}, "strip", z.ZodTypeAny, {
|
|
224
224
|
username: string | null;
|
|
225
225
|
headline: string | null;
|
|
226
|
-
profileUrl: string | null;
|
|
227
|
-
profilePicture: string | null;
|
|
228
226
|
firstName: string | null;
|
|
229
227
|
lastName: string | null;
|
|
228
|
+
profileUrl: string | null;
|
|
229
|
+
profilePicture: string | null;
|
|
230
230
|
}, {
|
|
231
231
|
username: string | null;
|
|
232
232
|
headline: string | null;
|
|
233
|
-
profileUrl: string | null;
|
|
234
|
-
profilePicture: string | null;
|
|
235
233
|
firstName: string | null;
|
|
236
234
|
lastName: string | null;
|
|
235
|
+
profileUrl: string | null;
|
|
236
|
+
profilePicture: string | null;
|
|
237
237
|
}>>;
|
|
238
238
|
stats: z.ZodNullable<z.ZodObject<{
|
|
239
239
|
totalReactions: z.ZodNullable<z.ZodNumber>;
|
|
@@ -320,10 +320,10 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
320
320
|
author: {
|
|
321
321
|
username: string | null;
|
|
322
322
|
headline: string | null;
|
|
323
|
-
profileUrl: string | null;
|
|
324
|
-
profilePicture: string | null;
|
|
325
323
|
firstName: string | null;
|
|
326
324
|
lastName: string | null;
|
|
325
|
+
profileUrl: string | null;
|
|
326
|
+
profilePicture: string | null;
|
|
327
327
|
} | null;
|
|
328
328
|
media: {
|
|
329
329
|
type: string | null;
|
|
@@ -359,10 +359,10 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
359
359
|
author: {
|
|
360
360
|
username: string | null;
|
|
361
361
|
headline: string | null;
|
|
362
|
-
profileUrl: string | null;
|
|
363
|
-
profilePicture: string | null;
|
|
364
362
|
firstName: string | null;
|
|
365
363
|
lastName: string | null;
|
|
364
|
+
profileUrl: string | null;
|
|
365
|
+
profilePicture: string | null;
|
|
366
366
|
} | null;
|
|
367
367
|
media: {
|
|
368
368
|
type: string | null;
|
|
@@ -405,10 +405,10 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
405
405
|
author: {
|
|
406
406
|
username: string | null;
|
|
407
407
|
headline: string | null;
|
|
408
|
-
profileUrl: string | null;
|
|
409
|
-
profilePicture: string | null;
|
|
410
408
|
firstName: string | null;
|
|
411
409
|
lastName: string | null;
|
|
410
|
+
profileUrl: string | null;
|
|
411
|
+
profilePicture: string | null;
|
|
412
412
|
} | null;
|
|
413
413
|
media: {
|
|
414
414
|
type: string | null;
|
|
@@ -451,10 +451,10 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
451
451
|
author: {
|
|
452
452
|
username: string | null;
|
|
453
453
|
headline: string | null;
|
|
454
|
-
profileUrl: string | null;
|
|
455
|
-
profilePicture: string | null;
|
|
456
454
|
firstName: string | null;
|
|
457
455
|
lastName: string | null;
|
|
456
|
+
profileUrl: string | null;
|
|
457
|
+
profilePicture: string | null;
|
|
458
458
|
} | null;
|
|
459
459
|
media: {
|
|
460
460
|
type: string | null;
|
|
@@ -497,10 +497,10 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
497
497
|
author: {
|
|
498
498
|
username: string | null;
|
|
499
499
|
headline: string | null;
|
|
500
|
-
profileUrl: string | null;
|
|
501
|
-
profilePicture: string | null;
|
|
502
500
|
firstName: string | null;
|
|
503
501
|
lastName: string | null;
|
|
502
|
+
profileUrl: string | null;
|
|
503
|
+
profilePicture: string | null;
|
|
504
504
|
} | null;
|
|
505
505
|
media: {
|
|
506
506
|
type: string | null;
|
|
@@ -543,10 +543,10 @@ declare const LinkedInPostSchema: z.ZodObject<{
|
|
|
543
543
|
author: {
|
|
544
544
|
username: string | null;
|
|
545
545
|
headline: string | null;
|
|
546
|
-
profileUrl: string | null;
|
|
547
|
-
profilePicture: string | null;
|
|
548
546
|
firstName: string | null;
|
|
549
547
|
lastName: string | null;
|
|
548
|
+
profileUrl: string | null;
|
|
549
|
+
profilePicture: string | null;
|
|
550
550
|
} | null;
|
|
551
551
|
media: {
|
|
552
552
|
type: string | null;
|
|
@@ -597,13 +597,13 @@ declare const LinkedInJobSchema: z.ZodObject<{
|
|
|
597
597
|
}, "strip", z.ZodTypeAny, {
|
|
598
598
|
from: number | null;
|
|
599
599
|
to: number | null;
|
|
600
|
-
currency: string | null;
|
|
601
600
|
period: string | null;
|
|
601
|
+
currency: string | null;
|
|
602
602
|
}, {
|
|
603
603
|
from: number | null;
|
|
604
604
|
to: number | null;
|
|
605
|
-
currency: string | null;
|
|
606
605
|
period: string | null;
|
|
606
|
+
currency: string | null;
|
|
607
607
|
}>>;
|
|
608
608
|
skills: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
609
609
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -617,17 +617,17 @@ declare const LinkedInJobSchema: z.ZodObject<{
|
|
|
617
617
|
salary: {
|
|
618
618
|
from: number | null;
|
|
619
619
|
to: number | null;
|
|
620
|
-
currency: string | null;
|
|
621
620
|
period: string | null;
|
|
621
|
+
currency: string | null;
|
|
622
622
|
} | null;
|
|
623
623
|
seniorityLevel: string | null;
|
|
624
624
|
employmentType: string | null;
|
|
625
|
+
skills: string[] | null;
|
|
625
626
|
company: {
|
|
626
627
|
name: string | null;
|
|
627
628
|
url: string | null;
|
|
628
629
|
logo: string | null;
|
|
629
630
|
} | null;
|
|
630
|
-
skills: string[] | null;
|
|
631
631
|
}, {
|
|
632
632
|
description: string | null;
|
|
633
633
|
title: string | null;
|
|
@@ -639,20 +639,391 @@ declare const LinkedInJobSchema: z.ZodObject<{
|
|
|
639
639
|
salary: {
|
|
640
640
|
from: number | null;
|
|
641
641
|
to: number | null;
|
|
642
|
-
currency: string | null;
|
|
643
642
|
period: string | null;
|
|
643
|
+
currency: string | null;
|
|
644
644
|
} | null;
|
|
645
645
|
seniorityLevel: string | null;
|
|
646
646
|
employmentType: string | null;
|
|
647
|
+
skills: string[] | null;
|
|
647
648
|
company: {
|
|
648
649
|
name: string | null;
|
|
649
650
|
url: string | null;
|
|
650
651
|
logo: string | null;
|
|
651
652
|
} | null;
|
|
652
|
-
|
|
653
|
+
}>;
|
|
654
|
+
declare const LinkedInProfileSchema: z.ZodObject<{
|
|
655
|
+
id: z.ZodNullable<z.ZodString>;
|
|
656
|
+
publicIdentifier: z.ZodNullable<z.ZodString>;
|
|
657
|
+
linkedinUrl: z.ZodNullable<z.ZodString>;
|
|
658
|
+
firstName: z.ZodNullable<z.ZodString>;
|
|
659
|
+
lastName: z.ZodNullable<z.ZodString>;
|
|
660
|
+
headline: z.ZodNullable<z.ZodString>;
|
|
661
|
+
about: z.ZodNullable<z.ZodString>;
|
|
662
|
+
openToWork: z.ZodNullable<z.ZodBoolean>;
|
|
663
|
+
hiring: z.ZodNullable<z.ZodBoolean>;
|
|
664
|
+
photo: z.ZodNullable<z.ZodString>;
|
|
665
|
+
premium: z.ZodNullable<z.ZodBoolean>;
|
|
666
|
+
influencer: z.ZodNullable<z.ZodBoolean>;
|
|
667
|
+
location: z.ZodNullable<z.ZodObject<{
|
|
668
|
+
text: z.ZodNullable<z.ZodString>;
|
|
669
|
+
countryCode: z.ZodNullable<z.ZodString>;
|
|
670
|
+
country: z.ZodNullable<z.ZodString>;
|
|
671
|
+
state: z.ZodNullable<z.ZodString>;
|
|
672
|
+
city: z.ZodNullable<z.ZodString>;
|
|
673
|
+
}, "strip", z.ZodTypeAny, {
|
|
674
|
+
text: string | null;
|
|
675
|
+
countryCode: string | null;
|
|
676
|
+
country: string | null;
|
|
677
|
+
state: string | null;
|
|
678
|
+
city: string | null;
|
|
679
|
+
}, {
|
|
680
|
+
text: string | null;
|
|
681
|
+
countryCode: string | null;
|
|
682
|
+
country: string | null;
|
|
683
|
+
state: string | null;
|
|
684
|
+
city: string | null;
|
|
685
|
+
}>>;
|
|
686
|
+
verified: z.ZodNullable<z.ZodBoolean>;
|
|
687
|
+
topSkills: z.ZodNullable<z.ZodString>;
|
|
688
|
+
connectionsCount: z.ZodNullable<z.ZodNumber>;
|
|
689
|
+
followerCount: z.ZodNullable<z.ZodNumber>;
|
|
690
|
+
currentPosition: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
691
|
+
companyName: z.ZodNullable<z.ZodString>;
|
|
692
|
+
}, "strip", z.ZodTypeAny, {
|
|
693
|
+
companyName: string | null;
|
|
694
|
+
}, {
|
|
695
|
+
companyName: string | null;
|
|
696
|
+
}>, "many">>;
|
|
697
|
+
experience: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
698
|
+
position: z.ZodNullable<z.ZodString>;
|
|
699
|
+
location: z.ZodNullable<z.ZodString>;
|
|
700
|
+
employmentType: z.ZodNullable<z.ZodString>;
|
|
701
|
+
workplaceType: z.ZodNullable<z.ZodString>;
|
|
702
|
+
companyName: z.ZodNullable<z.ZodString>;
|
|
703
|
+
companyLinkedinUrl: z.ZodNullable<z.ZodString>;
|
|
704
|
+
duration: z.ZodNullable<z.ZodString>;
|
|
705
|
+
description: z.ZodNullable<z.ZodString>;
|
|
706
|
+
skills: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
707
|
+
startDate: z.ZodNullable<z.ZodObject<{
|
|
708
|
+
month: z.ZodNullable<z.ZodString>;
|
|
709
|
+
year: z.ZodNullable<z.ZodNumber>;
|
|
710
|
+
text: z.ZodNullable<z.ZodString>;
|
|
711
|
+
}, "strip", z.ZodTypeAny, {
|
|
712
|
+
text: string | null;
|
|
713
|
+
year: number | null;
|
|
714
|
+
month: string | null;
|
|
715
|
+
}, {
|
|
716
|
+
text: string | null;
|
|
717
|
+
year: number | null;
|
|
718
|
+
month: string | null;
|
|
719
|
+
}>>;
|
|
720
|
+
endDate: z.ZodNullable<z.ZodObject<{
|
|
721
|
+
month: z.ZodNullable<z.ZodString>;
|
|
722
|
+
year: z.ZodNullable<z.ZodNumber>;
|
|
723
|
+
text: z.ZodNullable<z.ZodString>;
|
|
724
|
+
}, "strip", z.ZodTypeAny, {
|
|
725
|
+
text: string | null;
|
|
726
|
+
year: number | null;
|
|
727
|
+
month: string | null;
|
|
728
|
+
}, {
|
|
729
|
+
text: string | null;
|
|
730
|
+
year: number | null;
|
|
731
|
+
month: string | null;
|
|
732
|
+
}>>;
|
|
733
|
+
}, "strip", z.ZodTypeAny, {
|
|
734
|
+
duration: string | null;
|
|
735
|
+
description: string | null;
|
|
736
|
+
location: string | null;
|
|
737
|
+
companyName: string | null;
|
|
738
|
+
companyLinkedinUrl: string | null;
|
|
739
|
+
employmentType: string | null;
|
|
740
|
+
position: string | null;
|
|
741
|
+
workplaceType: string | null;
|
|
742
|
+
skills: string[] | null;
|
|
743
|
+
startDate: {
|
|
744
|
+
text: string | null;
|
|
745
|
+
year: number | null;
|
|
746
|
+
month: string | null;
|
|
747
|
+
} | null;
|
|
748
|
+
endDate: {
|
|
749
|
+
text: string | null;
|
|
750
|
+
year: number | null;
|
|
751
|
+
month: string | null;
|
|
752
|
+
} | null;
|
|
753
|
+
}, {
|
|
754
|
+
duration: string | null;
|
|
755
|
+
description: string | null;
|
|
756
|
+
location: string | null;
|
|
757
|
+
companyName: string | null;
|
|
758
|
+
companyLinkedinUrl: string | null;
|
|
759
|
+
employmentType: string | null;
|
|
760
|
+
position: string | null;
|
|
761
|
+
workplaceType: string | null;
|
|
762
|
+
skills: string[] | null;
|
|
763
|
+
startDate: {
|
|
764
|
+
text: string | null;
|
|
765
|
+
year: number | null;
|
|
766
|
+
month: string | null;
|
|
767
|
+
} | null;
|
|
768
|
+
endDate: {
|
|
769
|
+
text: string | null;
|
|
770
|
+
year: number | null;
|
|
771
|
+
month: string | null;
|
|
772
|
+
} | null;
|
|
773
|
+
}>, "many">>;
|
|
774
|
+
education: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
775
|
+
schoolName: z.ZodNullable<z.ZodString>;
|
|
776
|
+
schoolLinkedinUrl: z.ZodNullable<z.ZodString>;
|
|
777
|
+
degree: z.ZodNullable<z.ZodString>;
|
|
778
|
+
fieldOfStudy: z.ZodNullable<z.ZodString>;
|
|
779
|
+
startDate: z.ZodNullable<z.ZodObject<{
|
|
780
|
+
month: z.ZodNullable<z.ZodString>;
|
|
781
|
+
year: z.ZodNullable<z.ZodNumber>;
|
|
782
|
+
text: z.ZodNullable<z.ZodString>;
|
|
783
|
+
}, "strip", z.ZodTypeAny, {
|
|
784
|
+
text: string | null;
|
|
785
|
+
year: number | null;
|
|
786
|
+
month: string | null;
|
|
787
|
+
}, {
|
|
788
|
+
text: string | null;
|
|
789
|
+
year: number | null;
|
|
790
|
+
month: string | null;
|
|
791
|
+
}>>;
|
|
792
|
+
endDate: z.ZodNullable<z.ZodObject<{
|
|
793
|
+
month: z.ZodNullable<z.ZodString>;
|
|
794
|
+
year: z.ZodNullable<z.ZodNumber>;
|
|
795
|
+
text: z.ZodNullable<z.ZodString>;
|
|
796
|
+
}, "strip", z.ZodTypeAny, {
|
|
797
|
+
text: string | null;
|
|
798
|
+
year: number | null;
|
|
799
|
+
month: string | null;
|
|
800
|
+
}, {
|
|
801
|
+
text: string | null;
|
|
802
|
+
year: number | null;
|
|
803
|
+
month: string | null;
|
|
804
|
+
}>>;
|
|
805
|
+
period: z.ZodNullable<z.ZodString>;
|
|
806
|
+
}, "strip", z.ZodTypeAny, {
|
|
807
|
+
startDate: {
|
|
808
|
+
text: string | null;
|
|
809
|
+
year: number | null;
|
|
810
|
+
month: string | null;
|
|
811
|
+
} | null;
|
|
812
|
+
endDate: {
|
|
813
|
+
text: string | null;
|
|
814
|
+
year: number | null;
|
|
815
|
+
month: string | null;
|
|
816
|
+
} | null;
|
|
817
|
+
schoolName: string | null;
|
|
818
|
+
schoolLinkedinUrl: string | null;
|
|
819
|
+
degree: string | null;
|
|
820
|
+
fieldOfStudy: string | null;
|
|
821
|
+
period: string | null;
|
|
822
|
+
}, {
|
|
823
|
+
startDate: {
|
|
824
|
+
text: string | null;
|
|
825
|
+
year: number | null;
|
|
826
|
+
month: string | null;
|
|
827
|
+
} | null;
|
|
828
|
+
endDate: {
|
|
829
|
+
text: string | null;
|
|
830
|
+
year: number | null;
|
|
831
|
+
month: string | null;
|
|
832
|
+
} | null;
|
|
833
|
+
schoolName: string | null;
|
|
834
|
+
schoolLinkedinUrl: string | null;
|
|
835
|
+
degree: string | null;
|
|
836
|
+
fieldOfStudy: string | null;
|
|
837
|
+
period: string | null;
|
|
838
|
+
}>, "many">>;
|
|
839
|
+
certifications: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
840
|
+
title: z.ZodNullable<z.ZodString>;
|
|
841
|
+
issuedAt: z.ZodNullable<z.ZodString>;
|
|
842
|
+
issuedBy: z.ZodNullable<z.ZodString>;
|
|
843
|
+
}, "strip", z.ZodTypeAny, {
|
|
844
|
+
title: string | null;
|
|
845
|
+
issuedAt: string | null;
|
|
846
|
+
issuedBy: string | null;
|
|
847
|
+
}, {
|
|
848
|
+
title: string | null;
|
|
849
|
+
issuedAt: string | null;
|
|
850
|
+
issuedBy: string | null;
|
|
851
|
+
}>, "many">>;
|
|
852
|
+
languages: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
853
|
+
name: z.ZodNullable<z.ZodString>;
|
|
854
|
+
proficiency: z.ZodNullable<z.ZodString>;
|
|
855
|
+
}, "strip", z.ZodTypeAny, {
|
|
856
|
+
name: string | null;
|
|
857
|
+
proficiency: string | null;
|
|
858
|
+
}, {
|
|
859
|
+
name: string | null;
|
|
860
|
+
proficiency: string | null;
|
|
861
|
+
}>, "many">>;
|
|
862
|
+
skills: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
863
|
+
name: z.ZodNullable<z.ZodString>;
|
|
864
|
+
}, "strip", z.ZodTypeAny, {
|
|
865
|
+
name: string | null;
|
|
866
|
+
}, {
|
|
867
|
+
name: string | null;
|
|
868
|
+
}>, "many">>;
|
|
869
|
+
}, "strip", z.ZodTypeAny, {
|
|
870
|
+
id: string | null;
|
|
871
|
+
photo: string | null;
|
|
872
|
+
verified: boolean | null;
|
|
873
|
+
location: {
|
|
874
|
+
text: string | null;
|
|
875
|
+
countryCode: string | null;
|
|
876
|
+
country: string | null;
|
|
877
|
+
state: string | null;
|
|
878
|
+
city: string | null;
|
|
879
|
+
} | null;
|
|
880
|
+
headline: string | null;
|
|
881
|
+
skills: {
|
|
882
|
+
name: string | null;
|
|
883
|
+
}[] | null;
|
|
884
|
+
firstName: string | null;
|
|
885
|
+
lastName: string | null;
|
|
886
|
+
publicIdentifier: string | null;
|
|
887
|
+
linkedinUrl: string | null;
|
|
888
|
+
about: string | null;
|
|
889
|
+
openToWork: boolean | null;
|
|
890
|
+
hiring: boolean | null;
|
|
891
|
+
premium: boolean | null;
|
|
892
|
+
influencer: boolean | null;
|
|
893
|
+
topSkills: string | null;
|
|
894
|
+
connectionsCount: number | null;
|
|
895
|
+
followerCount: number | null;
|
|
896
|
+
currentPosition: {
|
|
897
|
+
companyName: string | null;
|
|
898
|
+
}[] | null;
|
|
899
|
+
experience: {
|
|
900
|
+
duration: string | null;
|
|
901
|
+
description: string | null;
|
|
902
|
+
location: string | null;
|
|
903
|
+
companyName: string | null;
|
|
904
|
+
companyLinkedinUrl: string | null;
|
|
905
|
+
employmentType: string | null;
|
|
906
|
+
position: string | null;
|
|
907
|
+
workplaceType: string | null;
|
|
908
|
+
skills: string[] | null;
|
|
909
|
+
startDate: {
|
|
910
|
+
text: string | null;
|
|
911
|
+
year: number | null;
|
|
912
|
+
month: string | null;
|
|
913
|
+
} | null;
|
|
914
|
+
endDate: {
|
|
915
|
+
text: string | null;
|
|
916
|
+
year: number | null;
|
|
917
|
+
month: string | null;
|
|
918
|
+
} | null;
|
|
919
|
+
}[] | null;
|
|
920
|
+
education: {
|
|
921
|
+
startDate: {
|
|
922
|
+
text: string | null;
|
|
923
|
+
year: number | null;
|
|
924
|
+
month: string | null;
|
|
925
|
+
} | null;
|
|
926
|
+
endDate: {
|
|
927
|
+
text: string | null;
|
|
928
|
+
year: number | null;
|
|
929
|
+
month: string | null;
|
|
930
|
+
} | null;
|
|
931
|
+
schoolName: string | null;
|
|
932
|
+
schoolLinkedinUrl: string | null;
|
|
933
|
+
degree: string | null;
|
|
934
|
+
fieldOfStudy: string | null;
|
|
935
|
+
period: string | null;
|
|
936
|
+
}[] | null;
|
|
937
|
+
certifications: {
|
|
938
|
+
title: string | null;
|
|
939
|
+
issuedAt: string | null;
|
|
940
|
+
issuedBy: string | null;
|
|
941
|
+
}[] | null;
|
|
942
|
+
languages: {
|
|
943
|
+
name: string | null;
|
|
944
|
+
proficiency: string | null;
|
|
945
|
+
}[] | null;
|
|
946
|
+
}, {
|
|
947
|
+
id: string | null;
|
|
948
|
+
photo: string | null;
|
|
949
|
+
verified: boolean | null;
|
|
950
|
+
location: {
|
|
951
|
+
text: string | null;
|
|
952
|
+
countryCode: string | null;
|
|
953
|
+
country: string | null;
|
|
954
|
+
state: string | null;
|
|
955
|
+
city: string | null;
|
|
956
|
+
} | null;
|
|
957
|
+
headline: string | null;
|
|
958
|
+
skills: {
|
|
959
|
+
name: string | null;
|
|
960
|
+
}[] | null;
|
|
961
|
+
firstName: string | null;
|
|
962
|
+
lastName: string | null;
|
|
963
|
+
publicIdentifier: string | null;
|
|
964
|
+
linkedinUrl: string | null;
|
|
965
|
+
about: string | null;
|
|
966
|
+
openToWork: boolean | null;
|
|
967
|
+
hiring: boolean | null;
|
|
968
|
+
premium: boolean | null;
|
|
969
|
+
influencer: boolean | null;
|
|
970
|
+
topSkills: string | null;
|
|
971
|
+
connectionsCount: number | null;
|
|
972
|
+
followerCount: number | null;
|
|
973
|
+
currentPosition: {
|
|
974
|
+
companyName: string | null;
|
|
975
|
+
}[] | null;
|
|
976
|
+
experience: {
|
|
977
|
+
duration: string | null;
|
|
978
|
+
description: string | null;
|
|
979
|
+
location: string | null;
|
|
980
|
+
companyName: string | null;
|
|
981
|
+
companyLinkedinUrl: string | null;
|
|
982
|
+
employmentType: string | null;
|
|
983
|
+
position: string | null;
|
|
984
|
+
workplaceType: string | null;
|
|
985
|
+
skills: string[] | null;
|
|
986
|
+
startDate: {
|
|
987
|
+
text: string | null;
|
|
988
|
+
year: number | null;
|
|
989
|
+
month: string | null;
|
|
990
|
+
} | null;
|
|
991
|
+
endDate: {
|
|
992
|
+
text: string | null;
|
|
993
|
+
year: number | null;
|
|
994
|
+
month: string | null;
|
|
995
|
+
} | null;
|
|
996
|
+
}[] | null;
|
|
997
|
+
education: {
|
|
998
|
+
startDate: {
|
|
999
|
+
text: string | null;
|
|
1000
|
+
year: number | null;
|
|
1001
|
+
month: string | null;
|
|
1002
|
+
} | null;
|
|
1003
|
+
endDate: {
|
|
1004
|
+
text: string | null;
|
|
1005
|
+
year: number | null;
|
|
1006
|
+
month: string | null;
|
|
1007
|
+
} | null;
|
|
1008
|
+
schoolName: string | null;
|
|
1009
|
+
schoolLinkedinUrl: string | null;
|
|
1010
|
+
degree: string | null;
|
|
1011
|
+
fieldOfStudy: string | null;
|
|
1012
|
+
period: string | null;
|
|
1013
|
+
}[] | null;
|
|
1014
|
+
certifications: {
|
|
1015
|
+
title: string | null;
|
|
1016
|
+
issuedAt: string | null;
|
|
1017
|
+
issuedBy: string | null;
|
|
1018
|
+
}[] | null;
|
|
1019
|
+
languages: {
|
|
1020
|
+
name: string | null;
|
|
1021
|
+
proficiency: string | null;
|
|
1022
|
+
}[] | null;
|
|
653
1023
|
}>;
|
|
654
1024
|
declare const LinkedInToolParamsSchema: z.ZodObject<{
|
|
655
|
-
operation: z.ZodEnum<["scrapePosts", "searchPosts", "scrapeJobs"]>;
|
|
1025
|
+
operation: z.ZodEnum<["scrapeProfile", "scrapePosts", "searchPosts", "scrapeJobs"]>;
|
|
1026
|
+
profileUrl: z.ZodOptional<z.ZodString>;
|
|
656
1027
|
username: z.ZodOptional<z.ZodString>;
|
|
657
1028
|
keyword: z.ZodOptional<z.ZodString>;
|
|
658
1029
|
location: z.ZodOptional<z.ZodString>;
|
|
@@ -665,34 +1036,406 @@ declare const LinkedInToolParamsSchema: z.ZodObject<{
|
|
|
665
1036
|
pageNumber: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
666
1037
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
667
1038
|
}, "strip", z.ZodTypeAny, {
|
|
668
|
-
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1039
|
+
operation: "scrapeProfile" | "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
669
1040
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
670
1041
|
username?: string | undefined;
|
|
671
1042
|
limit?: number | undefined;
|
|
672
1043
|
pageNumber?: number | undefined;
|
|
673
1044
|
location?: string | undefined;
|
|
674
1045
|
keyword?: string | undefined;
|
|
1046
|
+
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
675
1047
|
dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
|
|
1048
|
+
profileUrl?: string | undefined;
|
|
676
1049
|
jobType?: ("full-time" | "part-time" | "contract" | "temporary" | "internship")[] | undefined;
|
|
677
|
-
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
678
1050
|
experienceLevel?: ("executive" | "associate" | "internship" | "entry-level" | "mid-senior" | "director")[] | undefined;
|
|
679
1051
|
sortBy?: "relevance" | "date_posted" | undefined;
|
|
680
1052
|
}, {
|
|
681
|
-
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1053
|
+
operation: "scrapeProfile" | "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
682
1054
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
683
1055
|
username?: string | undefined;
|
|
684
1056
|
limit?: number | undefined;
|
|
685
1057
|
pageNumber?: number | undefined;
|
|
686
1058
|
location?: string | undefined;
|
|
687
1059
|
keyword?: string | undefined;
|
|
1060
|
+
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
688
1061
|
dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
|
|
1062
|
+
profileUrl?: string | undefined;
|
|
689
1063
|
jobType?: ("full-time" | "part-time" | "contract" | "temporary" | "internship")[] | undefined;
|
|
690
|
-
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
691
1064
|
experienceLevel?: ("executive" | "associate" | "internship" | "entry-level" | "mid-senior" | "director")[] | undefined;
|
|
692
1065
|
sortBy?: "relevance" | "date_posted" | undefined;
|
|
693
1066
|
}>;
|
|
694
1067
|
declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
695
|
-
operation: z.ZodEnum<["scrapePosts", "searchPosts", "scrapeJobs"]>;
|
|
1068
|
+
operation: z.ZodEnum<["scrapeProfile", "scrapePosts", "searchPosts", "scrapeJobs"]>;
|
|
1069
|
+
profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1070
|
+
id: z.ZodNullable<z.ZodString>;
|
|
1071
|
+
publicIdentifier: z.ZodNullable<z.ZodString>;
|
|
1072
|
+
linkedinUrl: z.ZodNullable<z.ZodString>;
|
|
1073
|
+
firstName: z.ZodNullable<z.ZodString>;
|
|
1074
|
+
lastName: z.ZodNullable<z.ZodString>;
|
|
1075
|
+
headline: z.ZodNullable<z.ZodString>;
|
|
1076
|
+
about: z.ZodNullable<z.ZodString>;
|
|
1077
|
+
openToWork: z.ZodNullable<z.ZodBoolean>;
|
|
1078
|
+
hiring: z.ZodNullable<z.ZodBoolean>;
|
|
1079
|
+
photo: z.ZodNullable<z.ZodString>;
|
|
1080
|
+
premium: z.ZodNullable<z.ZodBoolean>;
|
|
1081
|
+
influencer: z.ZodNullable<z.ZodBoolean>;
|
|
1082
|
+
location: z.ZodNullable<z.ZodObject<{
|
|
1083
|
+
text: z.ZodNullable<z.ZodString>;
|
|
1084
|
+
countryCode: z.ZodNullable<z.ZodString>;
|
|
1085
|
+
country: z.ZodNullable<z.ZodString>;
|
|
1086
|
+
state: z.ZodNullable<z.ZodString>;
|
|
1087
|
+
city: z.ZodNullable<z.ZodString>;
|
|
1088
|
+
}, "strip", z.ZodTypeAny, {
|
|
1089
|
+
text: string | null;
|
|
1090
|
+
countryCode: string | null;
|
|
1091
|
+
country: string | null;
|
|
1092
|
+
state: string | null;
|
|
1093
|
+
city: string | null;
|
|
1094
|
+
}, {
|
|
1095
|
+
text: string | null;
|
|
1096
|
+
countryCode: string | null;
|
|
1097
|
+
country: string | null;
|
|
1098
|
+
state: string | null;
|
|
1099
|
+
city: string | null;
|
|
1100
|
+
}>>;
|
|
1101
|
+
verified: z.ZodNullable<z.ZodBoolean>;
|
|
1102
|
+
topSkills: z.ZodNullable<z.ZodString>;
|
|
1103
|
+
connectionsCount: z.ZodNullable<z.ZodNumber>;
|
|
1104
|
+
followerCount: z.ZodNullable<z.ZodNumber>;
|
|
1105
|
+
currentPosition: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1106
|
+
companyName: z.ZodNullable<z.ZodString>;
|
|
1107
|
+
}, "strip", z.ZodTypeAny, {
|
|
1108
|
+
companyName: string | null;
|
|
1109
|
+
}, {
|
|
1110
|
+
companyName: string | null;
|
|
1111
|
+
}>, "many">>;
|
|
1112
|
+
experience: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1113
|
+
position: z.ZodNullable<z.ZodString>;
|
|
1114
|
+
location: z.ZodNullable<z.ZodString>;
|
|
1115
|
+
employmentType: z.ZodNullable<z.ZodString>;
|
|
1116
|
+
workplaceType: z.ZodNullable<z.ZodString>;
|
|
1117
|
+
companyName: z.ZodNullable<z.ZodString>;
|
|
1118
|
+
companyLinkedinUrl: z.ZodNullable<z.ZodString>;
|
|
1119
|
+
duration: z.ZodNullable<z.ZodString>;
|
|
1120
|
+
description: z.ZodNullable<z.ZodString>;
|
|
1121
|
+
skills: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
1122
|
+
startDate: z.ZodNullable<z.ZodObject<{
|
|
1123
|
+
month: z.ZodNullable<z.ZodString>;
|
|
1124
|
+
year: z.ZodNullable<z.ZodNumber>;
|
|
1125
|
+
text: z.ZodNullable<z.ZodString>;
|
|
1126
|
+
}, "strip", z.ZodTypeAny, {
|
|
1127
|
+
text: string | null;
|
|
1128
|
+
year: number | null;
|
|
1129
|
+
month: string | null;
|
|
1130
|
+
}, {
|
|
1131
|
+
text: string | null;
|
|
1132
|
+
year: number | null;
|
|
1133
|
+
month: string | null;
|
|
1134
|
+
}>>;
|
|
1135
|
+
endDate: z.ZodNullable<z.ZodObject<{
|
|
1136
|
+
month: z.ZodNullable<z.ZodString>;
|
|
1137
|
+
year: z.ZodNullable<z.ZodNumber>;
|
|
1138
|
+
text: z.ZodNullable<z.ZodString>;
|
|
1139
|
+
}, "strip", z.ZodTypeAny, {
|
|
1140
|
+
text: string | null;
|
|
1141
|
+
year: number | null;
|
|
1142
|
+
month: string | null;
|
|
1143
|
+
}, {
|
|
1144
|
+
text: string | null;
|
|
1145
|
+
year: number | null;
|
|
1146
|
+
month: string | null;
|
|
1147
|
+
}>>;
|
|
1148
|
+
}, "strip", z.ZodTypeAny, {
|
|
1149
|
+
duration: string | null;
|
|
1150
|
+
description: string | null;
|
|
1151
|
+
location: string | null;
|
|
1152
|
+
companyName: string | null;
|
|
1153
|
+
companyLinkedinUrl: string | null;
|
|
1154
|
+
employmentType: string | null;
|
|
1155
|
+
position: string | null;
|
|
1156
|
+
workplaceType: string | null;
|
|
1157
|
+
skills: string[] | null;
|
|
1158
|
+
startDate: {
|
|
1159
|
+
text: string | null;
|
|
1160
|
+
year: number | null;
|
|
1161
|
+
month: string | null;
|
|
1162
|
+
} | null;
|
|
1163
|
+
endDate: {
|
|
1164
|
+
text: string | null;
|
|
1165
|
+
year: number | null;
|
|
1166
|
+
month: string | null;
|
|
1167
|
+
} | null;
|
|
1168
|
+
}, {
|
|
1169
|
+
duration: string | null;
|
|
1170
|
+
description: string | null;
|
|
1171
|
+
location: string | null;
|
|
1172
|
+
companyName: string | null;
|
|
1173
|
+
companyLinkedinUrl: string | null;
|
|
1174
|
+
employmentType: string | null;
|
|
1175
|
+
position: string | null;
|
|
1176
|
+
workplaceType: string | null;
|
|
1177
|
+
skills: string[] | null;
|
|
1178
|
+
startDate: {
|
|
1179
|
+
text: string | null;
|
|
1180
|
+
year: number | null;
|
|
1181
|
+
month: string | null;
|
|
1182
|
+
} | null;
|
|
1183
|
+
endDate: {
|
|
1184
|
+
text: string | null;
|
|
1185
|
+
year: number | null;
|
|
1186
|
+
month: string | null;
|
|
1187
|
+
} | null;
|
|
1188
|
+
}>, "many">>;
|
|
1189
|
+
education: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1190
|
+
schoolName: z.ZodNullable<z.ZodString>;
|
|
1191
|
+
schoolLinkedinUrl: z.ZodNullable<z.ZodString>;
|
|
1192
|
+
degree: z.ZodNullable<z.ZodString>;
|
|
1193
|
+
fieldOfStudy: z.ZodNullable<z.ZodString>;
|
|
1194
|
+
startDate: z.ZodNullable<z.ZodObject<{
|
|
1195
|
+
month: z.ZodNullable<z.ZodString>;
|
|
1196
|
+
year: z.ZodNullable<z.ZodNumber>;
|
|
1197
|
+
text: z.ZodNullable<z.ZodString>;
|
|
1198
|
+
}, "strip", z.ZodTypeAny, {
|
|
1199
|
+
text: string | null;
|
|
1200
|
+
year: number | null;
|
|
1201
|
+
month: string | null;
|
|
1202
|
+
}, {
|
|
1203
|
+
text: string | null;
|
|
1204
|
+
year: number | null;
|
|
1205
|
+
month: string | null;
|
|
1206
|
+
}>>;
|
|
1207
|
+
endDate: z.ZodNullable<z.ZodObject<{
|
|
1208
|
+
month: z.ZodNullable<z.ZodString>;
|
|
1209
|
+
year: z.ZodNullable<z.ZodNumber>;
|
|
1210
|
+
text: z.ZodNullable<z.ZodString>;
|
|
1211
|
+
}, "strip", z.ZodTypeAny, {
|
|
1212
|
+
text: string | null;
|
|
1213
|
+
year: number | null;
|
|
1214
|
+
month: string | null;
|
|
1215
|
+
}, {
|
|
1216
|
+
text: string | null;
|
|
1217
|
+
year: number | null;
|
|
1218
|
+
month: string | null;
|
|
1219
|
+
}>>;
|
|
1220
|
+
period: z.ZodNullable<z.ZodString>;
|
|
1221
|
+
}, "strip", z.ZodTypeAny, {
|
|
1222
|
+
startDate: {
|
|
1223
|
+
text: string | null;
|
|
1224
|
+
year: number | null;
|
|
1225
|
+
month: string | null;
|
|
1226
|
+
} | null;
|
|
1227
|
+
endDate: {
|
|
1228
|
+
text: string | null;
|
|
1229
|
+
year: number | null;
|
|
1230
|
+
month: string | null;
|
|
1231
|
+
} | null;
|
|
1232
|
+
schoolName: string | null;
|
|
1233
|
+
schoolLinkedinUrl: string | null;
|
|
1234
|
+
degree: string | null;
|
|
1235
|
+
fieldOfStudy: string | null;
|
|
1236
|
+
period: string | null;
|
|
1237
|
+
}, {
|
|
1238
|
+
startDate: {
|
|
1239
|
+
text: string | null;
|
|
1240
|
+
year: number | null;
|
|
1241
|
+
month: string | null;
|
|
1242
|
+
} | null;
|
|
1243
|
+
endDate: {
|
|
1244
|
+
text: string | null;
|
|
1245
|
+
year: number | null;
|
|
1246
|
+
month: string | null;
|
|
1247
|
+
} | null;
|
|
1248
|
+
schoolName: string | null;
|
|
1249
|
+
schoolLinkedinUrl: string | null;
|
|
1250
|
+
degree: string | null;
|
|
1251
|
+
fieldOfStudy: string | null;
|
|
1252
|
+
period: string | null;
|
|
1253
|
+
}>, "many">>;
|
|
1254
|
+
certifications: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1255
|
+
title: z.ZodNullable<z.ZodString>;
|
|
1256
|
+
issuedAt: z.ZodNullable<z.ZodString>;
|
|
1257
|
+
issuedBy: z.ZodNullable<z.ZodString>;
|
|
1258
|
+
}, "strip", z.ZodTypeAny, {
|
|
1259
|
+
title: string | null;
|
|
1260
|
+
issuedAt: string | null;
|
|
1261
|
+
issuedBy: string | null;
|
|
1262
|
+
}, {
|
|
1263
|
+
title: string | null;
|
|
1264
|
+
issuedAt: string | null;
|
|
1265
|
+
issuedBy: string | null;
|
|
1266
|
+
}>, "many">>;
|
|
1267
|
+
languages: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1268
|
+
name: z.ZodNullable<z.ZodString>;
|
|
1269
|
+
proficiency: z.ZodNullable<z.ZodString>;
|
|
1270
|
+
}, "strip", z.ZodTypeAny, {
|
|
1271
|
+
name: string | null;
|
|
1272
|
+
proficiency: string | null;
|
|
1273
|
+
}, {
|
|
1274
|
+
name: string | null;
|
|
1275
|
+
proficiency: string | null;
|
|
1276
|
+
}>, "many">>;
|
|
1277
|
+
skills: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1278
|
+
name: z.ZodNullable<z.ZodString>;
|
|
1279
|
+
}, "strip", z.ZodTypeAny, {
|
|
1280
|
+
name: string | null;
|
|
1281
|
+
}, {
|
|
1282
|
+
name: string | null;
|
|
1283
|
+
}>, "many">>;
|
|
1284
|
+
}, "strip", z.ZodTypeAny, {
|
|
1285
|
+
id: string | null;
|
|
1286
|
+
photo: string | null;
|
|
1287
|
+
verified: boolean | null;
|
|
1288
|
+
location: {
|
|
1289
|
+
text: string | null;
|
|
1290
|
+
countryCode: string | null;
|
|
1291
|
+
country: string | null;
|
|
1292
|
+
state: string | null;
|
|
1293
|
+
city: string | null;
|
|
1294
|
+
} | null;
|
|
1295
|
+
headline: string | null;
|
|
1296
|
+
skills: {
|
|
1297
|
+
name: string | null;
|
|
1298
|
+
}[] | null;
|
|
1299
|
+
firstName: string | null;
|
|
1300
|
+
lastName: string | null;
|
|
1301
|
+
publicIdentifier: string | null;
|
|
1302
|
+
linkedinUrl: string | null;
|
|
1303
|
+
about: string | null;
|
|
1304
|
+
openToWork: boolean | null;
|
|
1305
|
+
hiring: boolean | null;
|
|
1306
|
+
premium: boolean | null;
|
|
1307
|
+
influencer: boolean | null;
|
|
1308
|
+
topSkills: string | null;
|
|
1309
|
+
connectionsCount: number | null;
|
|
1310
|
+
followerCount: number | null;
|
|
1311
|
+
currentPosition: {
|
|
1312
|
+
companyName: string | null;
|
|
1313
|
+
}[] | null;
|
|
1314
|
+
experience: {
|
|
1315
|
+
duration: string | null;
|
|
1316
|
+
description: string | null;
|
|
1317
|
+
location: string | null;
|
|
1318
|
+
companyName: string | null;
|
|
1319
|
+
companyLinkedinUrl: string | null;
|
|
1320
|
+
employmentType: string | null;
|
|
1321
|
+
position: string | null;
|
|
1322
|
+
workplaceType: string | null;
|
|
1323
|
+
skills: string[] | null;
|
|
1324
|
+
startDate: {
|
|
1325
|
+
text: string | null;
|
|
1326
|
+
year: number | null;
|
|
1327
|
+
month: string | null;
|
|
1328
|
+
} | null;
|
|
1329
|
+
endDate: {
|
|
1330
|
+
text: string | null;
|
|
1331
|
+
year: number | null;
|
|
1332
|
+
month: string | null;
|
|
1333
|
+
} | null;
|
|
1334
|
+
}[] | null;
|
|
1335
|
+
education: {
|
|
1336
|
+
startDate: {
|
|
1337
|
+
text: string | null;
|
|
1338
|
+
year: number | null;
|
|
1339
|
+
month: string | null;
|
|
1340
|
+
} | null;
|
|
1341
|
+
endDate: {
|
|
1342
|
+
text: string | null;
|
|
1343
|
+
year: number | null;
|
|
1344
|
+
month: string | null;
|
|
1345
|
+
} | null;
|
|
1346
|
+
schoolName: string | null;
|
|
1347
|
+
schoolLinkedinUrl: string | null;
|
|
1348
|
+
degree: string | null;
|
|
1349
|
+
fieldOfStudy: string | null;
|
|
1350
|
+
period: string | null;
|
|
1351
|
+
}[] | null;
|
|
1352
|
+
certifications: {
|
|
1353
|
+
title: string | null;
|
|
1354
|
+
issuedAt: string | null;
|
|
1355
|
+
issuedBy: string | null;
|
|
1356
|
+
}[] | null;
|
|
1357
|
+
languages: {
|
|
1358
|
+
name: string | null;
|
|
1359
|
+
proficiency: string | null;
|
|
1360
|
+
}[] | null;
|
|
1361
|
+
}, {
|
|
1362
|
+
id: string | null;
|
|
1363
|
+
photo: string | null;
|
|
1364
|
+
verified: boolean | null;
|
|
1365
|
+
location: {
|
|
1366
|
+
text: string | null;
|
|
1367
|
+
countryCode: string | null;
|
|
1368
|
+
country: string | null;
|
|
1369
|
+
state: string | null;
|
|
1370
|
+
city: string | null;
|
|
1371
|
+
} | null;
|
|
1372
|
+
headline: string | null;
|
|
1373
|
+
skills: {
|
|
1374
|
+
name: string | null;
|
|
1375
|
+
}[] | null;
|
|
1376
|
+
firstName: string | null;
|
|
1377
|
+
lastName: string | null;
|
|
1378
|
+
publicIdentifier: string | null;
|
|
1379
|
+
linkedinUrl: string | null;
|
|
1380
|
+
about: string | null;
|
|
1381
|
+
openToWork: boolean | null;
|
|
1382
|
+
hiring: boolean | null;
|
|
1383
|
+
premium: boolean | null;
|
|
1384
|
+
influencer: boolean | null;
|
|
1385
|
+
topSkills: string | null;
|
|
1386
|
+
connectionsCount: number | null;
|
|
1387
|
+
followerCount: number | null;
|
|
1388
|
+
currentPosition: {
|
|
1389
|
+
companyName: string | null;
|
|
1390
|
+
}[] | null;
|
|
1391
|
+
experience: {
|
|
1392
|
+
duration: string | null;
|
|
1393
|
+
description: string | null;
|
|
1394
|
+
location: string | null;
|
|
1395
|
+
companyName: string | null;
|
|
1396
|
+
companyLinkedinUrl: string | null;
|
|
1397
|
+
employmentType: string | null;
|
|
1398
|
+
position: string | null;
|
|
1399
|
+
workplaceType: string | null;
|
|
1400
|
+
skills: string[] | null;
|
|
1401
|
+
startDate: {
|
|
1402
|
+
text: string | null;
|
|
1403
|
+
year: number | null;
|
|
1404
|
+
month: string | null;
|
|
1405
|
+
} | null;
|
|
1406
|
+
endDate: {
|
|
1407
|
+
text: string | null;
|
|
1408
|
+
year: number | null;
|
|
1409
|
+
month: string | null;
|
|
1410
|
+
} | null;
|
|
1411
|
+
}[] | null;
|
|
1412
|
+
education: {
|
|
1413
|
+
startDate: {
|
|
1414
|
+
text: string | null;
|
|
1415
|
+
year: number | null;
|
|
1416
|
+
month: string | null;
|
|
1417
|
+
} | null;
|
|
1418
|
+
endDate: {
|
|
1419
|
+
text: string | null;
|
|
1420
|
+
year: number | null;
|
|
1421
|
+
month: string | null;
|
|
1422
|
+
} | null;
|
|
1423
|
+
schoolName: string | null;
|
|
1424
|
+
schoolLinkedinUrl: string | null;
|
|
1425
|
+
degree: string | null;
|
|
1426
|
+
fieldOfStudy: string | null;
|
|
1427
|
+
period: string | null;
|
|
1428
|
+
}[] | null;
|
|
1429
|
+
certifications: {
|
|
1430
|
+
title: string | null;
|
|
1431
|
+
issuedAt: string | null;
|
|
1432
|
+
issuedBy: string | null;
|
|
1433
|
+
}[] | null;
|
|
1434
|
+
languages: {
|
|
1435
|
+
name: string | null;
|
|
1436
|
+
proficiency: string | null;
|
|
1437
|
+
}[] | null;
|
|
1438
|
+
}>>>;
|
|
696
1439
|
jobs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
697
1440
|
id: z.ZodNullable<z.ZodString>;
|
|
698
1441
|
title: z.ZodNullable<z.ZodString>;
|
|
@@ -724,13 +1467,13 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
724
1467
|
}, "strip", z.ZodTypeAny, {
|
|
725
1468
|
from: number | null;
|
|
726
1469
|
to: number | null;
|
|
727
|
-
currency: string | null;
|
|
728
1470
|
period: string | null;
|
|
1471
|
+
currency: string | null;
|
|
729
1472
|
}, {
|
|
730
1473
|
from: number | null;
|
|
731
1474
|
to: number | null;
|
|
732
|
-
currency: string | null;
|
|
733
1475
|
period: string | null;
|
|
1476
|
+
currency: string | null;
|
|
734
1477
|
}>>;
|
|
735
1478
|
skills: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
736
1479
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -744,17 +1487,17 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
744
1487
|
salary: {
|
|
745
1488
|
from: number | null;
|
|
746
1489
|
to: number | null;
|
|
747
|
-
currency: string | null;
|
|
748
1490
|
period: string | null;
|
|
1491
|
+
currency: string | null;
|
|
749
1492
|
} | null;
|
|
750
1493
|
seniorityLevel: string | null;
|
|
751
1494
|
employmentType: string | null;
|
|
1495
|
+
skills: string[] | null;
|
|
752
1496
|
company: {
|
|
753
1497
|
name: string | null;
|
|
754
1498
|
url: string | null;
|
|
755
1499
|
logo: string | null;
|
|
756
1500
|
} | null;
|
|
757
|
-
skills: string[] | null;
|
|
758
1501
|
}, {
|
|
759
1502
|
description: string | null;
|
|
760
1503
|
title: string | null;
|
|
@@ -766,17 +1509,17 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
766
1509
|
salary: {
|
|
767
1510
|
from: number | null;
|
|
768
1511
|
to: number | null;
|
|
769
|
-
currency: string | null;
|
|
770
1512
|
period: string | null;
|
|
1513
|
+
currency: string | null;
|
|
771
1514
|
} | null;
|
|
772
1515
|
seniorityLevel: string | null;
|
|
773
1516
|
employmentType: string | null;
|
|
1517
|
+
skills: string[] | null;
|
|
774
1518
|
company: {
|
|
775
1519
|
name: string | null;
|
|
776
1520
|
url: string | null;
|
|
777
1521
|
logo: string | null;
|
|
778
1522
|
} | null;
|
|
779
|
-
skills: string[] | null;
|
|
780
1523
|
}>, "many">>;
|
|
781
1524
|
posts: z.ZodArray<z.ZodObject<{
|
|
782
1525
|
urn: z.ZodNullable<z.ZodString>;
|
|
@@ -807,17 +1550,17 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
807
1550
|
}, "strip", z.ZodTypeAny, {
|
|
808
1551
|
username: string | null;
|
|
809
1552
|
headline: string | null;
|
|
810
|
-
profileUrl: string | null;
|
|
811
|
-
profilePicture: string | null;
|
|
812
1553
|
firstName: string | null;
|
|
813
1554
|
lastName: string | null;
|
|
1555
|
+
profileUrl: string | null;
|
|
1556
|
+
profilePicture: string | null;
|
|
814
1557
|
}, {
|
|
815
1558
|
username: string | null;
|
|
816
1559
|
headline: string | null;
|
|
817
|
-
profileUrl: string | null;
|
|
818
|
-
profilePicture: string | null;
|
|
819
1560
|
firstName: string | null;
|
|
820
1561
|
lastName: string | null;
|
|
1562
|
+
profileUrl: string | null;
|
|
1563
|
+
profilePicture: string | null;
|
|
821
1564
|
}>>;
|
|
822
1565
|
stats: z.ZodNullable<z.ZodObject<{
|
|
823
1566
|
totalReactions: z.ZodNullable<z.ZodNumber>;
|
|
@@ -946,17 +1689,17 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
946
1689
|
}, "strip", z.ZodTypeAny, {
|
|
947
1690
|
username: string | null;
|
|
948
1691
|
headline: string | null;
|
|
949
|
-
profileUrl: string | null;
|
|
950
|
-
profilePicture: string | null;
|
|
951
1692
|
firstName: string | null;
|
|
952
1693
|
lastName: string | null;
|
|
1694
|
+
profileUrl: string | null;
|
|
1695
|
+
profilePicture: string | null;
|
|
953
1696
|
}, {
|
|
954
1697
|
username: string | null;
|
|
955
1698
|
headline: string | null;
|
|
956
|
-
profileUrl: string | null;
|
|
957
|
-
profilePicture: string | null;
|
|
958
1699
|
firstName: string | null;
|
|
959
1700
|
lastName: string | null;
|
|
1701
|
+
profileUrl: string | null;
|
|
1702
|
+
profilePicture: string | null;
|
|
960
1703
|
}>>;
|
|
961
1704
|
stats: z.ZodNullable<z.ZodObject<{
|
|
962
1705
|
totalReactions: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1043,10 +1786,10 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1043
1786
|
author: {
|
|
1044
1787
|
username: string | null;
|
|
1045
1788
|
headline: string | null;
|
|
1046
|
-
profileUrl: string | null;
|
|
1047
|
-
profilePicture: string | null;
|
|
1048
1789
|
firstName: string | null;
|
|
1049
1790
|
lastName: string | null;
|
|
1791
|
+
profileUrl: string | null;
|
|
1792
|
+
profilePicture: string | null;
|
|
1050
1793
|
} | null;
|
|
1051
1794
|
media: {
|
|
1052
1795
|
type: string | null;
|
|
@@ -1082,10 +1825,10 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1082
1825
|
author: {
|
|
1083
1826
|
username: string | null;
|
|
1084
1827
|
headline: string | null;
|
|
1085
|
-
profileUrl: string | null;
|
|
1086
|
-
profilePicture: string | null;
|
|
1087
1828
|
firstName: string | null;
|
|
1088
1829
|
lastName: string | null;
|
|
1830
|
+
profileUrl: string | null;
|
|
1831
|
+
profilePicture: string | null;
|
|
1089
1832
|
} | null;
|
|
1090
1833
|
media: {
|
|
1091
1834
|
type: string | null;
|
|
@@ -1128,10 +1871,10 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1128
1871
|
author: {
|
|
1129
1872
|
username: string | null;
|
|
1130
1873
|
headline: string | null;
|
|
1131
|
-
profileUrl: string | null;
|
|
1132
|
-
profilePicture: string | null;
|
|
1133
1874
|
firstName: string | null;
|
|
1134
1875
|
lastName: string | null;
|
|
1876
|
+
profileUrl: string | null;
|
|
1877
|
+
profilePicture: string | null;
|
|
1135
1878
|
} | null;
|
|
1136
1879
|
media: {
|
|
1137
1880
|
type: string | null;
|
|
@@ -1174,10 +1917,10 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1174
1917
|
author: {
|
|
1175
1918
|
username: string | null;
|
|
1176
1919
|
headline: string | null;
|
|
1177
|
-
profileUrl: string | null;
|
|
1178
|
-
profilePicture: string | null;
|
|
1179
1920
|
firstName: string | null;
|
|
1180
1921
|
lastName: string | null;
|
|
1922
|
+
profileUrl: string | null;
|
|
1923
|
+
profilePicture: string | null;
|
|
1181
1924
|
} | null;
|
|
1182
1925
|
media: {
|
|
1183
1926
|
type: string | null;
|
|
@@ -1220,10 +1963,10 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1220
1963
|
author: {
|
|
1221
1964
|
username: string | null;
|
|
1222
1965
|
headline: string | null;
|
|
1223
|
-
profileUrl: string | null;
|
|
1224
|
-
profilePicture: string | null;
|
|
1225
1966
|
firstName: string | null;
|
|
1226
1967
|
lastName: string | null;
|
|
1968
|
+
profileUrl: string | null;
|
|
1969
|
+
profilePicture: string | null;
|
|
1227
1970
|
} | null;
|
|
1228
1971
|
media: {
|
|
1229
1972
|
type: string | null;
|
|
@@ -1266,10 +2009,10 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1266
2009
|
author: {
|
|
1267
2010
|
username: string | null;
|
|
1268
2011
|
headline: string | null;
|
|
1269
|
-
profileUrl: string | null;
|
|
1270
|
-
profilePicture: string | null;
|
|
1271
2012
|
firstName: string | null;
|
|
1272
2013
|
lastName: string | null;
|
|
2014
|
+
profileUrl: string | null;
|
|
2015
|
+
profilePicture: string | null;
|
|
1273
2016
|
} | null;
|
|
1274
2017
|
media: {
|
|
1275
2018
|
type: string | null;
|
|
@@ -1300,7 +2043,7 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1300
2043
|
}, "strip", z.ZodTypeAny, {
|
|
1301
2044
|
error: string;
|
|
1302
2045
|
success: boolean;
|
|
1303
|
-
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
2046
|
+
operation: "scrapeProfile" | "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1304
2047
|
posts: {
|
|
1305
2048
|
stats: {
|
|
1306
2049
|
like: number | null;
|
|
@@ -1325,10 +2068,10 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1325
2068
|
author: {
|
|
1326
2069
|
username: string | null;
|
|
1327
2070
|
headline: string | null;
|
|
1328
|
-
profileUrl: string | null;
|
|
1329
|
-
profilePicture: string | null;
|
|
1330
2071
|
firstName: string | null;
|
|
1331
2072
|
lastName: string | null;
|
|
2073
|
+
profileUrl: string | null;
|
|
2074
|
+
profilePicture: string | null;
|
|
1332
2075
|
} | null;
|
|
1333
2076
|
media: {
|
|
1334
2077
|
type: string | null;
|
|
@@ -1371,10 +2114,10 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1371
2114
|
author: {
|
|
1372
2115
|
username: string | null;
|
|
1373
2116
|
headline: string | null;
|
|
1374
|
-
profileUrl: string | null;
|
|
1375
|
-
profilePicture: string | null;
|
|
1376
2117
|
firstName: string | null;
|
|
1377
2118
|
lastName: string | null;
|
|
2119
|
+
profileUrl: string | null;
|
|
2120
|
+
profilePicture: string | null;
|
|
1378
2121
|
} | null;
|
|
1379
2122
|
media: {
|
|
1380
2123
|
type: string | null;
|
|
@@ -1395,6 +2138,84 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1395
2138
|
} | null;
|
|
1396
2139
|
}[];
|
|
1397
2140
|
totalPosts: number;
|
|
2141
|
+
profile?: {
|
|
2142
|
+
id: string | null;
|
|
2143
|
+
photo: string | null;
|
|
2144
|
+
verified: boolean | null;
|
|
2145
|
+
location: {
|
|
2146
|
+
text: string | null;
|
|
2147
|
+
countryCode: string | null;
|
|
2148
|
+
country: string | null;
|
|
2149
|
+
state: string | null;
|
|
2150
|
+
city: string | null;
|
|
2151
|
+
} | null;
|
|
2152
|
+
headline: string | null;
|
|
2153
|
+
skills: {
|
|
2154
|
+
name: string | null;
|
|
2155
|
+
}[] | null;
|
|
2156
|
+
firstName: string | null;
|
|
2157
|
+
lastName: string | null;
|
|
2158
|
+
publicIdentifier: string | null;
|
|
2159
|
+
linkedinUrl: string | null;
|
|
2160
|
+
about: string | null;
|
|
2161
|
+
openToWork: boolean | null;
|
|
2162
|
+
hiring: boolean | null;
|
|
2163
|
+
premium: boolean | null;
|
|
2164
|
+
influencer: boolean | null;
|
|
2165
|
+
topSkills: string | null;
|
|
2166
|
+
connectionsCount: number | null;
|
|
2167
|
+
followerCount: number | null;
|
|
2168
|
+
currentPosition: {
|
|
2169
|
+
companyName: string | null;
|
|
2170
|
+
}[] | null;
|
|
2171
|
+
experience: {
|
|
2172
|
+
duration: string | null;
|
|
2173
|
+
description: string | null;
|
|
2174
|
+
location: string | null;
|
|
2175
|
+
companyName: string | null;
|
|
2176
|
+
companyLinkedinUrl: string | null;
|
|
2177
|
+
employmentType: string | null;
|
|
2178
|
+
position: string | null;
|
|
2179
|
+
workplaceType: string | null;
|
|
2180
|
+
skills: string[] | null;
|
|
2181
|
+
startDate: {
|
|
2182
|
+
text: string | null;
|
|
2183
|
+
year: number | null;
|
|
2184
|
+
month: string | null;
|
|
2185
|
+
} | null;
|
|
2186
|
+
endDate: {
|
|
2187
|
+
text: string | null;
|
|
2188
|
+
year: number | null;
|
|
2189
|
+
month: string | null;
|
|
2190
|
+
} | null;
|
|
2191
|
+
}[] | null;
|
|
2192
|
+
education: {
|
|
2193
|
+
startDate: {
|
|
2194
|
+
text: string | null;
|
|
2195
|
+
year: number | null;
|
|
2196
|
+
month: string | null;
|
|
2197
|
+
} | null;
|
|
2198
|
+
endDate: {
|
|
2199
|
+
text: string | null;
|
|
2200
|
+
year: number | null;
|
|
2201
|
+
month: string | null;
|
|
2202
|
+
} | null;
|
|
2203
|
+
schoolName: string | null;
|
|
2204
|
+
schoolLinkedinUrl: string | null;
|
|
2205
|
+
degree: string | null;
|
|
2206
|
+
fieldOfStudy: string | null;
|
|
2207
|
+
period: string | null;
|
|
2208
|
+
}[] | null;
|
|
2209
|
+
certifications: {
|
|
2210
|
+
title: string | null;
|
|
2211
|
+
issuedAt: string | null;
|
|
2212
|
+
issuedBy: string | null;
|
|
2213
|
+
}[] | null;
|
|
2214
|
+
languages: {
|
|
2215
|
+
name: string | null;
|
|
2216
|
+
proficiency: string | null;
|
|
2217
|
+
}[] | null;
|
|
2218
|
+
} | null | undefined;
|
|
1398
2219
|
username?: string | undefined;
|
|
1399
2220
|
keyword?: string | undefined;
|
|
1400
2221
|
jobs?: {
|
|
@@ -1408,17 +2229,17 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1408
2229
|
salary: {
|
|
1409
2230
|
from: number | null;
|
|
1410
2231
|
to: number | null;
|
|
1411
|
-
currency: string | null;
|
|
1412
2232
|
period: string | null;
|
|
2233
|
+
currency: string | null;
|
|
1413
2234
|
} | null;
|
|
1414
2235
|
seniorityLevel: string | null;
|
|
1415
2236
|
employmentType: string | null;
|
|
2237
|
+
skills: string[] | null;
|
|
1416
2238
|
company: {
|
|
1417
2239
|
name: string | null;
|
|
1418
2240
|
url: string | null;
|
|
1419
2241
|
logo: string | null;
|
|
1420
2242
|
} | null;
|
|
1421
|
-
skills: string[] | null;
|
|
1422
2243
|
}[] | undefined;
|
|
1423
2244
|
totalResults?: number | null | undefined;
|
|
1424
2245
|
paginationToken?: string | null | undefined;
|
|
@@ -1426,7 +2247,7 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1426
2247
|
}, {
|
|
1427
2248
|
error: string;
|
|
1428
2249
|
success: boolean;
|
|
1429
|
-
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
2250
|
+
operation: "scrapeProfile" | "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1430
2251
|
posts: {
|
|
1431
2252
|
stats: {
|
|
1432
2253
|
like: number | null;
|
|
@@ -1451,10 +2272,10 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1451
2272
|
author: {
|
|
1452
2273
|
username: string | null;
|
|
1453
2274
|
headline: string | null;
|
|
1454
|
-
profileUrl: string | null;
|
|
1455
|
-
profilePicture: string | null;
|
|
1456
2275
|
firstName: string | null;
|
|
1457
2276
|
lastName: string | null;
|
|
2277
|
+
profileUrl: string | null;
|
|
2278
|
+
profilePicture: string | null;
|
|
1458
2279
|
} | null;
|
|
1459
2280
|
media: {
|
|
1460
2281
|
type: string | null;
|
|
@@ -1497,30 +2318,108 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1497
2318
|
author: {
|
|
1498
2319
|
username: string | null;
|
|
1499
2320
|
headline: string | null;
|
|
1500
|
-
profileUrl: string | null;
|
|
1501
|
-
profilePicture: string | null;
|
|
1502
2321
|
firstName: string | null;
|
|
1503
2322
|
lastName: string | null;
|
|
2323
|
+
profileUrl: string | null;
|
|
2324
|
+
profilePicture: string | null;
|
|
2325
|
+
} | null;
|
|
2326
|
+
media: {
|
|
2327
|
+
type: string | null;
|
|
2328
|
+
url: string | null;
|
|
2329
|
+
images: {
|
|
2330
|
+
url: string | null;
|
|
2331
|
+
width: number | null;
|
|
2332
|
+
height: number | null;
|
|
2333
|
+
}[] | null;
|
|
2334
|
+
thumbnail: string | null;
|
|
2335
|
+
} | null;
|
|
2336
|
+
postedAt: {
|
|
2337
|
+
date: string | null;
|
|
2338
|
+
relative: string | null;
|
|
2339
|
+
timestamp: number | null;
|
|
2340
|
+
} | null;
|
|
2341
|
+
postType: string | null;
|
|
2342
|
+
} | null;
|
|
2343
|
+
}[];
|
|
2344
|
+
totalPosts: number;
|
|
2345
|
+
profile?: {
|
|
2346
|
+
id: string | null;
|
|
2347
|
+
photo: string | null;
|
|
2348
|
+
verified: boolean | null;
|
|
2349
|
+
location: {
|
|
2350
|
+
text: string | null;
|
|
2351
|
+
countryCode: string | null;
|
|
2352
|
+
country: string | null;
|
|
2353
|
+
state: string | null;
|
|
2354
|
+
city: string | null;
|
|
2355
|
+
} | null;
|
|
2356
|
+
headline: string | null;
|
|
2357
|
+
skills: {
|
|
2358
|
+
name: string | null;
|
|
2359
|
+
}[] | null;
|
|
2360
|
+
firstName: string | null;
|
|
2361
|
+
lastName: string | null;
|
|
2362
|
+
publicIdentifier: string | null;
|
|
2363
|
+
linkedinUrl: string | null;
|
|
2364
|
+
about: string | null;
|
|
2365
|
+
openToWork: boolean | null;
|
|
2366
|
+
hiring: boolean | null;
|
|
2367
|
+
premium: boolean | null;
|
|
2368
|
+
influencer: boolean | null;
|
|
2369
|
+
topSkills: string | null;
|
|
2370
|
+
connectionsCount: number | null;
|
|
2371
|
+
followerCount: number | null;
|
|
2372
|
+
currentPosition: {
|
|
2373
|
+
companyName: string | null;
|
|
2374
|
+
}[] | null;
|
|
2375
|
+
experience: {
|
|
2376
|
+
duration: string | null;
|
|
2377
|
+
description: string | null;
|
|
2378
|
+
location: string | null;
|
|
2379
|
+
companyName: string | null;
|
|
2380
|
+
companyLinkedinUrl: string | null;
|
|
2381
|
+
employmentType: string | null;
|
|
2382
|
+
position: string | null;
|
|
2383
|
+
workplaceType: string | null;
|
|
2384
|
+
skills: string[] | null;
|
|
2385
|
+
startDate: {
|
|
2386
|
+
text: string | null;
|
|
2387
|
+
year: number | null;
|
|
2388
|
+
month: string | null;
|
|
2389
|
+
} | null;
|
|
2390
|
+
endDate: {
|
|
2391
|
+
text: string | null;
|
|
2392
|
+
year: number | null;
|
|
2393
|
+
month: string | null;
|
|
1504
2394
|
} | null;
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
height: number | null;
|
|
1512
|
-
}[] | null;
|
|
1513
|
-
thumbnail: string | null;
|
|
2395
|
+
}[] | null;
|
|
2396
|
+
education: {
|
|
2397
|
+
startDate: {
|
|
2398
|
+
text: string | null;
|
|
2399
|
+
year: number | null;
|
|
2400
|
+
month: string | null;
|
|
1514
2401
|
} | null;
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
2402
|
+
endDate: {
|
|
2403
|
+
text: string | null;
|
|
2404
|
+
year: number | null;
|
|
2405
|
+
month: string | null;
|
|
1519
2406
|
} | null;
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
2407
|
+
schoolName: string | null;
|
|
2408
|
+
schoolLinkedinUrl: string | null;
|
|
2409
|
+
degree: string | null;
|
|
2410
|
+
fieldOfStudy: string | null;
|
|
2411
|
+
period: string | null;
|
|
2412
|
+
}[] | null;
|
|
2413
|
+
certifications: {
|
|
2414
|
+
title: string | null;
|
|
2415
|
+
issuedAt: string | null;
|
|
2416
|
+
issuedBy: string | null;
|
|
2417
|
+
}[] | null;
|
|
2418
|
+
languages: {
|
|
2419
|
+
name: string | null;
|
|
2420
|
+
proficiency: string | null;
|
|
2421
|
+
}[] | null;
|
|
2422
|
+
} | null | undefined;
|
|
1524
2423
|
username?: string | undefined;
|
|
1525
2424
|
keyword?: string | undefined;
|
|
1526
2425
|
jobs?: {
|
|
@@ -1534,17 +2433,17 @@ declare const LinkedInToolResultSchema: z.ZodObject<{
|
|
|
1534
2433
|
salary: {
|
|
1535
2434
|
from: number | null;
|
|
1536
2435
|
to: number | null;
|
|
1537
|
-
currency: string | null;
|
|
1538
2436
|
period: string | null;
|
|
2437
|
+
currency: string | null;
|
|
1539
2438
|
} | null;
|
|
1540
2439
|
seniorityLevel: string | null;
|
|
1541
2440
|
employmentType: string | null;
|
|
2441
|
+
skills: string[] | null;
|
|
1542
2442
|
company: {
|
|
1543
2443
|
name: string | null;
|
|
1544
2444
|
url: string | null;
|
|
1545
2445
|
logo: string | null;
|
|
1546
2446
|
} | null;
|
|
1547
|
-
skills: string[] | null;
|
|
1548
2447
|
}[] | undefined;
|
|
1549
2448
|
totalResults?: number | null | undefined;
|
|
1550
2449
|
paginationToken?: string | null | undefined;
|
|
@@ -1557,6 +2456,7 @@ export type LinkedInPost = z.output<typeof LinkedInPostSchema>;
|
|
|
1557
2456
|
export type LinkedInJob = z.output<typeof LinkedInJobSchema>;
|
|
1558
2457
|
export type LinkedInAuthor = z.output<typeof LinkedInAuthorSchema>;
|
|
1559
2458
|
export type LinkedInStats = z.output<typeof LinkedInStatsSchema>;
|
|
2459
|
+
export type LinkedInProfile = z.output<typeof LinkedInProfileSchema>;
|
|
1560
2460
|
/**
|
|
1561
2461
|
* LinkedIn scraping tool with multiple operations
|
|
1562
2462
|
*
|
|
@@ -1575,7 +2475,8 @@ export type LinkedInStats = z.output<typeof LinkedInStatsSchema>;
|
|
|
1575
2475
|
export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedInToolResult> {
|
|
1576
2476
|
static readonly bubbleName: BubbleName;
|
|
1577
2477
|
static readonly schema: z.ZodObject<{
|
|
1578
|
-
operation: z.ZodEnum<["scrapePosts", "searchPosts", "scrapeJobs"]>;
|
|
2478
|
+
operation: z.ZodEnum<["scrapeProfile", "scrapePosts", "searchPosts", "scrapeJobs"]>;
|
|
2479
|
+
profileUrl: z.ZodOptional<z.ZodString>;
|
|
1579
2480
|
username: z.ZodOptional<z.ZodString>;
|
|
1580
2481
|
keyword: z.ZodOptional<z.ZodString>;
|
|
1581
2482
|
location: z.ZodOptional<z.ZodString>;
|
|
@@ -1588,34 +2489,406 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1588
2489
|
pageNumber: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
1589
2490
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1590
2491
|
}, "strip", z.ZodTypeAny, {
|
|
1591
|
-
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
2492
|
+
operation: "scrapeProfile" | "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1592
2493
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1593
2494
|
username?: string | undefined;
|
|
1594
2495
|
limit?: number | undefined;
|
|
1595
2496
|
pageNumber?: number | undefined;
|
|
1596
2497
|
location?: string | undefined;
|
|
1597
2498
|
keyword?: string | undefined;
|
|
2499
|
+
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
1598
2500
|
dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
|
|
2501
|
+
profileUrl?: string | undefined;
|
|
1599
2502
|
jobType?: ("full-time" | "part-time" | "contract" | "temporary" | "internship")[] | undefined;
|
|
1600
|
-
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
1601
2503
|
experienceLevel?: ("executive" | "associate" | "internship" | "entry-level" | "mid-senior" | "director")[] | undefined;
|
|
1602
2504
|
sortBy?: "relevance" | "date_posted" | undefined;
|
|
1603
2505
|
}, {
|
|
1604
|
-
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
2506
|
+
operation: "scrapeProfile" | "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
1605
2507
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1606
2508
|
username?: string | undefined;
|
|
1607
2509
|
limit?: number | undefined;
|
|
1608
2510
|
pageNumber?: number | undefined;
|
|
1609
2511
|
location?: string | undefined;
|
|
1610
2512
|
keyword?: string | undefined;
|
|
2513
|
+
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
1611
2514
|
dateFilter?: "past-24h" | "past-week" | "past-month" | undefined;
|
|
2515
|
+
profileUrl?: string | undefined;
|
|
1612
2516
|
jobType?: ("full-time" | "part-time" | "contract" | "temporary" | "internship")[] | undefined;
|
|
1613
|
-
workplaceType?: ("on-site" | "remote" | "hybrid")[] | undefined;
|
|
1614
2517
|
experienceLevel?: ("executive" | "associate" | "internship" | "entry-level" | "mid-senior" | "director")[] | undefined;
|
|
1615
2518
|
sortBy?: "relevance" | "date_posted" | undefined;
|
|
1616
2519
|
}>;
|
|
1617
2520
|
static readonly resultSchema: z.ZodObject<{
|
|
1618
|
-
operation: z.ZodEnum<["scrapePosts", "searchPosts", "scrapeJobs"]>;
|
|
2521
|
+
operation: z.ZodEnum<["scrapeProfile", "scrapePosts", "searchPosts", "scrapeJobs"]>;
|
|
2522
|
+
profile: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2523
|
+
id: z.ZodNullable<z.ZodString>;
|
|
2524
|
+
publicIdentifier: z.ZodNullable<z.ZodString>;
|
|
2525
|
+
linkedinUrl: z.ZodNullable<z.ZodString>;
|
|
2526
|
+
firstName: z.ZodNullable<z.ZodString>;
|
|
2527
|
+
lastName: z.ZodNullable<z.ZodString>;
|
|
2528
|
+
headline: z.ZodNullable<z.ZodString>;
|
|
2529
|
+
about: z.ZodNullable<z.ZodString>;
|
|
2530
|
+
openToWork: z.ZodNullable<z.ZodBoolean>;
|
|
2531
|
+
hiring: z.ZodNullable<z.ZodBoolean>;
|
|
2532
|
+
photo: z.ZodNullable<z.ZodString>;
|
|
2533
|
+
premium: z.ZodNullable<z.ZodBoolean>;
|
|
2534
|
+
influencer: z.ZodNullable<z.ZodBoolean>;
|
|
2535
|
+
location: z.ZodNullable<z.ZodObject<{
|
|
2536
|
+
text: z.ZodNullable<z.ZodString>;
|
|
2537
|
+
countryCode: z.ZodNullable<z.ZodString>;
|
|
2538
|
+
country: z.ZodNullable<z.ZodString>;
|
|
2539
|
+
state: z.ZodNullable<z.ZodString>;
|
|
2540
|
+
city: z.ZodNullable<z.ZodString>;
|
|
2541
|
+
}, "strip", z.ZodTypeAny, {
|
|
2542
|
+
text: string | null;
|
|
2543
|
+
countryCode: string | null;
|
|
2544
|
+
country: string | null;
|
|
2545
|
+
state: string | null;
|
|
2546
|
+
city: string | null;
|
|
2547
|
+
}, {
|
|
2548
|
+
text: string | null;
|
|
2549
|
+
countryCode: string | null;
|
|
2550
|
+
country: string | null;
|
|
2551
|
+
state: string | null;
|
|
2552
|
+
city: string | null;
|
|
2553
|
+
}>>;
|
|
2554
|
+
verified: z.ZodNullable<z.ZodBoolean>;
|
|
2555
|
+
topSkills: z.ZodNullable<z.ZodString>;
|
|
2556
|
+
connectionsCount: z.ZodNullable<z.ZodNumber>;
|
|
2557
|
+
followerCount: z.ZodNullable<z.ZodNumber>;
|
|
2558
|
+
currentPosition: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2559
|
+
companyName: z.ZodNullable<z.ZodString>;
|
|
2560
|
+
}, "strip", z.ZodTypeAny, {
|
|
2561
|
+
companyName: string | null;
|
|
2562
|
+
}, {
|
|
2563
|
+
companyName: string | null;
|
|
2564
|
+
}>, "many">>;
|
|
2565
|
+
experience: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2566
|
+
position: z.ZodNullable<z.ZodString>;
|
|
2567
|
+
location: z.ZodNullable<z.ZodString>;
|
|
2568
|
+
employmentType: z.ZodNullable<z.ZodString>;
|
|
2569
|
+
workplaceType: z.ZodNullable<z.ZodString>;
|
|
2570
|
+
companyName: z.ZodNullable<z.ZodString>;
|
|
2571
|
+
companyLinkedinUrl: z.ZodNullable<z.ZodString>;
|
|
2572
|
+
duration: z.ZodNullable<z.ZodString>;
|
|
2573
|
+
description: z.ZodNullable<z.ZodString>;
|
|
2574
|
+
skills: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
2575
|
+
startDate: z.ZodNullable<z.ZodObject<{
|
|
2576
|
+
month: z.ZodNullable<z.ZodString>;
|
|
2577
|
+
year: z.ZodNullable<z.ZodNumber>;
|
|
2578
|
+
text: z.ZodNullable<z.ZodString>;
|
|
2579
|
+
}, "strip", z.ZodTypeAny, {
|
|
2580
|
+
text: string | null;
|
|
2581
|
+
year: number | null;
|
|
2582
|
+
month: string | null;
|
|
2583
|
+
}, {
|
|
2584
|
+
text: string | null;
|
|
2585
|
+
year: number | null;
|
|
2586
|
+
month: string | null;
|
|
2587
|
+
}>>;
|
|
2588
|
+
endDate: z.ZodNullable<z.ZodObject<{
|
|
2589
|
+
month: z.ZodNullable<z.ZodString>;
|
|
2590
|
+
year: z.ZodNullable<z.ZodNumber>;
|
|
2591
|
+
text: z.ZodNullable<z.ZodString>;
|
|
2592
|
+
}, "strip", z.ZodTypeAny, {
|
|
2593
|
+
text: string | null;
|
|
2594
|
+
year: number | null;
|
|
2595
|
+
month: string | null;
|
|
2596
|
+
}, {
|
|
2597
|
+
text: string | null;
|
|
2598
|
+
year: number | null;
|
|
2599
|
+
month: string | null;
|
|
2600
|
+
}>>;
|
|
2601
|
+
}, "strip", z.ZodTypeAny, {
|
|
2602
|
+
duration: string | null;
|
|
2603
|
+
description: string | null;
|
|
2604
|
+
location: string | null;
|
|
2605
|
+
companyName: string | null;
|
|
2606
|
+
companyLinkedinUrl: string | null;
|
|
2607
|
+
employmentType: string | null;
|
|
2608
|
+
position: string | null;
|
|
2609
|
+
workplaceType: string | null;
|
|
2610
|
+
skills: string[] | null;
|
|
2611
|
+
startDate: {
|
|
2612
|
+
text: string | null;
|
|
2613
|
+
year: number | null;
|
|
2614
|
+
month: string | null;
|
|
2615
|
+
} | null;
|
|
2616
|
+
endDate: {
|
|
2617
|
+
text: string | null;
|
|
2618
|
+
year: number | null;
|
|
2619
|
+
month: string | null;
|
|
2620
|
+
} | null;
|
|
2621
|
+
}, {
|
|
2622
|
+
duration: string | null;
|
|
2623
|
+
description: string | null;
|
|
2624
|
+
location: string | null;
|
|
2625
|
+
companyName: string | null;
|
|
2626
|
+
companyLinkedinUrl: string | null;
|
|
2627
|
+
employmentType: string | null;
|
|
2628
|
+
position: string | null;
|
|
2629
|
+
workplaceType: string | null;
|
|
2630
|
+
skills: string[] | null;
|
|
2631
|
+
startDate: {
|
|
2632
|
+
text: string | null;
|
|
2633
|
+
year: number | null;
|
|
2634
|
+
month: string | null;
|
|
2635
|
+
} | null;
|
|
2636
|
+
endDate: {
|
|
2637
|
+
text: string | null;
|
|
2638
|
+
year: number | null;
|
|
2639
|
+
month: string | null;
|
|
2640
|
+
} | null;
|
|
2641
|
+
}>, "many">>;
|
|
2642
|
+
education: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2643
|
+
schoolName: z.ZodNullable<z.ZodString>;
|
|
2644
|
+
schoolLinkedinUrl: z.ZodNullable<z.ZodString>;
|
|
2645
|
+
degree: z.ZodNullable<z.ZodString>;
|
|
2646
|
+
fieldOfStudy: z.ZodNullable<z.ZodString>;
|
|
2647
|
+
startDate: z.ZodNullable<z.ZodObject<{
|
|
2648
|
+
month: z.ZodNullable<z.ZodString>;
|
|
2649
|
+
year: z.ZodNullable<z.ZodNumber>;
|
|
2650
|
+
text: z.ZodNullable<z.ZodString>;
|
|
2651
|
+
}, "strip", z.ZodTypeAny, {
|
|
2652
|
+
text: string | null;
|
|
2653
|
+
year: number | null;
|
|
2654
|
+
month: string | null;
|
|
2655
|
+
}, {
|
|
2656
|
+
text: string | null;
|
|
2657
|
+
year: number | null;
|
|
2658
|
+
month: string | null;
|
|
2659
|
+
}>>;
|
|
2660
|
+
endDate: z.ZodNullable<z.ZodObject<{
|
|
2661
|
+
month: z.ZodNullable<z.ZodString>;
|
|
2662
|
+
year: z.ZodNullable<z.ZodNumber>;
|
|
2663
|
+
text: z.ZodNullable<z.ZodString>;
|
|
2664
|
+
}, "strip", z.ZodTypeAny, {
|
|
2665
|
+
text: string | null;
|
|
2666
|
+
year: number | null;
|
|
2667
|
+
month: string | null;
|
|
2668
|
+
}, {
|
|
2669
|
+
text: string | null;
|
|
2670
|
+
year: number | null;
|
|
2671
|
+
month: string | null;
|
|
2672
|
+
}>>;
|
|
2673
|
+
period: z.ZodNullable<z.ZodString>;
|
|
2674
|
+
}, "strip", z.ZodTypeAny, {
|
|
2675
|
+
startDate: {
|
|
2676
|
+
text: string | null;
|
|
2677
|
+
year: number | null;
|
|
2678
|
+
month: string | null;
|
|
2679
|
+
} | null;
|
|
2680
|
+
endDate: {
|
|
2681
|
+
text: string | null;
|
|
2682
|
+
year: number | null;
|
|
2683
|
+
month: string | null;
|
|
2684
|
+
} | null;
|
|
2685
|
+
schoolName: string | null;
|
|
2686
|
+
schoolLinkedinUrl: string | null;
|
|
2687
|
+
degree: string | null;
|
|
2688
|
+
fieldOfStudy: string | null;
|
|
2689
|
+
period: string | null;
|
|
2690
|
+
}, {
|
|
2691
|
+
startDate: {
|
|
2692
|
+
text: string | null;
|
|
2693
|
+
year: number | null;
|
|
2694
|
+
month: string | null;
|
|
2695
|
+
} | null;
|
|
2696
|
+
endDate: {
|
|
2697
|
+
text: string | null;
|
|
2698
|
+
year: number | null;
|
|
2699
|
+
month: string | null;
|
|
2700
|
+
} | null;
|
|
2701
|
+
schoolName: string | null;
|
|
2702
|
+
schoolLinkedinUrl: string | null;
|
|
2703
|
+
degree: string | null;
|
|
2704
|
+
fieldOfStudy: string | null;
|
|
2705
|
+
period: string | null;
|
|
2706
|
+
}>, "many">>;
|
|
2707
|
+
certifications: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2708
|
+
title: z.ZodNullable<z.ZodString>;
|
|
2709
|
+
issuedAt: z.ZodNullable<z.ZodString>;
|
|
2710
|
+
issuedBy: z.ZodNullable<z.ZodString>;
|
|
2711
|
+
}, "strip", z.ZodTypeAny, {
|
|
2712
|
+
title: string | null;
|
|
2713
|
+
issuedAt: string | null;
|
|
2714
|
+
issuedBy: string | null;
|
|
2715
|
+
}, {
|
|
2716
|
+
title: string | null;
|
|
2717
|
+
issuedAt: string | null;
|
|
2718
|
+
issuedBy: string | null;
|
|
2719
|
+
}>, "many">>;
|
|
2720
|
+
languages: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2721
|
+
name: z.ZodNullable<z.ZodString>;
|
|
2722
|
+
proficiency: z.ZodNullable<z.ZodString>;
|
|
2723
|
+
}, "strip", z.ZodTypeAny, {
|
|
2724
|
+
name: string | null;
|
|
2725
|
+
proficiency: string | null;
|
|
2726
|
+
}, {
|
|
2727
|
+
name: string | null;
|
|
2728
|
+
proficiency: string | null;
|
|
2729
|
+
}>, "many">>;
|
|
2730
|
+
skills: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2731
|
+
name: z.ZodNullable<z.ZodString>;
|
|
2732
|
+
}, "strip", z.ZodTypeAny, {
|
|
2733
|
+
name: string | null;
|
|
2734
|
+
}, {
|
|
2735
|
+
name: string | null;
|
|
2736
|
+
}>, "many">>;
|
|
2737
|
+
}, "strip", z.ZodTypeAny, {
|
|
2738
|
+
id: string | null;
|
|
2739
|
+
photo: string | null;
|
|
2740
|
+
verified: boolean | null;
|
|
2741
|
+
location: {
|
|
2742
|
+
text: string | null;
|
|
2743
|
+
countryCode: string | null;
|
|
2744
|
+
country: string | null;
|
|
2745
|
+
state: string | null;
|
|
2746
|
+
city: string | null;
|
|
2747
|
+
} | null;
|
|
2748
|
+
headline: string | null;
|
|
2749
|
+
skills: {
|
|
2750
|
+
name: string | null;
|
|
2751
|
+
}[] | null;
|
|
2752
|
+
firstName: string | null;
|
|
2753
|
+
lastName: string | null;
|
|
2754
|
+
publicIdentifier: string | null;
|
|
2755
|
+
linkedinUrl: string | null;
|
|
2756
|
+
about: string | null;
|
|
2757
|
+
openToWork: boolean | null;
|
|
2758
|
+
hiring: boolean | null;
|
|
2759
|
+
premium: boolean | null;
|
|
2760
|
+
influencer: boolean | null;
|
|
2761
|
+
topSkills: string | null;
|
|
2762
|
+
connectionsCount: number | null;
|
|
2763
|
+
followerCount: number | null;
|
|
2764
|
+
currentPosition: {
|
|
2765
|
+
companyName: string | null;
|
|
2766
|
+
}[] | null;
|
|
2767
|
+
experience: {
|
|
2768
|
+
duration: string | null;
|
|
2769
|
+
description: string | null;
|
|
2770
|
+
location: string | null;
|
|
2771
|
+
companyName: string | null;
|
|
2772
|
+
companyLinkedinUrl: string | null;
|
|
2773
|
+
employmentType: string | null;
|
|
2774
|
+
position: string | null;
|
|
2775
|
+
workplaceType: string | null;
|
|
2776
|
+
skills: string[] | null;
|
|
2777
|
+
startDate: {
|
|
2778
|
+
text: string | null;
|
|
2779
|
+
year: number | null;
|
|
2780
|
+
month: string | null;
|
|
2781
|
+
} | null;
|
|
2782
|
+
endDate: {
|
|
2783
|
+
text: string | null;
|
|
2784
|
+
year: number | null;
|
|
2785
|
+
month: string | null;
|
|
2786
|
+
} | null;
|
|
2787
|
+
}[] | null;
|
|
2788
|
+
education: {
|
|
2789
|
+
startDate: {
|
|
2790
|
+
text: string | null;
|
|
2791
|
+
year: number | null;
|
|
2792
|
+
month: string | null;
|
|
2793
|
+
} | null;
|
|
2794
|
+
endDate: {
|
|
2795
|
+
text: string | null;
|
|
2796
|
+
year: number | null;
|
|
2797
|
+
month: string | null;
|
|
2798
|
+
} | null;
|
|
2799
|
+
schoolName: string | null;
|
|
2800
|
+
schoolLinkedinUrl: string | null;
|
|
2801
|
+
degree: string | null;
|
|
2802
|
+
fieldOfStudy: string | null;
|
|
2803
|
+
period: string | null;
|
|
2804
|
+
}[] | null;
|
|
2805
|
+
certifications: {
|
|
2806
|
+
title: string | null;
|
|
2807
|
+
issuedAt: string | null;
|
|
2808
|
+
issuedBy: string | null;
|
|
2809
|
+
}[] | null;
|
|
2810
|
+
languages: {
|
|
2811
|
+
name: string | null;
|
|
2812
|
+
proficiency: string | null;
|
|
2813
|
+
}[] | null;
|
|
2814
|
+
}, {
|
|
2815
|
+
id: string | null;
|
|
2816
|
+
photo: string | null;
|
|
2817
|
+
verified: boolean | null;
|
|
2818
|
+
location: {
|
|
2819
|
+
text: string | null;
|
|
2820
|
+
countryCode: string | null;
|
|
2821
|
+
country: string | null;
|
|
2822
|
+
state: string | null;
|
|
2823
|
+
city: string | null;
|
|
2824
|
+
} | null;
|
|
2825
|
+
headline: string | null;
|
|
2826
|
+
skills: {
|
|
2827
|
+
name: string | null;
|
|
2828
|
+
}[] | null;
|
|
2829
|
+
firstName: string | null;
|
|
2830
|
+
lastName: string | null;
|
|
2831
|
+
publicIdentifier: string | null;
|
|
2832
|
+
linkedinUrl: string | null;
|
|
2833
|
+
about: string | null;
|
|
2834
|
+
openToWork: boolean | null;
|
|
2835
|
+
hiring: boolean | null;
|
|
2836
|
+
premium: boolean | null;
|
|
2837
|
+
influencer: boolean | null;
|
|
2838
|
+
topSkills: string | null;
|
|
2839
|
+
connectionsCount: number | null;
|
|
2840
|
+
followerCount: number | null;
|
|
2841
|
+
currentPosition: {
|
|
2842
|
+
companyName: string | null;
|
|
2843
|
+
}[] | null;
|
|
2844
|
+
experience: {
|
|
2845
|
+
duration: string | null;
|
|
2846
|
+
description: string | null;
|
|
2847
|
+
location: string | null;
|
|
2848
|
+
companyName: string | null;
|
|
2849
|
+
companyLinkedinUrl: string | null;
|
|
2850
|
+
employmentType: string | null;
|
|
2851
|
+
position: string | null;
|
|
2852
|
+
workplaceType: string | null;
|
|
2853
|
+
skills: string[] | null;
|
|
2854
|
+
startDate: {
|
|
2855
|
+
text: string | null;
|
|
2856
|
+
year: number | null;
|
|
2857
|
+
month: string | null;
|
|
2858
|
+
} | null;
|
|
2859
|
+
endDate: {
|
|
2860
|
+
text: string | null;
|
|
2861
|
+
year: number | null;
|
|
2862
|
+
month: string | null;
|
|
2863
|
+
} | null;
|
|
2864
|
+
}[] | null;
|
|
2865
|
+
education: {
|
|
2866
|
+
startDate: {
|
|
2867
|
+
text: string | null;
|
|
2868
|
+
year: number | null;
|
|
2869
|
+
month: string | null;
|
|
2870
|
+
} | null;
|
|
2871
|
+
endDate: {
|
|
2872
|
+
text: string | null;
|
|
2873
|
+
year: number | null;
|
|
2874
|
+
month: string | null;
|
|
2875
|
+
} | null;
|
|
2876
|
+
schoolName: string | null;
|
|
2877
|
+
schoolLinkedinUrl: string | null;
|
|
2878
|
+
degree: string | null;
|
|
2879
|
+
fieldOfStudy: string | null;
|
|
2880
|
+
period: string | null;
|
|
2881
|
+
}[] | null;
|
|
2882
|
+
certifications: {
|
|
2883
|
+
title: string | null;
|
|
2884
|
+
issuedAt: string | null;
|
|
2885
|
+
issuedBy: string | null;
|
|
2886
|
+
}[] | null;
|
|
2887
|
+
languages: {
|
|
2888
|
+
name: string | null;
|
|
2889
|
+
proficiency: string | null;
|
|
2890
|
+
}[] | null;
|
|
2891
|
+
}>>>;
|
|
1619
2892
|
jobs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1620
2893
|
id: z.ZodNullable<z.ZodString>;
|
|
1621
2894
|
title: z.ZodNullable<z.ZodString>;
|
|
@@ -1647,13 +2920,13 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1647
2920
|
}, "strip", z.ZodTypeAny, {
|
|
1648
2921
|
from: number | null;
|
|
1649
2922
|
to: number | null;
|
|
1650
|
-
currency: string | null;
|
|
1651
2923
|
period: string | null;
|
|
2924
|
+
currency: string | null;
|
|
1652
2925
|
}, {
|
|
1653
2926
|
from: number | null;
|
|
1654
2927
|
to: number | null;
|
|
1655
|
-
currency: string | null;
|
|
1656
2928
|
period: string | null;
|
|
2929
|
+
currency: string | null;
|
|
1657
2930
|
}>>;
|
|
1658
2931
|
skills: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
1659
2932
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1667,17 +2940,17 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1667
2940
|
salary: {
|
|
1668
2941
|
from: number | null;
|
|
1669
2942
|
to: number | null;
|
|
1670
|
-
currency: string | null;
|
|
1671
2943
|
period: string | null;
|
|
2944
|
+
currency: string | null;
|
|
1672
2945
|
} | null;
|
|
1673
2946
|
seniorityLevel: string | null;
|
|
1674
2947
|
employmentType: string | null;
|
|
2948
|
+
skills: string[] | null;
|
|
1675
2949
|
company: {
|
|
1676
2950
|
name: string | null;
|
|
1677
2951
|
url: string | null;
|
|
1678
2952
|
logo: string | null;
|
|
1679
2953
|
} | null;
|
|
1680
|
-
skills: string[] | null;
|
|
1681
2954
|
}, {
|
|
1682
2955
|
description: string | null;
|
|
1683
2956
|
title: string | null;
|
|
@@ -1689,17 +2962,17 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1689
2962
|
salary: {
|
|
1690
2963
|
from: number | null;
|
|
1691
2964
|
to: number | null;
|
|
1692
|
-
currency: string | null;
|
|
1693
2965
|
period: string | null;
|
|
2966
|
+
currency: string | null;
|
|
1694
2967
|
} | null;
|
|
1695
2968
|
seniorityLevel: string | null;
|
|
1696
2969
|
employmentType: string | null;
|
|
2970
|
+
skills: string[] | null;
|
|
1697
2971
|
company: {
|
|
1698
2972
|
name: string | null;
|
|
1699
2973
|
url: string | null;
|
|
1700
2974
|
logo: string | null;
|
|
1701
2975
|
} | null;
|
|
1702
|
-
skills: string[] | null;
|
|
1703
2976
|
}>, "many">>;
|
|
1704
2977
|
posts: z.ZodArray<z.ZodObject<{
|
|
1705
2978
|
urn: z.ZodNullable<z.ZodString>;
|
|
@@ -1730,17 +3003,17 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1730
3003
|
}, "strip", z.ZodTypeAny, {
|
|
1731
3004
|
username: string | null;
|
|
1732
3005
|
headline: string | null;
|
|
1733
|
-
profileUrl: string | null;
|
|
1734
|
-
profilePicture: string | null;
|
|
1735
3006
|
firstName: string | null;
|
|
1736
3007
|
lastName: string | null;
|
|
3008
|
+
profileUrl: string | null;
|
|
3009
|
+
profilePicture: string | null;
|
|
1737
3010
|
}, {
|
|
1738
3011
|
username: string | null;
|
|
1739
3012
|
headline: string | null;
|
|
1740
|
-
profileUrl: string | null;
|
|
1741
|
-
profilePicture: string | null;
|
|
1742
3013
|
firstName: string | null;
|
|
1743
3014
|
lastName: string | null;
|
|
3015
|
+
profileUrl: string | null;
|
|
3016
|
+
profilePicture: string | null;
|
|
1744
3017
|
}>>;
|
|
1745
3018
|
stats: z.ZodNullable<z.ZodObject<{
|
|
1746
3019
|
totalReactions: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1869,17 +3142,17 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1869
3142
|
}, "strip", z.ZodTypeAny, {
|
|
1870
3143
|
username: string | null;
|
|
1871
3144
|
headline: string | null;
|
|
1872
|
-
profileUrl: string | null;
|
|
1873
|
-
profilePicture: string | null;
|
|
1874
3145
|
firstName: string | null;
|
|
1875
3146
|
lastName: string | null;
|
|
3147
|
+
profileUrl: string | null;
|
|
3148
|
+
profilePicture: string | null;
|
|
1876
3149
|
}, {
|
|
1877
3150
|
username: string | null;
|
|
1878
3151
|
headline: string | null;
|
|
1879
|
-
profileUrl: string | null;
|
|
1880
|
-
profilePicture: string | null;
|
|
1881
3152
|
firstName: string | null;
|
|
1882
3153
|
lastName: string | null;
|
|
3154
|
+
profileUrl: string | null;
|
|
3155
|
+
profilePicture: string | null;
|
|
1883
3156
|
}>>;
|
|
1884
3157
|
stats: z.ZodNullable<z.ZodObject<{
|
|
1885
3158
|
totalReactions: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1966,10 +3239,10 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
1966
3239
|
author: {
|
|
1967
3240
|
username: string | null;
|
|
1968
3241
|
headline: string | null;
|
|
1969
|
-
profileUrl: string | null;
|
|
1970
|
-
profilePicture: string | null;
|
|
1971
3242
|
firstName: string | null;
|
|
1972
3243
|
lastName: string | null;
|
|
3244
|
+
profileUrl: string | null;
|
|
3245
|
+
profilePicture: string | null;
|
|
1973
3246
|
} | null;
|
|
1974
3247
|
media: {
|
|
1975
3248
|
type: string | null;
|
|
@@ -2005,10 +3278,10 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2005
3278
|
author: {
|
|
2006
3279
|
username: string | null;
|
|
2007
3280
|
headline: string | null;
|
|
2008
|
-
profileUrl: string | null;
|
|
2009
|
-
profilePicture: string | null;
|
|
2010
3281
|
firstName: string | null;
|
|
2011
3282
|
lastName: string | null;
|
|
3283
|
+
profileUrl: string | null;
|
|
3284
|
+
profilePicture: string | null;
|
|
2012
3285
|
} | null;
|
|
2013
3286
|
media: {
|
|
2014
3287
|
type: string | null;
|
|
@@ -2051,10 +3324,10 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2051
3324
|
author: {
|
|
2052
3325
|
username: string | null;
|
|
2053
3326
|
headline: string | null;
|
|
2054
|
-
profileUrl: string | null;
|
|
2055
|
-
profilePicture: string | null;
|
|
2056
3327
|
firstName: string | null;
|
|
2057
3328
|
lastName: string | null;
|
|
3329
|
+
profileUrl: string | null;
|
|
3330
|
+
profilePicture: string | null;
|
|
2058
3331
|
} | null;
|
|
2059
3332
|
media: {
|
|
2060
3333
|
type: string | null;
|
|
@@ -2097,10 +3370,10 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2097
3370
|
author: {
|
|
2098
3371
|
username: string | null;
|
|
2099
3372
|
headline: string | null;
|
|
2100
|
-
profileUrl: string | null;
|
|
2101
|
-
profilePicture: string | null;
|
|
2102
3373
|
firstName: string | null;
|
|
2103
3374
|
lastName: string | null;
|
|
3375
|
+
profileUrl: string | null;
|
|
3376
|
+
profilePicture: string | null;
|
|
2104
3377
|
} | null;
|
|
2105
3378
|
media: {
|
|
2106
3379
|
type: string | null;
|
|
@@ -2143,10 +3416,10 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2143
3416
|
author: {
|
|
2144
3417
|
username: string | null;
|
|
2145
3418
|
headline: string | null;
|
|
2146
|
-
profileUrl: string | null;
|
|
2147
|
-
profilePicture: string | null;
|
|
2148
3419
|
firstName: string | null;
|
|
2149
3420
|
lastName: string | null;
|
|
3421
|
+
profileUrl: string | null;
|
|
3422
|
+
profilePicture: string | null;
|
|
2150
3423
|
} | null;
|
|
2151
3424
|
media: {
|
|
2152
3425
|
type: string | null;
|
|
@@ -2189,10 +3462,10 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2189
3462
|
author: {
|
|
2190
3463
|
username: string | null;
|
|
2191
3464
|
headline: string | null;
|
|
2192
|
-
profileUrl: string | null;
|
|
2193
|
-
profilePicture: string | null;
|
|
2194
3465
|
firstName: string | null;
|
|
2195
3466
|
lastName: string | null;
|
|
3467
|
+
profileUrl: string | null;
|
|
3468
|
+
profilePicture: string | null;
|
|
2196
3469
|
} | null;
|
|
2197
3470
|
media: {
|
|
2198
3471
|
type: string | null;
|
|
@@ -2223,7 +3496,7 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2223
3496
|
}, "strip", z.ZodTypeAny, {
|
|
2224
3497
|
error: string;
|
|
2225
3498
|
success: boolean;
|
|
2226
|
-
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
3499
|
+
operation: "scrapeProfile" | "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
2227
3500
|
posts: {
|
|
2228
3501
|
stats: {
|
|
2229
3502
|
like: number | null;
|
|
@@ -2248,10 +3521,10 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2248
3521
|
author: {
|
|
2249
3522
|
username: string | null;
|
|
2250
3523
|
headline: string | null;
|
|
2251
|
-
profileUrl: string | null;
|
|
2252
|
-
profilePicture: string | null;
|
|
2253
3524
|
firstName: string | null;
|
|
2254
3525
|
lastName: string | null;
|
|
3526
|
+
profileUrl: string | null;
|
|
3527
|
+
profilePicture: string | null;
|
|
2255
3528
|
} | null;
|
|
2256
3529
|
media: {
|
|
2257
3530
|
type: string | null;
|
|
@@ -2294,10 +3567,10 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2294
3567
|
author: {
|
|
2295
3568
|
username: string | null;
|
|
2296
3569
|
headline: string | null;
|
|
2297
|
-
profileUrl: string | null;
|
|
2298
|
-
profilePicture: string | null;
|
|
2299
3570
|
firstName: string | null;
|
|
2300
3571
|
lastName: string | null;
|
|
3572
|
+
profileUrl: string | null;
|
|
3573
|
+
profilePicture: string | null;
|
|
2301
3574
|
} | null;
|
|
2302
3575
|
media: {
|
|
2303
3576
|
type: string | null;
|
|
@@ -2318,6 +3591,84 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2318
3591
|
} | null;
|
|
2319
3592
|
}[];
|
|
2320
3593
|
totalPosts: number;
|
|
3594
|
+
profile?: {
|
|
3595
|
+
id: string | null;
|
|
3596
|
+
photo: string | null;
|
|
3597
|
+
verified: boolean | null;
|
|
3598
|
+
location: {
|
|
3599
|
+
text: string | null;
|
|
3600
|
+
countryCode: string | null;
|
|
3601
|
+
country: string | null;
|
|
3602
|
+
state: string | null;
|
|
3603
|
+
city: string | null;
|
|
3604
|
+
} | null;
|
|
3605
|
+
headline: string | null;
|
|
3606
|
+
skills: {
|
|
3607
|
+
name: string | null;
|
|
3608
|
+
}[] | null;
|
|
3609
|
+
firstName: string | null;
|
|
3610
|
+
lastName: string | null;
|
|
3611
|
+
publicIdentifier: string | null;
|
|
3612
|
+
linkedinUrl: string | null;
|
|
3613
|
+
about: string | null;
|
|
3614
|
+
openToWork: boolean | null;
|
|
3615
|
+
hiring: boolean | null;
|
|
3616
|
+
premium: boolean | null;
|
|
3617
|
+
influencer: boolean | null;
|
|
3618
|
+
topSkills: string | null;
|
|
3619
|
+
connectionsCount: number | null;
|
|
3620
|
+
followerCount: number | null;
|
|
3621
|
+
currentPosition: {
|
|
3622
|
+
companyName: string | null;
|
|
3623
|
+
}[] | null;
|
|
3624
|
+
experience: {
|
|
3625
|
+
duration: string | null;
|
|
3626
|
+
description: string | null;
|
|
3627
|
+
location: string | null;
|
|
3628
|
+
companyName: string | null;
|
|
3629
|
+
companyLinkedinUrl: string | null;
|
|
3630
|
+
employmentType: string | null;
|
|
3631
|
+
position: string | null;
|
|
3632
|
+
workplaceType: string | null;
|
|
3633
|
+
skills: string[] | null;
|
|
3634
|
+
startDate: {
|
|
3635
|
+
text: string | null;
|
|
3636
|
+
year: number | null;
|
|
3637
|
+
month: string | null;
|
|
3638
|
+
} | null;
|
|
3639
|
+
endDate: {
|
|
3640
|
+
text: string | null;
|
|
3641
|
+
year: number | null;
|
|
3642
|
+
month: string | null;
|
|
3643
|
+
} | null;
|
|
3644
|
+
}[] | null;
|
|
3645
|
+
education: {
|
|
3646
|
+
startDate: {
|
|
3647
|
+
text: string | null;
|
|
3648
|
+
year: number | null;
|
|
3649
|
+
month: string | null;
|
|
3650
|
+
} | null;
|
|
3651
|
+
endDate: {
|
|
3652
|
+
text: string | null;
|
|
3653
|
+
year: number | null;
|
|
3654
|
+
month: string | null;
|
|
3655
|
+
} | null;
|
|
3656
|
+
schoolName: string | null;
|
|
3657
|
+
schoolLinkedinUrl: string | null;
|
|
3658
|
+
degree: string | null;
|
|
3659
|
+
fieldOfStudy: string | null;
|
|
3660
|
+
period: string | null;
|
|
3661
|
+
}[] | null;
|
|
3662
|
+
certifications: {
|
|
3663
|
+
title: string | null;
|
|
3664
|
+
issuedAt: string | null;
|
|
3665
|
+
issuedBy: string | null;
|
|
3666
|
+
}[] | null;
|
|
3667
|
+
languages: {
|
|
3668
|
+
name: string | null;
|
|
3669
|
+
proficiency: string | null;
|
|
3670
|
+
}[] | null;
|
|
3671
|
+
} | null | undefined;
|
|
2321
3672
|
username?: string | undefined;
|
|
2322
3673
|
keyword?: string | undefined;
|
|
2323
3674
|
jobs?: {
|
|
@@ -2331,17 +3682,17 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2331
3682
|
salary: {
|
|
2332
3683
|
from: number | null;
|
|
2333
3684
|
to: number | null;
|
|
2334
|
-
currency: string | null;
|
|
2335
3685
|
period: string | null;
|
|
3686
|
+
currency: string | null;
|
|
2336
3687
|
} | null;
|
|
2337
3688
|
seniorityLevel: string | null;
|
|
2338
3689
|
employmentType: string | null;
|
|
3690
|
+
skills: string[] | null;
|
|
2339
3691
|
company: {
|
|
2340
3692
|
name: string | null;
|
|
2341
3693
|
url: string | null;
|
|
2342
3694
|
logo: string | null;
|
|
2343
3695
|
} | null;
|
|
2344
|
-
skills: string[] | null;
|
|
2345
3696
|
}[] | undefined;
|
|
2346
3697
|
totalResults?: number | null | undefined;
|
|
2347
3698
|
paginationToken?: string | null | undefined;
|
|
@@ -2349,7 +3700,7 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2349
3700
|
}, {
|
|
2350
3701
|
error: string;
|
|
2351
3702
|
success: boolean;
|
|
2352
|
-
operation: "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
3703
|
+
operation: "scrapeProfile" | "scrapePosts" | "searchPosts" | "scrapeJobs";
|
|
2353
3704
|
posts: {
|
|
2354
3705
|
stats: {
|
|
2355
3706
|
like: number | null;
|
|
@@ -2374,10 +3725,10 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2374
3725
|
author: {
|
|
2375
3726
|
username: string | null;
|
|
2376
3727
|
headline: string | null;
|
|
2377
|
-
profileUrl: string | null;
|
|
2378
|
-
profilePicture: string | null;
|
|
2379
3728
|
firstName: string | null;
|
|
2380
3729
|
lastName: string | null;
|
|
3730
|
+
profileUrl: string | null;
|
|
3731
|
+
profilePicture: string | null;
|
|
2381
3732
|
} | null;
|
|
2382
3733
|
media: {
|
|
2383
3734
|
type: string | null;
|
|
@@ -2420,10 +3771,10 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2420
3771
|
author: {
|
|
2421
3772
|
username: string | null;
|
|
2422
3773
|
headline: string | null;
|
|
2423
|
-
profileUrl: string | null;
|
|
2424
|
-
profilePicture: string | null;
|
|
2425
3774
|
firstName: string | null;
|
|
2426
3775
|
lastName: string | null;
|
|
3776
|
+
profileUrl: string | null;
|
|
3777
|
+
profilePicture: string | null;
|
|
2427
3778
|
} | null;
|
|
2428
3779
|
media: {
|
|
2429
3780
|
type: string | null;
|
|
@@ -2444,6 +3795,84 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2444
3795
|
} | null;
|
|
2445
3796
|
}[];
|
|
2446
3797
|
totalPosts: number;
|
|
3798
|
+
profile?: {
|
|
3799
|
+
id: string | null;
|
|
3800
|
+
photo: string | null;
|
|
3801
|
+
verified: boolean | null;
|
|
3802
|
+
location: {
|
|
3803
|
+
text: string | null;
|
|
3804
|
+
countryCode: string | null;
|
|
3805
|
+
country: string | null;
|
|
3806
|
+
state: string | null;
|
|
3807
|
+
city: string | null;
|
|
3808
|
+
} | null;
|
|
3809
|
+
headline: string | null;
|
|
3810
|
+
skills: {
|
|
3811
|
+
name: string | null;
|
|
3812
|
+
}[] | null;
|
|
3813
|
+
firstName: string | null;
|
|
3814
|
+
lastName: string | null;
|
|
3815
|
+
publicIdentifier: string | null;
|
|
3816
|
+
linkedinUrl: string | null;
|
|
3817
|
+
about: string | null;
|
|
3818
|
+
openToWork: boolean | null;
|
|
3819
|
+
hiring: boolean | null;
|
|
3820
|
+
premium: boolean | null;
|
|
3821
|
+
influencer: boolean | null;
|
|
3822
|
+
topSkills: string | null;
|
|
3823
|
+
connectionsCount: number | null;
|
|
3824
|
+
followerCount: number | null;
|
|
3825
|
+
currentPosition: {
|
|
3826
|
+
companyName: string | null;
|
|
3827
|
+
}[] | null;
|
|
3828
|
+
experience: {
|
|
3829
|
+
duration: string | null;
|
|
3830
|
+
description: string | null;
|
|
3831
|
+
location: string | null;
|
|
3832
|
+
companyName: string | null;
|
|
3833
|
+
companyLinkedinUrl: string | null;
|
|
3834
|
+
employmentType: string | null;
|
|
3835
|
+
position: string | null;
|
|
3836
|
+
workplaceType: string | null;
|
|
3837
|
+
skills: string[] | null;
|
|
3838
|
+
startDate: {
|
|
3839
|
+
text: string | null;
|
|
3840
|
+
year: number | null;
|
|
3841
|
+
month: string | null;
|
|
3842
|
+
} | null;
|
|
3843
|
+
endDate: {
|
|
3844
|
+
text: string | null;
|
|
3845
|
+
year: number | null;
|
|
3846
|
+
month: string | null;
|
|
3847
|
+
} | null;
|
|
3848
|
+
}[] | null;
|
|
3849
|
+
education: {
|
|
3850
|
+
startDate: {
|
|
3851
|
+
text: string | null;
|
|
3852
|
+
year: number | null;
|
|
3853
|
+
month: string | null;
|
|
3854
|
+
} | null;
|
|
3855
|
+
endDate: {
|
|
3856
|
+
text: string | null;
|
|
3857
|
+
year: number | null;
|
|
3858
|
+
month: string | null;
|
|
3859
|
+
} | null;
|
|
3860
|
+
schoolName: string | null;
|
|
3861
|
+
schoolLinkedinUrl: string | null;
|
|
3862
|
+
degree: string | null;
|
|
3863
|
+
fieldOfStudy: string | null;
|
|
3864
|
+
period: string | null;
|
|
3865
|
+
}[] | null;
|
|
3866
|
+
certifications: {
|
|
3867
|
+
title: string | null;
|
|
3868
|
+
issuedAt: string | null;
|
|
3869
|
+
issuedBy: string | null;
|
|
3870
|
+
}[] | null;
|
|
3871
|
+
languages: {
|
|
3872
|
+
name: string | null;
|
|
3873
|
+
proficiency: string | null;
|
|
3874
|
+
}[] | null;
|
|
3875
|
+
} | null | undefined;
|
|
2447
3876
|
username?: string | undefined;
|
|
2448
3877
|
keyword?: string | undefined;
|
|
2449
3878
|
jobs?: {
|
|
@@ -2457,24 +3886,24 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2457
3886
|
salary: {
|
|
2458
3887
|
from: number | null;
|
|
2459
3888
|
to: number | null;
|
|
2460
|
-
currency: string | null;
|
|
2461
3889
|
period: string | null;
|
|
3890
|
+
currency: string | null;
|
|
2462
3891
|
} | null;
|
|
2463
3892
|
seniorityLevel: string | null;
|
|
2464
3893
|
employmentType: string | null;
|
|
3894
|
+
skills: string[] | null;
|
|
2465
3895
|
company: {
|
|
2466
3896
|
name: string | null;
|
|
2467
3897
|
url: string | null;
|
|
2468
3898
|
logo: string | null;
|
|
2469
3899
|
} | null;
|
|
2470
|
-
skills: string[] | null;
|
|
2471
3900
|
}[] | undefined;
|
|
2472
3901
|
totalResults?: number | null | undefined;
|
|
2473
3902
|
paginationToken?: string | null | undefined;
|
|
2474
3903
|
hasNextPage?: boolean | null | undefined;
|
|
2475
3904
|
}>;
|
|
2476
|
-
static readonly shortDescription = "
|
|
2477
|
-
static readonly longDescription = "\n Universal LinkedIn
|
|
3905
|
+
static readonly shortDescription = "Look up LinkedIn profiles by URL, scrape posts by profile, or search posts/jobs by keyword.";
|
|
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 ";
|
|
2478
3907
|
static readonly alias = "li";
|
|
2479
3908
|
static readonly type = "tool";
|
|
2480
3909
|
constructor(params?: LinkedInToolParamsInput, context?: BubbleContext);
|
|
@@ -2483,6 +3912,15 @@ export declare class LinkedInTool extends ToolBubble<LinkedInToolParams, LinkedI
|
|
|
2483
3912
|
* Create an error result
|
|
2484
3913
|
*/
|
|
2485
3914
|
private createErrorResult;
|
|
3915
|
+
/**
|
|
3916
|
+
* Normalize profileUrl input to a full LinkedIn URL.
|
|
3917
|
+
* Accepts either a full URL or just a username.
|
|
3918
|
+
*/
|
|
3919
|
+
private normalizeProfileUrl;
|
|
3920
|
+
/**
|
|
3921
|
+
* Handle scrapeProfile operation - get full profile details from a LinkedIn URL
|
|
3922
|
+
*/
|
|
3923
|
+
private handleScrapeProfile;
|
|
2486
3924
|
/**
|
|
2487
3925
|
* Handle scrapePosts operation
|
|
2488
3926
|
*/
|