lang-database 15.0.0 → 16.1.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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/schema.prisma +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lang-database",
3
- "version": "15.0.0",
3
+ "version": "16.1.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -24,10 +24,10 @@
24
24
  },
25
25
  "homepage": "https://bitbucket.org/syke80/lang-database#readme",
26
26
  "devDependencies": {
27
- "@prisma/client": "^6.0.1",
28
- "prisma": "^6.0.1"
27
+ "@prisma/client": "^6.7.0",
28
+ "prisma": "^6.7.0"
29
29
  },
30
30
  "peerDependencies": {
31
- "@prisma/client": ">=5"
31
+ "@prisma/client": ">=6.7.0"
32
32
  }
33
33
  }
package/schema.prisma CHANGED
@@ -111,7 +111,6 @@ model User {
111
111
  userDecks UserDeck[]
112
112
  userStat UserStat?
113
113
  userAnswers UserAnswer[]
114
- subscriptionExpire DateTime?
115
114
  team Team? @relation(fields: [teamId], references: [id])
116
115
  teamId String?
117
116
  passwordActivated Boolean @default(false)