@kortexya/reasoninglayer 1.4.0 → 1.6.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/README.md +8 -4
- package/dist/index.cjs +5582 -3348
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4055 -63
- package/dist/index.d.ts +4055 -63
- package/dist/index.js +5576 -3349
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -245,17 +245,21 @@ pnpm run build # Build (dual ESM/CJS + .d.ts)
|
|
|
245
245
|
pnpm run typecheck # Type check (tsc --noEmit)
|
|
246
246
|
pnpm test # Run tests
|
|
247
247
|
pnpm run test:watch # Watch mode
|
|
248
|
-
pnpm run
|
|
249
|
-
pnpm run
|
|
250
|
-
pnpm run
|
|
248
|
+
pnpm run lint # Lint (eslint src/ tests/)
|
|
249
|
+
pnpm run test:ci # Full gate: typecheck + lint + test
|
|
250
|
+
pnpm run update-api-spec [url] # Fetch backend OpenAPI spec + regenerate src/api-spec/generated/
|
|
251
251
|
pnpm run docs:build # Build documentation site
|
|
252
252
|
```
|
|
253
253
|
|
|
254
|
+
> After a backend API change, run the `/sync-api` Claude Code skill to regenerate the
|
|
255
|
+
> generated layer and propagate the delta across the hand-written types, normalizers,
|
|
256
|
+
> resources, builders, client wiring, exports, and tests.
|
|
257
|
+
|
|
254
258
|
## Compatibility
|
|
255
259
|
|
|
256
260
|
| SDK Version | Min Backend Version | Node | Browser |
|
|
257
261
|
|-------------|-------------------|------|---------|
|
|
258
|
-
|
|
|
262
|
+
| 1.4.0 | Latest | 18+ | ES2022+ |
|
|
259
263
|
|
|
260
264
|
## License
|
|
261
265
|
|