lang-database 1.8.0 → 1.10.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.
@@ -103,6 +103,11 @@ exports.Prisma.CardScalarFieldEnum = makeEnum({
103
103
  back: 'back'
104
104
  });
105
105
 
106
+ exports.Prisma.CategoryScalarFieldEnum = makeEnum({
107
+ id: 'id',
108
+ name: 'name'
109
+ });
110
+
106
111
  exports.Prisma.GoogleUserScalarFieldEnum = makeEnum({
107
112
  id: 'id',
108
113
  userId: 'userId'
@@ -112,6 +117,10 @@ exports.Prisma.PackScalarFieldEnum = makeEnum({
112
117
  id: 'id',
113
118
  teacherId: 'teacherId',
114
119
  name: 'name',
120
+ shortDescription: 'shortDescription',
121
+ longDescription: 'longDescription',
122
+ categoryId: 'categoryId',
123
+ published: 'published',
115
124
  currentPrice: 'currentPrice'
116
125
  });
117
126
 
@@ -171,6 +180,7 @@ exports.PurchaseStatus = makeEnum({
171
180
  exports.Prisma.ModelName = makeEnum({
172
181
  Card: 'Card',
173
182
  UserCard: 'UserCard',
183
+ Category: 'Category',
174
184
  Pack: 'Pack',
175
185
  User: 'User',
176
186
  Teacher: 'Teacher',