nicot 1.0.12 → 1.0.13

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -110,7 +110,7 @@ export class UserController {
110
110
  return this.userService.findAll(user);
111
111
  }
112
112
 
113
- @dec.update() // PATH /:id
113
+ @dec.update() // PATCH /:id
114
114
  update(@dec.idParam() id: number, @dec.updateParam() user: UpdateUserDto) {
115
115
  return this.userService.update(id, user);
116
116
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "nicot",
3
3
  "description": "Nest.js interacting with class-validator + OpenAPI + TypeORM for Nest.js Restful API development.",
4
- "version": "1.0.12",
4
+ "version": "1.0.13",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "scripts": {