@alevnyacow/nzmt 0.27.2 → 0.27.4
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
|
@@ -73,7 +73,7 @@ Schema: Client → React Query → API → Controller → Service → Store →
|
|
|
73
73
|
```tsx
|
|
74
74
|
'use client'
|
|
75
75
|
|
|
76
|
-
import { UserQueries } from
|
|
76
|
+
import { UserQueries } from '@/ui/shared/queries/user';
|
|
77
77
|
|
|
78
78
|
export default function Page() {
|
|
79
79
|
const { mutate: addUser } = UserQueries.usePOST()
|
|
@@ -105,8 +105,8 @@ Schema: Server Action → Service → Store → DB
|
|
|
105
105
|
```tsx
|
|
106
106
|
'use server'
|
|
107
107
|
|
|
108
|
-
import { fromDI } from
|
|
109
|
-
import type { UserService } from
|
|
108
|
+
import { fromDI } from '@/server/di'
|
|
109
|
+
import type { UserService } from '@/server/services/user'
|
|
110
110
|
|
|
111
111
|
export default async function Page() {
|
|
112
112
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alevnyacow/nzmt",
|
|
3
|
-
"version": "0.27.
|
|
3
|
+
"version": "0.27.4",
|
|
4
4
|
"description": "Next Zod Modules Toolkit",
|
|
5
5
|
"keywords": ["next", "full-stack", "server", "backend", "cli", "scaffolding", "zod", "rest", "contract programming", "contract-first", "react-query", "ddd", "domain-driven"],
|
|
6
6
|
"repository": {
|