@conciergus/chat - v0.3.1
    Preparing search index...

    Interface ProactiveRule

    Interface for proactive engagement rules. Extracted from ConciergusContext.tsx.

    interface ProactiveRule {
        id: string;
        triggerType: string;
        conditions: Record<string, unknown>;
        action: Record<string, unknown>;
        cooldown?: number;
        enabled?: boolean;
    }
    Index

    Properties

    id: string
    triggerType: string
    conditions: Record<string, unknown>
    action: Record<string, unknown>
    cooldown?: number
    enabled?: boolean