@veloxts/velox 0.6.27 → 0.6.31

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,53 @@
1
1
  # @veloxts/velox
2
2
 
3
+ ## 0.6.31
4
+
5
+ ### Patch Changes
6
+
7
+ - npm must use concurrently for run dev script
8
+ - Updated dependencies
9
+ - @veloxts/auth@0.6.31
10
+ - @veloxts/core@0.6.31
11
+ - @veloxts/orm@0.6.31
12
+ - @veloxts/router@0.6.31
13
+ - @veloxts/validation@0.6.31
14
+
15
+ ## 0.6.30
16
+
17
+ ### Patch Changes
18
+
19
+ - disable source maps for published packages
20
+ - Updated dependencies
21
+ - @veloxts/auth@0.6.30
22
+ - @veloxts/core@0.6.30
23
+ - @veloxts/orm@0.6.30
24
+ - @veloxts/router@0.6.30
25
+ - @veloxts/validation@0.6.30
26
+
27
+ ## 0.6.29
28
+
29
+ ### Patch Changes
30
+
31
+ - add multi-tenancy and PostgreSQL support - test and lint fix
32
+ - Updated dependencies
33
+ - @veloxts/auth@0.6.29
34
+ - @veloxts/core@0.6.29
35
+ - @veloxts/orm@0.6.29
36
+ - @veloxts/router@0.6.29
37
+ - @veloxts/validation@0.6.29
38
+
39
+ ## 0.6.28
40
+
41
+ ### Patch Changes
42
+
43
+ - add multi-tenancy support and postgresql database
44
+ - Updated dependencies
45
+ - @veloxts/auth@0.6.28
46
+ - @veloxts/core@0.6.28
47
+ - @veloxts/orm@0.6.28
48
+ - @veloxts/router@0.6.28
49
+ - @veloxts/validation@0.6.28
50
+
3
51
  ## 0.6.27
4
52
 
5
53
  ### Patch Changes
package/GUIDE.md CHANGED
@@ -13,14 +13,16 @@ npm run dev
13
13
 
14
14
  Your API is running at `http://localhost:3030`.
15
15
 
16
+ Your web app is running at `http://localhost:8080`.
17
+
16
18
  ## Basic Usage
17
19
 
18
20
  ```typescript
19
- import { veloxApp, procedure, defineProcedures, z } from '@veloxts/velox';
21
+ import { veloxApp, procedure, procedures, z } from '@veloxts/velox';
20
22
 
21
23
  const app = await veloxApp({ port: 3030 });
22
24
 
23
- const greetProcedures = defineProcedures('greet', {
25
+ const greetProcedures = procedures('greet', {
24
26
  sayHello: procedure()
25
27
  .input(z.object({ name: z.string() }))
26
28
  .query(({ input }) => `Hello, ${input.name}!`),
package/README.md CHANGED
@@ -17,6 +17,8 @@ npm run dev
17
17
 
18
18
  Your API is running at `http://localhost:3030`.
19
19
 
20
+ Your web app is running at `http://localhost:8080`.
21
+
20
22
  ## Manual Installation
21
23
 
22
24
  For adding to an existing project:
