@zenglobal/api-client 5.0.11 → 5.0.13

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 (2) hide show
  1. package/README.md +0 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -187,7 +187,6 @@ npm run pipeline -- --force
187
187
  ```bash
188
188
  npm run generate # Regenerate SDK only
189
189
  npm run check:breaking # Check for breaking API changes
190
- npm run changelog:generate # Generate changelog entries
191
190
  npm run test # Run tests
192
191
  npm run typecheck # TypeScript type check
193
192
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zenglobal/api-client",
3
- "version": "5.0.11",
3
+ "version": "5.0.13",
4
4
  "description": "TypeScript client for the Zen API v1, generated from the OpenAPI specification",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -34,10 +34,10 @@
34
34
  "generate": "openapi-ts",
35
35
  "build": "tsc",
36
36
  "typecheck": "tsc --noEmit",
37
+ "typecheck:scripts": "tsc -p tsconfig.scripts.json",
37
38
  "test": "vitest run",
38
39
  "test:watch": "vitest",
39
- "check:breaking": "tsx scripts/check-breaking-changes.ts",
40
- "changelog:generate": "tsx scripts/generate-changelog.ts"
40
+ "check:breaking": "tsx scripts/check-breaking-changes.ts"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "ky": ">=1.0.0"
@@ -51,5 +51,5 @@
51
51
  "typescript": "^5.7.0",
52
52
  "vitest": "^4.0.18"
53
53
  },
54
- "zenCompatibility": "131.0.0"
54
+ "zenCompatibility": "132.11.0"
55
55
  }