@veloxts/velox 0.6.83 → 0.6.85

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,29 @@
1
1
  # @veloxts/velox
2
2
 
3
+ ## 0.6.85
4
+
5
+ ### Patch Changes
6
+
7
+ - implement missing features from original requirements
8
+ - Updated dependencies
9
+ - @veloxts/auth@0.6.85
10
+ - @veloxts/core@0.6.85
11
+ - @veloxts/orm@0.6.85
12
+ - @veloxts/router@0.6.85
13
+ - @veloxts/validation@0.6.85
14
+
15
+ ## 0.6.84
16
+
17
+ ### Patch Changes
18
+
19
+ - - auth: add simplified guard() function with overloads + fluent builder
20
+ - Updated dependencies
21
+ - @veloxts/auth@0.6.84
22
+ - @veloxts/core@0.6.84
23
+ - @veloxts/orm@0.6.84
24
+ - @veloxts/router@0.6.84
25
+ - @veloxts/validation@0.6.84
26
+
3
27
  ## 0.6.83
4
28
 
5
29
  ### 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.83",
3
+ "version": "0.6.85",
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.83",
43
- "@veloxts/validation": "0.6.83",
44
- "@veloxts/router": "0.6.83",
45
- "@veloxts/auth": "0.6.83",
46
- "@veloxts/orm": "0.6.83"
42
+ "@veloxts/core": "0.6.85",
43
+ "@veloxts/validation": "0.6.85",
44
+ "@veloxts/router": "0.6.85",
45
+ "@veloxts/orm": "0.6.85",
46
+ "@veloxts/auth": "0.6.85"
47
47
  },
48
48
  "devDependencies": {
49
49
  "typescript": "5.9.3",