@bubblelab/bubble-core 0.1.137 → 0.1.139

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/dist/bubble-bundle.d.ts +35 -35
  2. package/dist/bubble-flow/bubble-flow-class.d.ts +4 -0
  3. package/dist/bubble-flow/bubble-flow-class.d.ts.map +1 -1
  4. package/dist/bubble-flow/bubble-flow-class.js +1 -0
  5. package/dist/bubble-flow/bubble-flow-class.js.map +1 -1
  6. package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
  7. package/dist/bubbles/service-bubble/ai-agent.js +7 -0
  8. package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
  9. package/dist/bubbles/service-bubble/apify/actors/google-maps-scraper.d.ts +6 -6
  10. package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.d.ts +806 -0
  11. package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.d.ts.map +1 -0
  12. package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.js +256 -0
  13. package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.js.map +1 -0
  14. package/dist/bubbles/service-bubble/apify/apify-scraper.schema.d.ts +813 -6
  15. package/dist/bubbles/service-bubble/apify/apify-scraper.schema.d.ts.map +1 -1
  16. package/dist/bubbles/service-bubble/apify/apify-scraper.schema.js +8 -0
  17. package/dist/bubbles/service-bubble/apify/apify-scraper.schema.js.map +1 -1
  18. package/dist/bubbles/service-bubble/apify/apify.d.ts +1 -1
  19. package/dist/bubbles/service-bubble/apify/apify.d.ts.map +1 -1
  20. package/dist/bubbles/service-bubble/apify/apify.js +1 -0
  21. package/dist/bubbles/service-bubble/apify/apify.js.map +1 -1
  22. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +4 -4
  23. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +6 -6
  24. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +6 -6
  25. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +16 -16
  26. package/dist/bubbles/service-bubble/firecrawl.d.ts +16 -16
  27. package/dist/bubbles/service-bubble/followupboss.d.ts +8 -8
  28. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +28 -28
  29. package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +62 -62
  30. package/dist/bubbles/service-bubble/jira/jira.d.ts +2 -2
  31. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +2 -2
  32. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +54 -54
  33. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +1579 -141
  34. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts.map +1 -1
  35. package/dist/bubbles/tool-bubble/linkedin-tool.js +300 -56
  36. package/dist/bubbles/tool-bubble/linkedin-tool.js.map +1 -1
  37. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +74 -74
  38. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
  39. package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +10 -10
  40. package/dist/bubbles.json +481 -6
  41. package/package.json +2 -2
