@veloxts/velox 0.7.9 → 0.8.1

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,44 @@
1
1
  # @veloxts/velox
2
2
 
3
+ ## 0.8.1
4
+
5
+ ### Patch Changes
6
+
7
+ - feat: add business logic primitives for B2B SaaS apps
8
+ - Updated dependencies
9
+ - @veloxts/auth@0.8.1
10
+ - @veloxts/cache@0.8.1
11
+ - @veloxts/core@0.8.1
12
+ - @veloxts/events@0.8.1
13
+ - @veloxts/mail@0.8.1
14
+ - @veloxts/orm@0.8.1
15
+ - @veloxts/queue@0.8.1
16
+ - @veloxts/router@0.8.1
17
+ - @veloxts/scheduler@0.8.1
18
+ - @veloxts/storage@0.8.1
19
+ - @veloxts/validation@0.8.1
20
+
21
+ ## 0.8.0
22
+
23
+ ### Minor Changes
24
+
25
+ - feat(router): new simplified procedure builder
26
+
27
+ ### Patch Changes
28
+
29
+ - Updated dependencies
30
+ - @veloxts/auth@0.8.0
31
+ - @veloxts/cache@0.8.0
32
+ - @veloxts/core@0.8.0
33
+ - @veloxts/events@0.8.0
34
+ - @veloxts/mail@0.8.0
35
+ - @veloxts/orm@0.8.0
36
+ - @veloxts/queue@0.8.0
37
+ - @veloxts/router@0.8.0
38
+ - @veloxts/scheduler@0.8.0
39
+ - @veloxts/storage@0.8.0
40
+ - @veloxts/validation@0.8.0
41
+
3
42
  ## 0.7.9
4
43
 
5
44
  ### Patch Changes
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Velox TS Framework
2
2
 
3
- > **Early Access (v0.7.x)**
3
+ > **Early Access (v0.8.x)**
4
4
 
5
5
  ## Type-safe full-stack without the build step
6
6
 
@@ -266,7 +266,7 @@ describe('Type exports', () => {
266
266
  describe('Validation types', () => {
267
267
  it('should export InferOutput type utility', () => {
268
268
  // InferOutput extracts the output type from a schema
269
- const schema = velox.z.object({ id: velox.z.string() });
269
+ const _schema = velox.z.object({ id: velox.z.string() });
270
270
  expectTypeOf().toEqualTypeOf();
271
271
  });
272
272
  it('should export SafeParseResult type', () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veloxts/velox",
3
- "version": "0.7.9",
3
+ "version": "0.8.1",
4
4
  "description": "Complete VeloxTS framework - batteries included",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -39,30 +39,30 @@
39
39
  "CHANGELOG.md"
40
40
  ],
41
41
  "dependencies": {
42
- "@veloxts/orm": "0.7.9",
43
- "@veloxts/router": "0.7.9",
44
- "@veloxts/validation": "0.7.9",
45
- "@veloxts/core": "0.7.9",
46
- "@veloxts/auth": "0.7.9"
42
+ "@veloxts/validation": "0.8.1",
43
+ "@veloxts/core": "0.8.1",
44
+ "@veloxts/orm": "0.8.1",
45
+ "@veloxts/router": "0.8.1",
46
+ "@veloxts/auth": "0.8.1"
47
47
  },
48
48
  "devDependencies": {
49
49
  "typescript": "5.9.3",
50
- "vitest": "4.0.18",
51
- "@veloxts/cache": "0.7.9",
52
- "@veloxts/mail": "0.7.9",
53
- "@veloxts/events": "0.7.9",
54
- "@veloxts/queue": "0.7.9",
55
- "@veloxts/scheduler": "0.7.9",
56
- "@veloxts/storage": "0.7.9"
50
+ "vitest": "4.1.0",
51
+ "@veloxts/mail": "0.8.1",
52
+ "@veloxts/events": "0.8.1",
53
+ "@veloxts/cache": "0.8.1",
54
+ "@veloxts/scheduler": "0.8.1",
55
+ "@veloxts/storage": "0.8.1",
56
+ "@veloxts/queue": "0.8.1"
57
57
  },
58
58
  "peerDependencies": {
59
59
  "zod": "^4.3.0",
60
- "@veloxts/cache": "0.7.9",
61
- "@veloxts/queue": "0.7.9",
62
- "@veloxts/events": "0.7.9",
63
- "@veloxts/storage": "0.7.9",
64
- "@veloxts/scheduler": "0.7.9",
65
- "@veloxts/mail": "0.7.9"
60
+ "@veloxts/queue": "0.8.1",
61
+ "@veloxts/mail": "0.8.1",
62
+ "@veloxts/cache": "0.8.1",
63
+ "@veloxts/storage": "0.8.1",
64
+ "@veloxts/events": "0.8.1",
65
+ "@veloxts/scheduler": "0.8.1"
66
66
  },
67
67
  "peerDependenciesMeta": {
68
68
  "@veloxts/cache": {