prisma-generator-express 1.16.5 → 1.16.6

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 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -10,6 +10,7 @@ This tool helps you quickly create API endpoints in your Express app using your
10
10
 
11
11
  When you run `npx prisma generate`, it automatically creates two things:
12
12
 
13
+ - Exposes Prisma API to clients - all operations with database is available, including all relationships at any depth.
13
14
  - Service functions that you can import into your Express routes. By default, these functions handle CRUD operations and output validation. This behavior can be controlled.
14
15
  - Router generator function that lets you select which routes to add to the application and which middlewares to apply.
15
16
 
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.16.5",
4
+ "version": "1.16.6",
5
5
  "main": "dist/generator.js",
6
6
  "license": "MIT",
7
7
  "bin": {
@@ -23,7 +23,7 @@
23
23
  "@prisma/client": "5.16.1",
24
24
  "@prisma/generator-helper": "5.16.1",
25
25
  "@prisma/sdk": "4.0.0",
26
- "express": "^4.19.2",
26
+ "express": "^4.21.0",
27
27
  "lodash": "^4.17.21",
28
28
  "prettier": "3.3.2",
29
29
  "zod": "^3.23.8"