@adaptware/eagles-db 0.1.84 → 0.1.85
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 +41 -20
- package/client/index-browser.js +36 -15
- package/client/index.d.ts +1434 -1100
- package/client/index.js +41 -20
- package/client/libquery_engine-darwin.dylib.node +0 -0
- package/client/package.json +1 -1
- package/client/schema.prisma +62 -44
- package/client/wasm.js +36 -15
- package/package.json +1 -1
- package/prisma/schema/assessmentLibrary.prisma +26 -15
- package/prisma/schema/authModule.prisma +1 -0
- package/prisma/schema/evaluationPlan.prisma +2 -1
- package/prisma/schema/interview.prisma +21 -20
- package/prisma/schema/ongoingEvaluation.prisma +30 -26
- package/prisma/schema/user.prisma +2 -1
- package/prisma/.DS_Store +0 -0
- package/prisma/migrations/20260415120000_remove_job_profile_current_phase/migration.sql +0 -2
- package/prisma/migrations/20260422120000_add_integration_provider_zoom/migration.sql +0 -2
- package/prisma/migrations/20260422140000_add_zoom_meeting_tables/migration.sql +0 -57
- package/prisma/migrations/20260422180000_add_zoom_webhook_event/migration.sql +0 -18
- package/prisma/migrations/20260423140000_add_interview_platform/migration.sql +0 -6
- package/prisma/migrations/20260423150000_remove_interview_zoom_topic/migration.sql +0 -2
- package/prisma/migrations/20260423160000_zoom_meeting_uuid/migration.sql +0 -4
- package/prisma/migrations/20260424120000_auth_module_user_provider_unique/migration.sql +0 -5
- package/prisma/migrations/20260424130000_zoom_meeting_zoom_host_user_id/migration.sql +0 -6
- package/prisma/migrations/20260425100000_zoom_participant_user_enum/migration.sql +0 -22
- package/prisma/migrations/20260425110000_zoom_participant_zoom_id_required/migration.sql +0 -13
- package/prisma/migrations/20260425120000_zoom_participant_id_nullable/migration.sql +0 -4
- package/prisma/migrations/20260429140000_drop_evaluation_plan_job_order_unique/migration.sql +0 -5
- package/prisma/migrations/20260429180000_eval_plan_timeline_optional_ongoing_duration/migration.sql +0 -15
- package/prisma/migrations/20260430120000_drop_assessment_library_metadata_fields/migration.sql +0 -8
- package/prisma/migrations/migration_lock.toml +0 -3
package/client/index-browser.js
CHANGED
|
@@ -236,10 +236,14 @@ exports.Prisma.AssessmentScalarFieldEnum = {
|
|
|
236
236
|
exports.Prisma.AssessmentLibraryScalarFieldEnum = {
|
|
237
237
|
id: 'id',
|
|
238
238
|
title: 'title',
|
|
239
|
+
assessment_type: 'assessment_type',
|
|
240
|
+
description: 'description',
|
|
241
|
+
assessment_category: 'assessment_category',
|
|
239
242
|
time_required: 'time_required',
|
|
240
243
|
passing_score: 'passing_score',
|
|
241
244
|
max_score: 'max_score',
|
|
242
245
|
organisation_id: 'organisation_id',
|
|
246
|
+
created_by_ai: 'created_by_ai',
|
|
243
247
|
created_at: 'created_at',
|
|
244
248
|
updated_at: 'updated_at',
|
|
245
249
|
created_by: 'created_by',
|
|
@@ -522,6 +526,7 @@ exports.Prisma.InterviewScalarFieldEnum = {
|
|
|
522
526
|
application_id: 'application_id',
|
|
523
527
|
resume_id: 'resume_id',
|
|
524
528
|
job_description_id: 'job_description_id',
|
|
529
|
+
calendar_event_id: 'calendar_event_id',
|
|
525
530
|
room_name: 'room_name',
|
|
526
531
|
interview_summary: 'interview_summary',
|
|
527
532
|
scheduled_start_time: 'scheduled_start_time',
|
|
@@ -531,7 +536,6 @@ exports.Prisma.InterviewScalarFieldEnum = {
|
|
|
531
536
|
recording_url: 'recording_url',
|
|
532
537
|
interview_status: 'interview_status',
|
|
533
538
|
interview_platform: 'interview_platform',
|
|
534
|
-
google_event_id: 'google_event_id',
|
|
535
539
|
ai_interview_feedback: 'ai_interview_feedback',
|
|
536
540
|
interview_feedback: 'interview_feedback',
|
|
537
541
|
overall_feedback: 'overall_feedback',
|
|
@@ -662,19 +666,25 @@ exports.Prisma.NotesScalarFieldEnum = {
|
|
|
662
666
|
|
|
663
667
|
exports.Prisma.OngoingEvaluationScalarFieldEnum = {
|
|
664
668
|
id: 'id',
|
|
665
|
-
organisation_id: 'organisation_id',
|
|
666
669
|
application_id: 'application_id',
|
|
667
670
|
candidate_id: 'candidate_id',
|
|
668
671
|
resume_id: 'resume_id',
|
|
672
|
+
organisation_id: 'organisation_id',
|
|
669
673
|
job_description_id: 'job_description_id',
|
|
670
674
|
evaluation_plan_id: 'evaluation_plan_id',
|
|
671
675
|
interview_id: 'interview_id',
|
|
672
676
|
assignment_id: 'assignment_id',
|
|
673
677
|
assessment_id: 'assessment_id',
|
|
678
|
+
status: 'status',
|
|
674
679
|
state: 'state',
|
|
675
680
|
round_status: 'round_status',
|
|
676
681
|
comments: 'comments',
|
|
677
|
-
|
|
682
|
+
created_at: 'created_at',
|
|
683
|
+
updated_at: 'updated_at',
|
|
684
|
+
created_by: 'created_by',
|
|
685
|
+
updated_by: 'updated_by',
|
|
686
|
+
is_active: 'is_active',
|
|
687
|
+
is_current: 'is_current',
|
|
678
688
|
title: 'title',
|
|
679
689
|
description: 'description',
|
|
680
690
|
order_no: 'order_no',
|
|
@@ -684,16 +694,8 @@ exports.Prisma.OngoingEvaluationScalarFieldEnum = {
|
|
|
684
694
|
elimination_round: 'elimination_round',
|
|
685
695
|
evaluation_type: 'evaluation_type',
|
|
686
696
|
type_of_round: 'type_of_round',
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
duration_unit: 'duration_unit',
|
|
690
|
-
details: 'details',
|
|
691
|
-
created_at: 'created_at',
|
|
692
|
-
updated_at: 'updated_at',
|
|
693
|
-
created_by: 'created_by',
|
|
694
|
-
updated_by: 'updated_by',
|
|
695
|
-
is_active: 'is_active',
|
|
696
|
-
is_current: 'is_current'
|
|
697
|
+
timeline: 'timeline',
|
|
698
|
+
details: 'details'
|
|
697
699
|
};
|
|
698
700
|
|
|
699
701
|
exports.Prisma.OrganisationScalarFieldEnum = {
|
|
@@ -841,6 +843,7 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
841
843
|
email: 'email',
|
|
842
844
|
password: 'password',
|
|
843
845
|
role_id: 'role_id',
|
|
846
|
+
organisation_id: 'organisation_id',
|
|
844
847
|
google_id: 'google_id',
|
|
845
848
|
refresh_token: 'refresh_token',
|
|
846
849
|
created_at: 'created_at',
|
|
@@ -850,7 +853,7 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
850
853
|
is_active: 'is_active',
|
|
851
854
|
is_self_registered: 'is_self_registered',
|
|
852
855
|
permission_id: 'permission_id',
|
|
853
|
-
|
|
856
|
+
preferences: 'preferences',
|
|
854
857
|
profile_created: 'profile_created',
|
|
855
858
|
first_login_status: 'first_login_status',
|
|
856
859
|
name: 'name',
|
|
@@ -984,6 +987,13 @@ exports.ApplicationStatus = exports.$Enums.ApplicationStatus = {
|
|
|
984
987
|
REJECTED: 'REJECTED'
|
|
985
988
|
};
|
|
986
989
|
|
|
990
|
+
exports.AssessmentCategory = exports.$Enums.AssessmentCategory = {
|
|
991
|
+
MCQ: 'MCQ',
|
|
992
|
+
COMPETENCY: 'COMPETENCY',
|
|
993
|
+
CASE_STUDY: 'CASE_STUDY',
|
|
994
|
+
ASSIGNMENT: 'ASSIGNMENT'
|
|
995
|
+
};
|
|
996
|
+
|
|
987
997
|
exports.AssignmentStatus = exports.$Enums.AssignmentStatus = {
|
|
988
998
|
AVAILABLE: 'AVAILABLE',
|
|
989
999
|
SCHEDULED: 'SCHEDULED',
|
|
@@ -993,7 +1003,8 @@ exports.AssignmentStatus = exports.$Enums.AssignmentStatus = {
|
|
|
993
1003
|
exports.AuthProvider = exports.$Enums.AuthProvider = {
|
|
994
1004
|
GOOGLE: 'GOOGLE',
|
|
995
1005
|
MICROSOFT: 'MICROSOFT',
|
|
996
|
-
ZOOM: 'ZOOM'
|
|
1006
|
+
ZOOM: 'ZOOM',
|
|
1007
|
+
CALENDLY: 'CALENDLY'
|
|
997
1008
|
};
|
|
998
1009
|
|
|
999
1010
|
exports.JobType = exports.$Enums.JobType = {
|
|
@@ -1121,6 +1132,16 @@ exports.JobProfileStatus = exports.$Enums.JobProfileStatus = {
|
|
|
1121
1132
|
COMPLETE: 'COMPLETE'
|
|
1122
1133
|
};
|
|
1123
1134
|
|
|
1135
|
+
exports.OngoingEvaluationStatus = exports.$Enums.OngoingEvaluationStatus = {
|
|
1136
|
+
LOCKED: 'LOCKED',
|
|
1137
|
+
ACTION_REQUIRED: 'ACTION_REQUIRED',
|
|
1138
|
+
IN_PROGRESS: 'IN_PROGRESS',
|
|
1139
|
+
EVALUATED: 'EVALUATED',
|
|
1140
|
+
CLEARED: 'CLEARED',
|
|
1141
|
+
NOT_CLEARED: 'NOT_CLEARED',
|
|
1142
|
+
SKIPPED: 'SKIPPED'
|
|
1143
|
+
};
|
|
1144
|
+
|
|
1124
1145
|
exports.OngoingEvaluationState = exports.$Enums.OngoingEvaluationState = {
|
|
1125
1146
|
NOT_STARTED: 'NOT_STARTED',
|
|
1126
1147
|
IN_PROGRESS: 'IN_PROGRESS',
|