Praman — AI-First SAP UI5 Test Automation Platform - v1.0.1
    Preparing search index...

    Interface CapabilitiesJSON

    Full JSON export of the capability registry for AI agent consumption.

    Provide a structured, serialisable snapshot of all capabilities.

    const json = registry.toJSON();
    const prompt = JSON.stringify(json);
    interface CapabilitiesJSON {
        byPriority: {
            fixture: number;
            implementation: number;
            namespace: number;
        };
        fixtures: readonly CapabilityEntry[];
        generatedAt: string;
        methods: readonly CapabilityEntry[];
        name: string;
        totalMethods: number;
        version: string;
    }
    Index

    Properties

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

    Breakdown of entries by priority tier.

    fixtures: readonly CapabilityEntry[]

    Entries with priority === 'fixture' (listed first per Playwright best practice).

    generatedAt: string

    ISO 8601 timestamp when the export was generated.

    methods: readonly CapabilityEntry[]

    All registered entries.

    name: string

    Package name.

    totalMethods: number

    Total number of registered capability entries.

    version: string

    Package version.