@veloxts/velox 0.8.0 → 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 +18 -0
- package/dist/__tests__/exports.test.js +1 -1
- package/package.json +19 -19
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
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
|
+
|
|
3
21
|
## 0.8.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
|
@@ -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
|
|
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.8.
|
|
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/
|
|
43
|
-
"@veloxts/
|
|
44
|
-
"@veloxts/
|
|
45
|
-
"@veloxts/
|
|
46
|
-
"@veloxts/auth": "0.8.
|
|
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
|
|
51
|
-
"@veloxts/
|
|
52
|
-
"@veloxts/
|
|
53
|
-
"@veloxts/
|
|
54
|
-
"@veloxts/
|
|
55
|
-
"@veloxts/
|
|
56
|
-
"@veloxts/
|
|
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/
|
|
61
|
-
"@veloxts/
|
|
62
|
-
"@veloxts/
|
|
63
|
-
"@veloxts/
|
|
64
|
-
"@veloxts/
|
|
65
|
-
"@veloxts/
|
|
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": {
|