@company-semantics/contracts 0.29.0 → 0.30.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.29.0",
3
+ "version": "0.30.0",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
@@ -269,30 +269,14 @@ export interface MetaBaselines {
269
269
  *
270
270
  * Design invariant: Product repos must NEVER import CI guard code.
271
271
  * They export baselines; CI injects guards at runtime.
272
+ *
273
+ * Note: Per-file export/import baselines were removed in favor of
274
+ * AggregateEvolutionConfig. See ADR-CI-029.
272
275
  */
273
276
  export interface EvolutionBaselines {
274
277
  /** Source directory (explicit, no assumptions). Defaults to 'src' if omitted. */
275
278
  srcDir?: string;
276
279
 
277
- /** Export count baseline per file. Key is file path relative to srcDir. */
278
- exports?: Record<string, number>;
279
-
280
- /** Import count baseline per file. Key is file path relative to srcDir. */
281
- imports?: Record<string, number>;
282
-
283
- /** File count baseline per domain. Key is domain path. */
284
- domains?: Record<string, number>;
285
-
286
- /** Drift thresholds (optional, guards have sensible defaults) */
287
- thresholds?: {
288
- /** Max allowed export drift before warning */
289
- exportDrift?: number;
290
- /** Max allowed import drift before warning */
291
- importDrift?: number;
292
- /** Max allowed domain file count drift before warning */
293
- domainDrift?: number;
294
- };
295
-
296
280
  /**
297
281
  * Contracts freshness check configuration.
298
282
  * CI injects checkContractsFreshness based on this config.