@@ -32,10 +34,12 @@ Note: Manual setup requires Prisma 7 configuration with driver adapters. See [@v
32
34
 
33
35
  This umbrella package re-exports:
34
36
  - `@veloxts/core` - App bootstrap, plugins, DI
35
- - `@veloxts/validation` - Zod integration
36
- - `@veloxts/orm` - Prisma database plugin
37
37
  - `@veloxts/router` - Procedures, REST adapter, tRPC
38
+ - `@veloxts/orm` - Prisma database plugin
38
39
  - `@veloxts/auth` - Authentication & authorization
40
+ - `@veloxts/validation` - Zod integration
41
+ - `@veloxts/mcp` - exposes project context to AI assistants
42
+ - `@veloxts/web` - React Server Components for full-stack web apps
39
43
 
40
44
  Separate packages: `@veloxts/cli`, `@veloxts/client`, `create-velox-app`
41
45
 
package/dist/auth.d.ts CHANGED
@@ -10,4 +10,3 @@
10
10
  * ```
11
11
  */
12
12
  export * from '@veloxts/auth';
13
- //# sourceMappingURL=auth.d.ts.map
package/dist/auth.js CHANGED
@@ -10,4 +10,3 @@
10
10
  * ```
11
11
  */
12
12
  export * from '@veloxts/auth';
13
- //# sourceMappingURL=auth.js.map
package/dist/core.d.ts CHANGED
@@ -8,4 +8,3 @@
8
8
  * ```
9
9
  */
10
10
  export * from '@veloxts/core';
11
- //# sourceMappingURL=core.d.ts.map
package/dist/core.js CHANGED
@@ -8,4 +8,3 @@
8
8
  * ```
9
9
  */
10
10
  export * from '@veloxts/core';
11
- //# sourceMappingURL=core.js.map
package/dist/index.d.ts CHANGED
@@ -21,4 +21,3 @@ export * from '@veloxts/core';
21
21
  export * from '@veloxts/orm';
22
22
  export * from '@veloxts/router';
23
23
  export * from '@veloxts/validation';
24
- //# sourceMappingURL=index.d.ts.map
package/dist/index.js CHANGED
@@ -26,4 +26,3 @@ export * from '@veloxts/orm';
26
26
  export * from '@veloxts/router';
27
27
  // Validation - Zod integration and schema utilities
28
28
  export * from '@veloxts/validation';
29
- //# sourceMappingURL=index.js.map
package/dist/orm.d.ts CHANGED
@@ -8,4 +8,3 @@
8
8
  * ```
9
9
  */
10
10
  export * from '@veloxts/orm';
11
- //# sourceMappingURL=orm.d.ts.map
package/dist/orm.js CHANGED
@@ -8,4 +8,3 @@
8
8
  * ```
9
9
  */
10
10
  export * from '@veloxts/orm';
11
- //# sourceMappingURL=orm.js.map
package/dist/router.d.ts CHANGED
@@ -8,4 +8,3 @@
8
8
  * ```
9
9
  */
10
10
  export * from '@veloxts/router';
11
- //# sourceMappingURL=router.d.ts.map
package/dist/router.js CHANGED
@@ -8,4 +8,3 @@
8
8
  * ```
9
9
  */
10
10
  export * from '@veloxts/router';
11
- //# sourceMappingURL=router.js.map
@@ -8,4 +8,3 @@
8
8
  * ```
9
9
  */
10
10
  export * from '@veloxts/validation';
11
- //# sourceMappingURL=validation.d.ts.map
@@ -8,4 +8,3 @@
8
8
  * ```
9
9
  */
10
10
  export * from '@veloxts/validation';
11
- //# sourceMappingURL=validation.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veloxts/velox",
3
- "version": "0.6.27",
3
+ "version": "0.6.31",
4
4
  "description": "Complete VeloxTS framework - batteries included",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -39,11 +39,11 @@
39
39
  "CHANGELOG.md"
40
40
  ],
41
41
  "dependencies": {
42
- "@veloxts/core": "0.6.27",
43
- "@veloxts/validation": "0.6.27",
44
- "@veloxts/orm": "0.6.27",
45
- "@veloxts/router": "0.6.27",
46
- "@veloxts/auth": "0.6.27"
42
+ "@veloxts/core": "0.6.31",
43
+ "@veloxts/orm": "0.6.31",
44
+ "@veloxts/router": "0.6.31",
45
+ "@veloxts/validation": "0.6.31",
46
+ "@veloxts/auth": "0.6.31"
47
47
  },
48
48
  "devDependencies": {
49
49
  "typescript": "5.9.3"
@@ -1 +0,0 @@
1
- {"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../src/auth.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,cAAc,eAAe,CAAC"}
package/dist/auth.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"auth.js","sourceRoot":"","sources":["../src/auth.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH,cAAc,eAAe,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"core.d.ts","sourceRoot":"","sources":["../src/core.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,cAAc,eAAe,CAAC"}
package/dist/core.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"core.js","sourceRoot":"","sources":["../src/core.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,cAAc,eAAe,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAGH,cAAc,eAAe,CAAC;AAE9B,cAAc,eAAe,CAAC;AAE9B,cAAc,cAAc,CAAC;AAE7B,cAAc,iBAAiB,CAAC;AAEhC,cAAc,qBAAqB,CAAC"}
package/dist/index.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAEH,kDAAkD;AAClD,cAAc,eAAe,CAAC;AAC9B,iDAAiD;AACjD,cAAc,eAAe,CAAC;AAC9B,+CAA+C;AAC/C,cAAc,cAAc,CAAC;AAC7B,qDAAqD;AACrD,cAAc,iBAAiB,CAAC;AAChC,oDAAoD;AACpD,cAAc,qBAAqB,CAAC"}
package/dist/orm.d.ts.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"orm.d.ts","sourceRoot":"","sources":["../src/orm.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,cAAc,cAAc,CAAC"}
package/dist/orm.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"orm.js","sourceRoot":"","sources":["../src/orm.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,cAAc,cAAc,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"router.d.ts","sourceRoot":"","sources":["../src/router.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,cAAc,iBAAiB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"router.js","sourceRoot":"","sources":["../src/router.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,cAAc,iBAAiB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../src/validation.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,cAAc,qBAAqB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"validation.js","sourceRoot":"","sources":["../src/validation.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,cAAc,qBAAqB,CAAC"}