@danielcok17/prisma-db 1.7.0 → 1.8.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.
@@ -204,6 +204,23 @@ exports.Prisma.OrganizationMemberScalarFieldEnum = {
204
204
  joinedAt: 'joinedAt'
205
205
  };
206
206
 
207
+ exports.Prisma.OrganizationInviteScalarFieldEnum = {
208
+ id: 'id',
209
+ organizationId: 'organizationId',
210
+ token: 'token',
211
+ email: 'email',
212
+ role: 'role',
213
+ createdBy: 'createdBy',
214
+ expiresAt: 'expiresAt',
215
+ maxUses: 'maxUses',
216
+ currentUses: 'currentUses',
217
+ isActive: 'isActive',
218
+ usedAt: 'usedAt',
219
+ usedBy: 'usedBy',
220
+ createdAt: 'createdAt',
221
+ updatedAt: 'updatedAt'
222
+ };
223
+
207
224
  exports.Prisma.ConversationScalarFieldEnum = {
208
225
  id: 'id',
209
226
  name: 'name',
@@ -580,6 +597,7 @@ exports.Prisma.ModelName = {
580
597
  UserApprovalRequest: 'UserApprovalRequest',
581
598
  Organization: 'Organization',
582
599
  OrganizationMember: 'OrganizationMember',
600
+ OrganizationInvite: 'OrganizationInvite',
583
601
  Conversation: 'Conversation',
584
602
  Answer: 'Answer',
585
603
  MessageFile: 'MessageFile',