Skip to content

Commit

Permalink
Merge pull request #33 from OpenWebhook/update-dependencies
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
Samox authored Jul 5, 2022
2 parents 89f8b80 + b9f1633 commit 3d5aa75
Show file tree
Hide file tree
Showing 3 changed files with 818 additions and 837 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@
"@nestjs/platform-ws": "^8.4.7",
"@nestjs/serve-static": "^2.2.2",
"@nestjs/websockets": "^8.4.7",
"@prisma/client": "^3.15.2",
"apollo-server-express": "^3.6.6",
"@prisma/client": "^4.0.0",
"apollo-server-express": "3.9.0",
"axios": "^0.27.2",
"graphql": "^16.3.0",
"graphql": "16.5",
"graphql-subscriptions": "^2.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
Expand All @@ -62,7 +62,7 @@
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.5",
"prettier": "^2.3.2",
"prisma": "^3.15.2",
"prisma": "^4.0.0",
"source-map-support": "^0.5.20",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
Expand Down
9 changes: 3 additions & 6 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema

generator client {
provider = "prisma-client-js"
previewFeatures = ["fullTextSearch"]
Expand All @@ -13,12 +10,12 @@ datasource db {

model Webhook {
id Int @id @default(autoincrement())
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
path String
body Json
headers Json
ip String
path String
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
host String
searchablePath String
}
Loading

0 comments on commit 3d5aa75

Please sign in to comment.