Member Junction
    Preparing search index...
    interface ReportData {
        Config?: PartialInstallConfig;
        ConfigFiles?: ConfigFileSnapshot[];
        Diagnostics?: Diagnostics;
        Environment?: EnvironmentInfo;
        EventLog?: readonly LogEntry[];
        InstallResult?: InstallResult;
        InstallState?: InstallStateData;
        ServiceLogs?: ServiceLogCapture[];
        TargetDir?: string;
        Trigger?: "manual" | "install-failure" | "doctor-report";
    }
    Index

    Properties

    Sanitized configuration (passwords redacted).

    ConfigFiles?: ConfigFileSnapshot[]

    Sanitized snapshots of key configuration files.

    Diagnostics?: Diagnostics

    Diagnostic check results from preflight and known-issue scans.

    Environment?: EnvironmentInfo

    Detected runtime environment (OS, Node, npm, architecture).

    EventLog?: readonly LogEntry[]

    Full event log from the install or doctor run.

    InstallResult?: InstallResult

    Install result (success, duration, warnings, phases).

    InstallState?: InstallStateData

    Install state from the checkpoint file.

    ServiceLogs?: ServiceLogCapture[]

    Captured service startup logs (MJAPI, Explorer).

    TargetDir?: string

    Absolute path to the install directory.

    Trigger?: "manual" | "install-failure" | "doctor-report"

    Trigger that caused the report to be generated.