Backup metadata with version information and data structure details.

export interface BackupMetadata {
/** ISO timestamp of when backup was created */
timestamp: string;
/** Application version when backup was created */
appVersion: string;
/** Cache version for data structure compatibility */
cacheVersion: number;
/** Backup format version for future compatibility */
backupVersion: number;
/** List of storage keys included in this backup */
dataKeys: string[];
}
interface BackupMetadata {
    timestamp: string;
    appVersion: string;
    cacheVersion: number;
    backupVersion: number;
    dataKeys: string[];
}

Properties

timestamp: string

ISO timestamp of when backup was created

appVersion: string

Application version when backup was created

cacheVersion: number

Cache version for data structure compatibility

backupVersion: number

Backup format version for future compatibility

dataKeys: string[]

List of storage keys included in this backup