Skip to content

Commit 3d5aa75

Browse files
authored
Merge pull request #33 from OpenWebhook/update-dependencies
Update dependencies
2 parents 89f8b80 + b9f1633 commit 3d5aa75

3 files changed

Lines changed: 818 additions & 837 deletions

File tree

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@
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",
@@ -62,7 +62,7 @@
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",

prisma/schema.prisma

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
// This is your Prisma schema file,
2-
// learn more about it in the docs: https://pris.ly/d/prisma-schema
3-
41
generator client {
52
provider = "prisma-client-js"
63
previewFeatures = ["fullTextSearch"]
@@ -13,12 +10,12 @@ datasource db {
1310

1411
model 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
}

0 commit comments

Comments
 (0)