/** * Auto-Source Assignment Module * * Provides automatic source assignment for scanned plugins * by matching against the curated registry and URL patterns. * * @since v2.2.0 */ export { AutoSourceAssigner, evidenceMatchesScanned } from './auto-assigner.js'; export type { AssignmentMethod, AutoAssignOptions, AutoAssignResult, SourceAssignment, } from './auto-source-types.js'; export { identifyAndAssign, proposeRegistryCorrections, synthesizePomEvidence, } from './identify.js'; export type { IdentifyOptions, RegistryCorrectionResult } from './identify.js'; export { buildIgnoredSet, isIgnoredPlugin, partitionIgnored, } from './ignored-plugins.js'; export type { IgnoredPartition } from './ignored-plugins.js'; export { METHOD_CONFIDENCE } from './identification-types.js'; export type { IdentificationChannel, IdentificationEvidence, IdentificationMethod, } from './identification-types.js'; export { HIGH_CONFIDENCE_THRESHOLD, acceptAllHighConfidence, acceptSuggestionAt, acceptSuggestionsByName, collectSuggestions, describeProposedSource, formatSuggestionLine, isSuggestionDismissed, skipSuggestionAt, suggestionKey, } from './suggestion-review.js'; export type { DismissedSuggestions, SourceSuggestion, SuggestionDecision, SuggestionKind, } from './suggestion-review.js'; //# sourceMappingURL=index.d.ts.map