lumnisai 0.5.39 → 0.5.40
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.cjs +115 -0
- package/dist/index.d.cts +131 -23
- package/dist/index.d.mts +131 -23
- package/dist/index.d.ts +131 -23
- package/dist/index.mjs +115 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3435,6 +3435,75 @@ class ResponsesResource {
|
|
|
3435
3435
|
throw new ValidationError("excludeUrls must be an array of strings for engagement_expansion");
|
|
3436
3436
|
}
|
|
3437
3437
|
}
|
|
3438
|
+
_validateInfluencerEngagementParams(params) {
|
|
3439
|
+
const seedProfiles = this._getParamValue(params, "seedProfiles", "seed_profiles");
|
|
3440
|
+
if (!Array.isArray(seedProfiles) || seedProfiles.some((url) => typeof url !== "string") || !seedProfiles.some((url) => url.trim().length > 0)) {
|
|
3441
|
+
throw new ValidationError(
|
|
3442
|
+
"seedProfiles is required for influencer_engagement and must contain at least one non-empty string"
|
|
3443
|
+
);
|
|
3444
|
+
}
|
|
3445
|
+
const engagementTypes = this._getParamValue(
|
|
3446
|
+
params,
|
|
3447
|
+
"engagementTypes",
|
|
3448
|
+
"engagement_types"
|
|
3449
|
+
);
|
|
3450
|
+
if (engagementTypes !== void 0) {
|
|
3451
|
+
if (!Array.isArray(engagementTypes) || engagementTypes.length === 0)
|
|
3452
|
+
throw new ValidationError("engagementTypes must contain at least one value");
|
|
3453
|
+
const validTypes = ["reactor", "commenter"];
|
|
3454
|
+
for (const type of engagementTypes) {
|
|
3455
|
+
if (!validTypes.includes(type)) {
|
|
3456
|
+
throw new ValidationError(
|
|
3457
|
+
`Invalid engagementTypes value: ${String(type)}. Expected 'reactor' and/or 'commenter'.`
|
|
3458
|
+
);
|
|
3459
|
+
}
|
|
3460
|
+
}
|
|
3461
|
+
}
|
|
3462
|
+
const postsDateRange = this._getParamValue(
|
|
3463
|
+
params,
|
|
3464
|
+
"postsDateRange",
|
|
3465
|
+
"posts_date_range"
|
|
3466
|
+
);
|
|
3467
|
+
if (postsDateRange !== void 0) {
|
|
3468
|
+
const validRanges = [
|
|
3469
|
+
"past-24h",
|
|
3470
|
+
"past-week",
|
|
3471
|
+
"past-month",
|
|
3472
|
+
"past-quarter",
|
|
3473
|
+
"past-6-months",
|
|
3474
|
+
"past-year",
|
|
3475
|
+
"past-2-years",
|
|
3476
|
+
"past-3-years"
|
|
3477
|
+
];
|
|
3478
|
+
if (!validRanges.includes(postsDateRange))
|
|
3479
|
+
throw new ValidationError(`Invalid postsDateRange value: ${String(postsDateRange)}`);
|
|
3480
|
+
}
|
|
3481
|
+
for (const [camel, snake, maximum] of [
|
|
3482
|
+
["limit", "limit", 1e3],
|
|
3483
|
+
["maxReactorsPerPost", "max_reactors_per_post", 5e3],
|
|
3484
|
+
["maxCommentsPerPost", "max_comments_per_post", 5e3]
|
|
3485
|
+
]) {
|
|
3486
|
+
const value = this._getParamValue(params, camel, snake);
|
|
3487
|
+
if (value !== void 0 && (!Number.isInteger(value) || value < 1 || value > maximum)) {
|
|
3488
|
+
throw new ValidationError(
|
|
3489
|
+
`${camel} must be an integer between 1 and ${maximum} for influencer_engagement`
|
|
3490
|
+
);
|
|
3491
|
+
}
|
|
3492
|
+
}
|
|
3493
|
+
for (const [camel, snake] of [
|
|
3494
|
+
["postsEnableFiltering", "posts_enable_filtering"],
|
|
3495
|
+
["thoroughEnrichment", "thorough_enrichment"],
|
|
3496
|
+
["deepValidationUseRelevanceReranker", "deep_validation_use_relevance_reranker"]
|
|
3497
|
+
]) {
|
|
3498
|
+
const value = this._getParamValue(params, camel, snake);
|
|
3499
|
+
if (value !== void 0 && typeof value !== "boolean")
|
|
3500
|
+
throw new ValidationError(`${camel} must be a boolean for influencer_engagement`);
|
|
3501
|
+
}
|
|
3502
|
+
const excludeUrls = this._getParamValue(params, "excludeUrls", "exclude_urls");
|
|
3503
|
+
if (excludeUrls !== void 0 && (!Array.isArray(excludeUrls) || excludeUrls.some((url) => typeof url !== "string"))) {
|
|
3504
|
+
throw new ValidationError("excludeUrls must be an array of strings for influencer_engagement");
|
|
3505
|
+
}
|
|
3506
|
+
}
|
|
3438
3507
|
_validateSinceDays(value, agent) {
|
|
3439
3508
|
if (value === void 0)
|
|
3440
3509
|
return;
|
|
@@ -3595,6 +3664,8 @@ class ResponsesResource {
|
|
|
3595
3664
|
this._validateContentIntelligenceParams(rawParams);
|
|
3596
3665
|
if (specializedAgent === "engagement_expansion")
|
|
3597
3666
|
this._validateEngagementExpansionParams(rawParams);
|
|
3667
|
+
if (specializedAgent === "influencer_engagement")
|
|
3668
|
+
this._validateInfluencerEngagementParams(rawParams);
|
|
3598
3669
|
if (specializedAgent === "company_intelligence")
|
|
3599
3670
|
this._validateCompanyIntelligenceParams(rawParams);
|
|
3600
3671
|
if (specializedAgent === "person_intelligence")
|
|
@@ -3995,6 +4066,50 @@ class ResponsesResource {
|
|
|
3995
4066
|
specializedAgentParams: params
|
|
3996
4067
|
});
|
|
3997
4068
|
}
|
|
4069
|
+
/**
|
|
4070
|
+
* Score people who react to or comment on posts connected to named LinkedIn profiles.
|
|
4071
|
+
*
|
|
4072
|
+
* The backend reads posts each seed authored and reacted to within the requested
|
|
4073
|
+
* window, selects posts relevant to the persona prompt, then runs their engagers
|
|
4074
|
+
* through the deep people-search scoring chain. Seed profiles are always excluded
|
|
4075
|
+
* from delivered candidates.
|
|
4076
|
+
*
|
|
4077
|
+
* @param query - Persona prompt used to select posts and score discovered people.
|
|
4078
|
+
* @param options - Seed profiles plus optional window, extraction, and cost controls.
|
|
4079
|
+
* @returns Response; poll with `get()` and read `structuredResponse` as
|
|
4080
|
+
* {@link InfluencerEngagementOutput}.
|
|
4081
|
+
*/
|
|
4082
|
+
async influencerEngagement(query, options) {
|
|
4083
|
+
if (!query.trim())
|
|
4084
|
+
throw new ValidationError("influencerEngagement requires a non-empty persona query");
|
|
4085
|
+
const params = {
|
|
4086
|
+
seedProfiles: options.seedProfiles
|
|
4087
|
+
};
|
|
4088
|
+
if (options.postsDateRange !== void 0)
|
|
4089
|
+
params.postsDateRange = options.postsDateRange;
|
|
4090
|
+
if (options.engagementTypes !== void 0)
|
|
4091
|
+
params.engagementTypes = options.engagementTypes;
|
|
4092
|
+
if (options.postsEnableFiltering !== void 0)
|
|
4093
|
+
params.postsEnableFiltering = options.postsEnableFiltering;
|
|
4094
|
+
if (options.thoroughEnrichment !== void 0)
|
|
4095
|
+
params.thoroughEnrichment = options.thoroughEnrichment;
|
|
4096
|
+
if (options.deepValidationUseRelevanceReranker !== void 0) {
|
|
4097
|
+
params.deepValidationUseRelevanceReranker = options.deepValidationUseRelevanceReranker;
|
|
4098
|
+
}
|
|
4099
|
+
if (options.maxReactorsPerPost !== void 0)
|
|
4100
|
+
params.maxReactorsPerPost = options.maxReactorsPerPost;
|
|
4101
|
+
if (options.maxCommentsPerPost !== void 0)
|
|
4102
|
+
params.maxCommentsPerPost = options.maxCommentsPerPost;
|
|
4103
|
+
if (options.excludeUrls !== void 0)
|
|
4104
|
+
params.excludeUrls = options.excludeUrls;
|
|
4105
|
+
if (options.limit !== void 0)
|
|
4106
|
+
params.limit = options.limit;
|
|
4107
|
+
return this.create({
|
|
4108
|
+
messages: [{ role: "user", content: query }],
|
|
4109
|
+
specializedAgent: "influencer_engagement",
|
|
4110
|
+
specializedAgentParams: params
|
|
4111
|
+
});
|
|
4112
|
+
}
|
|
3998
4113
|
/**
|
|
3999
4114
|
* Score people who reacted to or commented on competitor LinkedIn posts.
|
|
4000
4115
|
*
|
package/dist/index.d.cts
CHANGED
|
@@ -1321,6 +1321,8 @@ interface PostEngagementData {
|
|
|
1321
1321
|
role: 'reactor' | 'commenter';
|
|
1322
1322
|
/** Reaction type for reactors (e.g. LIKE, PRAISE, EMPATHY) */
|
|
1323
1323
|
reactionType?: string;
|
|
1324
|
+
/** Full, untruncated comment body for commenters. */
|
|
1325
|
+
commentText?: string | null;
|
|
1324
1326
|
/** Original competitor input identifier (e.g. "openai.com") */
|
|
1325
1327
|
competitor?: string;
|
|
1326
1328
|
/** Display name of the competitor company */
|
|
@@ -2001,6 +2003,84 @@ interface EngagementExpansionOutput {
|
|
|
2001
2003
|
agentParams: EngagementExpansionResolvedParams;
|
|
2002
2004
|
}
|
|
2003
2005
|
|
|
2006
|
+
/** Options accepted by {@link ResponsesResource.influencerEngagement}. */
|
|
2007
|
+
interface InfluencerEngagementOptions {
|
|
2008
|
+
/** LinkedIn profile URLs whose authored and reacted-to posts seed discovery. */
|
|
2009
|
+
seedProfiles: string[];
|
|
2010
|
+
/** How far back to inspect each seed's activity. @default 'past-month' */
|
|
2011
|
+
postsDateRange?: PostsDateRange;
|
|
2012
|
+
/** Candidate engagement roles to collect. @default ['reactor', 'commenter'] */
|
|
2013
|
+
engagementTypes?: PostEngagementType[];
|
|
2014
|
+
/** Score post relevance against the persona prompt before opening posts. @default true */
|
|
2015
|
+
postsEnableFiltering?: boolean;
|
|
2016
|
+
/** Enrich the full candidate pool before prefiltering. @default false */
|
|
2017
|
+
thoroughEnrichment?: boolean;
|
|
2018
|
+
/** SLM relevance reranker for surfaced candidates. @default true */
|
|
2019
|
+
deepValidationUseRelevanceReranker?: boolean;
|
|
2020
|
+
/** Reactors collected per selected post. @minimum 1 @maximum 5000 */
|
|
2021
|
+
maxReactorsPerPost?: number;
|
|
2022
|
+
/**
|
|
2023
|
+
* Requested commenters per selected post. The backend currently accepts and
|
|
2024
|
+
* echoes this value but does not enforce it in direct-post extraction.
|
|
2025
|
+
* @minimum 1
|
|
2026
|
+
* @maximum 5000
|
|
2027
|
+
*/
|
|
2028
|
+
maxCommentsPerPost?: number;
|
|
2029
|
+
/** Additional LinkedIn profile URLs to exclude; seed profiles are always excluded. */
|
|
2030
|
+
excludeUrls?: string[];
|
|
2031
|
+
/** Maximum validated candidates returned. @default 50 @minimum 1 @maximum 1000 */
|
|
2032
|
+
limit?: number;
|
|
2033
|
+
}
|
|
2034
|
+
/** Resolved parameters echoed in `structuredResponse.agentParams`. */
|
|
2035
|
+
interface InfluencerEngagementResolvedParams {
|
|
2036
|
+
seedProfiles: string[];
|
|
2037
|
+
postsDateRange: PostsDateRange;
|
|
2038
|
+
engagementTypes: PostEngagementType[];
|
|
2039
|
+
postsEnableFiltering: boolean;
|
|
2040
|
+
thoroughEnrichment: boolean;
|
|
2041
|
+
maxReactorsPerPost: number | null;
|
|
2042
|
+
maxCommentsPerPost: number | null;
|
|
2043
|
+
excludeUrls: string[] | null;
|
|
2044
|
+
limit: number;
|
|
2045
|
+
}
|
|
2046
|
+
/** Per-seed collection accounting, including seeds with no activity in the window. */
|
|
2047
|
+
interface InfluencerEngagementSeedCoverage {
|
|
2048
|
+
seed: string;
|
|
2049
|
+
authoredPosts: number;
|
|
2050
|
+
reactedPosts: number;
|
|
2051
|
+
postsSelected: number;
|
|
2052
|
+
reactionCredits: number;
|
|
2053
|
+
/** Authored or reacted-to records discarded because they had no usable post URL. */
|
|
2054
|
+
droppedNoUrl: number;
|
|
2055
|
+
stopReason: string | null;
|
|
2056
|
+
error?: string;
|
|
2057
|
+
}
|
|
2058
|
+
type InfluencerEngagementPostSource = 'authored' | 'reacted';
|
|
2059
|
+
/** One selected LinkedIn post and the seed activity that led to it. */
|
|
2060
|
+
interface InfluencerEngagementSeedPost {
|
|
2061
|
+
key: string;
|
|
2062
|
+
url: string;
|
|
2063
|
+
author: {
|
|
2064
|
+
name?: string | null;
|
|
2065
|
+
url?: string | null;
|
|
2066
|
+
} | null;
|
|
2067
|
+
sources: InfluencerEngagementPostSource[];
|
|
2068
|
+
seeds: string[];
|
|
2069
|
+
engagement: number | null;
|
|
2070
|
+
intent: number | null;
|
|
2071
|
+
}
|
|
2072
|
+
/** Full structured output from a succeeded `influencer_engagement` run. */
|
|
2073
|
+
interface InfluencerEngagementOutput {
|
|
2074
|
+
/** Scored prospects in backend delivery order, capped to `agentParams.limit`. */
|
|
2075
|
+
candidates: ValidatedCandidate[];
|
|
2076
|
+
excludedCandidates: ValidatedCandidate[];
|
|
2077
|
+
totalExcluded: number;
|
|
2078
|
+
criteria: CriteriaMetadata;
|
|
2079
|
+
seedCoverage: InfluencerEngagementSeedCoverage[];
|
|
2080
|
+
seedPosts: InfluencerEngagementSeedPost[];
|
|
2081
|
+
agentParams: InfluencerEngagementResolvedParams;
|
|
2082
|
+
}
|
|
2083
|
+
|
|
2004
2084
|
/**
|
|
2005
2085
|
* Available people search data sources
|
|
2006
2086
|
*/
|
|
@@ -2286,7 +2366,7 @@ interface CriteriaMetadata {
|
|
|
2286
2366
|
version: number;
|
|
2287
2367
|
createdAt: string;
|
|
2288
2368
|
source: 'generated' | 'reused' | 'provided';
|
|
2289
|
-
sourceResponseId?: string;
|
|
2369
|
+
sourceResponseId?: string | null;
|
|
2290
2370
|
criteriaDefinitions: CriterionDefinition[];
|
|
2291
2371
|
criteriaClassification: CriteriaClassification;
|
|
2292
2372
|
}
|
|
@@ -2527,7 +2607,8 @@ interface ValidatedCandidate {
|
|
|
2527
2607
|
* One entry per post — if someone engaged with multiple competitor posts,
|
|
2528
2608
|
* this is a list with multiple entries (merged by merge_candidates_node).
|
|
2529
2609
|
* Populated by deep_people_search (posts / direct_posts) and
|
|
2530
|
-
* competitor_post_engagement (with competitor provenance joined in)
|
|
2610
|
+
* competitor_post_engagement (with competitor provenance joined in), and
|
|
2611
|
+
* influencer_engagement.
|
|
2531
2612
|
*/
|
|
2532
2613
|
engagementData?: PostEngagementData[];
|
|
2533
2614
|
/** Broader recent reaction history loaded for engagement-expansion finalists. */
|
|
@@ -2648,6 +2729,9 @@ interface StructuredResponse extends Record<string, any> {
|
|
|
2648
2729
|
audienceStats?: ContentIntelligenceAudienceStats | Record<string, never>;
|
|
2649
2730
|
/** Engagement expansion output (when using engagement_expansion agent). */
|
|
2650
2731
|
expansionStats?: EngagementExpansionStats;
|
|
2732
|
+
/** Influencer engagement collection metadata. */
|
|
2733
|
+
seedCoverage?: InfluencerEngagementSeedCoverage[];
|
|
2734
|
+
seedPosts?: InfluencerEngagementSeedPost[];
|
|
2651
2735
|
/**
|
|
2652
2736
|
* Company/person intelligence output (when using company_intelligence or
|
|
2653
2737
|
* person_intelligence). `envelope` is the display-block document; it is null
|
|
@@ -2669,14 +2753,13 @@ interface StructuredResponse extends Record<string, any> {
|
|
|
2669
2753
|
* Available specialized agents
|
|
2670
2754
|
* Using a union type that can be extended with any string to support future agents
|
|
2671
2755
|
*/
|
|
2672
|
-
type SpecializedAgentType = 'quick_people_search' | 'deep_people_search' | 'people_scoring' | 'competitor_post_engagement' | 'competitor_rep_engagement' | 'content_intelligence' | 'engagement_expansion' | 'company_intelligence' | 'person_intelligence' | (string & {});
|
|
2756
|
+
type SpecializedAgentType = 'quick_people_search' | 'deep_people_search' | 'people_scoring' | 'competitor_post_engagement' | 'competitor_rep_engagement' | 'content_intelligence' | 'engagement_expansion' | 'influencer_engagement' | 'company_intelligence' | 'person_intelligence' | (string & {});
|
|
2673
2757
|
/**
|
|
2674
|
-
* Shared posts date-range enum
|
|
2675
|
-
* competitor_rep_engagement).
|
|
2758
|
+
* Shared posts date-range enum for LinkedIn post and engagement agents.
|
|
2676
2759
|
*
|
|
2677
2760
|
* The longer ranges (`past-6-months`, `past-2-years`, `past-3-years`) apply fully
|
|
2678
|
-
* only to
|
|
2679
|
-
*
|
|
2761
|
+
* only to the Fiber profile-history lanes (`competitor_rep_engagement` and
|
|
2762
|
+
* `influencer_engagement`, ~3 years). For KEYWORD post search (deep_people_search posts +
|
|
2680
2763
|
* competitor_post_engagement), Crustdata's keyword-post API only supports up to
|
|
2681
2764
|
* `past-year`: `past-6-months` is honored window-exact via a client-side cutoff
|
|
2682
2765
|
* (may return fewer results), while `past-2-years`/`past-3-years` are CAPPED to
|
|
@@ -2771,6 +2854,11 @@ interface SpecializedAgentParams {
|
|
|
2771
2854
|
* Each candidate must include at least one identifier: linkedin_url or email/emails.
|
|
2772
2855
|
*/
|
|
2773
2856
|
candidateProfiles?: Array<Record<string, any>>;
|
|
2857
|
+
/**
|
|
2858
|
+
* LinkedIn profile URLs whose authored and reacted-to posts seed discovery.
|
|
2859
|
+
* Required by influencer_engagement. Seeds are always excluded from results.
|
|
2860
|
+
*/
|
|
2861
|
+
seedProfiles?: string[];
|
|
2774
2862
|
/**
|
|
2775
2863
|
* Re-cook the content package stored on a prior response without repeating
|
|
2776
2864
|
* audience search or engagement collection.
|
|
@@ -2791,7 +2879,10 @@ interface SpecializedAgentParams {
|
|
|
2791
2879
|
postsPerHop?: number;
|
|
2792
2880
|
/** Highest-fit people carried into the next hop. Minimum 1; defaults to 20. */
|
|
2793
2881
|
peoplePerNextHop?: number;
|
|
2794
|
-
/**
|
|
2882
|
+
/**
|
|
2883
|
+
* LinkedIn profile URLs excluded in addition to the source package audience
|
|
2884
|
+
* or influencer seed profiles.
|
|
2885
|
+
*/
|
|
2795
2886
|
excludeUrls?: string[];
|
|
2796
2887
|
/**
|
|
2797
2888
|
* Results requested from each Exa query in the people-search research lane.
|
|
@@ -2840,17 +2931,18 @@ interface SpecializedAgentParams {
|
|
|
2840
2931
|
* 'past-6-months', 'past-year', 'past-2-years', 'past-3-years'.
|
|
2841
2932
|
* @default 'past-month'
|
|
2842
2933
|
* Used by deep_people_search, competitor_post_engagement,
|
|
2843
|
-
* competitor_rep_engagement, and content_intelligence.
|
|
2934
|
+
* competitor_rep_engagement, influencer_engagement, and content_intelligence.
|
|
2844
2935
|
*
|
|
2845
2936
|
* For deep_people_search / competitor_post_engagement it bounds POST recency;
|
|
2846
2937
|
* for competitor_rep_engagement it bounds how far back each rep's OUTGOING
|
|
2847
2938
|
* engagement is considered (also bounded by `maxEngagementsPerRep`); for
|
|
2848
|
-
*
|
|
2939
|
+
* influencer_engagement it bounds each seed's authored and reacted-to posts;
|
|
2940
|
+
* for content_intelligence it bounds each audience member's reaction history.
|
|
2849
2941
|
*
|
|
2850
2942
|
* NOTE on keyword post search: Crustdata's keyword-post API only supports up to
|
|
2851
2943
|
* 'past-year'. 'past-6-months' is honored window-exact via a client-side cutoff
|
|
2852
2944
|
* (may return fewer results); 'past-2-years'/'past-3-years' are capped to
|
|
2853
|
-
* 'past-year'. The longer ranges apply fully
|
|
2945
|
+
* 'past-year'. The longer ranges apply fully to the Fiber history lanes.
|
|
2854
2946
|
*/
|
|
2855
2947
|
postsDateRange?: PostsDateRange;
|
|
2856
2948
|
/**
|
|
@@ -2890,7 +2982,7 @@ interface SpecializedAgentParams {
|
|
|
2890
2982
|
* Uses LLM to identify and skip hiring posts, spam, and irrelevant content.
|
|
2891
2983
|
* Improves candidate quality at cost of ~1 LLM call per post.
|
|
2892
2984
|
* In content_intelligence this marks junk on package rows without deleting it.
|
|
2893
|
-
* Used by deep_people_search and
|
|
2985
|
+
* Used by deep_people_search, content_intelligence, and influencer_engagement.
|
|
2894
2986
|
*/
|
|
2895
2987
|
postsEnableFiltering?: boolean;
|
|
2896
2988
|
/**
|
|
@@ -2914,8 +3006,8 @@ interface SpecializedAgentParams {
|
|
|
2914
3006
|
* to the request). Ranking-only: never changes routing/inclusion; `overallScore` and
|
|
2915
3007
|
* `intentScore` are untouched. Adds `relevanceScore` / `relevanceTier` per candidate.
|
|
2916
3008
|
* @default true
|
|
2917
|
-
* Used by deep_people_search, people_scoring, competitor_post_engagement,
|
|
2918
|
-
* competitor_rep_engagement.
|
|
3009
|
+
* Used by deep_people_search, people_scoring, competitor_post_engagement,
|
|
3010
|
+
* competitor_rep_engagement, and influencer_engagement.
|
|
2919
3011
|
*/
|
|
2920
3012
|
deepValidationUseRelevanceReranker?: boolean;
|
|
2921
3013
|
/**
|
|
@@ -3129,7 +3221,7 @@ interface SpecializedAgentParams {
|
|
|
3129
3221
|
*/
|
|
3130
3222
|
maxPostsPerTarget?: number;
|
|
3131
3223
|
/**
|
|
3132
|
-
* Cap reactors extracted per post. Omit to use
|
|
3224
|
+
* Cap reactors extracted per post. Omit to use the agent default (5000).
|
|
3133
3225
|
* Lower values speed up runs but reduce the candidate pool.
|
|
3134
3226
|
* Cost is unchanged — Crustdata bills per call regardless of count.
|
|
3135
3227
|
* @minimum 1
|
|
@@ -3137,11 +3229,11 @@ interface SpecializedAgentParams {
|
|
|
3137
3229
|
*/
|
|
3138
3230
|
maxReactorsPerPost?: number;
|
|
3139
3231
|
/**
|
|
3140
|
-
*
|
|
3141
|
-
*
|
|
3142
|
-
*
|
|
3232
|
+
* Requested commenter cap per post. Competitor post engagement accepts up to
|
|
3233
|
+
* 100; influencer engagement accepts up to 5000. The backend currently echoes
|
|
3234
|
+
* this field but does not enforce it in direct-post extraction.
|
|
3143
3235
|
* @minimum 1
|
|
3144
|
-
* @maximum 100
|
|
3236
|
+
* @maximum 5000 (influencer_engagement); 100 (competitor_post_engagement)
|
|
3145
3237
|
*/
|
|
3146
3238
|
maxCommentsPerPost?: number;
|
|
3147
3239
|
/**
|
|
@@ -3149,7 +3241,8 @@ interface SpecializedAgentParams {
|
|
|
3149
3241
|
* Higher discrimination, higher cost (~20x enrichment spend on large runs).
|
|
3150
3242
|
* Default false enriches only prefilter survivors.
|
|
3151
3243
|
* @default false
|
|
3152
|
-
* Used by competitor_post_engagement and
|
|
3244
|
+
* Used by competitor_post_engagement, competitor_rep_engagement, and
|
|
3245
|
+
* influencer_engagement.
|
|
3153
3246
|
*/
|
|
3154
3247
|
thoroughEnrichment?: boolean;
|
|
3155
3248
|
/**
|
|
@@ -3245,8 +3338,8 @@ interface CreateResponseRequest {
|
|
|
3245
3338
|
* Route to a specialized agent instead of the main Lumnis agent
|
|
3246
3339
|
* Known agents: 'quick_people_search', 'deep_people_search', 'people_scoring',
|
|
3247
3340
|
* 'competitor_post_engagement', 'competitor_rep_engagement',
|
|
3248
|
-
* 'content_intelligence', 'engagement_expansion', '
|
|
3249
|
-
* 'person_intelligence'
|
|
3341
|
+
* 'content_intelligence', 'engagement_expansion', 'influencer_engagement',
|
|
3342
|
+
* 'company_intelligence', 'person_intelligence'
|
|
3250
3343
|
* Accepts any string to support future agents without SDK updates
|
|
3251
3344
|
*/
|
|
3252
3345
|
specializedAgent?: SpecializedAgentType;
|
|
@@ -7079,6 +7172,7 @@ declare class ResponsesResource {
|
|
|
7079
7172
|
private _validateCompetitorRepEngagementParams;
|
|
7080
7173
|
private _validateContentIntelligenceParams;
|
|
7081
7174
|
private _validateEngagementExpansionParams;
|
|
7175
|
+
private _validateInfluencerEngagementParams;
|
|
7082
7176
|
private _validateSinceDays;
|
|
7083
7177
|
private _validateCompanyIntelligenceParams;
|
|
7084
7178
|
private _validatePersonIntelligenceParams;
|
|
@@ -7306,6 +7400,20 @@ declare class ResponsesResource {
|
|
|
7306
7400
|
* {@link EngagementExpansionOutput}.
|
|
7307
7401
|
*/
|
|
7308
7402
|
engagementExpansion(query: string, options?: EngagementExpansionOptions): Promise<CreateResponseResponse>;
|
|
7403
|
+
/**
|
|
7404
|
+
* Score people who react to or comment on posts connected to named LinkedIn profiles.
|
|
7405
|
+
*
|
|
7406
|
+
* The backend reads posts each seed authored and reacted to within the requested
|
|
7407
|
+
* window, selects posts relevant to the persona prompt, then runs their engagers
|
|
7408
|
+
* through the deep people-search scoring chain. Seed profiles are always excluded
|
|
7409
|
+
* from delivered candidates.
|
|
7410
|
+
*
|
|
7411
|
+
* @param query - Persona prompt used to select posts and score discovered people.
|
|
7412
|
+
* @param options - Seed profiles plus optional window, extraction, and cost controls.
|
|
7413
|
+
* @returns Response; poll with `get()` and read `structuredResponse` as
|
|
7414
|
+
* {@link InfluencerEngagementOutput}.
|
|
7415
|
+
*/
|
|
7416
|
+
influencerEngagement(query: string, options: InfluencerEngagementOptions): Promise<CreateResponseResponse>;
|
|
7309
7417
|
/**
|
|
7310
7418
|
* Score people who reacted to or commented on competitor LinkedIn posts.
|
|
7311
7419
|
*
|
|
@@ -9004,4 +9112,4 @@ declare class ProgressTracker {
|
|
|
9004
9112
|
*/
|
|
9005
9113
|
declare function verifyWebhookSignature(payload: string, signature: string, secret: string): boolean;
|
|
9006
9114
|
|
|
9007
|
-
export { ACTION_DELAYS, type ActionLimit, type ActiveHours, type AddAndRunCriterionRequest, type AddCriterionRequest, type AddOrgMemberRequest, type AddOrgMemberResponse, type AddPersonaRequest, type AddPersonaResponse, type AddProspectsRequest, type AddProspectsResponse, type AgentConfig, type AgentCostStats, type ApiKeyMode, type ApiKeyModeRequest, type ApiKeyModeResponse, type ApiProvider, type AppEnabledResponse, type AppliedFilters, type ApprovalActionRequest, type ApprovalItem, type ApprovalListResponse, type ApprovalMode, type ApprovalResponse, type ApprovalSettings, type ApprovalStatus, type ApprovalsParams, type ApprovalsRequestItem, type ApprovalsResponseItem, type ApproveStepRequest, type AppsListResponse, type ArtifactObject, type ArtifactsListResponse, AuthenticationError, type BaseResource, type BatchCheckConnectionRequest, type BatchCheckPriorContactRequest, type BatchCheckPriorContactResponse, type BatchConnectionRequest, type BatchConnectionResponse, type BatchConnectionStatus, type BatchConnectionStatusResponse, type BatchDraftCompleteData, type BatchDraftCreatedData, type BatchDraftErrorData, type BatchDraftJobProgress, type BatchDraftJobResponse, type BatchDraftJobStartedData, type BatchDraftJobStatusResponse, type BatchDraftProgressData, type BatchDraftRequest, type BatchDraftResponse, type BatchDraftStreamCallbacks, type BatchDraftStreamEvent, type BatchDraftStreamEventType, type BatchExecutionInclude, type BatchExecutionRequest, type BatchExecutionResponse, BatchJobStatus, type BatchPollRequest, type BatchPollResponse, type BatchProspectIdentifier, type BatchRequestItem, type BatchRequestType, type BatchResponseItem, type BatchSendRequest, type BatchSendResponse, type BatchStepMetric, type BillingStatus, type BulkApprovalAction, type BulkApprovalFailure, type BulkApprovalRequest, type BulkApprovalResponse, type BulkCompleteFailure, type BulkCompleteRequest, type BulkCompleteResponse, type BulkDeleteRequest, type BulkDeleteResponse, type BulkOperationRequest, type BulkOperationResponse, type BulkUploadResponse, CONTENT_LIMITS, CONTENT_LIMITS_MAP, type CampaignActionListResponse, type CampaignActionResponse, type CampaignActionStatus, type CampaignActionType, type CampaignAssetUpsertItem, type CampaignAssetUpsertRequest, type CampaignBulkApprovalAction, type CampaignBulkApprovalItem, type CampaignBulkApprovalRequest, type CampaignBulkApprovalResponse, type CampaignBulkApprovalResult, type CampaignCreate, type CampaignGuardrails, type CampaignListResponse, type CampaignMetricsResponse, type CampaignOutcomeType, type CampaignProspectDetailResponse, type CampaignProspectInput, type CampaignProspectResponse, type CampaignProspectState, type CampaignResponse, type CampaignStatus, type CampaignUpdate, CampaignsResource, type CancelDraftResponse, type CancelQueuedRequest, type CancelResponseResponse, type Channel, type ChannelContactHistory, type ChannelFunnel, type ChannelRatios, ChannelType, type CheckAppEnabledParams, type CheckLinkedInConnectionRequest, type CheckPriorContactRequest, type CheckPriorContactResponse, type ChunkingStrategy, type ColumnKind, type CompanyIntelligenceOptions, type CompanyIntelligenceOutput, type CompanyIntelligenceResolvedParams, type CompanyIntelligenceStats, type CompanyReportSubject, type CompetitorPostEngagementOutput, type CompetitorRepEngagementOutput, type CompleteExecutionRequest, type CompleteExecutionResponse, type ConnectInboxRequest, type ConnectInboxResponse, type Connection, type ConnectionAcceptedData, type ConnectionCallbackRequest, type ConnectionCallbackResponse, type ConnectionInfo, type ConnectionStatus, type ConnectionStatusResponse, type ConnectionSummary, type ConnectionsResponse, type ConnectionsSyncStatus, type ContactDetailsInput, type ContactEnrichPersonInput, type ContactEnrichPersonResult, type ContactEnrichRequest, type ContactEnrichResponse, type ContactFinding, type ContactHistorySyncStatus, type ContactRelationshipProvider, type ContactRelationshipResponse, type ContactRelationshipStatus, ContactRelationshipsResource, type ContactScore, type ContentIntelligenceAudienceStats, type ContentIntelligenceAuthor, type ContentIntelligenceCoverage, type ContentIntelligenceCoveragePerson, type ContentIntelligenceCurationStats, type ContentIntelligenceDateValue, type ContentIntelligenceEngager, type ContentIntelligenceOptions, type ContentIntelligenceOutput, type ContentIntelligenceOutputName, type ContentIntelligenceOutputs, type ContentIntelligencePackage, type ContentIntelligencePost, type ContentIntelligenceResolvedParams, type ContentIntelligenceSummary, type ContentLimit, type ContentSource, type ContentType, type ConversationDetail, ConversationStatus, type ConversationSummary, type CreateDraftRequest, type CreateFeedbackRequest, type CreateFeedbackResponse, type CreateResponseRequest, type CreateResponseResponse, type CreateThreadRequest, type CriteriaClassification, type CriteriaMetadata, type CriterionDefinition, type CriterionResult, type CriterionType, type CrmContactInput, type CrmContactsSyncRequest, type CrmContactsSyncResponse, type CrmContactsSyncStatusResponse, type CrmExclusionGrantListResponse, type CrmExclusionGrantRequest, type CrmExclusionGrantResponse, type CrmMatchBatchRequest, type CrmMatchBatchResponse, type CrmMatchedProspect, type CrmProvider, CrmResource, type CrmSyncProspectRequest, type CrmSyncProspectResponse, DAILY_INMAIL_LIMITS, DEFAULT_SUBSCRIPTION_TYPE, type DatabaseStatus, type DeepPeopleSearchOutput, type DeepSearchPreview, type DeepSearchStats, type DeleteApiKeyResponse, type DeleteConnectionsResponse, type DeleteConversationResponse, type DeleteConversationsByProjectResponse, type DisconnectRequest, type DisconnectResponse, type DiscoveryTrace, type DraftResponse, type DraftSendOverride, DraftStatus, type DuplicateHandling, type DuplicateTemplateRequest, type EditQueuedRequest, type Email, type EmailAction, type EmailInboxItem, type EmailInboxListResponse, type EmailInboxPersona, type EmailOnboardRequest, type EmailOnboardResponse, type EmailOnboardStatusResponse, type EmailOrgHealthResponse, type EmailOrgListResponse, type EmailOrgSettingsResponse, type EmailOrgSettingsUpdate, type EmailOrgSummary, EmailResource, type EmailSenderPersona, type EmailThreadSummary, type EngagementAnalysisOutput, type EngagementAnalysisScope, type EngagementExpansionHopStats, type EngagementExpansionOptions, type EngagementExpansionOutput, type EngagementExpansionResolvedParams, type EngagementExpansionStats, type EngagementHistoryEntry, type EngagementStatus, type EngagementStatusData, type EngagementStatusRequest, type EngagementStatusResponse, EnrichmentResource, type ErrorDetail, type ErrorResponse, type ErrorResponseItem, type EvidenceRichnessGrade, type EvidenceSource, type ExecutionDetailResponse, type ExecutionEvent, type ExecutionEventData, type ExecutionListResponse, type ExecutionMetricsOptions, type ExecutionMetricsResponse, type ExecutionStatus, type ExecutionSummary, type ExecutionSummaryExtended, type ExecutionsParams, type ExecutionsRequestItem, type ExecutionsResponseItem, ExternalAPIKeysResource, type ExternalApiKeyResponse, type FeedbackListResponse, type FeedbackObject, type FeedbackType, type FileAttachment, type FileChunk, type FileContentResponse, type FileListResponse, type FileMetadata, type FileScope, type FileScopeUpdateRequest, type FileSearchRequest, type FileSearchResponse, type FileSearchResult, type FileStatisticsResponse, type FileUploadResponse, FilesResource, type FilterLogic, type FilterValue, type FunnelStage, type GetConnectionStatusParams, type GetContactRelationshipsOptions, type GetToolsRequest, type GetToolsResponse, type GetUserConnectionsParams, type InboxKind, type InitiateConnectionRequest, type InitiateConnectionResponse, type InmailSubscription, IntegrationsResource, type IntelligenceBarChart, type IntelligenceBarChartBar, type IntelligenceChart, type IntelligenceChartId, type IntelligenceCreditEntry, type IntelligenceCreditLedger, type IntelligenceEntitySpan, type IntelligenceLineChart, type IntelligenceLineChartPoint, type IntelligenceQuoteSpan, type IntelligenceReportBlock, type IntelligenceReportCompleteness, type IntelligenceReportEnvelope, type IntelligenceReportReader, type IntelligenceReportSectionRef, type IntelligenceReportSubject, type IntelligenceReportSummary, type IntelligenceReportTable, type IntelligenceSectionOverlays, type IntelligenceStatSpan, type IntentSignal, InternalServerError, LINKEDIN_LIMITS, type LifecycleOperationRequest, type LifecycleOperationResponse, type LinkAssetsRequest, type LinkedAssetsResponse, type LinkedInAccountInfoResponse, type LinkedInAccountRateLimits, type LinkedInAccountRateLimitsResponse, type LinkedInAccountRateLimitsUpdate, type LinkedInAction, type LinkedInConnectionStatus, type LinkedInCreditsResponse, type LinkedInLimitSubscriptionType, type LinkedInLimits, type LinkedInSendRequest, type LinkedInSubscriptionInfo, LinkedInSubscriptionType, type LinkedInSyncStatusResponse, type ListAcceptedConnectionsParams, type ListApprovalsOptions, type ListAssetsOptions, type ListCampaignActionsOptions, type ListCampaignProspectsOptions, type ListCampaignsOptions, type ListConnectionsParams, type ListExecutionsOptions, type ListInboxesParams, type ListPendingApprovalsOptions, type ListPlaybooksOptions, type ListProvidersResponse, type ListStepExecutionsOptions, type ListTemplatesOptions, LocalFileNotSupportedError, LumnisClient, type LumnisClientOptions, LumnisError, type LumnisErrorOptions, type MCPScope, type MCPServerCreateRequest, type MCPServerListResponse, type MCPServerResponse, type MCPServerUpdateRequest, MCPServersResource, type MCPToolListResponse, type MCPToolResponse, type MCPTransport, type MailboxUpdateRequest, type MailboxUpdateResponse, type Message, type MessageReceivedData, type MessageResponse, type MessageSentData, MessageType, MessagingAPIError, MessagingConnectionError, MessagingNotFoundError, MessagingResource, MessagingSendError, MessagingValidationError, type MetricsParams, type MetricsRequestItem, type MetricsResponseItem, type ModelAvailability, type ModelOverrides, type ModelPreferenceCreate, type ModelPreferencesBulkUpdate, ModelPreferencesResource, type ModelProvider, type ModelType, NetworkDistance, NoDataSourcesError, NotFoundError, type OnFailure, type Opportunity, type OutcomeType, type OutreachAssetCreate, type OutreachAssetResponse, type OutreachAssetType, type OutreachAssetUpdate, OutreachMethod, OutreachResource, type OutreachSource, type OutreachStats, type PaginationInfo, type PaginationParams, type PainPoint, type PauseProspectsRequest, type PauseProspectsResponse, type PauseResumeQueuedRequest, type PendingApprovalExtended, PeopleDataSource, PeopleResource, type PeopleSearchRequest, type PeopleSearchResponse, type PeriodInsight, type PersonEvidenceLegCounts, type PersonEvidenceRichness, type PersonIntelligenceOptions, type PersonIntelligenceOutput, type PersonIntelligenceResolvedParams, type PersonReportSubject, type PersonResult, type Plan, type PlaybookCreate, type PlaybookGenerateJobResponse, type PlaybookGenerateJobStatusResponse, type PlaybookGenerateRequest, type PlaybookResponse, type PlaybookUpdate, type PlaybookVersionResponse, type PostEngagementData, type PostEngagementProvenance, type PostEngagementType, type PostIdea, type PostIdeasOutput, type PostPreviewRequest, type PostPreviewResponse, type PostPreviewResult, type PostsDateRange, type PostsSearchStats, type PriorContactMessage, type ProcessingStatus, type ProcessingStatusResponse, type ProgressEntry, ProgressTracker, type ProjectApprovalsData, type ProjectExecutionsData, type ProjectMetricsData, type ProspectConnectionCheck, type ProspectInfo, type ProspectInput, type ProspectPriorContactResult, type ProspectSyncIdentifier, type ProspectSyncResult, type ProspectWarning, ProviderType, QueueItemStatus, type QuickPeopleSearchOutput, RATE_LIMIT_COOLDOWNS, type RateLimitData, RateLimitError, type RateLimitErrorOptions, type RateLimitInfo$1 as RateLimitInfo, type RateLimitStatusResponse, type RateLimitsParams, type RateLimitsRequestItem, type RateLimitsResponseItem, type RecordOutcomeRequest, type RejectActionRequest, type RejectStepRequest, type RelevanceTier, type RemoveOrgMemberResponse, type RepEngagementData, type RepEngagementStats, type ReplySentiment, type ResolvedCompetitorTarget, type ResponseArtifact, type ResponseListResponse, type ResponseObject, type ResponseStatus, ResponsesResource, type ResumeProspectsRequest, SEQUENCE_RATE_LIMITS, type SalaryRange, type Scope, type SelectedSkill, type SendMessageRequest, type SendMessageResponse, type SendReplyRequest, type SendResult, type SenderPersonaInput, type SequenceAction, type SequenceApprovalNeededData, type SequenceChannel, type SequenceEventType, type SequenceExecutionCompletedData, type SequenceExecutionFailedData, type SequenceRateLimitAction, type SequenceStepCompletedData, type SequenceTemplateCreate, type SequenceTemplateResponse, type SequenceTemplateUpdate, SequencesResource, SharePermission, type SkillAnalyticsRequest, type SkillEffectivenessMetrics, type SkillGuidelineBase, type SkillGuidelineCreate, type SkillGuidelineListResponse, type SkillGuidelineResponse, type SkillGuidelineUpdate, type SkillRetrievalMetadata, type SkillUsageBase, type SkillUsageCreate, type SkillUsageListResponse, type SkillUsageResponse, type SkillUsageUpdate, SkillsResource, type SkipActionRequest, type SkipStepRequest, type SkipStepResponse, type SkippedProspect, type SkippedTransferProspect, SourcesNotAvailableError, type SpecializedAgentParams, type SpecializedAgentType, type Stage, type StageFilter, type StandoutPost, type StartExecutionRequest, type StartExecutionResponse, type StepConfig, type StepExecutionItem, type StepExecutionListResponse, type StepExecutionStatus, type StepHistoryEntry, type StepMetric, type StoppedBreakdown, type StoreApiKeyRequest, type StructuredResponse, type SyncJobResponse, SyncJobStatus, SyncPhaseStatus, type SyncProspectRequest, type SyncProspectResponse, type SyncRequest, type SyncStats, type Takeaway, type TeardownOrgResponse, type TemplateShareConfig, type TemplateShareInfo, type TemplateShareRequest, type TemplateSharesResponse, type TenantDetailsResponse, TenantInfoResource, type TenantModelPreference, type TenantModelPreferencesResponse, type TestConnectionResponse, type ThemeAssignment, type ThemePeriodStats, type ThemeStats, type ThemeTrend, type ThreadListResponse, type ThreadObject, type ThreadResponsesParams, ThreadsResource, type ToolInfo, type TopPost, type TopPostsOutput, type TopVoice, type TransferProspectsRequest, type TransferProspectsResponse, type TransferSkipReason, type TransitionCondition, type TransitionConditionOperator, type TransitionConditionType, type TransitionConfig, type TransitionEventParams, type TriggerSyncResponse, UNIPILE_RATE_LIMIT_ERRORS, UNIPILE_SAFE_LIMITS, type UUID, type UnlinkConversationsResponse, type UpdateAppStatusParams, type UpdateAppStatusResponse, type UpdateDraftRequest, type UpdateLinkedInSubscriptionRequest, type UpdatePersonaRequest, type UpdatePersonaResponse, type UpdateStepExecutionRequest, type UpdateStepExecutionResponse, type UpdateThreadRequest, type UserConnectionsResponse, type UserCreateRequest, type UserDeleteResponse, type UserIdentifier, type UserListResponse, type UserResponse, type UserUpdateRequest, UsersResource, VALID_EVENT_TYPES, type ValidatedCandidate, ValidationError, type ValidationIssue, type ValidationResponse, type WebhookEvent, type WebhookPayload, type WeightedCall, type WeightedCallOption, canSendInmail, displayProgress, formatProgressEntry, getBestSubscriptionForAction, getConnectionRequestLimit, getContentLimit, getDailyInmailLimit, getDefaultDailyLimits, getInmailAllowance, getLimits, getMessageLimit, getRateLimit, hasOpenProfileMessages, isRecruiterSubscription, normalizeAction, verifyWebhookSignature };
|
|
9115
|
+
export { ACTION_DELAYS, type ActionLimit, type ActiveHours, type AddAndRunCriterionRequest, type AddCriterionRequest, type AddOrgMemberRequest, type AddOrgMemberResponse, type AddPersonaRequest, type AddPersonaResponse, type AddProspectsRequest, type AddProspectsResponse, type AgentConfig, type AgentCostStats, type ApiKeyMode, type ApiKeyModeRequest, type ApiKeyModeResponse, type ApiProvider, type AppEnabledResponse, type AppliedFilters, type ApprovalActionRequest, type ApprovalItem, type ApprovalListResponse, type ApprovalMode, type ApprovalResponse, type ApprovalSettings, type ApprovalStatus, type ApprovalsParams, type ApprovalsRequestItem, type ApprovalsResponseItem, type ApproveStepRequest, type AppsListResponse, type ArtifactObject, type ArtifactsListResponse, AuthenticationError, type BaseResource, type BatchCheckConnectionRequest, type BatchCheckPriorContactRequest, type BatchCheckPriorContactResponse, type BatchConnectionRequest, type BatchConnectionResponse, type BatchConnectionStatus, type BatchConnectionStatusResponse, type BatchDraftCompleteData, type BatchDraftCreatedData, type BatchDraftErrorData, type BatchDraftJobProgress, type BatchDraftJobResponse, type BatchDraftJobStartedData, type BatchDraftJobStatusResponse, type BatchDraftProgressData, type BatchDraftRequest, type BatchDraftResponse, type BatchDraftStreamCallbacks, type BatchDraftStreamEvent, type BatchDraftStreamEventType, type BatchExecutionInclude, type BatchExecutionRequest, type BatchExecutionResponse, BatchJobStatus, type BatchPollRequest, type BatchPollResponse, type BatchProspectIdentifier, type BatchRequestItem, type BatchRequestType, type BatchResponseItem, type BatchSendRequest, type BatchSendResponse, type BatchStepMetric, type BillingStatus, type BulkApprovalAction, type BulkApprovalFailure, type BulkApprovalRequest, type BulkApprovalResponse, type BulkCompleteFailure, type BulkCompleteRequest, type BulkCompleteResponse, type BulkDeleteRequest, type BulkDeleteResponse, type BulkOperationRequest, type BulkOperationResponse, type BulkUploadResponse, CONTENT_LIMITS, CONTENT_LIMITS_MAP, type CampaignActionListResponse, type CampaignActionResponse, type CampaignActionStatus, type CampaignActionType, type CampaignAssetUpsertItem, type CampaignAssetUpsertRequest, type CampaignBulkApprovalAction, type CampaignBulkApprovalItem, type CampaignBulkApprovalRequest, type CampaignBulkApprovalResponse, type CampaignBulkApprovalResult, type CampaignCreate, type CampaignGuardrails, type CampaignListResponse, type CampaignMetricsResponse, type CampaignOutcomeType, type CampaignProspectDetailResponse, type CampaignProspectInput, type CampaignProspectResponse, type CampaignProspectState, type CampaignResponse, type CampaignStatus, type CampaignUpdate, CampaignsResource, type CancelDraftResponse, type CancelQueuedRequest, type CancelResponseResponse, type Channel, type ChannelContactHistory, type ChannelFunnel, type ChannelRatios, ChannelType, type CheckAppEnabledParams, type CheckLinkedInConnectionRequest, type CheckPriorContactRequest, type CheckPriorContactResponse, type ChunkingStrategy, type ColumnKind, type CompanyIntelligenceOptions, type CompanyIntelligenceOutput, type CompanyIntelligenceResolvedParams, type CompanyIntelligenceStats, type CompanyReportSubject, type CompetitorPostEngagementOutput, type CompetitorRepEngagementOutput, type CompleteExecutionRequest, type CompleteExecutionResponse, type ConnectInboxRequest, type ConnectInboxResponse, type Connection, type ConnectionAcceptedData, type ConnectionCallbackRequest, type ConnectionCallbackResponse, type ConnectionInfo, type ConnectionStatus, type ConnectionStatusResponse, type ConnectionSummary, type ConnectionsResponse, type ConnectionsSyncStatus, type ContactDetailsInput, type ContactEnrichPersonInput, type ContactEnrichPersonResult, type ContactEnrichRequest, type ContactEnrichResponse, type ContactFinding, type ContactHistorySyncStatus, type ContactRelationshipProvider, type ContactRelationshipResponse, type ContactRelationshipStatus, ContactRelationshipsResource, type ContactScore, type ContentIntelligenceAudienceStats, type ContentIntelligenceAuthor, type ContentIntelligenceCoverage, type ContentIntelligenceCoveragePerson, type ContentIntelligenceCurationStats, type ContentIntelligenceDateValue, type ContentIntelligenceEngager, type ContentIntelligenceOptions, type ContentIntelligenceOutput, type ContentIntelligenceOutputName, type ContentIntelligenceOutputs, type ContentIntelligencePackage, type ContentIntelligencePost, type ContentIntelligenceResolvedParams, type ContentIntelligenceSummary, type ContentLimit, type ContentSource, type ContentType, type ConversationDetail, ConversationStatus, type ConversationSummary, type CreateDraftRequest, type CreateFeedbackRequest, type CreateFeedbackResponse, type CreateResponseRequest, type CreateResponseResponse, type CreateThreadRequest, type CriteriaClassification, type CriteriaMetadata, type CriterionDefinition, type CriterionResult, type CriterionType, type CrmContactInput, type CrmContactsSyncRequest, type CrmContactsSyncResponse, type CrmContactsSyncStatusResponse, type CrmExclusionGrantListResponse, type CrmExclusionGrantRequest, type CrmExclusionGrantResponse, type CrmMatchBatchRequest, type CrmMatchBatchResponse, type CrmMatchedProspect, type CrmProvider, CrmResource, type CrmSyncProspectRequest, type CrmSyncProspectResponse, DAILY_INMAIL_LIMITS, DEFAULT_SUBSCRIPTION_TYPE, type DatabaseStatus, type DeepPeopleSearchOutput, type DeepSearchPreview, type DeepSearchStats, type DeleteApiKeyResponse, type DeleteConnectionsResponse, type DeleteConversationResponse, type DeleteConversationsByProjectResponse, type DisconnectRequest, type DisconnectResponse, type DiscoveryTrace, type DraftResponse, type DraftSendOverride, DraftStatus, type DuplicateHandling, type DuplicateTemplateRequest, type EditQueuedRequest, type Email, type EmailAction, type EmailInboxItem, type EmailInboxListResponse, type EmailInboxPersona, type EmailOnboardRequest, type EmailOnboardResponse, type EmailOnboardStatusResponse, type EmailOrgHealthResponse, type EmailOrgListResponse, type EmailOrgSettingsResponse, type EmailOrgSettingsUpdate, type EmailOrgSummary, EmailResource, type EmailSenderPersona, type EmailThreadSummary, type EngagementAnalysisOutput, type EngagementAnalysisScope, type EngagementExpansionHopStats, type EngagementExpansionOptions, type EngagementExpansionOutput, type EngagementExpansionResolvedParams, type EngagementExpansionStats, type EngagementHistoryEntry, type EngagementStatus, type EngagementStatusData, type EngagementStatusRequest, type EngagementStatusResponse, EnrichmentResource, type ErrorDetail, type ErrorResponse, type ErrorResponseItem, type EvidenceRichnessGrade, type EvidenceSource, type ExecutionDetailResponse, type ExecutionEvent, type ExecutionEventData, type ExecutionListResponse, type ExecutionMetricsOptions, type ExecutionMetricsResponse, type ExecutionStatus, type ExecutionSummary, type ExecutionSummaryExtended, type ExecutionsParams, type ExecutionsRequestItem, type ExecutionsResponseItem, ExternalAPIKeysResource, type ExternalApiKeyResponse, type FeedbackListResponse, type FeedbackObject, type FeedbackType, type FileAttachment, type FileChunk, type FileContentResponse, type FileListResponse, type FileMetadata, type FileScope, type FileScopeUpdateRequest, type FileSearchRequest, type FileSearchResponse, type FileSearchResult, type FileStatisticsResponse, type FileUploadResponse, FilesResource, type FilterLogic, type FilterValue, type FunnelStage, type GetConnectionStatusParams, type GetContactRelationshipsOptions, type GetToolsRequest, type GetToolsResponse, type GetUserConnectionsParams, type InboxKind, type InfluencerEngagementOptions, type InfluencerEngagementOutput, type InfluencerEngagementPostSource, type InfluencerEngagementResolvedParams, type InfluencerEngagementSeedCoverage, type InfluencerEngagementSeedPost, type InitiateConnectionRequest, type InitiateConnectionResponse, type InmailSubscription, IntegrationsResource, type IntelligenceBarChart, type IntelligenceBarChartBar, type IntelligenceChart, type IntelligenceChartId, type IntelligenceCreditEntry, type IntelligenceCreditLedger, type IntelligenceEntitySpan, type IntelligenceLineChart, type IntelligenceLineChartPoint, type IntelligenceQuoteSpan, type IntelligenceReportBlock, type IntelligenceReportCompleteness, type IntelligenceReportEnvelope, type IntelligenceReportReader, type IntelligenceReportSectionRef, type IntelligenceReportSubject, type IntelligenceReportSummary, type IntelligenceReportTable, type IntelligenceSectionOverlays, type IntelligenceStatSpan, type IntentSignal, InternalServerError, LINKEDIN_LIMITS, type LifecycleOperationRequest, type LifecycleOperationResponse, type LinkAssetsRequest, type LinkedAssetsResponse, type LinkedInAccountInfoResponse, type LinkedInAccountRateLimits, type LinkedInAccountRateLimitsResponse, type LinkedInAccountRateLimitsUpdate, type LinkedInAction, type LinkedInConnectionStatus, type LinkedInCreditsResponse, type LinkedInLimitSubscriptionType, type LinkedInLimits, type LinkedInSendRequest, type LinkedInSubscriptionInfo, LinkedInSubscriptionType, type LinkedInSyncStatusResponse, type ListAcceptedConnectionsParams, type ListApprovalsOptions, type ListAssetsOptions, type ListCampaignActionsOptions, type ListCampaignProspectsOptions, type ListCampaignsOptions, type ListConnectionsParams, type ListExecutionsOptions, type ListInboxesParams, type ListPendingApprovalsOptions, type ListPlaybooksOptions, type ListProvidersResponse, type ListStepExecutionsOptions, type ListTemplatesOptions, LocalFileNotSupportedError, LumnisClient, type LumnisClientOptions, LumnisError, type LumnisErrorOptions, type MCPScope, type MCPServerCreateRequest, type MCPServerListResponse, type MCPServerResponse, type MCPServerUpdateRequest, MCPServersResource, type MCPToolListResponse, type MCPToolResponse, type MCPTransport, type MailboxUpdateRequest, type MailboxUpdateResponse, type Message, type MessageReceivedData, type MessageResponse, type MessageSentData, MessageType, MessagingAPIError, MessagingConnectionError, MessagingNotFoundError, MessagingResource, MessagingSendError, MessagingValidationError, type MetricsParams, type MetricsRequestItem, type MetricsResponseItem, type ModelAvailability, type ModelOverrides, type ModelPreferenceCreate, type ModelPreferencesBulkUpdate, ModelPreferencesResource, type ModelProvider, type ModelType, NetworkDistance, NoDataSourcesError, NotFoundError, type OnFailure, type Opportunity, type OutcomeType, type OutreachAssetCreate, type OutreachAssetResponse, type OutreachAssetType, type OutreachAssetUpdate, OutreachMethod, OutreachResource, type OutreachSource, type OutreachStats, type PaginationInfo, type PaginationParams, type PainPoint, type PauseProspectsRequest, type PauseProspectsResponse, type PauseResumeQueuedRequest, type PendingApprovalExtended, PeopleDataSource, PeopleResource, type PeopleSearchRequest, type PeopleSearchResponse, type PeriodInsight, type PersonEvidenceLegCounts, type PersonEvidenceRichness, type PersonIntelligenceOptions, type PersonIntelligenceOutput, type PersonIntelligenceResolvedParams, type PersonReportSubject, type PersonResult, type Plan, type PlaybookCreate, type PlaybookGenerateJobResponse, type PlaybookGenerateJobStatusResponse, type PlaybookGenerateRequest, type PlaybookResponse, type PlaybookUpdate, type PlaybookVersionResponse, type PostEngagementData, type PostEngagementProvenance, type PostEngagementType, type PostIdea, type PostIdeasOutput, type PostPreviewRequest, type PostPreviewResponse, type PostPreviewResult, type PostsDateRange, type PostsSearchStats, type PriorContactMessage, type ProcessingStatus, type ProcessingStatusResponse, type ProgressEntry, ProgressTracker, type ProjectApprovalsData, type ProjectExecutionsData, type ProjectMetricsData, type ProspectConnectionCheck, type ProspectInfo, type ProspectInput, type ProspectPriorContactResult, type ProspectSyncIdentifier, type ProspectSyncResult, type ProspectWarning, ProviderType, QueueItemStatus, type QuickPeopleSearchOutput, RATE_LIMIT_COOLDOWNS, type RateLimitData, RateLimitError, type RateLimitErrorOptions, type RateLimitInfo$1 as RateLimitInfo, type RateLimitStatusResponse, type RateLimitsParams, type RateLimitsRequestItem, type RateLimitsResponseItem, type RecordOutcomeRequest, type RejectActionRequest, type RejectStepRequest, type RelevanceTier, type RemoveOrgMemberResponse, type RepEngagementData, type RepEngagementStats, type ReplySentiment, type ResolvedCompetitorTarget, type ResponseArtifact, type ResponseListResponse, type ResponseObject, type ResponseStatus, ResponsesResource, type ResumeProspectsRequest, SEQUENCE_RATE_LIMITS, type SalaryRange, type Scope, type SelectedSkill, type SendMessageRequest, type SendMessageResponse, type SendReplyRequest, type SendResult, type SenderPersonaInput, type SequenceAction, type SequenceApprovalNeededData, type SequenceChannel, type SequenceEventType, type SequenceExecutionCompletedData, type SequenceExecutionFailedData, type SequenceRateLimitAction, type SequenceStepCompletedData, type SequenceTemplateCreate, type SequenceTemplateResponse, type SequenceTemplateUpdate, SequencesResource, SharePermission, type SkillAnalyticsRequest, type SkillEffectivenessMetrics, type SkillGuidelineBase, type SkillGuidelineCreate, type SkillGuidelineListResponse, type SkillGuidelineResponse, type SkillGuidelineUpdate, type SkillRetrievalMetadata, type SkillUsageBase, type SkillUsageCreate, type SkillUsageListResponse, type SkillUsageResponse, type SkillUsageUpdate, SkillsResource, type SkipActionRequest, type SkipStepRequest, type SkipStepResponse, type SkippedProspect, type SkippedTransferProspect, SourcesNotAvailableError, type SpecializedAgentParams, type SpecializedAgentType, type Stage, type StageFilter, type StandoutPost, type StartExecutionRequest, type StartExecutionResponse, type StepConfig, type StepExecutionItem, type StepExecutionListResponse, type StepExecutionStatus, type StepHistoryEntry, type StepMetric, type StoppedBreakdown, type StoreApiKeyRequest, type StructuredResponse, type SyncJobResponse, SyncJobStatus, SyncPhaseStatus, type SyncProspectRequest, type SyncProspectResponse, type SyncRequest, type SyncStats, type Takeaway, type TeardownOrgResponse, type TemplateShareConfig, type TemplateShareInfo, type TemplateShareRequest, type TemplateSharesResponse, type TenantDetailsResponse, TenantInfoResource, type TenantModelPreference, type TenantModelPreferencesResponse, type TestConnectionResponse, type ThemeAssignment, type ThemePeriodStats, type ThemeStats, type ThemeTrend, type ThreadListResponse, type ThreadObject, type ThreadResponsesParams, ThreadsResource, type ToolInfo, type TopPost, type TopPostsOutput, type TopVoice, type TransferProspectsRequest, type TransferProspectsResponse, type TransferSkipReason, type TransitionCondition, type TransitionConditionOperator, type TransitionConditionType, type TransitionConfig, type TransitionEventParams, type TriggerSyncResponse, UNIPILE_RATE_LIMIT_ERRORS, UNIPILE_SAFE_LIMITS, type UUID, type UnlinkConversationsResponse, type UpdateAppStatusParams, type UpdateAppStatusResponse, type UpdateDraftRequest, type UpdateLinkedInSubscriptionRequest, type UpdatePersonaRequest, type UpdatePersonaResponse, type UpdateStepExecutionRequest, type UpdateStepExecutionResponse, type UpdateThreadRequest, type UserConnectionsResponse, type UserCreateRequest, type UserDeleteResponse, type UserIdentifier, type UserListResponse, type UserResponse, type UserUpdateRequest, UsersResource, VALID_EVENT_TYPES, type ValidatedCandidate, ValidationError, type ValidationIssue, type ValidationResponse, type WebhookEvent, type WebhookPayload, type WeightedCall, type WeightedCallOption, canSendInmail, displayProgress, formatProgressEntry, getBestSubscriptionForAction, getConnectionRequestLimit, getContentLimit, getDailyInmailLimit, getDefaultDailyLimits, getInmailAllowance, getLimits, getMessageLimit, getRateLimit, hasOpenProfileMessages, isRecruiterSubscription, normalizeAction, verifyWebhookSignature };
|