@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.
Files changed (34) hide show
  1. package/dist/bubble-bundle.d.ts +34 -34
  2. package/dist/bubbles/service-bubble/apify/actors/google-maps-scraper.d.ts +6 -6
  3. package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.d.ts +806 -0
  4. package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.d.ts.map +1 -0
  5. package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.js +256 -0
  6. package/dist/bubbles/service-bubble/apify/actors/linkedin-profile-detail.js.map +1 -0
  7. package/dist/bubbles/service-bubble/apify/apify-scraper.schema.d.ts +813 -6
  8. package/dist/bubbles/service-bubble/apify/apify-scraper.schema.d.ts.map +1 -1
  9. package/dist/bubbles/service-bubble/apify/apify-scraper.schema.js +8 -0
  10. package/dist/bubbles/service-bubble/apify/apify-scraper.schema.js.map +1 -1
  11. package/dist/bubbles/service-bubble/apify/apify.d.ts +1 -1
  12. package/dist/bubbles/service-bubble/apify/apify.d.ts.map +1 -1
  13. package/dist/bubbles/service-bubble/apify/apify.js +1 -0
  14. package/dist/bubbles/service-bubble/apify/apify.js.map +1 -1
  15. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +4 -4
  16. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +6 -6
  17. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +6 -6
  18. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +16 -16
  19. package/dist/bubbles/service-bubble/firecrawl.d.ts +16 -16
  20. package/dist/bubbles/service-bubble/followupboss.d.ts +8 -8
  21. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +28 -28
  22. package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +62 -62
  23. package/dist/bubbles/service-bubble/jira/jira.d.ts +2 -2
  24. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +2 -2
  25. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +54 -54
  26. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +1579 -141
  27. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts.map +1 -1
  28. package/dist/bubbles/tool-bubble/linkedin-tool.js +300 -56
  29. package/dist/bubbles/tool-bubble/linkedin-tool.js.map +1 -1
  30. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +74 -74
  31. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
  32. package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +10 -10
  33. package/dist/bubbles.json +481 -6
  34. package/package.json +2 -2
