Backup metadata with version information and data structure details.
Source
exportinterfaceBackupMetadata { /** 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[]; }
Backup metadata with version information and data structure details.
Source