prisma-generator-express 1.15.1 → 1.16.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "prisma-generator-express",
3
3
  "description": "Prisma generator of Express CRUD API",
4
- "version": "1.15.1",
4
+ "version": "1.16.0",
5
5
  "main": "dist/generator.js",
6
6
  "license": "MIT",
7
7
  "bin": {
@@ -10,8 +10,8 @@ export interface ValidatorConfig {
10
10
  interface MiddlewareConfig<M> {
11
11
  before?: M[]
12
12
  after?: RequestHandler[]
13
- input?: ValidatorConfig
14
- output?: ValidatorConfig
13
+ inputValidatior?: ValidatorConfig
14
+ outputValidatior?: ValidatorConfig
15
15
  }
16
16
 
17
17
  export interface RouteConfig<M> {