eggi-ai-db-schema-2 12.54.14 → 12.54.15
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.
|
@@ -205,7 +205,7 @@ async function getLlmSearchJobResultsDetailed(db, jobId) {
|
|
|
205
205
|
jr.linkedin_account_id as "id",
|
|
206
206
|
la.first_name || ' ' || la.last_name as "full_name",
|
|
207
207
|
la.headline as "position",
|
|
208
|
-
(SELECT
|
|
208
|
+
(SELECT company FROM linkedin.work_experience WHERE linkedin_account_id = la.id AND is_current = true LIMIT 1) as "company_name",
|
|
209
209
|
la.profile_picture_url as "profile_image_url",
|
|
210
210
|
'https://www.linkedin.com/in/' || la.public_identifier as "linkedin_url",
|
|
211
211
|
la.location,
|
package/package.json
CHANGED