@company-semantics/contracts 0.83.1 → 0.84.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@company-semantics/contracts",
3
- "version": "0.83.1",
3
+ "version": "0.84.0",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
@@ -170,8 +170,9 @@ export interface VulnerabilityConfig {
170
170
  * - LM: Logging & Monitoring
171
171
  * - SD: Secure SDLC
172
172
  * - BR: Backup & Recovery
173
+ * - AI: Audit Integrity
173
174
  */
174
- export type Soc2ControlArea = 'CM' | 'AC' | 'LM' | 'SD' | 'BR';
175
+ export type Soc2ControlArea = 'CM' | 'AC' | 'LM' | 'SD' | 'BR' | 'AI';
175
176
 
176
177
  /**
177
178
  * Control status semantics:
@@ -196,6 +197,7 @@ export const SOC2_CONTROL_NAMES: Record<Soc2ControlArea, string> = {
196
197
  LM: 'Logging & Monitoring',
197
198
  SD: 'Secure SDLC',
198
199
  BR: 'Backup & Recovery',
200
+ AI: 'Audit Integrity',
199
201
  } as const;
200
202
 
201
203
  /**
@@ -208,6 +210,7 @@ export const REQUIRED_SOC2_CONTROLS: readonly Soc2ControlArea[] = [
208
210
  'LM',
209
211
  'SD',
210
212
  'BR',
213
+ 'AI',
211
214
  ] as const;
212
215
 
213
216
  /**