@alevnyacow/nzmt 0.16.8 → 0.16.9
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/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -78,11 +78,11 @@ This command generates:
|
|
|
78
78
|
|
|
79
79
|
Everything is wired automatically via DI — no manual setup needed.
|
|
80
80
|
|
|
81
|
-
2. Describe your entity in scaffolded `/shared/entities/user/user.entity.ts` (static `schema` field).
|
|
81
|
+
2. Describe your entity in scaffolded `/shared/entities/user/user.entity.ts` file (static `schema` field).
|
|
82
82
|
|
|
83
|
-
3. Tweak `UserStore` schemas if needed in scaffolded `/server/stores/users/user.store.ts
|
|
83
|
+
3. Tweak `UserStore` schemas if needed in scaffolded `/server/stores/users/user.store.ts` file.
|
|
84
84
|
|
|
85
|
-
4. Describe how your `UserStore` contracts map to your `Prisma` client contracts in scaffolded `server/stores/users/user.store.prisma.ts` (`mappers` object is already there for you with all functions, just implement them).
|
|
85
|
+
4. Describe how your `UserStore` contracts map to your `Prisma` client contracts in scaffolded `server/stores/users/user.store.prisma.ts` file (`mappers` object is already there for you with all types and functions, just implement them).
|
|
86
86
|
|
|
87
87
|
So, after one CLI command and few tweaks you can use your React query hooks or Server actions. 🪄
|
|
88
88
|
|