@kortexya/reasoninglayer 0.1.6 → 0.2.2
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 +9 -3
- package/dist/index.cjs +10952 -3680
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +32820 -9092
- package/dist/index.d.ts +32820 -9092
- package/dist/index.js +10952 -3681
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kortexya/reasoninglayer",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "TypeScript client SDK for the Reasoning Layer API",
|
|
6
6
|
"license": "MIT",
|
|
@@ -57,13 +57,13 @@
|
|
|
57
57
|
"format": "prettier --write .",
|
|
58
58
|
"format:check": "prettier --check .",
|
|
59
59
|
"update-api-spec": "node scripts/update-api-spec.js",
|
|
60
|
-
"generate-api-types": "npx swagger-typescript-api generate -p api-spec/openapi.json -o api-spec -
|
|
60
|
+
"generate-api-types": "npx swagger-typescript-api generate -p api-spec/openapi.json -o src/api-spec/generated --modular --module-name-first-tag --generate-union-enums --sort-types --sort-routes --single-http-client --clean-output",
|
|
61
61
|
"docs:typedoc": "typedoc && node scripts/add-typedoc-frontmatter.js",
|
|
62
62
|
"docs:dev": "cd docs && pnpm dev",
|
|
63
63
|
"docs:build": "pnpm run docs:typedoc && cd docs && pnpm build",
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
64
|
+
"test:ci": "pnpm run typecheck && pnpm run lint && pnpm run test",
|
|
65
|
+
"capture-fixtures": "tsx scripts/capture-fixtures.ts",
|
|
66
|
+
"test:contract": "vitest run --config vitest.config.contract.ts",
|
|
67
67
|
"release": "bash scripts/release.sh"
|
|
68
68
|
}
|
|
69
69
|
}
|