lumnisai 0.1.27 → 0.1.28

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/index.d.cts CHANGED
@@ -498,13 +498,15 @@ interface PersonResult {
498
498
  country?: string;
499
499
  /** Primary email address */
500
500
  email?: string;
501
- /** List of email addresses (up to 3) */
501
+ /** List of email addresses */
502
502
  emails: string[];
503
503
  /** LinkedIn profile URL */
504
504
  linkedinUrl?: string;
505
+ /** Profile picture URL for frontend display */
506
+ profilePictureUrl?: string;
505
507
  /** Years of professional experience */
506
508
  yearsExperience?: number;
507
- /** List of skills (up to 15) */
509
+ /** List of skills */
508
510
  skills: string[];
509
511
  /** Seniority level (e.g., "Senior", "Director", "VP") */
510
512
  seniorityLevel?: string;
@@ -524,7 +526,7 @@ interface PersonResult {
524
526
  certificationsCount?: number;
525
527
  /** List of languages spoken (CoreSignal only) */
526
528
  languages?: string[];
527
- /** List of education degrees (CoreSignal only, up to 3) */
529
+ /** List of education degrees (CoreSignal only) */
528
530
  educationDegrees?: string[];
529
531
  }
530
532
  /**
package/dist/index.d.mts CHANGED
@@ -498,13 +498,15 @@ interface PersonResult {
498
498
  country?: string;
499
499
  /** Primary email address */
500
500
  email?: string;
501
- /** List of email addresses (up to 3) */
501
+ /** List of email addresses */
502
502
  emails: string[];
503
503
  /** LinkedIn profile URL */
504
504
  linkedinUrl?: string;
505
+ /** Profile picture URL for frontend display */
506
+ profilePictureUrl?: string;
505
507
  /** Years of professional experience */
506
508
  yearsExperience?: number;
507
- /** List of skills (up to 15) */
509
+ /** List of skills */
508
510
  skills: string[];
509
511
  /** Seniority level (e.g., "Senior", "Director", "VP") */
510
512
  seniorityLevel?: string;
@@ -524,7 +526,7 @@ interface PersonResult {
524
526
  certificationsCount?: number;
525
527
  /** List of languages spoken (CoreSignal only) */
526
528
  languages?: string[];
527
- /** List of education degrees (CoreSignal only, up to 3) */
529
+ /** List of education degrees (CoreSignal only) */
528
530
  educationDegrees?: string[];
529
531
  }
530
532
  /**
package/dist/index.d.ts CHANGED
@@ -498,13 +498,15 @@ interface PersonResult {
498
498
  country?: string;
499
499
  /** Primary email address */
500
500
  email?: string;
501
- /** List of email addresses (up to 3) */
501
+ /** List of email addresses */
502
502
  emails: string[];
503
503
  /** LinkedIn profile URL */
504
504
  linkedinUrl?: string;
505
+ /** Profile picture URL for frontend display */
506
+ profilePictureUrl?: string;
505
507
  /** Years of professional experience */
506
508
  yearsExperience?: number;
507
- /** List of skills (up to 15) */
509
+ /** List of skills */
508
510
  skills: string[];
509
511
  /** Seniority level (e.g., "Senior", "Director", "VP") */
510
512
  seniorityLevel?: string;
@@ -524,7 +526,7 @@ interface PersonResult {
524
526
  certificationsCount?: number;
525
527
  /** List of languages spoken (CoreSignal only) */
526
528
  languages?: string[];
527
- /** List of education degrees (CoreSignal only, up to 3) */
529
+ /** List of education degrees (CoreSignal only) */
528
530
  educationDegrees?: string[];
529
531
  }
530
532
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lumnisai",
3
3
  "type": "module",
4
- "version": "0.1.27",
4
+ "version": "0.1.28",
5
5
  "description": "Official Node.js SDK for the Lumnis AI API",
6
6
  "author": "Lumnis AI",
7
7
  "license": "MIT",