specshield 1.0.10 → 1.0.12

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/README.md CHANGED
@@ -192,7 +192,13 @@ Track API drift over time across your entire platform. Know what changed, when,
192
192
 
193
193
  ## 🎥 Demo
194
194
 
195
- ![SpecShield CLI Demo](demo/specshield-demo.gif)
195
+ [![SpecShield Demo — API Breaking Change Detection & Contract Testing](https://img.youtube.com/vi/mugDyQQGqZw/maxresdefault.jpg)](https://www.youtube.com/watch?v=mugDyQQGqZw)
196
+
197
+ > Watch: Catching a breaking API change before it hits production — compare specs, publish contracts, verify providers, and gate deployments with `can-i-deploy`.
198
+
199
+ **CLI preview:**
200
+
201
+ ![SpecShield CLI Demo](https://raw.githubusercontent.com/specshield26/specshield-cli/main/demo/specshield-demo.gif)
196
202
 
197
203
  > `specshield compare payment-api-v1.yaml payment-api-v2.yaml --fail-on-breaking`
198
204
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "specshield",
3
- "version": "1.0.10",
3
+ "version": "1.0.12",
4
4
  "description": "CLI to compare OpenAPI/Swagger specs and detect breaking changes for CI/CD pipelines and local developer workflows.",
5
5
  "main": "src/cli.js",
6
6
  "bin": {
@@ -366,7 +366,7 @@ const verifyCommand = new Command('verify')
366
366
  return;
367
367
  }
368
368
 
369
- const summary = result.summary || {};
369
+ const summary = result.resultSummary || result.summary || {};
370
370
  const total = summary.total ?? 0;
371
371
  const passed = summary.passed ?? 0;
372
372
  const failed = summary.failed ?? 0;