Praman — Agent-First SAP UI5 Test Automation Plugin - v1.2.0
    Preparing search index...

    Interface CapabilityStats

    Statistical summary of the capability registry.

    Provide a quick overview of registered capabilities for dashboards and AI agents.

    const stats = registry.getStatistics();
    logger.info(`Total: ${stats.totalMethods}, Categories: ${stats.categories.join(', ')}`);
    interface CapabilityStats {
        byPriority: {
            fixture: number;
            implementation: number;
            namespace: number;
        };
        categories: readonly (
            | "ui5"
            | "auth"
            | "navigate"
            | "table"
            | "dialog"
            | "date"
            | "odata"
            | "fe"
            | "intent"
            | "flp"
            | "shell"
            | "footer"
            | "ai"
            | "data"
            | "assert"
        )[];
        generatedAt: string;
        totalMethods: number;
        version: string;
    }
    Index

    Properties

    byPriority: { fixture: number; implementation: number; namespace: number }

    Breakdown of entries by priority tier.

    categories: readonly (
        | "ui5"
        | "auth"
        | "navigate"
        | "table"
        | "dialog"
        | "date"
        | "odata"
        | "fe"
        | "intent"
        | "flp"
        | "shell"
        | "footer"
        | "ai"
        | "data"
        | "assert"
    )[]

    Deduplicated list of category names across all entries.

    generatedAt: string

    ISO 8601 timestamp when the statistics were generated.

    totalMethods: number

    Total number of registered capability entries.

    version: string

    Package version string.