lang-database 6.0.0 → 6.1.1
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.
|
@@ -88,6 +88,16 @@ Prisma.NullTypes = {
|
|
|
88
88
|
// https://github.com/microsoft/TypeScript/issues/3192#issuecomment-261720275
|
|
89
89
|
function makeEnum(x) { return x; }
|
|
90
90
|
|
|
91
|
+
exports.Prisma.AchivementScalarFieldEnum = makeEnum({
|
|
92
|
+
id: 'id',
|
|
93
|
+
userId: 'userId',
|
|
94
|
+
badge: 'badge',
|
|
95
|
+
type: 'type',
|
|
96
|
+
info: 'info',
|
|
97
|
+
timestamp: 'timestamp',
|
|
98
|
+
dismissed: 'dismissed'
|
|
99
|
+
});
|
|
100
|
+
|
|
91
101
|
exports.Prisma.AnswerScalarFieldEnum = makeEnum({
|
|
92
102
|
id: 'id',
|
|
93
103
|
userId: 'userId',
|
|
@@ -186,6 +196,14 @@ exports.Prisma.UserScalarFieldEnum = makeEnum({
|
|
|
186
196
|
teamId: 'teamId',
|
|
187
197
|
passwordActivated: 'passwordActivated'
|
|
188
198
|
});
|
|
199
|
+
exports.AchivementType = makeEnum({
|
|
200
|
+
Today15Min: 'Today15Min',
|
|
201
|
+
Weekly15Min: 'Weekly15Min',
|
|
202
|
+
Monthly15Min: 'Monthly15Min',
|
|
203
|
+
CardDone: 'CardDone',
|
|
204
|
+
DeckDone: 'DeckDone'
|
|
205
|
+
});
|
|
206
|
+
|
|
189
207
|
exports.PurchaseStatus = makeEnum({
|
|
190
208
|
PENDING: 'PENDING',
|
|
191
209
|
APPROVED: 'APPROVED'
|
|
@@ -197,6 +215,7 @@ exports.Prisma.ModelName = makeEnum({
|
|
|
197
215
|
Category: 'Category',
|
|
198
216
|
Pack: 'Pack',
|
|
199
217
|
User: 'User',
|
|
218
|
+
Achivement: 'Achivement',
|
|
200
219
|
Team: 'Team',
|
|
201
220
|
Teacher: 'Teacher',
|
|
202
221
|
GoogleUser: 'GoogleUser',
|