@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kortexya/reasoninglayer",
3
- "version": "0.1.6",
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 -n generated-types.ts --no-client",
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
- "sync-check": "tsx scripts/sync-check.ts",
65
- "generate-manifest": "tsx scripts/generate-route-manifest.ts",
66
- "check-completeness": "tsx scripts/check-completeness.ts",
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
  }