Variable: versionManager
constversionManager:VersionManager
Defined in: electron/services/monitoring/MigrationSystem.ts:791
Singleton manager for monitor type version tracking.
Remarks
Global VersionManager instance used to query and update migration state for all monitor types throughout the application. Maintains persistent version information and application status to track which migrations have been successfully applied.
Example
// Check current version
const currentVersion = versionManager.getVersion("http");
// Verify if specific version is applied
const isApplied = versionManager.isVersionApplied("http", "1.1.0");
// Get all version information
const allVersions = versionManager.getAllVersions();