An error occurred during the update process

interface UpdateErrorState {
    currentVersion: string;
    lastUpdate: number;
    latestVersion: string;
    releaseNotes?: string[];
    releaseNotesPrivacyPro?: string[];
    releaseTitle?: string;
    status: "updateError";
}

Properties

currentVersion: string

Current version of the app

lastUpdate: number

Timestamp of last check for version updates

latestVersion: string

Latest version of the app. May be the same as currentVersion

releaseNotes?: string[]

Array containing notes for the latest release

releaseNotesPrivacyPro?: string[]

Array containing Privacy Pro notes for the latest release

releaseTitle?: string

Name of the current release (e.g. April 26 2024)

status: "updateError"