@alevnyacow/nzmt 0.27.1 → 0.27.2
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 +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -212,7 +212,7 @@ foo: {
|
|
|
212
212
|
foo = this.methods('foo', async ({ str }) => {
|
|
213
213
|
// 'foo' string is strongly-typed, don't worry
|
|
214
214
|
// all input and output types are also infered
|
|
215
|
-
return { num: Number(
|
|
215
|
+
return { num: Number(str) }
|
|
216
216
|
})
|
|
217
217
|
// ..service class implementation
|
|
218
218
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alevnyacow/nzmt",
|
|
3
|
-
"version": "0.27.
|
|
3
|
+
"version": "0.27.2",
|
|
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": {
|