File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3636 "@nestjs/platform-ws" : " ^8.4.7" ,
3737 "@nestjs/serve-static" : " ^2.2.2" ,
3838 "@nestjs/websockets" : " ^8.4.7" ,
39- "@prisma/client" : " ^3.15.2 " ,
40- "apollo-server-express" : " ^3.6.6 " ,
39+ "@prisma/client" : " ^4.0.0 " ,
40+ "apollo-server-express" : " 3.9.0 " ,
4141 "axios" : " ^0.27.2" ,
42- "graphql" : " ^ 16.3.0 " ,
42+ "graphql" : " 16.5 " ,
4343 "graphql-subscriptions" : " ^2.0.0" ,
4444 "reflect-metadata" : " ^0.1.13" ,
4545 "rimraf" : " ^3.0.2" ,
6262 "eslint-plugin-prettier" : " ^4.0.0" ,
6363 "jest" : " ^27.2.5" ,
6464 "prettier" : " ^2.3.2" ,
65- "prisma" : " ^3.15.2 " ,
65+ "prisma" : " ^4.0.0 " ,
6666 "source-map-support" : " ^0.5.20" ,
6767 "supertest" : " ^6.1.3" ,
6868 "ts-jest" : " ^27.0.3" ,
Original file line number Diff line number Diff line change 1- // This is your Prisma schema file,
2- // learn more about it in the docs: https://pris.ly/d/prisma-schema
3-
41generator client {
52 provider = " prisma-client-js "
63 previewFeatures = [" fullTextSearch " ]
@@ -13,12 +10,12 @@ datasource db {
1310
1411model Webhook {
1512 id Int @id @default (autoincrement () )
16- createdAt DateTime @default (now () )
17- updatedAt DateTime @updatedAt
18- path String
1913 body Json
2014 headers Json
2115 ip String
16+ path String
17+ createdAt DateTime @default (now () )
18+ updatedAt DateTime @updatedAt
2219 host String
2320 searchablePath String
2421}
You can’t perform that action at this time.
0 commit comments