@xaccefy/pi-casefile 0.9.4 → 0.10.0

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/src/evidence.ts CHANGED
@@ -387,7 +387,10 @@ export function normalizeEvidence(e: PoCEvidence): string {
387
387
 
388
388
  // ── Main-agent confirmation verdict ─────────────────────────────────
389
389
 
390
- export const CONFIRM_VERDICT_VALUES = ["CONFIRMED", "NOT_CONFIRMED"] as const;
390
+ // INCONCLUSIVE is the fail-safe verdict: the reviewer could neither reproduce
391
+ // the finding nor positively disprove it. It preserves the case for manual
392
+ // review instead of dropping it. NOT_CONFIRMED means positively disproved.
393
+ export const CONFIRM_VERDICT_VALUES = ["CONFIRMED", "NOT_CONFIRMED", "INCONCLUSIVE"] as const;
391
394
  export type ConfirmVerdict = (typeof CONFIRM_VERDICT_VALUES)[number];
392
395
 
393
396
  export const CONFIRM_DIFFERENTIAL_VALUES = [
@@ -518,6 +521,3 @@ export function validateMainAgentVerdict(
518
521
 
519
522
  /** @deprecated Compatibility alias for integrations built before phase 2 became main-agent-only. */
520
523
  export type ConfirmerVerdict = MainAgentVerdict;
521
-
522
- /** @deprecated Use validateMainAgentVerdict. */
523
- export const validateConfirmerVerdict = validateMainAgentVerdict;