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 company_name FROM linkedin.work_experience WHERE linkedin_account_id = la.id AND is_current = true LIMIT 1) as "company_name",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eggi-ai-db-schema-2",
3
- "version": "12.54.14",
3
+ "version": "12.54.15",
4
4
  "description": "Type-safe database schema with native PostgreSQL queries for Eggi.AI with direct RDS connection",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",