lumnisai 0.5.24 → 0.5.26

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 CHANGED
@@ -1084,6 +1084,23 @@ class EmailResource {
1084
1084
  );
1085
1085
  }
1086
1086
  // ==================== BYO Inboxes ====================
1087
+ /**
1088
+ * List the email inboxes (mailboxes) the user can send from.
1089
+ *
1090
+ * Scoped to mailboxes in organizations the user is a member of. Powers the
1091
+ * connected-inboxes list and its count badge (`total`). `kind` defaults to
1092
+ * `'byo'` (the customer's own connected inboxes); pass `'managed'` for
1093
+ * Lumnis-provisioned inboxes or `'all'` for both.
1094
+ */
1095
+ async listInboxes(params) {
1096
+ return this.http.get("/email/inboxes", {
1097
+ params: {
1098
+ user_id: params.userId,
1099
+ kind: params.kind,
1100
+ organization_id: params.organizationId
1101
+ }
1102
+ });
1103
+ }
1087
1104
  /**
1088
1105
  * Connect a customer's own email inbox (Gmail/Outlook/IMAP) via Unipile.
1089
1106
  *
@@ -1160,6 +1177,10 @@ class EnrichmentResource {
1160
1177
  * @param params.onlyVerifiedEmail - Only return verified emails (default: true)
1161
1178
  * @param params.enrichMobile - Include mobile enrichment, 10x cost (default: false)
1162
1179
  * @param params.onlyVerifiedMobile - Only return verified mobiles (default: false)
1180
+ * @param params.deepWebFallback - For vendor-misses, discover contacts from the
1181
+ * organization's official public web pages. Findings come back in
1182
+ * `result.deepWebFindings` with source URLs + confidence tiers and never
1183
+ * overwrite `person.email`. Pass false to disable (default: true)
1163
1184
  * @returns Promise resolving to enrichment results
1164
1185
  *
1165
1186
  * @example
@@ -3533,6 +3554,10 @@ class ResponsesResource {
3533
3554
  * @param options.excludePreviouslyContacted - Exclude previously contacted people
3534
3555
  * @param options.excludeNames - Names to exclude from results
3535
3556
  * @param options.searchJobSignal - CrustData job-listing signal search (decision makers at hiring companies); true | false | 'auto'
3557
+ * @param options.deepVerify - Web verification for org/location/third-party criteria: 'auto' (default), 'always', or 'off'
3558
+ * @param options.deepValidationUseRelevanceReranker - SLM relevance reranker for surfaced candidates (ranking-only); @default true
3559
+ * @param options.deepValidationBackfillBelowCriteria - Pad with criteria-failed candidates when under count; @default true
3560
+ * @param options.deepSearchCriteriaModel - Override criteria decomposition model (e.g. 'openai:gpt-5.4')
3536
3561
  * @returns Response with structured_response containing:
3537
3562
  * - candidates: Validated and scored candidates
3538
3563
  * - criteria: Generated/reused criteria definitions and classification
@@ -3543,8 +3568,11 @@ class ResponsesResource {
3543
3568
  messages: [{ role: "user", content: query }],
3544
3569
  specializedAgent: "deep_people_search"
3545
3570
  };
3571
+ const params = {
3572
+ deepValidationUseRelevanceReranker: options?.deepValidationUseRelevanceReranker ?? true,
3573
+ deepValidationBackfillBelowCriteria: options?.deepValidationBackfillBelowCriteria ?? true
3574
+ };
3546
3575
  if (options) {
3547
- const params = {};
3548
3576
  if (options.requestedCandidates !== void 0)
3549
3577
  params.requestedCandidates = options.requestedCandidates;
3550
3578
  if (options.dataSources)
@@ -3595,9 +3623,12 @@ class ResponsesResource {
3595
3623
  params.postsExtractAuthor = options.postsExtractAuthor;
3596
3624
  if (options.searchJobSignal !== void 0)
3597
3625
  params.searchJobSignal = options.searchJobSignal;
3598
- if (Object.keys(params).length > 0)
3599
- request.specializedAgentParams = params;
3626
+ if (options.deepVerify !== void 0)
3627
+ params.deepVerify = options.deepVerify;
3628
+ if (options.deepSearchCriteriaModel)
3629
+ params.deepSearchCriteriaModel = options.deepSearchCriteriaModel;
3600
3630
  }
3631
+ request.specializedAgentParams = params;
3601
3632
  return this.create(request);
3602
3633
  }
3603
3634
  /**
@@ -3614,6 +3645,9 @@ class ResponsesResource {
3614
3645
  * Can be a string (criterion text) or an object with criterionText and optional suggestedColumnName.
3615
3646
  * Example string: 'Must have 5+ years Python experience'
3616
3647
  * Example object: { criterionText: 'Has ML experience', suggestedColumnName: 'ml_experience' }
3648
+ * @param options.deepValidationUseRelevanceReranker - SLM relevance reranker for surfaced candidates (ranking-only); @default true
3649
+ * @param options.deepValidationBackfillBelowCriteria - Pad with criteria-failed candidates when under count; @default true
3650
+ * @param options.deepSearchCriteriaModel - Override criteria decomposition model (e.g. 'openai:gpt-5.4')
3617
3651
  * @returns Response with structured_response containing:
3618
3652
  * - candidates: Scored candidates with validation results
3619
3653
  * - criteria: Generated/reused criteria definitions and classification
@@ -3623,7 +3657,9 @@ class ResponsesResource {
3623
3657
  messages: [{ role: "user", content: query }],
3624
3658
  specializedAgent: "people_scoring",
3625
3659
  specializedAgentParams: {
3626
- candidateProfiles
3660
+ candidateProfiles,
3661
+ deepValidationUseRelevanceReranker: options?.deepValidationUseRelevanceReranker ?? true,
3662
+ deepValidationBackfillBelowCriteria: options?.deepValidationBackfillBelowCriteria ?? true
3627
3663
  }
3628
3664
  };
3629
3665
  if (options) {
@@ -3639,6 +3675,8 @@ class ResponsesResource {
3639
3675
  request.specializedAgentParams.addCriterion = options.addCriterion;
3640
3676
  if (options.addAndRunCriterion)
3641
3677
  request.specializedAgentParams.addAndRunCriterion = options.addAndRunCriterion;
3678
+ if (options.deepSearchCriteriaModel)
3679
+ request.specializedAgentParams.deepSearchCriteriaModel = options.deepSearchCriteriaModel;
3642
3680
  }
3643
3681
  return this.create(request);
3644
3682
  }
@@ -3672,7 +3710,9 @@ class ResponsesResource {
3672
3710
  messages: [{ role: "user", content: query }],
3673
3711
  specializedAgent: "competitor_post_engagement"
3674
3712
  };
3675
- const params = {};
3713
+ const params = {
3714
+ deepValidationUseRelevanceReranker: options.deepValidationUseRelevanceReranker ?? true
3715
+ };
3676
3716
  if (options.company)
3677
3717
  params.company = options.company;
3678
3718
  if (options.competitors)
@@ -3738,7 +3778,9 @@ class ResponsesResource {
3738
3778
  messages: [{ role: "user", content: query }],
3739
3779
  specializedAgent: "competitor_rep_engagement"
3740
3780
  };
3741
- const params = {};
3781
+ const params = {
3782
+ deepValidationUseRelevanceReranker: options.deepValidationUseRelevanceReranker ?? true
3783
+ };
3742
3784
  if (options.company)
3743
3785
  params.company = options.company;
3744
3786
  if (options.competitors)
package/dist/index.d.cts CHANGED
@@ -1342,12 +1342,20 @@ interface ModelOverrides {
1342
1342
  [key: string]: string;
1343
1343
  }
1344
1344
  type CriterionType = 'universal' | 'varying' | 'validation_only';
1345
+ /** SLM relevance reranker tier (deep_people_search / people_scoring output). */
1346
+ type RelevanceTier = 'STRONG_MATCH' | 'PARTIAL_MATCH' | 'WEAK_MATCH';
1345
1347
  interface CriterionDefinition {
1346
1348
  criterionId: string;
1347
1349
  columnName: string;
1348
1350
  criterionText: string;
1349
1351
  criterionType: CriterionType;
1350
1352
  weight: number;
1353
+ /** Set by the web-need classifier when deep verification runs (response output). */
1354
+ requiresWebVerification?: boolean;
1355
+ /** Whose fact must be verified: person, organization, or location (response output). */
1356
+ verificationEntity?: 'person' | 'organization' | 'location';
1357
+ /** Positive fact question used for web verification (response output). */
1358
+ verificationQuestion?: string;
1351
1359
  }
