@veloxts/cli 0.7.9 → 0.8.0
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 +15 -0
- package/README.md +1 -1
- package/dist/sync/prompter.js +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @veloxts/cli
|
|
2
2
|
|
|
3
|
+
## 0.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- feat(router): new simplified procedure builder
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @veloxts/auth@0.8.0
|
|
13
|
+
- @veloxts/core@0.8.0
|
|
14
|
+
- @veloxts/orm@0.8.0
|
|
15
|
+
- @veloxts/router@0.8.0
|
|
16
|
+
- @veloxts/validation@0.8.0
|
|
17
|
+
|
|
3
18
|
## 0.7.9
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @veloxts/cli
|
|
2
2
|
|
|
3
|
-
> **Early Access (v0.
|
|
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
|
|
package/dist/sync/prompter.js
CHANGED
|
@@ -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: '.
|
|
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.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "Developer tooling and CLI commands for VeloxTS framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"pluralize": "8.0.0",
|
|
42
42
|
"tsx": "4.21.0",
|
|
43
43
|
"yaml": "2.8.2",
|
|
44
|
-
"@veloxts/
|
|
45
|
-
"@veloxts/
|
|
46
|
-
"@veloxts/
|
|
47
|
-
"@veloxts/
|
|
48
|
-
"@veloxts/validation": "0.
|
|
44
|
+
"@veloxts/auth": "0.8.0",
|
|
45
|
+
"@veloxts/core": "0.8.0",
|
|
46
|
+
"@veloxts/orm": "0.8.0",
|
|
47
|
+
"@veloxts/router": "0.8.0",
|
|
48
|
+
"@veloxts/validation": "0.8.0"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
51
|
"@prisma/client": ">=7.0.0"
|