prorm API Reference
    Preparing search index...

    Interface BreachAlert

    A breach alert

    interface BreachAlert {
        id: string;
        timestamp: Date;
        severity: BreachSeverity;
        category: BreachCategory;
        message: string;
        details: Record<string, unknown>;
        userId?: string;
        ipAddress?: string;
        query?: string;
    }
    Index
    id: string
    timestamp: Date
    severity: BreachSeverity
    category: BreachCategory
    message: string
    details: Record<string, unknown>
    userId?: string
    ipAddress?: string
    query?: string