@veloxts/velox 0.3.1 → 0.3.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/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
* import { procedure } from '@veloxts/velox/router';
|
|
17
17
|
* ```
|
|
18
18
|
*/
|
|
19
|
+
export * from '@veloxts/auth';
|
|
19
20
|
export * from '@veloxts/core';
|
|
20
|
-
export * from '@veloxts/validation';
|
|
21
21
|
export * from '@veloxts/orm';
|
|
22
22
|
export * from '@veloxts/router';
|
|
23
|
-
export * from '@veloxts/
|
|
23
|
+
export * from '@veloxts/validation';
|
|
24
24
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAGH,cAAc,eAAe,CAAC;
|
|
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
CHANGED
|
@@ -16,14 +16,14 @@
|
|
|
16
16
|
* import { procedure } from '@veloxts/velox/router';
|
|
17
17
|
* ```
|
|
18
18
|
*/
|
|
19
|
+
// Auth - Authentication and authorization (v1.1+)
|
|
20
|
+
export * from '@veloxts/auth';
|
|
19
21
|
// Core - Application bootstrap, plugins, context
|
|
20
22
|
export * from '@veloxts/core';
|
|
21
|
-
// Validation - Zod integration and schema utilities
|
|
22
|
-
export * from '@veloxts/validation';
|
|
23
23
|
// ORM - Database plugin and Prisma integration
|
|
24
24
|
export * from '@veloxts/orm';
|
|
25
25
|
// Router - Procedure definitions, REST adapter, tRPC
|
|
26
26
|
export * from '@veloxts/router';
|
|
27
|
-
//
|
|
28
|
-
export * from '@veloxts/
|
|
27
|
+
// Validation - Zod integration and schema utilities
|
|
28
|
+
export * from '@veloxts/validation';
|
|
29
29
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAEH,
|
|
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veloxts/velox",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Complete VeloxTS framework - batteries included",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"README.md"
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@veloxts/core": "0.3.
|
|
40
|
-
"@veloxts/validation": "0.3.
|
|
41
|
-
"@veloxts/orm": "0.3.
|
|
42
|
-
"@veloxts/router": "0.3.
|
|
43
|
-
"@veloxts/auth": "0.3.
|
|
39
|
+
"@veloxts/core": "0.3.2",
|
|
40
|
+
"@veloxts/validation": "0.3.2",
|
|
41
|
+
"@veloxts/orm": "0.3.2",
|
|
42
|
+
"@veloxts/router": "0.3.2",
|
|
43
|
+
"@veloxts/auth": "0.3.2"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"typescript": "5.9.3"
|