@pwngh/economy-lab
    Preparing search index...

    Type Alias VelocityAnomalyFinding

    What detectVelocityAnomaly found: RISK_DENIED rejection volume over the window.

    type VelocityAnomalyFinding = {
        byKind: Readonly<Record<string, number>>;
        ratePerMin: number;
        rejections: number;
        signature: "velocity-anomaly";
        windowMs: number;
    }
    Index
    byKind: Readonly<Record<string, number>>

    Rejections tallied per operation kind tag; untagged signals tally under unknown.

    ratePerMin: number

    The window's rejection count normalized to a per-minute rate, rounded.

    rejections: number
    signature: "velocity-anomaly"
    windowMs: number