@@ -59,9 +59,9 @@ declare const PersonResultSchema: z.ZodObject<{
59
59
  companyName: string | null;
60
60
  companyLinkedinUrl: string | null;
61
61
  seniorityLevel: string | null;
62
+ startDate: string | number | null;
62
63
  companyDomainUrl: string | null;
63
64
  functionCategory: string | null;
64
- startDate: string | number | null;
65
65
  yearsAtCompany: number | null;
66
66
  companyHeadcount: number | null;
67
67
  companyIndustries: string[] | null;
@@ -70,9 +70,9 @@ declare const PersonResultSchema: z.ZodObject<{
70
70
  companyName: string | null;
71
71
  companyLinkedinUrl: string | null;
72
72
  seniorityLevel: string | null;
73
+ startDate: string | number | null;
73
74
  companyDomainUrl: string | null;
74
75
  functionCategory: string | null;
75
- startDate: string | number | null;
76
76
  yearsAtCompany: number | null;
77
77
  companyHeadcount: number | null;
78
78
  companyIndustries: string[] | null;
@@ -98,13 +98,13 @@ declare const PersonResultSchema: z.ZodObject<{
98
98
  degreeName: z.ZodNullable<z.ZodString>;
99
99
  fieldOfStudy: z.ZodNullable<z.ZodString>;
100
100
  }, "strip", z.ZodTypeAny, {
101
+ fieldOfStudy: string | null;
101
102
  instituteName: string | null;
102
103
  degreeName: string | null;
103
- fieldOfStudy: string | null;
104
104
  }, {
105
+ fieldOfStudy: string | null;
105
106
  instituteName: string | null;
106
107
  degreeName: string | null;
107
- fieldOfStudy: string | null;
108
108
  }>, "many">>;
109
109
  }, "strip", z.ZodTypeAny, {
110
110
  title: string | null;
@@ -113,15 +113,15 @@ declare const PersonResultSchema: z.ZodObject<{
113
113
  location: string | null;
114
114
  headline: string | null;
115
115
  seniorityLevel: string | null;
116
- emails: string[] | null;
117
- linkedinUrl: string | null;
118
- languages: string[] | null;
119
116
  skills: string[] | null;
117
+ linkedinUrl: string | null;
120
118
  education: {
119
+ fieldOfStudy: string | null;
121
120
  instituteName: string | null;
122
121
  degreeName: string | null;
123
- fieldOfStudy: string | null;
124
122
  }[] | null;
123
+ languages: string[] | null;
124
+ emails: string[] | null;
125
125
  websites: string[] | null;
126
126
  profilePictureUrl: string | null;
127
127
  twitterHandle: string | null;
@@ -135,9 +135,9 @@ declare const PersonResultSchema: z.ZodObject<{
135
135
  companyName: string | null;
136
136
  companyLinkedinUrl: string | null;
137
137
  seniorityLevel: string | null;
138
+ startDate: string | number | null;
138
139
  companyDomainUrl: string | null;
139
140
  functionCategory: string | null;
140
- startDate: string | number | null;
141
141
  yearsAtCompany: number | null;
142
142
  companyHeadcount: number | null;
143
143
  companyIndustries: string[] | null;
@@ -165,15 +165,15 @@ declare const PersonResultSchema: z.ZodObject<{
165
165
  location: string | null;
166
166
  headline: string | null;
167
167
  seniorityLevel: string | null;
168
- emails: string[] | null;
169
- linkedinUrl: string | null;
170
- languages: string[] | null;
171
168
  skills: string[] | null;
169
+ linkedinUrl: string | null;
172
170
  education: {
171
+ fieldOfStudy: string | null;
173
172
  instituteName: string | null;
174
173
  degreeName: string | null;
175
- fieldOfStudy: string | null;
176
174
  }[] | null;
175
+ languages: string[] | null;
176
+ emails: string[] | null;
177
177
  websites: string[] | null;
178
178
  profilePictureUrl: string | null;
179
179
  twitterHandle: string | null;
@@ -187,9 +187,9 @@ declare const PersonResultSchema: z.ZodObject<{
187
187
  companyName: string | null;
188
188
  companyLinkedinUrl: string | null;
189
189
  seniorityLevel: string | null;
190
+ startDate: string | number | null;
190
191
  companyDomainUrl: string | null;
191
192
  functionCategory: string | null;
192
- startDate: string | number | null;
193
193
  yearsAtCompany: number | null;
194
194
  companyHeadcount: number | null;
195
195
  companyIndustries: string[] | null;
@@ -260,10 +260,11 @@ declare const PeopleSearchToolParamsSchema: z.ZodObject<{
260
260
  location?: string | undefined;
261
261
  companyName?: string | undefined;
262
262
  companyLinkedinUrl?: string | undefined;
263
- city?: string | undefined;
264
263
  country?: string | undefined;
265
- languages?: string[] | undefined;
264
+ city?: string | undefined;
266
265
  skills?: string[] | undefined;
266
+ schoolName?: string | undefined;
267
+ languages?: string[] | undefined;
267
268
  recentlyChangedJobs?: boolean | undefined;
268
269
  companyIndustries?: string[] | undefined;
269
270
  jobTitle?: string | undefined;
@@ -281,7 +282,6 @@ declare const PeopleSearchToolParamsSchema: z.ZodObject<{
281
282
  minYearsAtCompany?: number | undefined;
282
283
  pastCompanyName?: string | undefined;
283
284
  pastJobTitle?: string | undefined;
284
- schoolName?: string | undefined;
285
285
  minConnections?: number | undefined;
286
286
  excludeCompanies?: string[] | undefined;
287
287
  excludeProfiles?: string[] | undefined;
@@ -292,10 +292,11 @@ declare const PeopleSearchToolParamsSchema: z.ZodObject<{
292
292
  location?: string | undefined;
293
293
  companyName?: string | undefined;
294
294
  companyLinkedinUrl?: string | undefined;
295
- city?: string | undefined;
296
295
  country?: string | undefined;
297
- languages?: string[] | undefined;
296
+ city?: string | undefined;
298
297
  skills?: string[] | undefined;
298
+ schoolName?: string | undefined;
299
+ languages?: string[] | undefined;
299
300
  recentlyChangedJobs?: boolean | undefined;
300
301
  companyIndustries?: string[] | undefined;
301
302
  jobTitle?: string | undefined;
@@ -313,7 +314,6 @@ declare const PeopleSearchToolParamsSchema: z.ZodObject<{
313
314
  minYearsAtCompany?: number | undefined;
314
315
  pastCompanyName?: string | undefined;
315
316
  pastJobTitle?: string | undefined;
316
- schoolName?: string | undefined;
317
317
  minConnections?: number | undefined;
318
318
  excludeCompanies?: string[] | undefined;
319
319
  excludeProfiles?: string[] | undefined;
@@ -378,9 +378,9 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
378
378
  companyName: string | null;
379
379
  companyLinkedinUrl: string | null;
380
380
  seniorityLevel: string | null;
381
+ startDate: string | number | null;
381
382
  companyDomainUrl: string | null;
382
383
  functionCategory: string | null;
383
- startDate: string | number | null;
384
384
  yearsAtCompany: number | null;
385
385
  companyHeadcount: number | null;
386
386
  companyIndustries: string[] | null;
@@ -389,9 +389,9 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
389
389
  companyName: string | null;
390
390
  companyLinkedinUrl: string | null;
391
391
  seniorityLevel: string | null;
392
+ startDate: string | number | null;
392
393
  companyDomainUrl: string | null;
393
394
  functionCategory: string | null;
394
- startDate: string | number | null;
395
395
  yearsAtCompany: number | null;
396
396
  companyHeadcount: number | null;
397
397
  companyIndustries: string[] | null;
@@ -417,13 +417,13 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
417
417
  degreeName: z.ZodNullable<z.ZodString>;
418
418
  fieldOfStudy: z.ZodNullable<z.ZodString>;
419
419
  }, "strip", z.ZodTypeAny, {
420
+ fieldOfStudy: string | null;
420
421
  instituteName: string | null;
421
422
  degreeName: string | null;
422
- fieldOfStudy: string | null;
423
423
  }, {
424
+ fieldOfStudy: string | null;
424
425
  instituteName: string | null;
425
426
  degreeName: string | null;
426
- fieldOfStudy: string | null;
427
427
  }>, "many">>;
428
428
  }, "strip", z.ZodTypeAny, {
429
429
  title: string | null;
@@ -432,15 +432,15 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
432
432
  location: string | null;
433
433
  headline: string | null;
434
434
  seniorityLevel: string | null;
435
- emails: string[] | null;
436
- linkedinUrl: string | null;
437
- languages: string[] | null;
438
435
  skills: string[] | null;
436
+ linkedinUrl: string | null;
439
437
  education: {
438
+ fieldOfStudy: string | null;
440
439
  instituteName: string | null;
441
440
  degreeName: string | null;
442
- fieldOfStudy: string | null;
443
441
  }[] | null;
442
+ languages: string[] | null;
443
+ emails: string[] | null;
444
444
  websites: string[] | null;
445
445
  profilePictureUrl: string | null;
446
446
  twitterHandle: string | null;
@@ -454,9 +454,9 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
454
454
  companyName: string | null;
455
455
  companyLinkedinUrl: string | null;
456
456
  seniorityLevel: string | null;
457
+ startDate: string | number | null;
457
458
  companyDomainUrl: string | null;
458
459
  functionCategory: string | null;
459
- startDate: string | number | null;
460
460
  yearsAtCompany: number | null;
461
461
  companyHeadcount: number | null;
462
462
  companyIndustries: string[] | null;
@@ -484,15 +484,15 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
484
484
  location: string | null;
485
485
  headline: string | null;
486
486
  seniorityLevel: string | null;
487
- emails: string[] | null;
488
- linkedinUrl: string | null;
489
- languages: string[] | null;
490
487
  skills: string[] | null;
488
+ linkedinUrl: string | null;
491
489
  education: {
490
+ fieldOfStudy: string | null;
492
491
  instituteName: string | null;
493
492
  degreeName: string | null;
494
- fieldOfStudy: string | null;
495
493
  }[] | null;
494
+ languages: string[] | null;
495
+ emails: string[] | null;
496
496
  websites: string[] | null;
497
497
  profilePictureUrl: string | null;
498
498
  twitterHandle: string | null;
@@ -506,9 +506,9 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
506
506
  companyName: string | null;
507
507
  companyLinkedinUrl: string | null;
508
508
  seniorityLevel: string | null;
509
+ startDate: string | number | null;
509
510
  companyDomainUrl: string | null;
510
511
  functionCategory: string | null;
511
- startDate: string | number | null;
512
512
  yearsAtCompany: number | null;
513
513
  companyHeadcount: number | null;
514
514
  companyIndustries: string[] | null;
@@ -544,15 +544,15 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
544
544
  location: string | null;
545
545
  headline: string | null;
546
546
  seniorityLevel: string | null;
547
- emails: string[] | null;
548
- linkedinUrl: string | null;
549
- languages: string[] | null;
550
547
  skills: string[] | null;
548
+ linkedinUrl: string | null;
551
549
  education: {
550
+ fieldOfStudy: string | null;
552
551
  instituteName: string | null;
553
552
  degreeName: string | null;
554
- fieldOfStudy: string | null;
555
553
  }[] | null;
554
+ languages: string[] | null;
555
+ emails: string[] | null;
556
556
  websites: string[] | null;
557
557
  profilePictureUrl: string | null;
558
558
  twitterHandle: string | null;
@@ -566,9 +566,9 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
566
566
  companyName: string | null;
567
567
  companyLinkedinUrl: string | null;
568
568
  seniorityLevel: string | null;
569
+ startDate: string | number | null;
569
570
  companyDomainUrl: string | null;
570
571
  functionCategory: string | null;
571
- startDate: string | number | null;
572
572
  yearsAtCompany: number | null;
573
573
  companyHeadcount: number | null;
574
574
  companyIndustries: string[] | null;
@@ -602,15 +602,15 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
602
602
  location: string | null;
603
603
  headline: string | null;
604
604
  seniorityLevel: string | null;
605
- emails: string[] | null;
606
- linkedinUrl: string | null;
607
- languages: string[] | null;
608
605
  skills: string[] | null;
606
+ linkedinUrl: string | null;
609
607
  education: {
608
+ fieldOfStudy: string | null;
610
609
  instituteName: string | null;
611
610
  degreeName: string | null;
612
- fieldOfStudy: string | null;
613
611
  }[] | null;
612
+ languages: string[] | null;
613
+ emails: string[] | null;
614
614
  websites: string[] | null;
615
615
  profilePictureUrl: string | null;
616
616
  twitterHandle: string | null;
@@ -624,9 +624,9 @@ declare const PeopleSearchToolResultSchema: z.ZodObject<{
624
624
  companyName: string | null;
625
625
  companyLinkedinUrl: string | null;
626
626
  seniorityLevel: string | null;
627
+ startDate: string | number | null;
627
628
  companyDomainUrl: string | null;
628
629
  functionCategory: string | null;
629
- startDate: string | number | null;
630
630
  yearsAtCompany: number | null;
631
631
  companyHeadcount: number | null;
632
632
  companyIndustries: string[] | null;
@@ -729,10 +729,11 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
729
729
  location?: string | undefined;
730
730
  companyName?: string | undefined;
731
731
  companyLinkedinUrl?: string | undefined;
732
- city?: string | undefined;
733
732
  country?: string | undefined;
734
- languages?: string[] | undefined;
733
+ city?: string | undefined;
735
734
  skills?: string[] | undefined;
735
+ schoolName?: string | undefined;
736
+ languages?: string[] | undefined;
736
737
  recentlyChangedJobs?: boolean | undefined;
737
738
  companyIndustries?: string[] | undefined;
738
739
  jobTitle?: string | undefined;
@@ -750,7 +751,6 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
750
751
  minYearsAtCompany?: number | undefined;
751
752
  pastCompanyName?: string | undefined;
752
753
  pastJobTitle?: string | undefined;
753
- schoolName?: string | undefined;
754
754
  minConnections?: number | undefined;
755
755
  excludeCompanies?: string[] | undefined;
756
756
  excludeProfiles?: string[] | undefined;
@@ -761,10 +761,11 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
761
761
  location?: string | undefined;
762
762
  companyName?: string | undefined;
763
763
  companyLinkedinUrl?: string | undefined;
764
- city?: string | undefined;
765
764
  country?: string | undefined;
766
- languages?: string[] | undefined;
765
+ city?: string | undefined;
767
766
  skills?: string[] | undefined;
767
+ schoolName?: string | undefined;
768
+ languages?: string[] | undefined;
768
769
  recentlyChangedJobs?: boolean | undefined;
769
770
  companyIndustries?: string[] | undefined;
770
771
  jobTitle?: string | undefined;
@@ -782,7 +783,6 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
782
783
  minYearsAtCompany?: number | undefined;
783
784
  pastCompanyName?: string | undefined;
784
785
  pastJobTitle?: string | undefined;
785
- schoolName?: string | undefined;
786
786
  minConnections?: number | undefined;
787
787
  excludeCompanies?: string[] | undefined;
788
788
  excludeProfiles?: string[] | undefined;
@@ -847,9 +847,9 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
847
847
  companyName: string | null;
848
848
  companyLinkedinUrl: string | null;
849
849
  seniorityLevel: string | null;
850
+ startDate: string | number | null;
850
851
  companyDomainUrl: string | null;
851
852
  functionCategory: string | null;
852
- startDate: string | number | null;
853
853
  yearsAtCompany: number | null;
854
854
  companyHeadcount: number | null;
855
855
  companyIndustries: string[] | null;
@@ -858,9 +858,9 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
858
858
  companyName: string | null;
859
859
  companyLinkedinUrl: string | null;
860
860
  seniorityLevel: string | null;
861
+ startDate: string | number | null;
861
862
  companyDomainUrl: string | null;
862
863
  functionCategory: string | null;
863
- startDate: string | number | null;
864
864
  yearsAtCompany: number | null;
865
865
  companyHeadcount: number | null;
866
866
  companyIndustries: string[] | null;
@@ -886,13 +886,13 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
886
886
  degreeName: z.ZodNullable<z.ZodString>;
887
887
  fieldOfStudy: z.ZodNullable<z.ZodString>;
888
888
  }, "strip", z.ZodTypeAny, {
889
+ fieldOfStudy: string | null;
889
890
  instituteName: string | null;
890
891
  degreeName: string | null;
891
- fieldOfStudy: string | null;
892
892
  }, {
893
+ fieldOfStudy: string | null;
893
894
  instituteName: string | null;
894
895
  degreeName: string | null;
895
- fieldOfStudy: string | null;
896
896
  }>, "many">>;
897
897
  }, "strip", z.ZodTypeAny, {
898
898
  title: string | null;
@@ -901,15 +901,15 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
901
901
  location: string | null;
902
902
  headline: string | null;
903
903
  seniorityLevel: string | null;
904
- emails: string[] | null;
905
- linkedinUrl: string | null;
906
- languages: string[] | null;
907
904
  skills: string[] | null;
905
+ linkedinUrl: string | null;
908
906
  education: {
907
+ fieldOfStudy: string | null;
909
908
  instituteName: string | null;
910
909
  degreeName: string | null;
911
- fieldOfStudy: string | null;
912
910
  }[] | null;
911
+ languages: string[] | null;
912
+ emails: string[] | null;
913
913
  websites: string[] | null;
914
914
  profilePictureUrl: string | null;
915
915
  twitterHandle: string | null;
@@ -923,9 +923,9 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
923
923
  companyName: string | null;
924
924
  companyLinkedinUrl: string | null;
925
925
  seniorityLevel: string | null;
926
+ startDate: string | number | null;
926
927
  companyDomainUrl: string | null;
927
928
  functionCategory: string | null;
928
- startDate: string | number | null;
929
929
  yearsAtCompany: number | null;
930
930
  companyHeadcount: number | null;
931
931
  companyIndustries: string[] | null;
@@ -953,15 +953,15 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
953
953
  location: string | null;
954
954
  headline: string | null;
955
955
  seniorityLevel: string | null;
956
- emails: string[] | null;
957
- linkedinUrl: string | null;
958
- languages: string[] | null;
959
956
  skills: string[] | null;
957
+ linkedinUrl: string | null;
960
958
  education: {
959
+ fieldOfStudy: string | null;
961
960
  instituteName: string | null;
962
961
  degreeName: string | null;
963
- fieldOfStudy: string | null;
964
962
  }[] | null;
963
+ languages: string[] | null;
964
+ emails: string[] | null;
965
965
  websites: string[] | null;
966
966
  profilePictureUrl: string | null;
967
967
  twitterHandle: string | null;
@@ -975,9 +975,9 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
975
975
  companyName: string | null;
976
976
  companyLinkedinUrl: string | null;
977
977
  seniorityLevel: string | null;
978
+ startDate: string | number | null;
978
979
  companyDomainUrl: string | null;
979
980
  functionCategory: string | null;
980
- startDate: string | number | null;
981
981
  yearsAtCompany: number | null;
982
982
  companyHeadcount: number | null;
983
983
  companyIndustries: string[] | null;
@@ -1013,15 +1013,15 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
1013
1013
  location: string | null;
1014
1014
  headline: string | null;
1015
1015
  seniorityLevel: string | null;
1016
- emails: string[] | null;
1017
- linkedinUrl: string | null;
1018
- languages: string[] | null;
1019
1016
  skills: string[] | null;
1017
+ linkedinUrl: string | null;
1020
1018
  education: {
1019
+ fieldOfStudy: string | null;
1021
1020
  instituteName: string | null;
1022
1021
  degreeName: string | null;
1023
- fieldOfStudy: string | null;
1024
1022
  }[] | null;
1023
+ languages: string[] | null;
1024
+ emails: string[] | null;
1025
1025
  websites: string[] | null;
1026
1026
  profilePictureUrl: string | null;
1027
1027
  twitterHandle: string | null;
@@ -1035,9 +1035,9 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
1035
1035
  companyName: string | null;
1036
1036
  companyLinkedinUrl: string | null;
1037
1037
  seniorityLevel: string | null;
1038
+ startDate: string | number | null;
1038
1039
  companyDomainUrl: string | null;
1039
1040
  functionCategory: string | null;
1040
- startDate: string | number | null;
1041
1041
  yearsAtCompany: number | null;
1042
1042
  companyHeadcount: number | null;
1043
1043
  companyIndustries: string[] | null;
@@ -1071,15 +1071,15 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
1071
1071
  location: string | null;
1072
1072
  headline: string | null;
1073
1073
  seniorityLevel: string | null;
1074
- emails: string[] | null;
1075
- linkedinUrl: string | null;
1076
- languages: string[] | null;
1077
1074
  skills: string[] | null;
1075
+ linkedinUrl: string | null;
1078
1076
  education: {
1077
+ fieldOfStudy: string | null;
1079
1078
  instituteName: string | null;
1080
1079
  degreeName: string | null;
1081
- fieldOfStudy: string | null;
1082
1080
  }[] | null;
1081
+ languages: string[] | null;
1082
+ emails: string[] | null;
1083
1083
  websites: string[] | null;
1084
1084
  profilePictureUrl: string | null;
1085
1085
  twitterHandle: string | null;
@@ -1093,9 +1093,9 @@ export declare class PeopleSearchTool extends ToolBubble<PeopleSearchToolParams,
1093
1093
  companyName: string | null;
1094
1094
  companyLinkedinUrl: string | null;
1095
1095
  seniorityLevel: string | null;
1096
+ startDate: string | number | null;
1096
1097
  companyDomainUrl: string | null;
1097
1098
  functionCategory: string | null;
1098
- startDate: string | number | null;
1099
1099
  yearsAtCompany: number | null;
1100
1100
  companyHeadcount: number | null;
1101
1101
  companyIndustries: string[] | null;
@@ -49,10 +49,10 @@ declare const TikTokToolResultSchema: z.ZodObject<{
49
49
  id: string | null;
50
50
  uniqueId: string | null;
51
51
  verified: boolean | null;
52
+ followerCount: number | null;
52
53
  signature: string | null;
53
54
  nickname: string | null;
54
55
  avatarThumb: string | null;
55
- followerCount: number | null;
56
56
  followingCount: number | null;
57
57
  videoCount: number | null;
58
58
  heartCount: number | null;
@@ -60,10 +60,10 @@ declare const TikTokToolResultSchema: z.ZodObject<{
60
60
  id: string | null;
61
61
  uniqueId: string | null;
62
62
  verified: boolean | null;
63
+ followerCount: number | null;
63
64
  signature: string | null;
64
65
  nickname: string | null;
65
66
  avatarThumb: string | null;
66
- followerCount: number | null;
67
67
  followingCount: number | null;
68
68
  videoCount: number | null;
69
69
  heartCount: number | null;
@@ -115,10 +115,10 @@ declare const TikTokToolResultSchema: z.ZodObject<{
115
115
  id: string | null;
116
116
  uniqueId: string | null;
117
117
  verified: boolean | null;
118
+ followerCount: number | null;
118
119
  signature: string | null;
119
120
  nickname: string | null;
120
121
  avatarThumb: string | null;
121
- followerCount: number | null;
122
122
  followingCount: number | null;
123
123
  videoCount: number | null;
124
124
  heartCount: number | null;
@@ -145,10 +145,10 @@ declare const TikTokToolResultSchema: z.ZodObject<{
145
145
  id: string | null;
146
146
  uniqueId: string | null;
147
147
  verified: boolean | null;
148
+ followerCount: number | null;
148
149
  signature: string | null;
149
150
  nickname: string | null;
150
151
  avatarThumb: string | null;
151
- followerCount: number | null;
152
152
  followingCount: number | null;
153
153
  videoCount: number | null;
154
154
  heartCount: number | null;
@@ -183,10 +183,10 @@ declare const TikTokToolResultSchema: z.ZodObject<{
183
183
  id: string | null;
184
184
  uniqueId: string | null;
185
185
  verified: boolean | null;
186
+ followerCount: number | null;
186
187
  signature: string | null;
187
188
  nickname: string | null;
188
189
  avatarThumb: string | null;
189
- followerCount: number | null;
190
190
  followingCount: number | null;
191
191
  videoCount: number | null;
192
192
  heartCount: number | null;
@@ -219,10 +219,10 @@ declare const TikTokToolResultSchema: z.ZodObject<{
219
219
  id: string | null;
220
220
  uniqueId: string | null;
221
221
  verified: boolean | null;
222
+ followerCount: number | null;
222
223
  signature: string | null;
223
224
  nickname: string | null;
224
225
  avatarThumb: string | null;
225
- followerCount: number | null;
226
226
  followingCount: number | null;
227
227
  videoCount: number | null;
228
228
  heartCount: number | null;
@@ -286,10 +286,10 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
286
286
  id: string | null;
287
287
  uniqueId: string | null;
288
288
  verified: boolean | null;
289
+ followerCount: number | null;
289
290
  signature: string | null;
290
291
  nickname: string | null;
291
292
  avatarThumb: string | null;
292
- followerCount: number | null;
293
293
  followingCount: number | null;
294
294
  videoCount: number | null;
295
295
  heartCount: number | null;
@@ -297,10 +297,10 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
297
297
  id: string | null;
298
298
  uniqueId: string | null;
299
299
  verified: boolean | null;
300
+ followerCount: number | null;
300
301
  signature: string | null;
301
302
  nickname: string | null;
302
303
  avatarThumb: string | null;
303
- followerCount: number | null;
304
304
  followingCount: number | null;
305
305
  videoCount: number | null;
306
306
  heartCount: number | null;
@@ -352,10 +352,10 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
352
352
  id: string | null;
353
353
  uniqueId: string | null;
354
354
  verified: boolean | null;
355
+ followerCount: number | null;
355
356
  signature: string | null;
356
357
  nickname: string | null;
357
358
  avatarThumb: string | null;
358
- followerCount: number | null;
359
359
  followingCount: number | null;
360
360
  videoCount: number | null;
361
361
  heartCount: number | null;
@@ -382,10 +382,10 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
382
382
  id: string | null;
383
383
  uniqueId: string | null;
384
384
  verified: boolean | null;
385
+ followerCount: number | null;
385
386
  signature: string | null;
386
387
  nickname: string | null;
387
388
  avatarThumb: string | null;
388
- followerCount: number | null;
389
389
  followingCount: number | null;
390
390
  videoCount: number | null;
391
391
  heartCount: number | null;
@@ -420,10 +420,10 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
420
420
  id: string | null;
421
421
  uniqueId: string | null;
422
422
  verified: boolean | null;
423
+ followerCount: number | null;
423
424
  signature: string | null;
424
425
  nickname: string | null;
425
426
  avatarThumb: string | null;
426
- followerCount: number | null;
427
427
  followingCount: number | null;
428
428
  videoCount: number | null;
429
429
  heartCount: number | null;
@@ -456,10 +456,10 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
456
456
  id: string | null;
457
457
  uniqueId: string | null;
458
458
  verified: boolean | null;
459
+ followerCount: number | null;
459
460
  signature: string | null;
460
461
  nickname: string | null;
461
462
  avatarThumb: string | null;
462
- followerCount: number | null;
463
463
  followingCount: number | null;
464
464
  videoCount: number | null;
465
465
  heartCount: number | null;