@veloxts/cli 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,32 @@
1
1
  # @veloxts/cli
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/core@0.8.1
11
+ - @veloxts/orm@0.8.1
12
+ - @veloxts/router@0.8.1
13
+ - @veloxts/validation@0.8.1
14
+
15
+ ## 0.8.0
16
+
17
+ ### Minor Changes
18
+
19
+ - feat(router): new simplified procedure builder
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies
24
+ - @veloxts/auth@0.8.0
25
+ - @veloxts/core@0.8.0
26
+ - @veloxts/orm@0.8.0
27
+ - @veloxts/router@0.8.0
28
+ - @veloxts/validation@0.8.0
29
+
3
30
  ## 0.7.9
4
31
 
5
32
  ### Patch Changes
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @veloxts/cli
2
2
 
3
- > **Early Access (v0.7.x)**
3
+ > **Early Access (v0.8.x)**
4
4
 
5
5
  Command-line interface for VeloxTS Framework - provides development server with HMR, migration commands, and code generators. Learn more at [@veloxts/velox](https://www.npmjs.com/package/@veloxts/velox).
6
6
 
@@ -165,7 +165,7 @@ async function promptOutputStrategy(model) {
165
165
  { value: 'output', label: '.output() \u2014 Same fields for all users' },
166
166
  {
167
167
  value: 'resource',
168
- label: '.expose() \u2014 Different fields per access level (resource schema)',
168
+ label: '.output(Schema.level) \u2014 Different fields per access level (resource schema)',
169
169
  },
170
170
  ],
171
171
  initialValue: defaultToResource ? 'resource' : 'output',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veloxts/cli",
3
- "version": "0.7.9",
3
+ "version": "0.8.1",
4
4
  "description": "Developer tooling and CLI commands for VeloxTS framework",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -32,33 +32,33 @@
32
32
  }
33
33
  },
34
34
  "dependencies": {
35
- "@clack/prompts": "1.0.1",
35
+ "@clack/prompts": "1.1.0",
36
36
  "commander": "14.0.3",
37
37
  "dotenv": "17.3.1",
38
38
  "hot-hook": "0.4.0",
39
- "pg": "8.18.0",
39
+ "pg": "8.20.0",
40
40
  "picocolors": "1.1.1",
41
41
  "pluralize": "8.0.0",
42
42
  "tsx": "4.21.0",
43
43
  "yaml": "2.8.2",
44
- "@veloxts/router": "0.7.9",
45
- "@veloxts/auth": "0.7.9",
46
- "@veloxts/core": "0.7.9",
47
- "@veloxts/orm": "0.7.9",
48
- "@veloxts/validation": "0.7.9"
44
+ "@veloxts/auth": "0.8.1",
45
+ "@veloxts/core": "0.8.1",
46
+ "@veloxts/router": "0.8.1",
47
+ "@veloxts/orm": "0.8.1",
48
+ "@veloxts/validation": "0.8.1"
49
49
  },
50
50
  "peerDependencies": {
51
51
  "@prisma/client": ">=7.0.0"
52
52
  },
53
53
  "devDependencies": {
54
- "@prisma/client": "7.4.0",
55
- "@types/node": "25.2.3",
56
- "@types/pg": "8.16.0",
54
+ "@prisma/client": "7.5.0",
55
+ "@types/node": "25.5.0",
56
+ "@types/pg": "8.18.0",
57
57
  "@types/pluralize": "0.0.33",
58
- "@vitest/coverage-v8": "4.0.18",
58
+ "@vitest/coverage-v8": "4.1.0",
59
59
  "tsd": "0.33.0",
60
60
  "typescript": "5.9.3",
61
- "vitest": "4.0.18"
61
+ "vitest": "4.1.0"
62
62
  },
63
63
  "keywords": [
64
64
  "velox",