micro-contracts 0.17.9 → 0.17.11

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.
@@ -2,7 +2,7 @@
2
2
 
3
3
  Contract-first OpenAPI toolchain for TypeScript Web/API systems. Generates contract packages, server routes, and frontend clients from OpenAPI specifications with enforceable guardrails.
4
4
 
5
- **Version:** 0.15.0
5
+ **Version:** 0.17.10
6
6
 
7
7
  ## Table of Contents
8
8
 
@@ -630,6 +630,7 @@ micro-contracts audit-openapi --show-prompt
630
630
 
631
631
  ```yaml
632
632
  x-agent:
633
+ dsl_task: audit-openapi-design
633
634
  expectedDurationMs: 120000
634
635
  retryableExitCodes:
635
636
  - 12
@@ -698,6 +699,7 @@ micro-contracts review-published --adapter claude --report-format json
698
699
 
699
700
  ```yaml
700
701
  x-agent:
702
+ dsl_task: audit-published-api
701
703
  expectedDurationMs: 120000
702
704
  retryableExitCodes:
703
705
  - 12
@@ -766,6 +768,7 @@ micro-contracts propose-overlays --adapter openai --report-format json
766
768
 
767
769
  ```yaml
768
770
  x-agent:
771
+ dsl_task: propose-overlay-candidates
769
772
  expectedDurationMs: 120000
770
773
  retryableExitCodes:
771
774
  - 12
@@ -831,6 +834,7 @@ micro-contracts audit-guardrails --adapter mock --report-format json
831
834
 
832
835
  ```yaml
833
836
  x-agent:
837
+ dsl_task: audit-guardrails-coverage
834
838
  expectedDurationMs: 120000
835
839
  retryableExitCodes:
836
840
  - 12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "micro-contracts",
3
- "version": "0.17.9",
3
+ "version": "0.17.11",
4
4
  "description": "Contract-first OpenAPI toolchain that keeps TypeScript UI and microservices aligned via code generation",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -81,7 +81,7 @@
81
81
  "esbuild": "^0.28.0",
82
82
  "glob": "^10.3.10",
83
83
  "handlebars": "^4.7.8",
84
- "js-yaml": "^4.1.0",
84
+ "js-yaml": "^4.1.2",
85
85
  "tsx": "^4.7.0",
86
86
  "typescript": "^5.3.3",
87
87
  "vitest": "^4.1.7",
@@ -90,5 +90,8 @@
90
90
  },
91
91
  "engines": {
92
92
  "node": ">=18.0.0"
93
+ },
94
+ "overrides": {
95
+ "js-yaml": "^4.1.2"
93
96
  }
94
97
  }