@veloxts/velox 0.6.83 → 0.6.84
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 +12 -0
- package/dist/auth.d.ts +3 -0
- package/dist/auth.js +3 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @veloxts/velox
|
|
2
2
|
|
|
3
|
+
## 0.6.84
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- - auth: add simplified guard() function with overloads + fluent builder
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @veloxts/auth@0.6.84
|
|
10
|
+
- @veloxts/core@0.6.84
|
|
11
|
+
- @veloxts/orm@0.6.84
|
|
12
|
+
- @veloxts/router@0.6.84
|
|
13
|
+
- @veloxts/validation@0.6.84
|
|
14
|
+
|
|
3
15
|
## 0.6.83
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/auth.d.ts
CHANGED
|
@@ -8,5 +8,8 @@
|
|
|
8
8
|
* ```typescript
|
|
9
9
|
* import { createAuth, guard } from '@veloxts/velox/auth';
|
|
10
10
|
* ```
|
|
11
|
+
*
|
|
12
|
+
* NOTE: Internal testing utilities (_resetGuardCounter) are available via
|
|
13
|
+
* '@veloxts/auth/testing'. They are not re-exported from the velox meta-package.
|
|
11
14
|
*/
|
|
12
15
|
export * from '@veloxts/auth';
|
package/dist/auth.js
CHANGED
|
@@ -8,5 +8,8 @@
|
|
|
8
8
|
* ```typescript
|
|
9
9
|
* import { createAuth, guard } from '@veloxts/velox/auth';
|
|
10
10
|
* ```
|
|
11
|
+
*
|
|
12
|
+
* NOTE: Internal testing utilities (_resetGuardCounter) are available via
|
|
13
|
+
* '@veloxts/auth/testing'. They are not re-exported from the velox meta-package.
|
|
11
14
|
*/
|
|
12
15
|
export * from '@veloxts/auth';
|
package/dist/index.d.ts
CHANGED
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
* import { procedure } from '@veloxts/velox/router';
|
|
17
17
|
* ```
|
|
18
18
|
*/
|
|
19
|
-
export * from '@veloxts/auth';
|
|
20
19
|
export * from '@veloxts/core';
|
|
21
20
|
export * from '@veloxts/orm';
|
|
22
21
|
export * from '@veloxts/router';
|
|
23
22
|
export * from '@veloxts/validation';
|
|
23
|
+
export * from './auth.js';
|
package/dist/index.js
CHANGED
|
@@ -16,8 +16,6 @@
|
|
|
16
16
|
* import { procedure } from '@veloxts/velox/router';
|
|
17
17
|
* ```
|
|
18
18
|
*/
|
|
19
|
-
// Auth - Authentication and authorization (v1.1+)
|
|
20
|
-
export * from '@veloxts/auth';
|
|
21
19
|
// Core - Application bootstrap, plugins, context
|
|
22
20
|
export * from '@veloxts/core';
|
|
23
21
|
// ORM - Database plugin and Prisma integration
|
|
@@ -26,3 +24,5 @@ export * from '@veloxts/orm';
|
|
|
26
24
|
export * from '@veloxts/router';
|
|
27
25
|
// Validation - Zod integration and schema utilities
|
|
28
26
|
export * from '@veloxts/validation';
|
|
27
|
+
// Auth - Re-export from subpath module (excludes internal testing utilities)
|
|
28
|
+
export * from './auth.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veloxts/velox",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.84",
|
|
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.
|
|
43
|
-
"@veloxts/validation": "0.6.
|
|
44
|
-
"@veloxts/router": "0.6.
|
|
45
|
-
"@veloxts/
|
|
46
|
-
"@veloxts/
|
|
42
|
+
"@veloxts/core": "0.6.84",
|
|
43
|
+
"@veloxts/validation": "0.6.84",
|
|
44
|
+
"@veloxts/router": "0.6.84",
|
|
45
|
+
"@veloxts/orm": "0.6.84",
|
|
46
|
+
"@veloxts/auth": "0.6.84"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"typescript": "5.9.3",
|