@appweaver/create-weaver-app 1.3.1 → 1.4.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/package.json +1 -1
- package/skill/GUIDELINES.md +18 -4
- package/skill/SKILL.md +753 -707
- package/skill/references/cli.md +4 -0
- package/skill/references/client.md +609 -599
- package/skill/references/configuration.md +7 -6
- package/skill/references/resources.md +237 -43
- package/skill/references/security.md +29 -5
- package/skill/references/storage.md +38 -4
- package/templates/default/appweaver.test.json.tpl +2 -1
- package/templates/default/src/resources/user/service.ts.tpl +2 -1
package/skill/references/cli.md
CHANGED
|
@@ -71,6 +71,10 @@ Generate types and/or schemas. With no flags, generates both types and schema.
|
|
|
71
71
|
| `--clientPath [path]` | Output path for generated Prisma client | `config.DATABASE_CLIENT_OUTPUT_DIR_PATH` |
|
|
72
72
|
| `--verbose` | Print verbose output | `false` |
|
|
73
73
|
|
|
74
|
+
Per model, the type file holds `<Model>`, `<Model>Single`, `<Model>Multiple`, `<Model>Create`, `<Model>Update`,
|
|
75
|
+
`<Model>RelationCreate`, `<Model>RelationUpdate`, `<Model>RelationInput`, `<Model>Query`, `<Model>Sort`,
|
|
76
|
+
`<Model>Aggregate`, and last `<Model>ResourceService`, the `injectService` type of that model.
|
|
77
|
+
|
|
74
78
|
---
|
|
75
79
|
|
|
76
80
|
## `weaver migrate`
|