Member Junction
    Preparing search index...

    Outcome of the Builder's persistence step. Written into the payload so the orchestrator + the chat UI can surface the result.

    interface FormBuilderBuilderResult {
        BumpKind?: "in-place" | "patch" | "minor" | "major";
        ComponentID?: string;
        ErrorMessage?: string;
        LintAttempts: number;
        LintHistory?: readonly {
            Attempt: number;
            Message: string;
            ResultCode: string;
        }[];
        Mode: "create"
        | "in-place"
        | "new-version";
        OverrideID?: string;
        Success: boolean;
        Version?: string;
    }
    Index

    Properties

    BumpKind?: "in-place" | "patch" | "minor" | "major"
    ComponentID?: string
    ErrorMessage?: string

    When Success=false, the last error returned by the action.

    LintAttempts: number

    Total attempts spent on lint-fix retries (1 = success on first try).

    LintHistory?: readonly { Attempt: number; Message: string; ResultCode: string }[]

    Codes seen during the lint-fix retry loop, in order, for diagnostics.

    Mode: "create" | "in-place" | "new-version"
    OverrideID?: string
    Success: boolean
    Version?: string