Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface MigrationGuide

    interface MigrationGuide {
        estimatedEffort: "small" | "medium" | "trivial" | "large";
        fromVersion: string;
        steps: {
            breaking: boolean;
            codeChange?: string;
            description: string;
            stepNumber: number;
        }[];
        toVersion: string;
    }
    Index
    estimatedEffort: "small" | "medium" | "trivial" | "large"
    fromVersion: string
    steps: {
        breaking: boolean;
        codeChange?: string;
        description: string;
        stepNumber: number;
    }[]
    toVersion: string