lumnisai 0.1.24 → 0.1.25

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
@@ -663,6 +663,20 @@ interface SpecializedAgentParams {
663
663
  * For people search agents: ["PDL", "CORESIGNAL", "CRUST_DATA"]
664
664
  */
665
665
  dataSources?: string[];
666
+ /**
667
+ * Custom LinkedIn profile URLs to exclude from people search results.
668
+ * Used for CrustData post-processing (exclude_profiles) and also applied as a server-side post-filter.
669
+ */
670
+ excludeProfiles?: string[];
671
+ /**
672
+ * If true, exclude people the user has previously contacted (best-effort via stored LinkedIn URLs).
673
+ * @default false
674
+ */
675
+ excludePreviouslyContacted?: boolean;
676
+ /**
677
+ * Names to exclude from results (passed through to CrustData post-processing when supported).
678
+ */
679
+ excludeNames?: string[];
666
680
  /**
667
681
  * Additional parameters for any specialized agent
668
682
  * This allows flexibility for future agents without SDK updates
@@ -1493,6 +1507,8 @@ interface LinkedInSendRequest {
1493
1507
  prospectProviderId?: string | null;
1494
1508
  prospectLinkedInUrl?: string | null;
1495
1509
  prospectName: string;
1510
+ /** Optional subject line (used for LinkedIn InMail). */
1511
+ subject?: string | null;
1496
1512
  content: string;
1497
1513
  isPriority?: boolean;
1498
1514
  enableEscalation?: boolean;
package/dist/index.d.mts CHANGED
@@ -663,6 +663,20 @@ interface SpecializedAgentParams {
663
663
  * For people search agents: ["PDL", "CORESIGNAL", "CRUST_DATA"]
664
664
  */
665
665
  dataSources?: string[];
666
+ /**
667
+ * Custom LinkedIn profile URLs to exclude from people search results.
668
+ * Used for CrustData post-processing (exclude_profiles) and also applied as a server-side post-filter.
669
+ */
670
+ excludeProfiles?: string[];
671
+ /**
672
+ * If true, exclude people the user has previously contacted (best-effort via stored LinkedIn URLs).
673
+ * @default false
674
+ */
675
+ excludePreviouslyContacted?: boolean;
676
+ /**
677
+ * Names to exclude from results (passed through to CrustData post-processing when supported).
678
+ */
679
+ excludeNames?: string[];
666
680
  /**
667
681
  * Additional parameters for any specialized agent
668
682
  * This allows flexibility for future agents without SDK updates
@@ -1493,6 +1507,8 @@ interface LinkedInSendRequest {
1493
1507
  prospectProviderId?: string | null;
1494
1508
  prospectLinkedInUrl?: string | null;
1495
1509
  prospectName: string;
1510
+ /** Optional subject line (used for LinkedIn InMail). */
1511
+ subject?: string | null;
1496
1512
  content: string;
1497
1513
  isPriority?: boolean;
1498
1514
  enableEscalation?: boolean;
package/dist/index.d.ts CHANGED
@@ -663,6 +663,20 @@ interface SpecializedAgentParams {
663
663
  * For people search agents: ["PDL", "CORESIGNAL", "CRUST_DATA"]
664
664
  */
665
665
  dataSources?: string[];
666
+ /**
667
+ * Custom LinkedIn profile URLs to exclude from people search results.
668
+ * Used for CrustData post-processing (exclude_profiles) and also applied as a server-side post-filter.
669
+ */
670
+ excludeProfiles?: string[];
671
+ /**
672
+ * If true, exclude people the user has previously contacted (best-effort via stored LinkedIn URLs).
673
+ * @default false
674
+ */
675
+ excludePreviouslyContacted?: boolean;
676
+ /**
677
+ * Names to exclude from results (passed through to CrustData post-processing when supported).
678
+ */
679
+ excludeNames?: string[];
666
680
  /**
667
681
  * Additional parameters for any specialized agent
668
682
  * This allows flexibility for future agents without SDK updates
@@ -1493,6 +1507,8 @@ interface LinkedInSendRequest {
1493
1507
  prospectProviderId?: string | null;
1494
1508
  prospectLinkedInUrl?: string | null;
1495
1509
  prospectName: string;
1510
+ /** Optional subject line (used for LinkedIn InMail). */
1511
+ subject?: string | null;
1496
1512
  content: string;
1497
1513
  isPriority?: boolean;
1498
1514
  enableEscalation?: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lumnisai",
3
3
  "type": "module",
4
- "version": "0.1.24",
4
+ "version": "0.1.25",
5
5
  "description": "Official Node.js SDK for the Lumnis AI API",
6
6
  "author": "Lumnis AI",
7
7
  "license": "MIT",