bbas-devicer - v0.2.1
    Preparing search index...

    Interface BbasRule

    A single rule in the BBAS rule engine.

    Rules are evaluated in ascending priority order. The first rule whose condition returns true determines the final BotDecision.

    interface BbasRule {
        action: BotDecision;
        condition: (enrichment: BbasEnrichment) => boolean;
        name: string;
        priority: number;
    }
    Index

    Properties

    action: BotDecision

    The decision to emit when this rule fires.

    condition: (enrichment: BbasEnrichment) => boolean

    Returns true when this rule should fire.

    name: string

    Unique name for logging and debugging.

    priority: number

    Evaluation order — lower numbers run first. Default rules use priorities 100–900; set priorities < 100 for custom rules that should run before defaults.