@adaptware/eagles-db 0.1.84 → 0.1.86
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 +8 -14
- package/client/index-browser.js +5 -11
- package/client/index.d.ts +366 -322
- package/client/index.js +8 -14
- package/client/package.json +1 -1
- package/client/schema.prisma +4 -10
- package/client/wasm.js +5 -11
- package/package.json +1 -1
- package/prisma/migrations/20260430140000_drop_question_question_type/migration.sql +5 -0
- package/prisma/schema/authModule.prisma +1 -0
- package/prisma/schema/interview.prisma +21 -20
- package/prisma/schema/questions.prisma +0 -8
- package/prisma/schema/user.prisma +2 -1
package/client/index-browser.js
CHANGED
|
@@ -522,6 +522,7 @@ exports.Prisma.InterviewScalarFieldEnum = {
|
|
|
522
522
|
application_id: 'application_id',
|
|
523
523
|
resume_id: 'resume_id',
|
|
524
524
|
job_description_id: 'job_description_id',
|
|
525
|
+
calendar_event_id: 'calendar_event_id',
|
|
525
526
|
room_name: 'room_name',
|
|
526
527
|
interview_summary: 'interview_summary',
|
|
527
528
|
scheduled_start_time: 'scheduled_start_time',
|
|
@@ -531,7 +532,6 @@ exports.Prisma.InterviewScalarFieldEnum = {
|
|
|
531
532
|
recording_url: 'recording_url',
|
|
532
533
|
interview_status: 'interview_status',
|
|
533
534
|
interview_platform: 'interview_platform',
|
|
534
|
-
google_event_id: 'google_event_id',
|
|
535
535
|
ai_interview_feedback: 'ai_interview_feedback',
|
|
536
536
|
interview_feedback: 'interview_feedback',
|
|
537
537
|
overall_feedback: 'overall_feedback',
|
|
@@ -752,7 +752,6 @@ exports.Prisma.QuestionScalarFieldEnum = {
|
|
|
752
752
|
evaluation_plan_id: 'evaluation_plan_id',
|
|
753
753
|
candidate_id: 'candidate_id',
|
|
754
754
|
skill: 'skill',
|
|
755
|
-
question_type: 'question_type',
|
|
756
755
|
question: 'question',
|
|
757
756
|
answer: 'answer',
|
|
758
757
|
options: 'options',
|
|
@@ -841,6 +840,7 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
841
840
|
email: 'email',
|
|
842
841
|
password: 'password',
|
|
843
842
|
role_id: 'role_id',
|
|
843
|
+
organisation_id: 'organisation_id',
|
|
844
844
|
google_id: 'google_id',
|
|
845
845
|
refresh_token: 'refresh_token',
|
|
846
846
|
created_at: 'created_at',
|
|
@@ -850,7 +850,7 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
850
850
|
is_active: 'is_active',
|
|
851
851
|
is_self_registered: 'is_self_registered',
|
|
852
852
|
permission_id: 'permission_id',
|
|
853
|
-
|
|
853
|
+
preferences: 'preferences',
|
|
854
854
|
profile_created: 'profile_created',
|
|
855
855
|
first_login_status: 'first_login_status',
|
|
856
856
|
name: 'name',
|
|
@@ -993,7 +993,8 @@ exports.AssignmentStatus = exports.$Enums.AssignmentStatus = {
|
|
|
993
993
|
exports.AuthProvider = exports.$Enums.AuthProvider = {
|
|
994
994
|
GOOGLE: 'GOOGLE',
|
|
995
995
|
MICROSOFT: 'MICROSOFT',
|
|
996
|
-
ZOOM: 'ZOOM'
|
|
996
|
+
ZOOM: 'ZOOM',
|
|
997
|
+
CALENDLY: 'CALENDLY'
|
|
997
998
|
};
|
|
998
999
|
|
|
999
1000
|
exports.JobType = exports.$Enums.JobType = {
|
|
@@ -1155,13 +1156,6 @@ exports.AsyncOperationStatus = exports.$Enums.AsyncOperationStatus = {
|
|
|
1155
1156
|
CANCELLED: 'CANCELLED'
|
|
1156
1157
|
};
|
|
1157
1158
|
|
|
1158
|
-
exports.QuestionType = exports.$Enums.QuestionType = {
|
|
1159
|
-
MCQ: 'MCQ',
|
|
1160
|
-
TRUE_FALSE: 'TRUE_FALSE',
|
|
1161
|
-
THEORY: 'THEORY',
|
|
1162
|
-
CODING: 'CODING'
|
|
1163
|
-
};
|
|
1164
|
-
|
|
1165
1159
|
exports.Difficulty = exports.$Enums.Difficulty = {
|
|
1166
1160
|
EASY: 'EASY',
|
|
1167
1161
|
MEDIUM: 'MEDIUM',
|