1352
1360
  interface CriteriaClassification {
1353
1361
  universalCriteria: CriterionDefinition[];
@@ -1498,9 +1506,15 @@ interface ValidatedCandidate {
1498
1506
  name: string;
1499
1507
  /** LinkedIn profile URL */
1500
1508
  linkedinUrl?: string;
1501
- /** Current job title */
1509
+ /**
1510
+ * Current job title. When the reranker runs, may reflect the resolved primary
1511
+ * operating role (`primaryTitle`); see `enrichedCurrentTitle` for the pre-rerank value.
1512
+ */
1502
1513
  currentTitle?: string;
1503
- /** Current company */
1514
+ /**
1515
+ * Current company. When the reranker runs, may reflect the resolved primary
1516
+ * employer (`primaryCompany`); see `enrichedCurrentCompany` for the pre-rerank value.
1517
+ */
1504
1518
  currentCompany?: string;
1505
1519
  /** Location */
1506
1520
  location?: string;
@@ -1535,6 +1549,40 @@ interface ValidatedCandidate {
1535
1549
  * competitor_rep_engagement.
1536
1550
  */
1537
1551
  intentSignals?: IntentSignal[];
1552
+ /**
1553
+ * Holistic relevance score (0-100) from the SLM reranker (on by default).
1554
+ * Ranking-only: absent only when `deepValidationUseRelevanceReranker` was false;
1555
+ * does not change `overallScore` or routing.
1556
+ */
1557
+ relevanceScore?: number;
1558
+ /** Coarse match tier paired with `relevanceScore`. */
1559
+ relevanceTier?: RelevanceTier;
1560
+ /** One-line reranker justification grounded in candidate data. */
1561
+ relevanceReason?: string;
1562
+ /**
1563
+ * Primary current operating role from the reranker (main full-time job, not side/advisory).
1564
+ * Also written to `currentTitle` when present.
1565
+ */
1566
+ primaryTitle?: string;
1567
+ /**
1568
+ * Employer of the primary current role. Also written to `currentCompany` when present.
1569
+ */
1570
+ primaryCompany?: string;
1571
+ /** Pre-rerank `currentTitle` preserved when the reranker overwrites display fields. */
1572
+ enrichedCurrentTitle?: string;
1573
+ /** Pre-rerank `currentCompany` preserved when the reranker overwrites display fields. */
1574
+ enrichedCurrentCompany?: string;
1575
+ /**
1576
+ * True when the candidate failed at least one universal or post_hard (must-have) criterion.
1577
+ * Demoted candidates (`anyUniversalFailed` or `backfilled`) sort after passing ones regardless
1578
+ * of relevance score.
1579
+ */
1580
+ anyUniversalFailed?: boolean;
1581
+ /**
1582
+ * True when promoted from excluded to meet the requested count despite failing hard
1583
+ * criteria. Such candidates sort after passing ones; use to segregate or badge them.
1584
+ */
1585
+ backfilled?: boolean;
1538
1586
  /**
1539
1587
  * LinkedIn posts this candidate engaged with (reacted or commented).
1540
1588
  * One entry per post — if someone engaged with multiple competitor posts,
@@ -1826,6 +1874,39 @@ interface SpecializedAgentParams {
1826
1874
  * Used by deep_people_search when includeEngagementInScore is true.
1827
1875
  */
1828
1876
  engagementScoreWeight?: number;
1877
+ /**
1878
+ * Web verification of criteria a LinkedIn profile cannot establish (customer/vendor
1879
+ * status, agency type, city stats, grants, etc.).
1880
+ * - 'auto' (default): classifier forces only web-only criteria to real web verification
1881
+ * - 'always': force every non-profile criterion to web verification
1882
+ * - 'off': legacy behavior (may clear web-only criteria from profile data alone)
1883
+ * Used by deep_people_search.
1884
+ */
1885
+ deepVerify?: 'off' | 'auto' | 'always';
1886
+ /**
1887
+ * If true, re-rank surfaced results with a cheap SLM relevance judge (holistic fit
1888
+ * to the request). Ranking-only: never changes routing/inclusion; `overallScore` and
1889
+ * `intentScore` are untouched. Adds `relevanceScore` / `relevanceTier` per candidate.
1890
+ * @default true
1891
+ * Used by deep_people_search, people_scoring, competitor_post_engagement, and
1892
+ * competitor_rep_engagement.
1893
+ */
1894
+ deepValidationUseRelevanceReranker?: boolean;
1895
+ /**
1896
+ * When fewer candidates pass hard criteria than requested, pad the result list by
1897
+ * promoting top-scoring excluded candidates (tagged `backfilled=true`). Set false for
1898
+ * quality-over-count (return only passing candidates, even if fewer than requested).
1899
+ * @default true
1900
+ * Used by deep_people_search and people_scoring.
1901
+ */
1902
+ deepValidationBackfillBelowCriteria?: boolean;
1903
+ /**
1904
+ * Override the model used for criteria decomposition (e.g. 'openai:gpt-5.4').
1905
+ * Defaults to the configured deep-search model. Only changes the criteria generator,
1906
+ * not fast_filter/validation.
1907
+ * Used by deep_people_search and people_scoring.
1908
+ */
1909
+ deepSearchCriteriaModel?: string;
1829
1910
  /**
1830
1911
  * Whether to extract post authors as candidates from posts search.
1831
1912
  * When true with directPostsExtractReactors=false and directPostsExtractCommenters=false,
@@ -3297,6 +3378,22 @@ interface MailboxUpdateRequest {
3297
3378
  /** Pause/unpause the mailbox. */
3298
3379
  paused?: boolean;
3299
3380
  }
3381
+ /** Which inboxes to return from `listInboxes`. */
3382
+ type InboxKind = 'byo' | 'managed' | 'all';
3383
+ /**
3384
+ * List the email inboxes (mailboxes) a user can send from.
3385
+ */
3386
+ interface ListInboxesParams {
3387
+ /** User email or UUID (REQUIRED). */
3388
+ userId: string;
3389
+ /**
3390
+ * Which inboxes to return: 'byo' (customer-connected, the default),
3391
+ * 'managed' (Lumnis-provisioned), or 'all'. Defaults to 'byo'.
3392
+ */
3393
+ kind?: InboxKind;
3394
+ /** Filter to a single organization. */
3395
+ organizationId?: string;
3396
+ }
3300
3397
  interface EmailOnboardResponse {
3301
3398
  organizationId: string;
3302
3399
  status: string;
@@ -3383,6 +3480,35 @@ interface MailboxUpdateResponse {
3383
3480
  /** Where this mailbox came from: inboxkit | unipile | smtp. */
3384
3481
  source: string;
3385
3482
  }
3483
+ /** The sender persona an inbox is attached to (BYO inboxes share one). */
3484
+ interface EmailInboxPersona {
3485
+ id: string;
3486
+ firstName: string;
3487
+ lastName: string;
3488
+ title?: string | null;
3489
+ }
3490
+ /** A single sendable mailbox in the user's connected-inboxes list. */
3491
+ interface EmailInboxItem {
3492
+ mailboxId: string;
3493
+ emailAddress: string;
3494
+ displayName: string;
3495
+ /** provisioning | warming | ready | paused | retired */
3496
+ status: string;
3497
+ /** inboxkit | unipile | smtp */
3498
+ source: string;
3499
+ dailySendCap: number;
3500
+ sendsToday: number;
3501
+ organizationId: string;
3502
+ organizationName: string;
3503
+ persona: EmailInboxPersona;
3504
+ /** ISO8601 timestamp. */
3505
+ createdAt?: string | null;
3506
+ }
3507
+ /** Connected inboxes for a user. `total` powers the count badge. */
3508
+ interface EmailInboxListResponse {
3509
+ inboxes: EmailInboxItem[];
3510
+ total: number;
3511
+ }
3386
3512
 
3387
3513
  /**
3388
3514
  * Resource for managing email infrastructure.
@@ -3434,6 +3560,15 @@ declare class EmailResource {
3434
3560
  * cap. Requires admin role.
3435
3561
  */
3436
3562
  updatePersona(orgId: string, userId: string, personaId: string, update: UpdatePersonaRequest): Promise<UpdatePersonaResponse>;
3563
+ /**
3564
+ * List the email inboxes (mailboxes) the user can send from.
3565
+ *
3566
+ * Scoped to mailboxes in organizations the user is a member of. Powers the
3567
+ * connected-inboxes list and its count badge (`total`). `kind` defaults to
3568
+ * `'byo'` (the customer's own connected inboxes); pass `'managed'` for
3569
+ * Lumnis-provisioned inboxes or `'all'` for both.
3570
+ */
3571
+ listInboxes(params: ListInboxesParams): Promise<EmailInboxListResponse>;
3437
3572
  /**
3438
3573
  * Connect a customer's own email inbox (Gmail/Outlook/IMAP) via Unipile.
3439
3574
  *
@@ -3488,6 +3623,53 @@ interface ContactEnrichRequest {
3488
3623
  enrichMobile?: boolean;
3489
3624
  /** Only return/charge for records with verified mobile (default: false) */
3490
3625
  onlyVerifiedMobile?: boolean;
3626
+ /**
3627
+ * "Extra deep search", ON by default. Any prospect the data vendors leave
3628
+ * without an acceptable WORK email is looked up on the organization's own
3629
+ * official web pages (team/people directories, profiles, org charts). For
3630
+ * LinkedIn-URL inputs the person's name + organization are resolved from the
3631
+ * profile first. Results come back in `deepWebFindings` on that person's
3632
+ * result - each with a source URL and a confidence tier - and NEVER overwrite
3633
+ * the vendor `person.email`. Pass false to disable (it spends search + scrape
3634
+ * + LLM + verification credits and adds latency). (default: true)
3635
+ */
3636
+ deepWebFallback?: boolean;
3637
+ }
3638
+ /**
3639
+ * One contact found on the public web (deep-web fallback).
3640
+ *
3641
+ * Verification is a returned property, not a filter: findings carry their
3642
+ * evidence (`sourceUrl`), how they were obtained (`derivation`), and a
3643
+ * `confidence` tier so the caller decides what to trust. A `pattern_derived`
3644
+ * value is an inference, never a vendor-grade match.
3645
+ */
3646
+ interface ContactFinding {
3647
+ channel: 'email' | 'phone';
3648
+ value: string;
3649
+ /** Official page the value came from */
3650
+ sourceUrl: string;
3651
+ /** directory|profile|org_chart|listing|press_release|other */
3652
+ sourceType: string;
3653
+ derivation: 'found_directly' | 'pattern_derived';
3654
+ /**
3655
+ * For email: the ZeroBounce status (valid/invalid/catch-all/unknown/
3656
+ * unverified). For phone: direct|main_line.
3657
+ */
3658
+ verification: string;
3659
+ /**
3660
+ * confirmed: page confirms this person currently holds the role.
3661
+ * contradicted: page names a DIFFERENT current holder (they moved).
3662
+ * unconfirmed: pages don't establish the current role (not a stale signal -
3663
+ * just unknown).
3664
+ */
3665
+ roleStatus: 'confirmed' | 'contradicted' | 'unconfirmed';
3666
+ /**
3667
+ * When roleStatus=contradicted, the person the official page names as the
3668
+ * CURRENT holder of the role (i.e. who replaced this prospect).
3669
+ */
3670
+ currentRoleHolder?: string | null;
3671
+ confidence: 'high' | 'medium' | 'low';
3672
+ notes?: string | null;
3491
3673
  }
3492
3674
  /** Result for one person */
3493
3675
  interface ContactEnrichPersonResult {
@@ -3499,6 +3681,13 @@ interface ContactEnrichPersonResult {
3499
3681
  errorCode?: string | null;
3500
3682
  person?: Record<string, any> | null;
3501
3683
  company?: Record<string, any> | null;
3684
+ /**
3685
+ * Present only when deepWebFallback was requested AND the vendors left this
3686
+ * person without an acceptable work email. Public-web findings with source
3687
+ * URLs + confidence tiers; not billed as vendor matches, never merged into
3688
+ * `person.email`.
3689
+ */
3690
+ deepWebFindings?: ContactFinding[] | null;
3502
3691
  }
3503
3692
  /** Response for bulk enrichment */
3504
3693
  interface ContactEnrichResponse {
@@ -3522,6 +3711,10 @@ declare class EnrichmentResource {
3522
3711
  * @param params.onlyVerifiedEmail - Only return verified emails (default: true)
3523
3712
  * @param params.enrichMobile - Include mobile enrichment, 10x cost (default: false)
3524
3713
  * @param params.onlyVerifiedMobile - Only return verified mobiles (default: false)
3714
+ * @param params.deepWebFallback - For vendor-misses, discover contacts from the
3715
+ * organization's official public web pages. Findings come back in
3716
+ * `result.deepWebFindings` with source URLs + confidence tiers and never
3717
+ * overwrite `person.email`. Pass false to disable (default: true)
3525
3718
  * @returns Promise resolving to enrichment results
3526
3719
  *
3527
3720
  * @example
@@ -5718,6 +5911,10 @@ declare class ResponsesResource {
5718
5911
  * @param options.excludePreviouslyContacted - Exclude previously contacted people
5719
5912
  * @param options.excludeNames - Names to exclude from results
5720
5913
  * @param options.searchJobSignal - CrustData job-listing signal search (decision makers at hiring companies); true | false | 'auto'
5914
+ * @param options.deepVerify - Web verification for org/location/third-party criteria: 'auto' (default), 'always', or 'off'
5915
+ * @param options.deepValidationUseRelevanceReranker - SLM relevance reranker for surfaced candidates (ranking-only); @default true
5916
+ * @param options.deepValidationBackfillBelowCriteria - Pad with criteria-failed candidates when under count; @default true
5917
+ * @param options.deepSearchCriteriaModel - Override criteria decomposition model (e.g. 'openai:gpt-5.4')
5721
5918
  * @returns Response with structured_response containing:
5722
5919
  * - candidates: Validated and scored candidates
5723
5920
  * - criteria: Generated/reused criteria definitions and classification
@@ -5754,6 +5951,10 @@ declare class ResponsesResource {
5754
5951
  engagementScoreWeight?: number;
5755
5952
  postsExtractAuthor?: boolean;
5756
5953
  searchJobSignal?: boolean | 'auto';
5954
+ deepVerify?: 'off' | 'auto' | 'always';
5955
+ deepValidationUseRelevanceReranker?: boolean;
5956
+ deepValidationBackfillBelowCriteria?: boolean;
5957
+ deepSearchCriteriaModel?: string;
5757
5958
  }): Promise<CreateResponseResponse>;
5758
5959
  /**
5759
5960
  * Score provided candidates against AI-generated or provided criteria
@@ -5769,6 +5970,9 @@ declare class ResponsesResource {
5769
5970
  * Can be a string (criterion text) or an object with criterionText and optional suggestedColumnName.
5770
5971
  * Example string: 'Must have 5+ years Python experience'
5771
5972
  * Example object: { criterionText: 'Has ML experience', suggestedColumnName: 'ml_experience' }
5973
+ * @param options.deepValidationUseRelevanceReranker - SLM relevance reranker for surfaced candidates (ranking-only); @default true
5974
+ * @param options.deepValidationBackfillBelowCriteria - Pad with criteria-failed candidates when under count; @default true
5975
+ * @param options.deepSearchCriteriaModel - Override criteria decomposition model (e.g. 'openai:gpt-5.4')
5772
5976
  * @returns Response with structured_response containing:
5773
5977
  * - candidates: Scored candidates with validation results
5774
5978
  * - criteria: Generated/reused criteria definitions and classification
@@ -5785,6 +5989,9 @@ declare class ResponsesResource {
5785
5989
  weight?: number;
5786
5990
  };
5787
5991
  addAndRunCriterion?: string | AddAndRunCriterionRequest;
5992
+ deepValidationUseRelevanceReranker?: boolean;
5993
+ deepValidationBackfillBelowCriteria?: boolean;
5994
+ deepSearchCriteriaModel?: string;
5788
5995
  }): Promise<CreateResponseResponse>;
5789
5996
  /**
5790
5997
  * Score people who reacted to or commented on competitor LinkedIn posts.
@@ -5852,6 +6059,8 @@ declare class ResponsesResource {
5852
6059
  * Hard max 100 — above that Crustdata returns thin profiles.
5853
6060
  */
5854
6061
  maxCommentsPerPost?: number;
6062
+ /** SLM relevance reranker for surfaced candidates (ranking-only); @default true */
6063
+ deepValidationUseRelevanceReranker?: boolean;
5855
6064
  }): Promise<CreateResponseResponse>;
5856
6065
  /**
5857
6066
  * Find a competitor's sales reps and surface the AUTHORS of the LinkedIn posts
@@ -5934,6 +6143,8 @@ declare class ResponsesResource {
5934
6143
  * @default false
5935
6144
  */
5936
6145
  thoroughEnrichment?: boolean;
6146
+ /** SLM relevance reranker for surfaced candidates (ranking-only); @default true */
6147
+ deepValidationUseRelevanceReranker?: boolean;
5937
6148
  }): Promise<CreateResponseResponse>;
5938
6149
  }
