@lov3kaizen/agentsea-redteam 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/LICENSE +21 -0
  2. package/dist/attack.types-BK8Qc_Bl.d.ts +82 -0
  3. package/dist/attacks/index.d.ts +186 -0
  4. package/dist/attacks/index.js +1847 -0
  5. package/dist/attacks/index.js.map +1 -0
  6. package/dist/audit/index.d.ts +22 -0
  7. package/dist/audit/index.js +15 -0
  8. package/dist/audit/index.js.map +1 -0
  9. package/dist/audit.types-BiWJxaod.d.ts +215 -0
  10. package/dist/benchmark.types-COcarrIj.d.ts +147 -0
  11. package/dist/benchmarks/index.d.ts +10 -0
  12. package/dist/benchmarks/index.js +11 -0
  13. package/dist/benchmarks/index.js.map +1 -0
  14. package/dist/compliance/index.d.ts +9 -0
  15. package/dist/compliance/index.js +10 -0
  16. package/dist/compliance/index.js.map +1 -0
  17. package/dist/compliance.types-CAnQxiA-.d.ts +187 -0
  18. package/dist/continuous/index.d.ts +21 -0
  19. package/dist/continuous/index.js +18 -0
  20. package/dist/continuous/index.js.map +1 -0
  21. package/dist/continuous.types-Btw2YvvR.d.ts +588 -0
  22. package/dist/core/index.d.ts +363 -0
  23. package/dist/core/index.js +1456 -0
  24. package/dist/core/index.js.map +1 -0
  25. package/dist/detection/index.d.ts +29 -0
  26. package/dist/detection/index.js +309 -0
  27. package/dist/detection/index.js.map +1 -0
  28. package/dist/detection.types-D_TDuLBo.d.ts +170 -0
  29. package/dist/index.d.ts +21 -0
  30. package/dist/index.js +5011 -0
  31. package/dist/index.js.map +1 -0
  32. package/dist/integrations/index.d.ts +41 -0
  33. package/dist/integrations/index.js +23 -0
  34. package/dist/integrations/index.js.map +1 -0
  35. package/dist/scanning/index.d.ts +80 -0
  36. package/dist/scanning/index.js +1351 -0
  37. package/dist/scanning/index.js.map +1 -0
  38. package/dist/types/index.d.ts +204 -0
  39. package/dist/types/index.js +3 -0
  40. package/dist/types/index.js.map +1 -0
  41. package/package.json +104 -0
