CIA Compliance Manager API Documentation - v1.1.6
    Preparing search index...

    Variable SECURITY_LEVELSConst

    SECURITY_LEVELS: Record<string, SecurityLevel> = ...

    Security level enumeration constants.

    Maps friendly constant names to SecurityLevel type values. Use these constants when working with security levels to avoid string literals and improve type safety.

    // Compare security level
    if (currentLevel === SECURITY_LEVELS.HIGH) {
    console.log('High security configured');
    }

    // Set default level
    const [level, setLevel] = useState(SECURITY_LEVELS.MODERATE);