Member Junction
    Preparing search index...

    Result of an install, upgrade, or remove operation.

    interface AppOperationResult {
        Action: InstallAction;
        AppName: string;
        DurationSeconds: number;
        ErrorMessage?: string;
        ErrorPhase?: ErrorPhase;
        Success: boolean;
        Summary?: string;
        Version: string;
    }
    Index

    Properties

    The action that was performed

    AppName: string

    The app name

    DurationSeconds: number

    How long the operation took in seconds

    ErrorMessage?: string

    Error message if the operation failed

    ErrorPhase?: ErrorPhase

    Which phase failed

    Success: boolean

    Whether the operation succeeded

    Summary?: string

    Summary of what changed

    Version: string

    The version installed/upgraded to (or removed from)