@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.
- package/client/edge.js +15 -5
- package/client/index-browser.js +10 -0
- package/client/index.d.ts +750 -1
- package/client/index.js +15 -5
- package/client/libquery_engine-darwin.dylib.node +0 -0
- package/client/package.json +1 -1
- package/client/schema.prisma +10 -0
- package/client/wasm.js +10 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.js +6 -6
- package/package.json +1 -1
- package/prisma/schema/user.prisma +10 -0
- package/prisma/.DS_Store +0 -0
package/client/index-browser.js
CHANGED
|
@@ -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'
|