@adaptware/eagles-db 0.3.3 → 0.3.4

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.
@@ -867,6 +867,10 @@ exports.Prisma.UserScalarFieldEnum = {
867
867
  is_self_registered: 'is_self_registered',
868
868
  permission_id: 'permission_id',
869
869
  preferences: 'preferences',
870
+ invitation_status: 'invitation_status',
871
+ invited_at: 'invited_at',
872
+ invitation_expires_at: 'invitation_expires_at',
873
+ invitation_accepted_at: 'invitation_accepted_at',
870
874
  profile_created: 'profile_created',
871
875
  first_login_status: 'first_login_status',
872
876
  name: 'name',
@@ -1184,6 +1188,12 @@ exports.Difficulty = exports.$Enums.Difficulty = {
1184
1188
  HARD: 'HARD'
1185
1189
  };
1186
1190
 
1191
+ exports.UserInvitationStatus = exports.$Enums.UserInvitationStatus = {
1192
+ INVITED: 'INVITED',
1193
+ ACCEPTED: 'ACCEPTED',
1194
+ EXPIRED: 'EXPIRED'
1195
+ };
1196
+
1187
1197
  exports.FirstLoginStatus = exports.$Enums.FirstLoginStatus = {
1188
1198
  PENDING: 'PENDING',
1189
1199
  COMPLETED: 'COMPLETED'