@kortexya/reasoninglayer 1.26.0 → 1.28.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 +51 -30
- package/dist/index.cjs +5271 -1375
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +11844 -5090
- package/dist/index.d.ts +11844 -5090
- package/dist/index.js +5259 -1376
- package/dist/index.js.map +1 -1
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kortexya/reasoninglayer",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.28.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "TypeScript client SDK for the Reasoning Layer API",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -63,11 +63,12 @@
|
|
|
63
63
|
"docs:typedoc": "typedoc && node scripts/add-typedoc-frontmatter.js",
|
|
64
64
|
"docs:dev": "pnpm run docs:typedoc && cd docs && pnpm dev",
|
|
65
65
|
"docs:build": "pnpm run docs:typedoc && cd docs && pnpm build",
|
|
66
|
-
"test:ci": "pnpm run typecheck && pnpm run lint && pnpm run test",
|
|
66
|
+
"test:ci": "pnpm run typecheck && pnpm run lint && pnpm run check-request-options && pnpm run test",
|
|
67
67
|
"capture-fixtures": "tsx scripts/capture-fixtures.ts",
|
|
68
68
|
"test:contract": "vitest run --config vitest.config.contract.ts",
|
|
69
69
|
"release": "bash scripts/release.sh",
|
|
70
70
|
"check-release-lag": "node scripts/check-release-lag.js",
|
|
71
|
-
"check-spec-drift": "node scripts/check-spec-drift.js"
|
|
71
|
+
"check-spec-drift": "node scripts/check-spec-drift.js",
|
|
72
|
+
"check-request-options": "node scripts/thread-request-options.mjs --check"
|
|
72
73
|
}
|
|
73
74
|
}
|