Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 | import { SecurityLevel } from "./cia"; /** * Compliance types used throughout the application * * ## Business Perspective * * These types define the core compliance structures used to assess * and report on regulatory alignment. They support compliance officers * in understanding gaps and remediation requirements. 📋 * * @packageDocumentation */ /** * Status of framework compliance */ export type FrameworkComplianceStatusType = | "compliant" | "partially-compliant" | "non-compliant"; /** * Represents a compliance framework definition */ export interface ComplianceFramework { id: string; name: string; description: string; status: string; requiredAvailabilityLevel: SecurityLevel; requiredIntegrityLevel: SecurityLevel; requiredConfidentialityLevel: SecurityLevel; applicableIndustries?: string[]; applicableRegions?: string[]; requirements?: string[]; } /** * Represents the overall compliance status */ export interface ComplianceStatusDetails { // Required properties status: string; compliantFrameworks: string[]; partiallyCompliantFrameworks: string[]; nonCompliantFrameworks: string[]; frameworks?: ComplianceFramework[]; // Optional properties remediationSteps?: string[]; requirements?: string[]; complianceScore: number; // Optional status text for display statusText?: string; // For interface compatibility frameworkName?: string; findings?: string[]; metRequirements?: string[]; unmetRequirements?: string[]; recommendations?: string[]; } // Alias ComplianceStatus to ComplianceStatusDetails for backward compatibility export type ComplianceStatus = ComplianceStatusDetails; /** * Industry or region specific applicability options */ export interface FrameworkApplicabilityOptions { industries?: string[]; regions?: string[]; processesPersonalData: boolean; industry: string; companySize: "small" | "medium" | "large"; dataTypes: string[]; } /** * Interface for compliance gap analysis */ export interface ComplianceGapAnalysis { /** * Whether the organization is compliant with the framework */ isCompliant: boolean; /** * List of compliance gaps by framework */ gaps: ComplianceGap[]; /** * Recommendations for addressing compliance gaps */ recommendations: string[]; /** * Overall compliance status text */ overallStatus?: string; /** * Compliance score (0-100) */ complianceScore?: number; } /** * Interface for individual compliance gap */ export interface ComplianceGap { /** * Framework name */ framework: string; /** * Framework description */ frameworkDescription: string; /** * Component-specific gap details */ components: { availability: { current: SecurityLevel; required: SecurityLevel; gap: number; }; integrity: { current: SecurityLevel; required: SecurityLevel; gap: number; }; confidentiality: { current: SecurityLevel; required: SecurityLevel; gap: number; }; }; /** * Recommendations for addressing this gap */ recommendations: string[]; } /** * Details about compliance status for a specific framework */ export interface ComplianceFrameworkStatusDetails { /** Name of the framework */ frameworkName: string; /** Current compliance status */ status: string; /** List of findings or gaps */ findings: string[]; /** List of requirements that are met */ metRequirements: string[]; /** List of requirements that are not met */ unmetRequirements: string[]; /** Recommendations for achieving compliance */ recommendations: string[]; } /** * Status of compliance with a specific framework */ export interface FrameworkComplianceStatus { /** Name of the framework */ name: string; /** Whether the framework applies */ applicable: boolean; /** Current compliance status */ status: "Compliant" | "Partially Compliant" | "Non-Compliant"; /** Percentage of requirements met */ compliancePercentage: number; /** Key gaps in compliance */ complianceGaps: string[]; /** Required security level to satisfy the framework */ requiredSecurityLevel: SecurityLevel; } /** * Security metrics for visualization from compliance perspective */ export interface ComplianceSecurityMetrics { /** Confidentiality score (0-100) */ confidentiality: number; /** Integrity score (0-100) */ integrity: number; /** Availability score (0-100) */ availability: number; /** Monitoring capabilities score (0-100) */ monitoring: number; /** Resilience score (0-100) */ resilience: number; /** Compliance score (0-100) */ compliance: number; /** Overall security score (0-100) */ overallScore: number; /** Industry benchmark score for comparison */ benchmarkScore: number; /** Security maturity level */ securityMaturity: string; } |