lumnisai 0.5.16 → 0.5.17
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 +20 -0
- package/dist/index.d.mts +20 -0
- package/dist/index.d.ts +20 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1006,7 +1006,17 @@ interface ValidatedCandidate {
|
|
|
1006
1006
|
/** When source is job_signal: hiring-company context from CrustData job listings */
|
|
1007
1007
|
jobSignalMetadata?: {
|
|
1008
1008
|
companyId?: number | null;
|
|
1009
|
+
companyName?: string;
|
|
1010
|
+
companyLinkedinUrl?: string;
|
|
1009
1011
|
jobCount?: number;
|
|
1012
|
+
signalSource?: string;
|
|
1013
|
+
sampleJobListings?: Array<{
|
|
1014
|
+
title?: string;
|
|
1015
|
+
description?: string;
|
|
1016
|
+
workplaceType?: string;
|
|
1017
|
+
country?: string;
|
|
1018
|
+
dateAdded?: string;
|
|
1019
|
+
}>;
|
|
1010
1020
|
};
|
|
1011
1021
|
/** Raw profile data */
|
|
1012
1022
|
[key: string]: any;
|
|
@@ -1310,6 +1320,16 @@ interface SpecializedAgentParams {
|
|
|
1310
1320
|
* Used by deep_people_search.
|
|
1311
1321
|
*/
|
|
1312
1322
|
searchJobSignal?: boolean | 'auto';
|
|
1323
|
+
/**
|
|
1324
|
+
* Maximum candidates to return per company. Prevents results
|
|
1325
|
+
* dominated by a single large company. Applied after validation,
|
|
1326
|
+
* keeps highest-scored per company.
|
|
1327
|
+
* @default 3
|
|
1328
|
+
* @minimum 1
|
|
1329
|
+
* @maximum 1000
|
|
1330
|
+
* Used by deep_people_search.
|
|
1331
|
+
*/
|
|
1332
|
+
maxCandidatesPerCompany?: number;
|
|
1313
1333
|
/**
|
|
1314
1334
|
* Additional parameters for any specialized agent
|
|
1315
1335
|
* This allows flexibility for future agents without SDK updates
|
package/dist/index.d.mts
CHANGED
|
@@ -1006,7 +1006,17 @@ interface ValidatedCandidate {
|
|
|
1006
1006
|
/** When source is job_signal: hiring-company context from CrustData job listings */
|
|
1007
1007
|
jobSignalMetadata?: {
|
|
1008
1008
|
companyId?: number | null;
|
|
1009
|
+
companyName?: string;
|
|
1010
|
+
companyLinkedinUrl?: string;
|
|
1009
1011
|
jobCount?: number;
|
|
1012
|
+
signalSource?: string;
|
|
1013
|
+
sampleJobListings?: Array<{
|
|
1014
|
+
title?: string;
|
|
1015
|
+
description?: string;
|
|
1016
|
+
workplaceType?: string;
|
|
1017
|
+
country?: string;
|
|
1018
|
+
dateAdded?: string;
|
|
1019
|
+
}>;
|
|
1010
1020
|
};
|
|
1011
1021
|
/** Raw profile data */
|
|
1012
1022
|
[key: string]: any;
|
|
@@ -1310,6 +1320,16 @@ interface SpecializedAgentParams {
|
|
|
1310
1320
|
* Used by deep_people_search.
|
|
1311
1321
|
*/
|
|
1312
1322
|
searchJobSignal?: boolean | 'auto';
|
|
1323
|
+
/**
|
|
1324
|
+
* Maximum candidates to return per company. Prevents results
|
|
1325
|
+
* dominated by a single large company. Applied after validation,
|
|
1326
|
+
* keeps highest-scored per company.
|
|
1327
|
+
* @default 3
|
|
1328
|
+
* @minimum 1
|
|
1329
|
+
* @maximum 1000
|
|
1330
|
+
* Used by deep_people_search.
|
|
1331
|
+
*/
|
|
1332
|
+
maxCandidatesPerCompany?: number;
|
|
1313
1333
|
/**
|
|
1314
1334
|
* Additional parameters for any specialized agent
|
|
1315
1335
|
* This allows flexibility for future agents without SDK updates
|
package/dist/index.d.ts
CHANGED
|
@@ -1006,7 +1006,17 @@ interface ValidatedCandidate {
|
|
|
1006
1006
|
/** When source is job_signal: hiring-company context from CrustData job listings */
|
|
1007
1007
|
jobSignalMetadata?: {
|
|
1008
1008
|
companyId?: number | null;
|
|
1009
|
+
companyName?: string;
|
|
1010
|
+
companyLinkedinUrl?: string;
|
|
1009
1011
|
jobCount?: number;
|
|
1012
|
+
signalSource?: string;
|
|
1013
|
+
sampleJobListings?: Array<{
|
|
1014
|
+
title?: string;
|
|
1015
|
+
description?: string;
|
|
1016
|
+
workplaceType?: string;
|
|
1017
|
+
country?: string;
|
|
1018
|
+
dateAdded?: string;
|
|
1019
|
+
}>;
|
|
1010
1020
|
};
|
|
1011
1021
|
/** Raw profile data */
|
|
1012
1022
|
[key: string]: any;
|
|
@@ -1310,6 +1320,16 @@ interface SpecializedAgentParams {
|
|
|
1310
1320
|
* Used by deep_people_search.
|
|
1311
1321
|
*/
|
|
1312
1322
|
searchJobSignal?: boolean | 'auto';
|
|
1323
|
+
/**
|
|
1324
|
+
* Maximum candidates to return per company. Prevents results
|
|
1325
|
+
* dominated by a single large company. Applied after validation,
|
|
1326
|
+
* keeps highest-scored per company.
|
|
1327
|
+
* @default 3
|
|
1328
|
+
* @minimum 1
|
|
1329
|
+
* @maximum 1000
|
|
1330
|
+
* Used by deep_people_search.
|
|
1331
|
+
*/
|
|
1332
|
+
maxCandidatesPerCompany?: number;
|
|
1313
1333
|
/**
|
|
1314
1334
|
* Additional parameters for any specialized agent
|
|
1315
1335
|
* This allows flexibility for future agents without SDK updates
|