5939
6150
 
@@ -7434,4 +7645,4 @@ declare class ProgressTracker {
7434
7645
  */
7435
7646
  declare function verifyWebhookSignature(payload: string, signature: string, secret: string): boolean;
7436
7647
 
7437
- 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 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 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 ContactHistorySyncStatus, type ContactRelationshipProvider, type ContactRelationshipResponse, type ContactRelationshipStatus, ContactRelationshipsResource, type ContactScore, 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 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 EmailOnboardRequest, type EmailOnboardResponse, type EmailOnboardStatusResponse, type EmailOrgHealthResponse, type EmailOrgListResponse, type EmailOrgSettingsResponse, type EmailOrgSettingsUpdate, type EmailOrgSummary, EmailResource, type EmailSenderPersona, type EmailThreadSummary, type EngagementStatus, type EngagementStatusData, type EngagementStatusRequest, type EngagementStatusResponse, EnrichmentResource, type ErrorDetail, type ErrorResponse, type ErrorResponseItem, 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 InitiateConnectionRequest, type InitiateConnectionResponse, type InmailSubscription, IntegrationsResource, 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 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 OutcomeType, type OutreachAssetCreate, type OutreachAssetResponse, type OutreachAssetType, type OutreachAssetUpdate, OutreachMethod, OutreachResource, type OutreachSource, type OutreachStats, type PaginationInfo, type PaginationParams, type PauseResumeQueuedRequest, type PendingApprovalExtended, PeopleDataSource, PeopleResource, type PeopleSearchRequest, type PeopleSearchResponse, 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 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 RemoveOrgMemberResponse, type RepEngagementData, type RepEngagementStats, type ReplySentiment, type ResolvedCompetitorTarget, type ResponseArtifact, type ResponseListResponse, type ResponseObject, type ResponseStatus, ResponsesResource, 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 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 TeardownOrgResponse, type TemplateShareConfig, type TemplateShareInfo, type TemplateShareRequest, type TemplateSharesResponse, type TenantDetailsResponse, TenantInfoResource, type TenantModelPreference, type TenantModelPreferencesResponse, type TestConnectionResponse, type ThreadListResponse, type ThreadObject, type ThreadResponsesParams, ThreadsResource, type ToolInfo, 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, canSendInmail, displayProgress, formatProgressEntry, getBestSubscriptionForAction, getConnectionRequestLimit, getContentLimit, getDailyInmailLimit, getDefaultDailyLimits, getInmailAllowance, getLimits, getMessageLimit, getRateLimit, hasOpenProfileMessages, isRecruiterSubscription, normalizeAction, verifyWebhookSignature };
7648
+ 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 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 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 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 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 EngagementStatus, type EngagementStatusData, type EngagementStatusRequest, type EngagementStatusResponse, EnrichmentResource, type ErrorDetail, type ErrorResponse, type ErrorResponseItem, 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 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 OutcomeType, type OutreachAssetCreate, type OutreachAssetResponse, type OutreachAssetType, type OutreachAssetUpdate, OutreachMethod, OutreachResource, type OutreachSource, type OutreachStats, type PaginationInfo, type PaginationParams, type PauseResumeQueuedRequest, type PendingApprovalExtended, PeopleDataSource, PeopleResource, type PeopleSearchRequest, type PeopleSearchResponse, 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 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, 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 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 TeardownOrgResponse, type TemplateShareConfig, type TemplateShareInfo, type TemplateShareRequest, type TemplateSharesResponse, type TenantDetailsResponse, TenantInfoResource, type TenantModelPreference, type TenantModelPreferencesResponse, type TestConnectionResponse, type ThreadListResponse, type ThreadObject, type ThreadResponsesParams, ThreadsResource, type ToolInfo, 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, canSendInmail, displayProgress, formatProgressEntry, getBestSubscriptionForAction, getConnectionRequestLimit, getContentLimit, getDailyInmailLimit, getDefaultDailyLimits, getInmailAllowance, getLimits, getMessageLimit, getRateLimit, hasOpenProfileMessages, isRecruiterSubscription, normalizeAction, verifyWebhookSignature };