chore: add pre-built dist folder for npx usage

This commit is contained in:
thesved
2025-12-04 20:22:02 +02:00
committed by Romuald Członkowski
parent a70d96a373
commit 5057481e70
716 changed files with 48021 additions and 0 deletions

24
dist/services/confidence-scorer.d.ts vendored Normal file
View File

@@ -0,0 +1,24 @@
export interface ConfidenceScore {
value: number;
reason: string;
factors: ConfidenceFactor[];
}
export interface ConfidenceFactor {
name: string;
weight: number;
matched: boolean;
description: string;
}
export declare class ConfidenceScorer {
static scoreResourceLocatorRecommendation(fieldName: string, nodeType: string, value: string): ConfidenceScore;
private static readonly EXACT_FIELD_MAPPINGS;
private static checkExactFieldMatch;
private static readonly FIELD_PATTERNS;
private static checkFieldPattern;
private static checkValuePattern;
private static readonly RESOURCE_HEAVY_NODES;
private static checkNodeCategory;
static getConfidenceLevel(score: number): 'high' | 'medium' | 'low' | 'very-low';
static shouldApplyRecommendation(score: number, threshold?: 'strict' | 'normal' | 'relaxed'): boolean;
}
//# sourceMappingURL=confidence-scorer.d.ts.map