lang-database 5.1.0 → 6.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.
|
@@ -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',
|
|
@@ -101,6 +111,7 @@ exports.Prisma.CardScalarFieldEnum = makeEnum({
|
|
|
101
111
|
packId: 'packId',
|
|
102
112
|
front: 'front',
|
|
103
113
|
back: 'back',
|
|
114
|
+
lastUpdate: 'lastUpdate',
|
|
104
115
|
speechGenerated: 'speechGenerated'
|
|
105
116
|
});
|
|
106
117
|
|
|
@@ -185,6 +196,14 @@ exports.Prisma.UserScalarFieldEnum = makeEnum({
|
|
|
185
196
|
teamId: 'teamId',
|
|
186
197
|
passwordActivated: 'passwordActivated'
|
|
187
198
|
});
|
|
199
|
+
exports.AchivementType = makeEnum({
|
|
200
|
+
Today15Min: 'Today15Min',
|
|
201
|
+
Weekly15Min: 'Weekly15Min',
|
|
202
|
+
Monthly15Min: 'Monthly15Min',
|
|
203
|
+
WordDone: 'WordDone',
|
|
204
|
+
DeckDone: 'DeckDone'
|
|
205
|
+
});
|
|
206
|
+
|
|
188
207
|
exports.PurchaseStatus = makeEnum({
|
|
189
208
|
PENDING: 'PENDING',
|
|
190
209
|
APPROVED: 'APPROVED'
|
|
@@ -196,6 +215,7 @@ exports.Prisma.ModelName = makeEnum({
|
|
|
196
215
|
Category: 'Category',
|
|
197
216
|
Pack: 'Pack',
|
|
198
217
|
User: 'User',
|
|
218
|
+
Achivement: 'Achivement',
|
|
199
219
|
Team: 'Team',
|
|
200
220
|
Teacher: 'Teacher',
|
|
201
221
|
GoogleUser: 'GoogleUser',
|