@adaptware/eagles-db 0.3.3 → 0.3.5
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 +16 -5
- package/client/index-browser.js +11 -0
- package/client/index.d.ts +845 -2
- package/client/index.js +16 -5
- package/client/libquery_engine-darwin.dylib.node +0 -0
- package/client/package.json +1 -1
- package/client/schema.prisma +39 -28
- package/client/wasm.js +11 -0
- package/package.json +1 -1
- package/prisma/schema/interview.prisma +29 -28
- package/prisma/schema/user.prisma +10 -0
- package/prisma/.DS_Store +0 -0
package/client/index-browser.js
CHANGED
|
@@ -543,6 +543,7 @@ exports.Prisma.InterviewScalarFieldEnum = {
|
|
|
543
543
|
section_feedback: 'section_feedback',
|
|
544
544
|
interview_preparation: 'interview_preparation',
|
|
545
545
|
final_feedback: 'final_feedback',
|
|
546
|
+
interview_analysis_ranges: 'interview_analysis_ranges',
|
|
546
547
|
reschedule_count: 'reschedule_count',
|
|
547
548
|
last_rescheduled_at: 'last_rescheduled_at',
|
|
548
549
|
first_assigned_at: 'first_assigned_at',
|
|
@@ -867,6 +868,10 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
867
868
|
is_self_registered: 'is_self_registered',
|
|
868
869
|
permission_id: 'permission_id',
|
|
869
870
|
preferences: 'preferences',
|
|
871
|
+
invitation_status: 'invitation_status',
|
|
872
|
+
invited_at: 'invited_at',
|
|
873
|
+
invitation_expires_at: 'invitation_expires_at',
|
|
874
|
+
invitation_accepted_at: 'invitation_accepted_at',
|
|
870
875
|
profile_created: 'profile_created',
|
|
871
876
|
first_login_status: 'first_login_status',
|
|
872
877
|
name: 'name',
|
|
@@ -1184,6 +1189,12 @@ exports.Difficulty = exports.$Enums.Difficulty = {
|
|
|
1184
1189
|
HARD: 'HARD'
|
|
1185
1190
|
};
|
|
1186
1191
|
|
|
1192
|
+
exports.UserInvitationStatus = exports.$Enums.UserInvitationStatus = {
|
|
1193
|
+
INVITED: 'INVITED',
|
|
1194
|
+
ACCEPTED: 'ACCEPTED',
|
|
1195
|
+
EXPIRED: 'EXPIRED'
|
|
1196
|
+
};
|
|
1197
|
+
|
|
1187
1198
|
exports.FirstLoginStatus = exports.$Enums.FirstLoginStatus = {
|
|
1188
1199
|
PENDING: 'PENDING',
|
|
1189
1200
|
COMPLETED: 'COMPLETED'
|