@veloxts/mcp 0.7.2 → 0.7.4

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/CHANGELOG.md +22 -4
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,14 +1,32 @@
1
1
  # @veloxts/mcp
2
2
 
3
+ ## 0.7.4
4
+
5
+ ### Patch Changes
6
+
7
+ - feat(cli): add velox sync command for whole-schema Prisma-to-TypeScript generation
8
+ - Updated dependencies
9
+ - @veloxts/cli@0.7.4
10
+ - @veloxts/router@0.7.4
11
+ - @veloxts/validation@0.7.4
12
+
13
+ ## 0.7.3
14
+
15
+ ### Patch Changes
16
+
17
+ - feat(cli): auto-populate Zod schemas from Prisma model fields
18
+ - Updated dependencies
19
+ - @veloxts/cli@0.7.3
20
+ - @veloxts/router@0.7.3
21
+ - @veloxts/validation@0.7.3
22
+
3
23
  ## 0.7.2
4
24
 
5
25
  ### Patch Changes
6
26
 
7
- - chore(auth,core,create,cli,client,orm,mcp,router,validation,web): simplify code for clarity and maintainability
27
+ - simplify code for clarity and maintainability
8
28
  - Updated dependencies
9
- - @veloxts/cli@0.7.2
10
- - @veloxts/router@0.7.2
11
- - @veloxts/validation@0.7.2
29
+ - @veloxts/core@0.7.2
12
30
 
13
31
  ## 0.7.1
14
32
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veloxts/mcp",
3
- "version": "0.7.2",
3
+ "version": "0.7.4",
4
4
  "description": "Model Context Protocol server for VeloxTS - expose project context to AI tools",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -24,9 +24,9 @@
24
24
  "dependencies": {
25
25
  "@modelcontextprotocol/sdk": "1.26.0",
26
26
  "typescript": "5.9.3",
27
- "@veloxts/cli": "0.7.2",
28
- "@veloxts/router": "0.7.2",
29
- "@veloxts/validation": "0.7.2"
27
+ "@veloxts/cli": "0.7.4",
28
+ "@veloxts/router": "0.7.4",
29
+ "@veloxts/validation": "0.7.4"
30
30
  },
31
31
  "peerDependencies": {
32
32
  "zod": "^4.3.0"