@@ -0,0 +1 @@
1
+ {"version":3,"file":"linkedin-profile-detail.d.ts","sourceRoot":"","sources":["../../../../../src/bubbles/service-bubble/apify/actors/linkedin-profile-detail.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,gCAAgC;;;;;;;;;EAY3C,CAAC;AAsLH,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyE5C,CAAC;AAGH,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAC/C,OAAO,gCAAgC,CACxC,CAAC;AACF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAChD,OAAO,iCAAiC,CACzC,CAAC"}
@@ -0,0 +1,256 @@
1
+ import { z } from 'zod';
2
+ // ============================================================================
3
+ // LINKEDIN PROFILE DETAIL SCRAPER SCHEMAS
4
+ // ============================================================================
5
+ export const LinkedInProfileDetailInputSchema = z.object({
6
+ profileScraperMode: z
7
+ .string()
8
+ .default('Profile details no email ($4 per 1k)')
9
+ .describe('Scraper mode - use "Profile details no email ($4 per 1k)"'),
10
+ queries: z
11
+ .array(z.string().min(1))
12
+ .min(1, 'At least one LinkedIn profile URL is required')
13
+ .describe('Array of LinkedIn profile URLs (e.g., "https://www.linkedin.com/in/williamhgates")'),
14
+ });
15
+ // Date schema used across experience, education, projects, etc.
16
+ const ProfileDateSchema = z.object({
17
+ month: z.string().optional().describe('Month name (e.g., "Jan", "May")'),
18
+ year: z.number().optional().describe('Year (e.g., 2024)'),
19
+ text: z
20
+ .string()
21
+ .optional()
22
+ .describe('Formatted date text (e.g., "Jan 2024")'),
23
+ });
24
+ // Location schema
25
+ const ProfileLocationSchema = z.object({
26
+ linkedinText: z
27
+ .string()
28
+ .optional()
29
+ .describe('Location as displayed on LinkedIn'),
30
+ countryCode: z.string().optional().describe('ISO country code'),
31
+ parsed: z
32
+ .object({
33
+ text: z.string().optional().describe('Parsed location text'),
34
+ countryCode: z
35
+ .string()
36
+ .nullable()
37
+ .optional()
38
+ .describe('Parsed country code'),
39
+ regionCode: z
40
+ .string()
41
+ .nullable()
42
+ .optional()
43
+ .describe('Parsed region code'),
44
+ country: z.string().optional().describe('Country name'),
45
+ countryFull: z.string().optional().describe('Full country name'),
46
+ state: z.string().optional().describe('State or region'),
47
+ city: z.string().optional().describe('City name'),
48
+ })
49
+ .optional()
50
+ .describe('Parsed location components'),
51
+ });
52
+ // Experience schema
53
+ const ProfileExperienceSchema = z.object({
54
+ position: z.string().optional().describe('Job title/position'),
55
+ location: z.string().optional().describe('Job location'),
56
+ employmentType: z
57
+ .string()
58
+ .nullable()
59
+ .optional()
60
+ .describe('Employment type (Full-time, Part-time, Internship, etc.)'),
61
+ workplaceType: z
62
+ .string()
63
+ .nullable()
64
+ .optional()
65
+ .describe('Workplace type (On-site, Remote, Hybrid)'),
66
+ companyName: z.string().optional().describe('Company name'),
67
+ companyLinkedinUrl: z.string().optional().describe('Company LinkedIn URL'),
68
+ companyId: z.string().optional().describe('Company LinkedIn ID'),
69
+ companyUniversalName: z
70
+ .string()
71
+ .optional()
72
+ .describe('Company universal name slug'),
73
+ duration: z
74
+ .string()
75
+ .optional()
76
+ .describe('Duration text (e.g., "1 yr 7 mos")'),
77
+ description: z.string().optional().describe('Role description'),
78
+ skills: z
79
+ .array(z.string())
80
+ .optional()
81
+ .describe('Skills associated with this role'),
82
+ startDate: ProfileDateSchema.optional().describe('Start date'),
83
+ endDate: ProfileDateSchema.optional().describe('End date'),
84
+ });
85
+ // Education schema
86
+ const ProfileEducationSchema = z.object({
87
+ schoolName: z.string().optional().describe('School/university name'),
88
+ schoolLinkedinUrl: z.string().optional().describe('School LinkedIn URL'),
89
+ degree: z.string().optional().describe('Degree type'),
90
+ fieldOfStudy: z.string().nullable().optional().describe('Field of study'),
91
+ skills: z.array(z.string()).optional().describe('Skills from this education'),
92
+ startDate: ProfileDateSchema.optional().describe('Start date'),
93
+ endDate: ProfileDateSchema.optional().describe('End date'),
94
+ period: z
95
+ .string()
96
+ .optional()
97
+ .describe('Period text (e.g., "Aug 2018 - May 2022")'),
98
+ });
99
+ // Certification schema
100
+ const ProfileCertificationSchema = z.object({
101
+ title: z.string().optional().describe('Certification title'),
102
+ issuedAt: z.string().optional().describe('Issue date text'),
103
+ issuedBy: z.string().optional().describe('Issuing organization'),
104
+ issuedByLink: z
105
+ .string()
106
+ .optional()
107
+ .describe('Issuing organization LinkedIn URL'),
108
+ });
109
+ // Project schema
110
+ const ProfileProjectSchema = z.object({
111
+ title: z.string().optional().describe('Project title'),
112
+ description: z.string().optional().describe('Project description'),
113
+ duration: z.string().optional().describe('Duration text'),
114
+ startDate: ProfileDateSchema.optional().describe('Start date'),
115
+ endDate: ProfileDateSchema.optional().describe('End date'),
116
+ });
117
+ // Volunteering schema
118
+ const ProfileVolunteeringSchema = z.object({
119
+ role: z.string().optional().describe('Volunteer role'),
120
+ duration: z.string().optional().describe('Duration text'),
121
+ startDate: ProfileDateSchema.nullable().optional().describe('Start date'),
122
+ endDate: ProfileDateSchema.optional().describe('End date'),
123
+ organizationName: z.string().optional().describe('Organization name'),
124
+ organizationLinkedinUrl: z
125
+ .string()
126
+ .nullable()
127
+ .optional()
128
+ .describe('Organization LinkedIn URL'),
129
+ cause: z.string().optional().describe('Cause category'),
130
+ });
131
+ // Skill schema
132
+ const ProfileSkillSchema = z.object({
133
+ name: z.string().optional().describe('Skill name'),
134
+ positions: z
135
+ .array(z.string())
136
+ .optional()
137
+ .describe('Positions where skill is used'),
138
+ endorsements: z.string().optional().describe('Endorsement count text'),
139
+ });
140
+ // Publication schema
141
+ const ProfilePublicationSchema = z.object({
142
+ title: z.string().optional().describe('Publication title'),
143
+ publishedAt: z.string().optional().describe('Publication info'),
144
+ link: z.string().optional().describe('Publication URL'),
145
+ });
146
+ // Honor/Award schema
147
+ const ProfileHonorSchema = z.object({
148
+ title: z.string().optional().describe('Award title'),
149
+ issuedBy: z.string().optional().describe('Issuing organization'),
150
+ issuedAt: z.string().optional().describe('Issue date'),
151
+ description: z.string().optional().describe('Award description'),
152
+ associatedWith: z.string().optional().describe('Associated institution text'),
153
+ associatedWithLink: z
154
+ .string()
155
+ .optional()
156
+ .describe('Associated institution URL'),
157
+ });
158
+ // Language schema
159
+ const ProfileLanguageSchema = z.object({
160
+ name: z.string().optional().describe('Language name'),
161
+ proficiency: z.string().optional().describe('Proficiency level'),
162
+ });
163
+ // Course schema
164
+ const ProfileCourseSchema = z.object({
165
+ title: z.string().optional().describe('Course title'),
166
+ associatedWith: z.string().optional().describe('Associated institution text'),
167
+ associatedWithLink: z
168
+ .string()
169
+ .optional()
170
+ .describe('Associated institution URL'),
171
+ });
172
+ // More profiles (related) schema
173
+ const MoreProfileSchema = z.object({
174
+ id: z.string().optional().describe('Profile ID'),
175
+ firstName: z.string().optional().describe('First name'),
176
+ lastName: z.string().optional().describe('Last name'),
177
+ position: z.string().optional().describe('Current position'),
178
+ publicIdentifier: z.string().optional().describe('Public identifier/slug'),
179
+ linkedinUrl: z.string().optional().describe('LinkedIn profile URL'),
180
+ });
181
+ // Output schema - what the actor returns per profile
182
+ export const LinkedInProfileDetailOutputSchema = z.object({
183
+ id: z.string().optional().describe('LinkedIn member ID'),
184
+ publicIdentifier: z
185
+ .string()
186
+ .optional()
187
+ .describe('Public profile identifier/slug'),
188
+ linkedinUrl: z.string().optional().describe('Full LinkedIn profile URL'),
189
+ firstName: z.string().optional().describe('First name'),
190
+ lastName: z.string().optional().describe('Last name'),
191
+ headline: z.string().optional().describe('Profile headline'),
192
+ about: z.string().optional().describe('About/summary section'),
193
+ openToWork: z.boolean().optional().describe('Whether open to work'),
194
+ hiring: z.boolean().optional().describe('Whether actively hiring'),
195
+ photo: z.string().optional().describe('Profile photo URL'),
196
+ premium: z.boolean().optional().describe('Whether premium subscriber'),
197
+ influencer: z.boolean().optional().describe('Whether LinkedIn influencer'),
198
+ location: ProfileLocationSchema.optional().describe('Location information'),
199
+ verified: z.boolean().optional().describe('Whether profile is verified'),
200
+ registeredAt: z
201
+ .string()
202
+ .optional()
203
+ .describe('Account registration date (ISO)'),
204
+ topSkills: z.string().optional().describe('Top skills summary text'),
205
+ connectionsCount: z.number().optional().describe('Number of connections'),
206
+ followerCount: z.number().optional().describe('Number of followers'),
207
+ currentPosition: z
208
+ .array(z.object({ companyName: z.string().optional() }))
209
+ .optional()
210
+ .describe('Current position(s)'),
211
+ experience: z
212
+ .array(ProfileExperienceSchema)
213
+ .optional()
214
+ .describe('Work experience history'),
215
+ education: z
216
+ .array(ProfileEducationSchema)
217
+ .optional()
218
+ .describe('Education history'),
219
+ certifications: z
220
+ .array(ProfileCertificationSchema)
221
+ .optional()
222
+ .describe('Certifications'),
223
+ projects: z.array(ProfileProjectSchema).optional().describe('Projects'),
224
+ volunteering: z
225
+ .array(ProfileVolunteeringSchema)
226
+ .optional()
227
+ .describe('Volunteering experience'),
228
+ skills: z.array(ProfileSkillSchema).optional().describe('Skills list'),
229
+ courses: z.array(ProfileCourseSchema).optional().describe('Courses'),
230
+ publications: z
231
+ .array(ProfilePublicationSchema)
232
+ .optional()
233
+ .describe('Publications'),
234
+ patents: z.array(z.any()).optional().describe('Patents'),
235
+ honorsAndAwards: z
236
+ .array(ProfileHonorSchema)
237
+ .optional()
238
+ .describe('Honors and awards'),
239
+ languages: z.array(ProfileLanguageSchema).optional().describe('Languages'),
240
+ featured: z.any().nullable().optional().describe('Featured section'),
241
+ moreProfiles: z
242
+ .array(MoreProfileSchema)
243
+ .optional()
244
+ .describe('Related/similar profiles'),
245
+ query: z
246
+ .object({
247
+ publicIdentifier: z.string().optional(),
248
+ profileId: z.string().optional(),
249
+ })
250
+ .optional()
251
+ .describe('Original query info'),
252
+ status: z.number().optional().describe('HTTP status code'),
253
+ entityId: z.string().optional().describe('Entity ID'),
254
+ requestId: z.string().optional().describe('Request ID'),
255
+ });
256
+ //# sourceMappingURL=linkedin-profile-detail.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"linkedin-profile-detail.js","sourceRoot":"","sources":["../../../../../src/bubbles/service-bubble/apify/actors/linkedin-profile-detail.ts"],"names":[],"mappings":"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"}