Praman — AI-First SAP UI5 Test Automation Platform - v1.0.1
    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 string[];
        generatedAt: string;
        totalMethods: number;
        version: string;
    }
    Index

    Properties

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

    Breakdown of entries by priority tier.

    categories: readonly string[]

    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.