All files / src/types securityResources.ts

0% Statements 0/0
0% Branches 1/1
0% Functions 1/1
0% Lines 0/0

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                                                                                                                                                                                                                                                                                                                                                                                     
import { SecurityLevel } from "./cia";
import { CIAComponentType } from "./cia-services";
 
/**
 * Security resource type definitions
 */
 
/**
 * Security resource interface
 */
export interface SecurityResource {
  /**
   * Resource ID
   */
  id: string;
 
  /**
   * Resource title
   */
  title: string;
 
  /**
   * Resource URL
   */
  url: string;
 
  /**
   * Resource description
   */
  description?: string;
 
  /**
   * Resource type or category
   */
  type?: string;
 
  /**
   * Resource tags
   */
  tags?: string[];
 
  /**
   * CIA component relevance
   */
  component?: "availability" | "integrity" | "confidentiality" | "general";
 
  /**
   * Security level relevance
   */
  level?: string;
 
  /**
   * Resource source/provider
   */
  source?: string;
 
  /**
   * Resource category
   */
  category?: string;
 
  /**
   * Resource priority/relevance score (0-100)
   */
  priority?: number;
 
  /**
   * Security levels this resource applies to
   */
  securityLevels?: string[];
 
  /**
   * Components this resource applies to (multiple possible)
   */
  components?: string[];
 
  /**
   * Levels this resource is relevant for
   */
  relevantLevels?: string[];
 
  /**
   * Format of the resource (e.g., PDF, Website, Video)
   */
  format?: string;
 
  /**
   * Resource relevance score
   */
  relevance?: number;
 
  /**
   * Implementation complexity (1-5)
   */
  complexity?: number;
 
  /**
   * Whether the resource is premium/paid
   */
  isPremium?: boolean;
}
 
/**
 * Filter options for security resources
 */
export interface SecurityResourceFilter {
  /**
   * Filter by CIA component
   */
  component?: CIAComponentType | string;
 
  /**
   * Filter by security level
   */
  securityLevel?: SecurityLevel | string;
 
  /**
   * Filter by resource type (Documentation, Tool, etc.)
   */
  type?: string;
 
  /**
   * Text search query
   */
  searchQuery?: string;
 
  /**
   * Filter by tags
   */
  tags?: string[];
 
  /**
   * Whether to include premium resources
   */
  includePremium?: boolean;
 
  /**
   * Maximum complexity level (1-5)
   */
  maxComplexity?: number;
 
  /**
   * Minimum rating (0-5)
   */
  minRating?: number;
}
 
/**
 * Type for a security resource category
 */
export interface ResourceCategory {
  /**
   * Category identifier
   */
  id: string;
 
  /**
   * Category name
   */
  name: string;
 
  /**
   * Category description
   */
  description: string;
 
  /**
   * Category icon
   */
  icon?: string;
}
 
/**
 * Enhanced security resource with additional properties for internal use
 */
export interface EnhancedSecurityResource extends SecurityResource {
  /**
   * Relevance score for sorting purposes (0-100)
   */
  relevance?: number;
 
  /**
   * Computed score based on match criteria
   */
  score?: number;
}