@veloxts/mcp 0.6.27 → 0.6.29

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/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @veloxts/mcp
2
2
 
3
+ ## 0.6.29
4
+
5
+ ### Patch Changes
6
+
7
+ - add multi-tenancy and PostgreSQL support - test and lint fix
8
+ - Updated dependencies
9
+ - @veloxts/cli@0.6.29
10
+ - @veloxts/router@0.6.29
11
+ - @veloxts/validation@0.6.29
12
+
13
+ ## 0.6.28
14
+
15
+ ### Patch Changes
16
+
17
+ - add multi-tenancy support and postgresql database
18
+ - Updated dependencies
19
+ - @veloxts/cli@0.6.28
20
+ - @veloxts/router@0.6.28
21
+ - @veloxts/validation@0.6.28
22
+
3
23
  ## 0.6.27
4
24
 
5
25
  ### Patch Changes
@@ -47,10 +47,10 @@ export const CREATE_PROCEDURE = {
47
47
 
48
48
  2. **Create the procedure** in \`src/procedures/{entities}.ts\`:
49
49
  \`\`\`typescript
50
- import { defineProcedures, procedure, z } from '@veloxts/velox';
50
+ import { procedure, procedures, z } from '@veloxts/velox';
51
51
  import { {Entity}Schema, Create{Entity}Schema } from '../schemas/{entity}.js';
52
52
 
53
- export const {entity}Procedures = defineProcedures('{entities}', {
53
+ export const {entity}Procedures = procedures('{entities}', {
54
54
  get{Entity}: procedure()
55
55
  .input(z.object({ id: z.string().uuid() }))
56
56
  .output({Entity}Schema)
@@ -233,7 +233,7 @@ const deletePost = procedure()
233
233
 
234
234
  ### 4. Auth Endpoints
235
235
  \`\`\`typescript
236
- export const authProcedures = defineProcedures('auth', {
236
+ export const authProcedures = procedures('auth', {
237
237
  register: procedure()
238
238
  .input(RegisterSchema)
239
239
  .output(UserSchema)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veloxts/mcp",
3
- "version": "0.6.27",
3
+ "version": "0.6.29",
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",
@@ -23,9 +23,9 @@
23
23
  ],
24
24
  "dependencies": {
25
25
  "@modelcontextprotocol/sdk": "1.25.1",
26
- "@veloxts/cli": "0.6.27",
27
- "@veloxts/validation": "0.6.27",
28
- "@veloxts/router": "0.6.27"
26
+ "@veloxts/cli": "0.6.29",
27
+ "@veloxts/validation": "0.6.29",
28
+ "@veloxts/router": "0.6.29"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "zod": ">=3.25.0"