- Unified alert types (AlertSource, AlertCategory, CorrelationStatus, EntityType) - NormalizedAlert and CorrelationGroup Prisma models - AlertNormalizer for all 4 services (DarkWatch, SpamShield, VoicePrint, CallAnalysis) - CorrelationEngine with temporal + entity-based correlation detection - CorrelationService orchestrator with dashboard API - Correlation API routes (/api/v1/correlation/*) - Service emitters wired to DarkWatch, SpamShield, VoicePrint - pnpm workspace config for monorepo
10 lines
320 B
TypeScript
10 lines
320 B
TypeScript
export { alertNormalizer, AlertNormalizer } from "./normalizer";
|
|
export { correlationEngine, CorrelationEngine } from "./engine";
|
|
export { correlationService, CorrelationService } from "./service";
|
|
export {
|
|
emitDarkWatchAlert,
|
|
emitSpamShieldAlert,
|
|
emitVoicePrintAlert,
|
|
emitCallAnalysisAlert,
|
|
} from "./emitter";
|