@@ -0,0 +1,147 @@
1
+ import { S as Severity } from './attack.types-BK8Qc_Bl.js';
2
+
3
+ type BenchmarkId = 'harmbench' | 'truthfulqa' | 'bbq' | 'toxicchat' | 'realtoxicity' | 'winobias' | 'crowspairs' | 'adversarial_nlp' | 'custom';
4
+ type BenchmarkCategory = 'safety' | 'truthfulness' | 'bias' | 'toxicity' | 'fairness' | 'robustness' | 'security' | 'custom';
5
+ interface Benchmark {
6
+ id: string;
7
+ name: string;
8
+ description: string;
9
+ category: BenchmarkCategory;
10
+ version: string;
11
+ source?: string;
12
+ citation?: string;
13
+ items: BenchmarkItem[];
14
+ scoring: ScoringConfig;
15
+ metadata?: Record<string, unknown>;
16
+ }
17
+ interface BenchmarkItem {
18
+ id: string;
19
+ input: string;
20
+ expectedCategories?: string[];
21
+ groundTruth?: string;
22
+ category?: string;
23
+ subcategory?: string;
24
+ difficulty?: 'easy' | 'medium' | 'hard';
25
+ tags?: string[];
26
+ context?: Record<string, unknown>;
27
+ }
28
+ interface ScoringConfig {
29
+ method: 'binary' | 'scale' | 'multi_label' | 'custom';
30
+ scaleRange?: {
31
+ min: number;
32
+ max: number;
33
+ };
34
+ labels?: string[];
35
+ passingThreshold: number;
36
+ aggregation: 'mean' | 'median' | 'weighted' | 'custom';
37
+ weights?: Record<string, number>;
38
+ customScorer?: string;
39
+ }
40
+ interface BenchmarkResult {
41
+ benchmark: Benchmark;
42
+ overallScore: number;
43
+ passed: boolean;
44
+ itemResults: BenchmarkItemResult[];
45
+ categoryScores: Record<string, CategoryScore>;
46
+ statistics: BenchmarkStatistics;
47
+ runMetadata: BenchmarkRunMetadata;
48
+ }
49
+ interface BenchmarkItemResult {
50
+ item: BenchmarkItem;
51
+ score: number;
52
+ passed: boolean;
53
+ response: string;
54
+ detectedCategories?: string[];
55
+ confidenceScores?: Record<string, number>;
56
+ processingTimeMs: number;
57
+ error?: string;
58
+ }
59
+ interface CategoryScore {
60
+ category: string;
61
+ score: number;
62
+ itemCount: number;
63
+ passed: number;
64
+ failed: number;
65
+ }
66
+ interface BenchmarkStatistics {
67
+ totalItems: number;
68
+ itemsPassed: number;
69
+ itemsFailed: number;
70
+ itemsErrored: number;
71
+ passRate: number;
72
+ meanScore: number;
73
+ medianScore: number;
74
+ stdDev: number;
75
+ minScore: number;
76
+ maxScore: number;
77
+ percentile95: number;
78
+ }
79
+ interface BenchmarkRunMetadata {
80
+ runId: string;
81
+ startTime: number;
82
+ endTime: number;
83
+ durationMs: number;
84
+ model?: string;
85
+ modelParams?: Record<string, unknown>;
86
+ environment?: string;
87
+ context?: Record<string, unknown>;
88
+ }
89
+ interface BenchmarkConfig {
90
+ benchmarks: string[];
91
+ sampleSize?: number;
92
+ seed?: number;
93
+ includeCategories?: string[];
94
+ excludeCategories?: string[];
95
+ itemTimeout?: number;
96
+ parallel?: boolean;
97
+ maxParallel?: number;
98
+ customScorers?: Record<string, CustomScorer>;
99
+ onProgress?: (progress: BenchmarkProgress) => void;
100
+ }
101
+ type CustomScorer = (item: BenchmarkItem, response: string, context?: Record<string, unknown>) => Promise<number>;
102
+ interface BenchmarkProgress {
103
+ benchmarkId: string;
104
+ currentItem: number;
105
+ totalItems: number;
106
+ percentage: number;
107
+ currentScore: number;
108
+ elapsedMs: number;
109
+ }
110
+ interface HarmBenchItem extends BenchmarkItem {
111
+ harmCategory: HarmCategory;
112
+ harmSeverity: Severity;
113
+ attackType?: string;
114
+ }
115
+ type HarmCategory = 'violence' | 'hate_speech' | 'sexual_content' | 'self_harm' | 'illegal_activity' | 'misinformation' | 'malware' | 'privacy_violation' | 'discrimination' | 'other';
116
+ interface TruthfulQAItem extends BenchmarkItem {
117
+ questionType: TruthfulQAType;
118
+ correctAnswers: string[];
119
+ incorrectAnswers: string[];
120
+ misconceptionSource?: string;
121
+ }
122
+ type TruthfulQAType = 'adversarial' | 'misconception' | 'conspiracy' | 'superstition' | 'fiction' | 'paranormal' | 'indexical' | 'other';
123
+ interface BBQItem extends BenchmarkItem {
124
+ biasCategory: BiasCategory;
125
+ contextCondition: 'ambiguous' | 'disambiguated';
126
+ targetGroup?: string;
127
+ stereotypedAnswer?: string;
128
+ antiStereotypedAnswer?: string;
129
+ }
130
+ type BiasCategory = 'age' | 'disability' | 'gender' | 'nationality' | 'physical_appearance' | 'race_ethnicity' | 'religion' | 'sexual_orientation' | 'socioeconomic_status' | 'other';
131
+ interface BenchmarkComparison {
132
+ benchmarks: string[];
133
+ results: BenchmarkResult[];
134
+ comparison: {
135
+ scoreDelta: number;
136
+ trend: 'improved' | 'regressed' | 'stable';
137
+ significant: boolean;
138
+ pValue?: number;
139
+ biggestChanges: Array<{
140
+ category: string;
141
+ delta: number;
142
+ direction: 'improved' | 'regressed';
143
+ }>;
144
+ };
145
+ }
146
+
147
+ export type { BenchmarkId as B, CategoryScore as C, HarmBenchItem as H, ScoringConfig as S, TruthfulQAItem as T, BenchmarkCategory as a, Benchmark as b, BenchmarkItem as c, BenchmarkResult as d, BenchmarkItemResult as e, BenchmarkStatistics as f, BenchmarkRunMetadata as g, BenchmarkConfig as h, CustomScorer as i, BenchmarkProgress as j, HarmCategory as k, TruthfulQAType as l, BBQItem as m, BiasCategory as n, BenchmarkComparison as o };
@@ -0,0 +1,10 @@
1
+ export { m as BBQItem, b as Benchmark, a as BenchmarkCategory, o as BenchmarkComparison, h as BenchmarkConfig, B as BenchmarkId, c as BenchmarkItem, e as BenchmarkItemResult, j as BenchmarkProgress, d as BenchmarkResult, f as BenchmarkStatistics, n as BiasCategory, H as HarmBenchItem, k as HarmCategory, S as ScoringConfig, T as TruthfulQAItem, l as TruthfulQAType } from '../benchmark.types-COcarrIj.js';
2
+ import '../attack.types-BK8Qc_Bl.js';
3
+
4
+ declare class SafetyBenchmark {
5
+ readonly id: string;
6
+ readonly name: string;
7
+ constructor(id: string, name: string);
8
+ }
9
+
10
+ export { SafetyBenchmark };
@@ -0,0 +1,11 @@
1
+ // src/benchmarks/index.ts
2
+ var SafetyBenchmark = class {
3
+ constructor(id, name) {
4
+ this.id = id;
5
+ this.name = name;
6
+ }
7
+ };
8
+
9
+ export { SafetyBenchmark };
10
+ //# sourceMappingURL=index.js.map
11
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/benchmarks/index.ts"],"names":[],"mappings":";AAgCO,IAAM,kBAAN,MAAsB;AAAA,EAC3B,WAAA,CACkB,IACA,IAAA,EAChB;AAFgB,IAAA,IAAA,CAAA,EAAA,GAAA,EAAA;AACA,IAAA,IAAA,CAAA,IAAA,GAAA,IAAA;AAAA,EACf;AACL","file":"index.js","sourcesContent":["/**\n * Benchmarks Module - Safety Benchmarks\n *\n * Standardized safety benchmarks for evaluating AI systems\n * including HarmBench, TruthfulQA, BBQ, and ToxicChat.\n */\n\n// Re-export types\nexport type {\n Benchmark,\n BenchmarkId,\n BenchmarkCategory,\n BenchmarkItem,\n BenchmarkResult,\n BenchmarkItemResult,\n BenchmarkConfig,\n BenchmarkProgress,\n BenchmarkStatistics,\n ScoringConfig,\n HarmBenchItem,\n HarmCategory,\n TruthfulQAItem,\n TruthfulQAType,\n BBQItem,\n BiasCategory,\n BenchmarkComparison,\n} from '../types/benchmark.types.js';\n\n/**\n * Placeholder for SafetyBenchmark implementation\n * TODO: Implement full benchmark runner\n */\nexport class SafetyBenchmark {\n constructor(\n public readonly id: string,\n public readonly name: string,\n ) {}\n}\n"]}
@@ -0,0 +1,9 @@
1
+ export { d as ComplianceCategory, e as ComplianceCheckResult, l as ComplianceConfig, h as ComplianceFinding, b as ComplianceFramework, C as ComplianceFrameworkId, m as ComplianceProgress, i as ComplianceRecommendation, o as ComplianceReport, c as ComplianceRequirement, a as ComplianceStatus, p as ComplianceTrend, n as EUAIActRequirement, E as Evidence, j as EvidenceType, I as ISO42001Requirement, N as NISTRMFRequirement, O as OWASPLLMRequirement, R as RiskLevel, S as SOC2AIRequirement } from '../compliance.types-CAnQxiA-.js';
2
+ import '../attack.types-BK8Qc_Bl.js';
3
+
4
+ declare class ComplianceChecker {
5
+ readonly frameworkId: string;
6
+ constructor(frameworkId: string);
7
+ }
8
+
9
+ export { ComplianceChecker };
@@ -0,0 +1,10 @@
1
+ // src/compliance/index.ts
2
+ var ComplianceChecker = class {
3
+ constructor(frameworkId) {
4
+ this.frameworkId = frameworkId;
5
+ }
6
+ };
7
+
8
+ export { ComplianceChecker };
9
+ //# sourceMappingURL=index.js.map
10
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/compliance/index.ts"],"names":[],"mappings":";AAmCO,IAAM,oBAAN,MAAwB;AAAA,EAC7B,YAA4B,WAAA,EAAqB;AAArB,IAAA,IAAA,CAAA,WAAA,GAAA,WAAA;AAAA,EAAsB;AACpD","file":"index.js","sourcesContent":["/**\n * Compliance Module - Regulatory Compliance\n *\n * Compliance checking against frameworks like EU AI Act,\n * NIST AI RMF, ISO 42001, SOC 2 AI, and OWASP LLM Top 10.\n */\n\n// Re-export types\nexport type {\n ComplianceFramework,\n ComplianceFrameworkId,\n ComplianceStatus,\n ComplianceRequirement,\n ComplianceCheckResult,\n ComplianceConfig,\n ComplianceProgress,\n ComplianceFinding,\n ComplianceRecommendation,\n ComplianceCategory,\n ComplianceReport,\n ComplianceTrend,\n RiskLevel,\n Evidence,\n EvidenceType,\n EUAIActRequirement,\n NISTRMFRequirement,\n ISO42001Requirement,\n SOC2AIRequirement,\n OWASPLLMRequirement,\n} from '../types/compliance.types.js';\n\n/**\n * Placeholder for ComplianceChecker implementation\n * TODO: Implement full compliance checker\n */\nexport class ComplianceChecker {\n constructor(public readonly frameworkId: string) {}\n}\n"]}
@@ -0,0 +1,187 @@
1
+ import { S as Severity } from './attack.types-BK8Qc_Bl.js';
2
+
3
+ type ComplianceFrameworkId = 'eu_ai_act' | 'nist_ai_rmf' | 'iso_42001' | 'soc2_ai' | 'hipaa_ai' | 'gdpr_ai' | 'ccpa_ai' | 'owasp_llm' | 'custom';
4
+ type ComplianceStatus = 'compliant' | 'non_compliant' | 'partially_compliant' | 'not_applicable' | 'not_evaluated';
5
+ type RiskLevel = 'unacceptable' | 'high' | 'limited' | 'minimal';
6
+ interface ComplianceFramework {
7
+ id: string;
8
+ name: string;
9
+ version: string;
10
+ description: string;
11
+ authority?: string;
12
+ effectiveDate?: string;
13
+ requirements: ComplianceRequirement[];
14
+ categories: ComplianceCategory[];
15
+ documentationUrl?: string;
16
+ metadata?: Record<string, unknown>;
17
+ }
18
+ interface ComplianceRequirement {
19
+ id: string;
20
+ name: string;
21
+ description: string;
22
+ category: string;
23
+ severity: Severity;
24
+ riskLevel?: RiskLevel;
25
+ mandatory: boolean;
26
+ verificationMethod: VerificationMethod;
27
+ testIds?: string[];
28
+ evidenceRequired?: string[];
29
+ reference?: string;
30
+ subRequirements?: ComplianceRequirement[];
31
+ }
32
+ type VerificationMethod = 'automated_test' | 'manual_review' | 'documentation_review' | 'interview' | 'observation' | 'log_analysis' | 'penetration_test' | 'code_review' | 'combined';
33
+ interface ComplianceCategory {
34
+ id: string;
35
+ name: string;
36
+ description: string;
37
+ weight: number;
38
+ parentId?: string;
39
+ }
40
+ interface ComplianceCheckResult {
41
+ framework: ComplianceFramework;
42
+ status: ComplianceStatus;
43
+ score: number;
44
+ requirementResults: RequirementResult[];
45
+ categoryScores: Record<string, CategoryComplianceScore>;
46
+ findings: ComplianceFinding[];
47
+ recommendations: ComplianceRecommendation[];
48
+ metadata: ComplianceRunMetadata;
49
+ }
50
+ interface RequirementResult {
51
+ requirement: ComplianceRequirement;
52
+ status: ComplianceStatus;
53
+ evidence: Evidence[];
54
+ notes?: string;
55
+ testedAt: number;
56
+ testedBy?: string;
57
+ }
58
+ interface CategoryComplianceScore {
59
+ category: string;
60
+ score: number;
61
+ status: ComplianceStatus;
62
+ totalRequirements: number;
63
+ compliantRequirements: number;
64
+ }
65
+ interface ComplianceFinding {
66
+ id: string;
67
+ title: string;
68
+ description: string;
69
+ severity: Severity;
70
+ requirementIds: string[];
71
+ status: 'open' | 'in_progress' | 'resolved' | 'accepted_risk';
72
+ evidence?: Evidence[];
73
+ remediation?: string;
74
+ dueDate?: string;
75
+ assignedTo?: string;
76
+ createdAt: number;
77
+ updatedAt: number;
78
+ }
79
+ interface ComplianceRecommendation {
80
+ id: string;
81
+ title: string;
82
+ description: string;
83
+ priority: 'critical' | 'high' | 'medium' | 'low';
84
+ requirementIds: string[];
85
+ effortEstimate?: 'minimal' | 'moderate' | 'significant' | 'extensive';
86
+ impact?: string;
87
+ resources?: string[];
88
+ }
89
+ interface Evidence {
90
+ id: string;
91
+ type: EvidenceType;
92
+ title: string;
93
+ description?: string;
94
+ content: string;
95
+ filePath?: string;
96
+ collectedAt: number;
97
+ collectedBy?: string;
98
+ hash?: string;
99
+ }
100
+ type EvidenceType = 'test_result' | 'log_entry' | 'screenshot' | 'document' | 'configuration' | 'code_snippet' | 'api_response' | 'audit_log' | 'interview_notes' | 'custom';
101
+ interface ComplianceRunMetadata {
102
+ runId: string;
103
+ startTime: number;
104
+ endTime: number;
105
+ durationMs: number;
106
+ environment?: string;
107
+ auditor?: string;
108
+ scope?: string;
109
+ notes?: string;
110
+ }
111
+ interface ComplianceConfig {
112
+ frameworks: string[];
113
+ requirementIds?: string[];
114
+ includeCategories?: string[];
115
+ excludeCategories?: string[];
116
+ mandatoryOnly?: boolean;
117
+ riskLevels?: RiskLevel[];
118
+ generateRecommendations?: boolean;
119
+ collectEvidence?: boolean;
120
+ evidencePath?: string;
121
+ onProgress?: (progress: ComplianceProgress) => void;
122
+ }
123
+ interface ComplianceProgress {
124
+ frameworkId: string;
125
+ currentRequirement: number;
126
+ totalRequirements: number;
127
+ percentage: number;
128
+ currentStatus: ComplianceStatus;
129
+ }
130
+ interface EUAIActRequirement extends ComplianceRequirement {
131
+ article: string;
132
+ annex?: string;
133
+ riskLevel: RiskLevel;
134
+ conformityAssessmentRequired: boolean;
135
+ registrationRequired: boolean;
136
+ }
137
+ interface NISTRMFRequirement extends ComplianceRequirement {
138
+ function: 'govern' | 'map' | 'measure' | 'manage';
139
+ categoryCode: string;
140
+ subcategoryCode?: string;
141
+ suggestedActions?: string[];
142
+ }
143
+ interface ISO42001Requirement extends ComplianceRequirement {
144
+ clause: string;
145
+ controlObjective?: string;
146
+ controlType: 'preventive' | 'detective' | 'corrective';
147
+ }
148
+ interface SOC2AIRequirement extends ComplianceRequirement {
149
+ trustServiceCategory: 'security' | 'availability' | 'processing_integrity' | 'confidentiality' | 'privacy';
150
+ controlNumber: string;
151
+ pointsOfFocus?: string[];
152
+ }
153
+ interface OWASPLLMRequirement extends ComplianceRequirement {
154
+ owaspId: string;
155
+ vulnerabilityName: string;
156
+ attackVectors?: string[];
157
+ preventionStrategies?: string[];
158
+ }
159
+ interface ComplianceReport {
160
+ id: string;
161
+ title: string;
162
+ generatedAt: number;
163
+ period?: {
164
+ start: number;
165
+ end: number;
166
+ };
167
+ executiveSummary: string;
168
+ frameworkResults: ComplianceCheckResult[];
169
+ overallScore: number;
170
+ overallStatus: ComplianceStatus;
171
+ keyFindings: ComplianceFinding[];
172
+ prioritizedRecommendations: ComplianceRecommendation[];
173
+ trendComparison?: ComplianceTrend;
174
+ format: 'json' | 'pdf' | 'html' | 'markdown';
175
+ }
176
+ interface ComplianceTrend {
177
+ previousScore: number;
178
+ currentScore: number;
179
+ change: number;
180
+ direction: 'improved' | 'declined' | 'stable';
181
+ history: Array<{
182
+ date: number;
183
+ score: number;
184
+ }>;
185
+ }
186
+
187
+ export type { ComplianceFrameworkId as C, Evidence as E, ISO42001Requirement as I, NISTRMFRequirement as N, OWASPLLMRequirement as O, RiskLevel as R, SOC2AIRequirement as S, VerificationMethod as V, ComplianceStatus as a, ComplianceFramework as b, ComplianceRequirement as c, ComplianceCategory as d, ComplianceCheckResult as e, RequirementResult as f, CategoryComplianceScore as g, ComplianceFinding as h, ComplianceRecommendation as i, EvidenceType as j, ComplianceRunMetadata as k, ComplianceConfig as l, ComplianceProgress as m, EUAIActRequirement as n, ComplianceReport as o, ComplianceTrend as p };
@@ -0,0 +1,21 @@
1
+ export { a5 as Alert, U as AlertChannel, W as AlertChannelConfig, Y as AlertCondition, Q as AlertConfig, _ as AlertGrouping, X as AlertRule, K as AlertSeverity, L as ContinuousTestingConfig, aa as DashboardSummary, a0 as EscalationLevel, $ as EscalationPolicy, a2 as FailThreshold, a8 as HistoricalMetrics, a9 as MetricDataPoint, a6 as NotificationRecord, Z as QuietHours, a1 as RetentionConfig, J as RunStatus, a4 as RunSummary, M as ScheduleConfig, I as ScheduleFrequency, a7 as ScheduleStatus, a3 as TestRun, O as TriggerCondition, N as TriggerConfig } from '../continuous.types-Btw2YvvR.js';
2
+ import '../attack.types-BK8Qc_Bl.js';
3
+ import '../benchmark.types-COcarrIj.js';
4
+ import '../compliance.types-CAnQxiA-.js';
5
+
6
+ declare class ContinuousTesting {
7
+ readonly config: {
8
+ enabled: boolean;
9
+ };
10
+ constructor(config: {
11
+ enabled: boolean;
12
+ });
13
+ }
14
+ declare class Scheduler {
15
+ constructor();
16
+ }
17
+ declare class AlertManager {
18
+ constructor();
19
+ }
20
+
21
+ export { AlertManager, ContinuousTesting, Scheduler };
@@ -0,0 +1,18 @@
1
+ // src/continuous/index.ts
2
+ var ContinuousTesting = class {
3
+ constructor(config) {
4
+ this.config = config;
5
+ }
6
+ };
7
+ var Scheduler = class {
8
+ constructor() {
9
+ }
10
+ };
11
+ var AlertManager = class {
12
+ constructor() {
13
+ }
14
+ };
15
+
16
+ export { AlertManager, ContinuousTesting, Scheduler };
17
+ //# sourceMappingURL=index.js.map
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/continuous/index.ts"],"names":[],"mappings":";AAyCO,IAAM,oBAAN,MAAwB;AAAA,EAC7B,YAA4B,MAAA,EAA8B;AAA9B,IAAA,IAAA,CAAA,MAAA,GAAA,MAAA;AAAA,EAA+B;AAC7D;AAMO,IAAM,YAAN,MAAgB;AAAA,EACrB,WAAA,GAAc;AAAA,EAAC;AACjB;AAMO,IAAM,eAAN,MAAmB;AAAA,EACxB,WAAA,GAAc;AAAA,EAAC;AACjB","file":"index.js","sourcesContent":["/**\n * Continuous Module - Continuous Testing\n *\n * Continuous security testing with scheduling, alerting,\n * and integration with CI/CD pipelines.\n */\n\n// Re-export types\nexport type {\n ContinuousTestingConfig,\n ScheduleConfig,\n ScheduleFrequency,\n TriggerConfig,\n TriggerCondition,\n AlertConfig,\n AlertChannel,\n AlertChannelConfig,\n AlertRule,\n AlertCondition,\n QuietHours,\n AlertGrouping,\n EscalationPolicy,\n EscalationLevel,\n RetentionConfig,\n FailThreshold,\n TestRun,\n RunStatus,\n RunSummary,\n Alert,\n AlertSeverity,\n NotificationRecord,\n ScheduleStatus,\n HistoricalMetrics,\n MetricDataPoint,\n DashboardSummary,\n} from '../types/continuous.types.js';\n\n/**\n * Placeholder for ContinuousTesting implementation\n * TODO: Implement full continuous testing runner\n */\nexport class ContinuousTesting {\n constructor(public readonly config: { enabled: boolean }) {}\n}\n\n/**\n * Placeholder for Scheduler implementation\n * TODO: Implement full scheduler\n */\nexport class Scheduler {\n constructor() {}\n}\n\n/**\n * Placeholder for AlertManager implementation\n * TODO: Implement full alert manager\n */\nexport class AlertManager {\n constructor() {}\n}\n"]}