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

    Interface ConversationFilter

    interface ConversationFilter {
        userId?: string;
        status?: "active" | "archived" | "deleted";
        agentId?: string;
        dateRange?: { start?: Date; end?: Date };
        tags?: string[];
        search?: string;
        messageCountRange?: { min?: number; max?: number };
        performance?: { minResponseTime?: number; maxResponseTime?: number };
    }
    Index

    Properties

    userId?: string

    Filter by user

    status?: "active" | "archived" | "deleted"

    Filter by status

    agentId?: string

    Filter by agent participation

    dateRange?: { start?: Date; end?: Date }

    Filter by date range

    tags?: string[]

    Filter by tags

    search?: string

    Filter by message content

    messageCountRange?: { min?: number; max?: number }

    Filter by message count

    performance?: { minResponseTime?: number; maxResponseTime?: number }

    Filter by performance metrics