@resolveio/server-lib 22.3.178 → 22.3.180

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resolveio/server-lib",
3
- "version": "22.3.178",
3
+ "version": "22.3.180",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "package": "./build_package.sh",
@@ -1471,6 +1471,7 @@ function supportCustomerReplyPolicyGate(policy, now) {
1471
1471
  var canDraft = policy.canDraftCustomerReply === true || policy.can_draft_customer_reply === true;
1472
1472
  var canSend = policy.canSendCustomerReply === true || policy.can_send_customer_reply === true;
1473
1473
  var reviewPacket = plainObject(policy.humanReviewPacket || policy.human_review_packet);
1474
+ var draftBasis = plainObject(policy.draftBasis || policy.draft_basis);
1474
1475
  var reviewType = cleanText(reviewPacket.reviewType || reviewPacket.review_type, 160);
1475
1476
  var evidenceRefs = cleanStringList(reviewPacket.evidenceRefs || reviewPacket.evidence_refs, 40, 500);
1476
1477
  var blockers = cleanStringList(policy.blockers || reviewPacket.blockers, 20, 500);
@@ -1494,6 +1495,9 @@ function supportCustomerReplyPolicyGate(policy, now) {
1494
1495
  canDraftCustomerReply: canDraft,
1495
1496
  canSendCustomerReply: canSend,
1496
1497
  confidenceLevel: cleanText(policy.confidenceLevel || policy.confidence_level, 120),
1498
+ issueClass: cleanText(draftBasis.issueClass || draftBasis.issue_class, 120),
1499
+ issueClassProbePlanId: cleanText(draftBasis.issueClassProbePlanId || draftBasis.issue_class_probe_plan_id, 180),
1500
+ issueClassProbePlanStatus: cleanText(draftBasis.issueClassProbePlanStatus || draftBasis.issue_class_probe_plan_status, 120),
1497
1501
  reviewType: reviewType,
1498
1502
  primaryAction: cleanText(reviewPacket.primaryAction || reviewPacket.primary_action, 160),
1499
1503
  requiresHumanApproval: reviewPacket.requiresHumanApproval !== false && reviewPacket.requires_human_approval !== false,
@@ -1665,6 +1669,17 @@ function supportDiagnosisEvidencePackObject(ticket, job, evidence) {
1665
1669
  var ticketManager = plainObject(ticketAutomation.manager || ticket.manager);
1666
1670
  return evidenceObject(job.supportV5DiagnosisEvidencePack, job.support_v5_diagnosis_evidence_pack, job.diagnosisEvidencePack, job.diagnosis_evidence_pack, evidence.supportV5DiagnosisEvidencePack, evidence.support_v5_diagnosis_evidence_pack, evidence.diagnosisEvidencePack, evidence.diagnosis_evidence_pack, ticket.supportV5DiagnosisEvidencePack, ticket.support_v5_diagnosis_evidence_pack, ticket.diagnosisEvidencePack, ticket.diagnosis_evidence_pack, ticketManager.diagnosisEvidencePack, ticketManager.diagnosis_evidence_pack);
1667
1671
  }
1672
+ function supportIssueClassProbePlanObject(ticket, job, evidence) {
1673
+ var ticketAutomation = plainObject(ticket.automation);
1674
+ var ticketManager = plainObject(ticketAutomation.manager || ticket.manager);
1675
+ var autonomousDecision = plainObject(job.supportV5AutonomousDecision
1676
+ || job.support_v5_autonomous_decision
1677
+ || evidence.supportV5AutonomousDecision
1678
+ || evidence.support_v5_autonomous_decision
1679
+ || ticket.supportV5AutonomousDecision
1680
+ || ticket.support_v5_autonomous_decision);
1681
+ return evidenceObject(autonomousDecision.issueClassProbePlan, autonomousDecision.issue_class_probe_plan, job.supportV5IssueClassProbePlan, job.support_v5_issue_class_probe_plan, job.issueClassProbePlan, job.issue_class_probe_plan, evidence.supportV5IssueClassProbePlan, evidence.support_v5_issue_class_probe_plan, evidence.issueClassProbePlan, evidence.issue_class_probe_plan, ticket.supportV5IssueClassProbePlan, ticket.support_v5_issue_class_probe_plan, ticket.issueClassProbePlan, ticket.issue_class_probe_plan, ticketManager.issueClassProbePlan, ticketManager.issue_class_probe_plan);
1682
+ }
1668
1683
  function supportSimilarFixHintsObject(ticket, job, evidence) {
1669
1684
  var ticketAutomation = plainObject(ticket.automation);
1670
1685
  var ticketManager = plainObject(ticketAutomation.manager || ticket.manager);
@@ -1713,6 +1728,79 @@ function supportDiagnosisEvidencePackGate(pack, now) {
1713
1728
  }
1714
1729
  };
1715
1730
  }
1731
+ function supportIssueClassProbePlanGate(plan, diagnosisGate, now, required) {
1732
+ if (required === void 0) { required = false; }
1733
+ if (!plan || !Object.keys(plan).length) {
1734
+ if (!required) {
1735
+ return undefined;
1736
+ }
1737
+ var blocker = 'Support V5 run is missing IssueClassProbePlan, so business proof cannot be accepted from route-only or generic QA.';
1738
+ return {
1739
+ key: 'support_issue_class_probe_plan',
1740
+ label: 'Support issue-class probe plan',
1741
+ status: 'blocked',
1742
+ reason: blocker,
1743
+ evidenceRefs: [],
1744
+ recordedAt: isoNow(now),
1745
+ metadata: {
1746
+ required: true,
1747
+ missingPlan: true,
1748
+ issueClassProbePlanReady: false,
1749
+ acceptanceGate: 'aiqa_business_assertion',
1750
+ blockers: [blocker],
1751
+ falsePassBlockers: ['route load only', 'generic clickthrough only', 'scorecard-only pass']
1752
+ }
1753
+ };
1754
+ }
1755
+ var validation = (0, support_runner_v5_1.validateResolveIOSupportIssueClassProbePlan)(plan, diagnosisGate, now);
1756
+ var normalized = plainObject(validation.normalized || plan);
1757
+ var activeProbe = plainObject(validation.activeProbe || normalized.activeProbe || normalized.active_probe);
1758
+ var blockers = cleanStringList(validation.blockers || normalized.blockers, 40, 500);
1759
+ var requiredArtifacts = cleanStringList(normalized.requiredArtifacts
1760
+ || normalized.required_artifacts
1761
+ || activeProbe.required_artifacts, 30, 500);
1762
+ var falsePassBlockers = cleanStringList(normalized.falsePassBlockers
1763
+ || normalized.false_pass_blockers
1764
+ || activeProbe.false_pass_blockers, 30, 500);
1765
+ var status = validation.valid ? 'pass' : 'blocked';
1766
+ var issueClass = cleanText(normalized.issue_class || normalized.issueClass || activeProbe.issue_class, 120);
1767
+ var route = cleanText(activeProbe.route, 500);
1768
+ var action = cleanText(activeProbe.action, 1000);
1769
+ return {
1770
+ key: 'support_issue_class_probe_plan',
1771
+ label: 'Support issue-class probe plan',
1772
+ status: status,
1773
+ reason: validation.valid
1774
+ ? "Support issue-class probe plan is ready for ".concat(issueClass || 'the diagnosed issue', " and requires AIQaBusinessAssertion proof.")
1775
+ : blockers.join('; ') || 'Support issue-class probe plan is incomplete.',
1776
+ evidenceRefs: requiredArtifacts,
1777
+ recordedAt: isoNow(now || normalized.generatedAt || normalized.generated_at),
1778
+ metadata: {
1779
+ planId: cleanText(normalized.planId || normalized.plan_id, 180),
1780
+ status: cleanText(validation.status || normalized.status, 120),
1781
+ issueClass: issueClass,
1782
+ diagnosisValid: normalized.diagnosisValid === true || normalized.diagnosis_valid === true,
1783
+ issueClassProbePlanReady: validation.valid === true && validation.status === 'ready',
1784
+ activeRoute: route,
1785
+ action: action,
1786
+ expectedEvidence: cleanText(activeProbe.expected_evidence || activeProbe.expectedEvidence, 1200),
1787
+ expectedBusinessProof: cleanText(activeProbe.expected_business_proof || activeProbe.expectedBusinessProof, 1200),
1788
+ acceptanceGate: cleanText(normalized.acceptanceGate || normalized.acceptance_gate || activeProbe.acceptance_gate, 120),
1789
+ requiredArtifacts: requiredArtifacts,
1790
+ falsePassBlockers: falsePassBlockers,
1791
+ blockers: blockers,
1792
+ activeProbe: {
1793
+ issueClass: issueClass,
1794
+ route: route,
1795
+ action: action,
1796
+ probeType: cleanText(activeProbe.probe_type || activeProbe.probeType, 120),
1797
+ failureClass: cleanText(activeProbe.failure_class || activeProbe.failureClass, 120),
1798
+ blocksAcceptanceWithoutBusinessAssertion: activeProbe.blocks_acceptance_without_business_assertion === true
1799
+ || activeProbe.blocksAcceptanceWithoutBusinessAssertion === true
1800
+ }
1801
+ }
1802
+ };
1803
+ }
1716
1804
  function firstNonEmptyText(values, max) {
1717
1805
  var e_26, _a;
1718
1806
  if (max === void 0) { max = 1000; }
@@ -2402,7 +2490,7 @@ function applyAssistantAnswerQualityGate(qa, decision, now) {
2402
2490
  }
2403
2491
  function buildSupportAIRunFromEvidence(input) {
2404
2492
  var e_28, _a, e_29, _b;
2405
- var _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23;
2493
+ var _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35;
2406
2494
  var ticket = input.ticket || {};
2407
2495
  var job = input.job || {};
2408
2496
  var evidence = buildSupportQaEvidence(input);
@@ -2414,8 +2502,8 @@ function buildSupportAIRunFromEvidence(input) {
2414
2502
  addSourceId(sourceIds, 'jobId', job._id || job.id || job.jobId);
2415
2503
  addSourceId(sourceIds, 'buildPlanId', job.buildPlanId || ticket.buildPlanId);
2416
2504
  try {
2417
- for (var _24 = __values(asArray(input.taskEvents)), _25 = _24.next(); !_25.done; _25 = _24.next()) {
2418
- var event_1 = _25.value;
2505
+ for (var _36 = __values(asArray(input.taskEvents)), _37 = _36.next(); !_37.done; _37 = _36.next()) {
2506
+ var event_1 = _37.value;
2419
2507
  pushEvent(events, {
2420
2508
  type: event_1.type === 'human_intervention' ? 'human_intervention' : 'log',
2421
2509
  category: cleanText(event_1.category || event_1.phase || event_1.type, 160),
@@ -2432,13 +2520,13 @@ function buildSupportAIRunFromEvidence(input) {
2432
2520
  catch (e_28_1) { e_28 = { error: e_28_1 }; }
2433
2521
  finally {
2434
2522
  try {
2435
- if (_25 && !_25.done && (_a = _24.return)) _a.call(_24);
2523
+ if (_37 && !_37.done && (_a = _36.return)) _a.call(_36);
2436
2524
  }
2437
2525
  finally { if (e_28) throw e_28.error; }
2438
2526
  }
2439
2527
  try {
2440
- for (var _26 = __values(asArray(input.aiJobs)), _27 = _26.next(); !_27.done; _27 = _26.next()) {
2441
- var aiJob = _27.value;
2528
+ for (var _38 = __values(asArray(input.aiJobs)), _39 = _38.next(); !_39.done; _39 = _38.next()) {
2529
+ var aiJob = _39.value;
2442
2530
  pushEvent(events, {
2443
2531
  type: aiJob.model ? 'model_call' : 'log',
2444
2532
  category: cleanText(aiJob.category || aiJob.phase || aiJob.runner, 160),
@@ -2456,7 +2544,7 @@ function buildSupportAIRunFromEvidence(input) {
2456
2544
  catch (e_29_1) { e_29 = { error: e_29_1 }; }
2457
2545
  finally {
2458
2546
  try {
2459
- if (_27 && !_27.done && (_b = _26.return)) _b.call(_26);
2547
+ if (_39 && !_39.done && (_b = _38.return)) _b.call(_38);
2460
2548
  }
2461
2549
  finally { if (e_29) throw e_29.error; }
2462
2550
  }
@@ -2563,6 +2651,25 @@ function buildSupportAIRunFromEvidence(input) {
2563
2651
  metadata: diagnosisEvidencePackGate.metadata
2564
2652
  });
2565
2653
  }
2654
+ var issueClassProbePlanSource = supportIssueClassProbePlanObject(ticket, job, evidence);
2655
+ var issueClassProbePlan = Object.keys(issueClassProbePlanSource).length
2656
+ ? issueClassProbePlanSource
2657
+ : Object.keys(diagnosisGate).length
2658
+ ? (0, support_runner_v5_1.buildResolveIOSupportIssueClassProbePlan)(diagnosisGate, input.now)
2659
+ : {};
2660
+ var issueClassProbePlanRequired = nextActionContractRequired || Object.keys(diagnosisGate).length > 0;
2661
+ var issueClassProbePlanGate = supportIssueClassProbePlanGate(issueClassProbePlan, diagnosisGate, input.now, issueClassProbePlanRequired);
2662
+ if (issueClassProbePlanGate) {
2663
+ gates.push(issueClassProbePlanGate);
2664
+ pushEvent(events, {
2665
+ type: 'log',
2666
+ category: 'support_issue_class_probe_plan',
2667
+ message: issueClassProbePlanGate.reason,
2668
+ artifactPaths: issueClassProbePlanGate.evidenceRefs,
2669
+ recordedAt: issueClassProbePlanGate.recordedAt,
2670
+ metadata: issueClassProbePlanGate.metadata
2671
+ });
2672
+ }
2566
2673
  var productRepairEvidence = supportProductRepairEvidence(input, evidence);
2567
2674
  var diagnosisBeforeRepairGate = supportDiagnosisBeforeRepairGate(diagnosisGate, productRepairEvidence, input.now);
2568
2675
  if (diagnosisBeforeRepairGate) {
@@ -2658,6 +2765,21 @@ function buildSupportAIRunFromEvidence(input) {
2658
2765
  issueClassProbeCount: Number(((_3 = diagnosisEvidencePackGate.metadata) === null || _3 === void 0 ? void 0 : _3.issueClassProbeCount) || 0),
2659
2766
  validationBlockers: cleanStringList((_4 = diagnosisEvidencePackGate.metadata) === null || _4 === void 0 ? void 0 : _4.validationBlockers, 20, 500)
2660
2767
  } : undefined,
2768
+ issueClassProbePlan: issueClassProbePlanGate ? {
2769
+ status: cleanText((_5 = issueClassProbePlanGate.metadata) === null || _5 === void 0 ? void 0 : _5.status, 120),
2770
+ gateStatus: issueClassProbePlanGate.status,
2771
+ planId: cleanText((_6 = issueClassProbePlanGate.metadata) === null || _6 === void 0 ? void 0 : _6.planId, 180),
2772
+ issueClass: cleanText((_7 = issueClassProbePlanGate.metadata) === null || _7 === void 0 ? void 0 : _7.issueClass, 120),
2773
+ diagnosisValid: ((_8 = issueClassProbePlanGate.metadata) === null || _8 === void 0 ? void 0 : _8.diagnosisValid) === true,
2774
+ issueClassProbePlanReady: ((_9 = issueClassProbePlanGate.metadata) === null || _9 === void 0 ? void 0 : _9.issueClassProbePlanReady) === true,
2775
+ activeRoute: cleanText((_10 = issueClassProbePlanGate.metadata) === null || _10 === void 0 ? void 0 : _10.activeRoute, 500),
2776
+ action: cleanText((_11 = issueClassProbePlanGate.metadata) === null || _11 === void 0 ? void 0 : _11.action, 1000),
2777
+ expectedBusinessProof: cleanText((_12 = issueClassProbePlanGate.metadata) === null || _12 === void 0 ? void 0 : _12.expectedBusinessProof, 1200),
2778
+ acceptanceGate: cleanText((_13 = issueClassProbePlanGate.metadata) === null || _13 === void 0 ? void 0 : _13.acceptanceGate, 120),
2779
+ requiredArtifacts: cleanStringList((_14 = issueClassProbePlanGate.metadata) === null || _14 === void 0 ? void 0 : _14.requiredArtifacts, 20, 500),
2780
+ falsePassBlockers: cleanStringList((_15 = issueClassProbePlanGate.metadata) === null || _15 === void 0 ? void 0 : _15.falsePassBlockers, 20, 500),
2781
+ blockers: cleanStringList((_16 = issueClassProbePlanGate.metadata) === null || _16 === void 0 ? void 0 : _16.blockers, 20, 500)
2782
+ } : undefined,
2661
2783
  businessProofReadiness: Object.keys(businessProofReadiness).length ? {
2662
2784
  ready: businessProofReadiness.ready === true,
2663
2785
  status: cleanText(businessProofReadiness.status, 120),
@@ -2666,19 +2788,19 @@ function buildSupportAIRunFromEvidence(input) {
2666
2788
  } : undefined,
2667
2789
  nextActionContract: nextActionContractGate ? {
2668
2790
  status: nextActionContractGate.status,
2669
- action: cleanText((_5 = nextActionContractGate.metadata) === null || _5 === void 0 ? void 0 : _5.action, 160),
2670
- primaryCommand: cleanText((_6 = nextActionContractGate.metadata) === null || _6 === void 0 ? void 0 : _6.primaryCommand, 240),
2671
- safeToAutoRun: ((_7 = nextActionContractGate.metadata) === null || _7 === void 0 ? void 0 : _7.safeToAutoRun) === true,
2672
- canRunWithoutCodexMonitor: ((_8 = nextActionContractGate.metadata) === null || _8 === void 0 ? void 0 : _8.canRunWithoutCodexMonitor) === true,
2673
- codexFallbackRequired: ((_9 = nextActionContractGate.metadata) === null || _9 === void 0 ? void 0 : _9.codexFallbackRequired) === true,
2674
- requiresHumanApproval: ((_10 = nextActionContractGate.metadata) === null || _10 === void 0 ? void 0 : _10.requiresHumanApproval) === true,
2675
- rootCauseFirstSatisfied: ((_11 = nextActionContractGate.metadata) === null || _11 === void 0 ? void 0 : _11.rootCauseFirstSatisfied) === true,
2676
- hotfixCommitRequired: ((_12 = nextActionContractGate.metadata) === null || _12 === void 0 ? void 0 : _12.hotfixCommitRequired) === true,
2677
- liveHotfixBlockedUntilCommit: ((_13 = nextActionContractGate.metadata) === null || _13 === void 0 ? void 0 : _13.liveHotfixBlockedUntilCommit) === true,
2678
- failureClass: cleanText((_14 = nextActionContractGate.metadata) === null || _14 === void 0 ? void 0 : _14.failureClass, 120),
2679
- evidenceFreshnessStatus: cleanText((_15 = nextActionContractGate.metadata) === null || _15 === void 0 ? void 0 : _15.evidenceFreshnessStatus, 120),
2680
- sameFailureCount: Number(((_16 = nextActionContractGate.metadata) === null || _16 === void 0 ? void 0 : _16.sameFailureCount) || 0),
2681
- blockers: cleanStringList((_17 = nextActionContractGate.metadata) === null || _17 === void 0 ? void 0 : _17.blockers, 20, 500)
2791
+ action: cleanText((_17 = nextActionContractGate.metadata) === null || _17 === void 0 ? void 0 : _17.action, 160),
2792
+ primaryCommand: cleanText((_18 = nextActionContractGate.metadata) === null || _18 === void 0 ? void 0 : _18.primaryCommand, 240),
2793
+ safeToAutoRun: ((_19 = nextActionContractGate.metadata) === null || _19 === void 0 ? void 0 : _19.safeToAutoRun) === true,
2794
+ canRunWithoutCodexMonitor: ((_20 = nextActionContractGate.metadata) === null || _20 === void 0 ? void 0 : _20.canRunWithoutCodexMonitor) === true,
2795
+ codexFallbackRequired: ((_21 = nextActionContractGate.metadata) === null || _21 === void 0 ? void 0 : _21.codexFallbackRequired) === true,
2796
+ requiresHumanApproval: ((_22 = nextActionContractGate.metadata) === null || _22 === void 0 ? void 0 : _22.requiresHumanApproval) === true,
2797
+ rootCauseFirstSatisfied: ((_23 = nextActionContractGate.metadata) === null || _23 === void 0 ? void 0 : _23.rootCauseFirstSatisfied) === true,
2798
+ hotfixCommitRequired: ((_24 = nextActionContractGate.metadata) === null || _24 === void 0 ? void 0 : _24.hotfixCommitRequired) === true,
2799
+ liveHotfixBlockedUntilCommit: ((_25 = nextActionContractGate.metadata) === null || _25 === void 0 ? void 0 : _25.liveHotfixBlockedUntilCommit) === true,
2800
+ failureClass: cleanText((_26 = nextActionContractGate.metadata) === null || _26 === void 0 ? void 0 : _26.failureClass, 120),
2801
+ evidenceFreshnessStatus: cleanText((_27 = nextActionContractGate.metadata) === null || _27 === void 0 ? void 0 : _27.evidenceFreshnessStatus, 120),
2802
+ sameFailureCount: Number(((_28 = nextActionContractGate.metadata) === null || _28 === void 0 ? void 0 : _28.sameFailureCount) || 0),
2803
+ blockers: cleanStringList((_29 = nextActionContractGate.metadata) === null || _29 === void 0 ? void 0 : _29.blockers, 20, 500)
2682
2804
  } : undefined,
2683
2805
  customerReplyPolicy: Object.keys(customerReplyPolicy).length ? {
2684
2806
  action: cleanText(customerReplyPolicy.action, 120),
@@ -2686,12 +2808,12 @@ function buildSupportAIRunFromEvidence(input) {
2686
2808
  canDraftCustomerReply: customerReplyPolicy.canDraftCustomerReply === true || customerReplyPolicy.can_draft_customer_reply === true,
2687
2809
  canSendCustomerReply: customerReplyPolicy.canSendCustomerReply === true || customerReplyPolicy.can_send_customer_reply === true,
2688
2810
  reason: cleanText(customerReplyPolicy.reason, 1000),
2689
- reviewType: cleanText(((_18 = customerReplyPolicy.humanReviewPacket) === null || _18 === void 0 ? void 0 : _18.reviewType)
2690
- || ((_19 = customerReplyPolicy.human_review_packet) === null || _19 === void 0 ? void 0 : _19.review_type)
2691
- || ((_20 = customerReplyPolicy.human_review_packet) === null || _20 === void 0 ? void 0 : _20.reviewType), 160),
2692
- primaryAction: cleanText(((_21 = customerReplyPolicy.humanReviewPacket) === null || _21 === void 0 ? void 0 : _21.primaryAction)
2693
- || ((_22 = customerReplyPolicy.human_review_packet) === null || _22 === void 0 ? void 0 : _22.primary_action)
2694
- || ((_23 = customerReplyPolicy.human_review_packet) === null || _23 === void 0 ? void 0 : _23.primaryAction), 160)
2811
+ reviewType: cleanText(((_30 = customerReplyPolicy.humanReviewPacket) === null || _30 === void 0 ? void 0 : _30.reviewType)
2812
+ || ((_31 = customerReplyPolicy.human_review_packet) === null || _31 === void 0 ? void 0 : _31.review_type)
2813
+ || ((_32 = customerReplyPolicy.human_review_packet) === null || _32 === void 0 ? void 0 : _32.reviewType), 160),
2814
+ primaryAction: cleanText(((_33 = customerReplyPolicy.humanReviewPacket) === null || _33 === void 0 ? void 0 : _33.primaryAction)
2815
+ || ((_34 = customerReplyPolicy.human_review_packet) === null || _34 === void 0 ? void 0 : _34.primary_action)
2816
+ || ((_35 = customerReplyPolicy.human_review_packet) === null || _35 === void 0 ? void 0 : _35.primaryAction), 160)
2695
2817
  } : undefined
2696
2818
  }
2697
2819
  });