@adaptware/eagles-db 0.1.85 → 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.
Files changed (31) hide show
  1. package/client/edge.js +17 -44
  2. package/client/index-browser.js +12 -39
  3. package/client/index.d.ts +902 -1192
  4. package/client/index.js +17 -44
  5. package/client/package.json +1 -1
  6. package/client/schema.prisma +42 -66
  7. package/client/wasm.js +12 -39
  8. package/package.json +1 -1
  9. package/prisma/.DS_Store +0 -0
  10. package/prisma/migrations/20260415120000_remove_job_profile_current_phase/migration.sql +2 -0
  11. package/prisma/migrations/20260422120000_add_integration_provider_zoom/migration.sql +2 -0
  12. package/prisma/migrations/20260422140000_add_zoom_meeting_tables/migration.sql +57 -0
  13. package/prisma/migrations/20260422180000_add_zoom_webhook_event/migration.sql +18 -0
  14. package/prisma/migrations/20260423140000_add_interview_platform/migration.sql +6 -0
  15. package/prisma/migrations/20260423150000_remove_interview_zoom_topic/migration.sql +2 -0
  16. package/prisma/migrations/20260423160000_zoom_meeting_uuid/migration.sql +4 -0
  17. package/prisma/migrations/20260424120000_auth_module_user_provider_unique/migration.sql +5 -0
  18. package/prisma/migrations/20260424130000_zoom_meeting_zoom_host_user_id/migration.sql +6 -0
  19. package/prisma/migrations/20260425100000_zoom_participant_user_enum/migration.sql +22 -0
  20. package/prisma/migrations/20260425110000_zoom_participant_zoom_id_required/migration.sql +13 -0
  21. package/prisma/migrations/20260425120000_zoom_participant_id_nullable/migration.sql +4 -0
  22. package/prisma/migrations/20260429140000_drop_evaluation_plan_job_order_unique/migration.sql +5 -0
  23. package/prisma/migrations/20260429180000_eval_plan_timeline_optional_ongoing_duration/migration.sql +15 -0
  24. package/prisma/migrations/20260430120000_drop_assessment_library_metadata_fields/migration.sql +8 -0
  25. package/prisma/migrations/20260430140000_drop_question_question_type/migration.sql +5 -0
  26. package/prisma/migrations/migration_lock.toml +3 -0
  27. package/prisma/schema/assessmentLibrary.prisma +15 -26
  28. package/prisma/schema/evaluationPlan.prisma +1 -2
  29. package/prisma/schema/ongoingEvaluation.prisma +26 -30
  30. package/prisma/schema/questions.prisma +0 -8
  31. package/client/libquery_engine-darwin.dylib.node +0 -0
@@ -236,14 +236,10 @@ 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',
242
239
  time_required: 'time_required',
243
240
  passing_score: 'passing_score',
244
241
  max_score: 'max_score',
245
242
  organisation_id: 'organisation_id',
246
- created_by_ai: 'created_by_ai',
247
243
  created_at: 'created_at',
248
244
  updated_at: 'updated_at',
249
245
  created_by: 'created_by',
@@ -666,25 +662,19 @@ exports.Prisma.NotesScalarFieldEnum = {
666
662
 
667
663
  exports.Prisma.OngoingEvaluationScalarFieldEnum = {
668
664
  id: 'id',
665
+ organisation_id: 'organisation_id',
669
666
  application_id: 'application_id',
670
667
  candidate_id: 'candidate_id',
671
668
  resume_id: 'resume_id',
672
- organisation_id: 'organisation_id',
673
669
  job_description_id: 'job_description_id',
674
670
  evaluation_plan_id: 'evaluation_plan_id',
675
671
  interview_id: 'interview_id',
676
672
  assignment_id: 'assignment_id',
677
673
  assessment_id: 'assessment_id',
678
- status: 'status',
679
674
  state: 'state',
680
675
  round_status: 'round_status',
681
676
  comments: 'comments',
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',
677
+ completed_at: 'completed_at',
688
678
  title: 'title',
689
679
  description: 'description',
690
680
  order_no: 'order_no',
@@ -694,8 +684,16 @@ exports.Prisma.OngoingEvaluationScalarFieldEnum = {
694
684
  elimination_round: 'elimination_round',
695
685
  evaluation_type: 'evaluation_type',
696
686
  type_of_round: 'type_of_round',
697
- timeline: 'timeline',
698
- details: 'details'
687
+ duration: 'duration',
688
+ deadline: 'deadline',
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'
699
697
  };
700
698
 
701
699
  exports.Prisma.OrganisationScalarFieldEnum = {
@@ -754,7 +752,6 @@ exports.Prisma.QuestionScalarFieldEnum = {
754
752
  evaluation_plan_id: 'evaluation_plan_id',
755
753
  candidate_id: 'candidate_id',
756
754
  skill: 'skill',
757
- question_type: 'question_type',
758
755
  question: 'question',
759
756
  answer: 'answer',
760
757
  options: 'options',
@@ -987,13 +984,6 @@ exports.ApplicationStatus = exports.$Enums.ApplicationStatus = {
987
984
  REJECTED: 'REJECTED'
988
985
  };
989
986
 
990
- exports.AssessmentCategory = exports.$Enums.AssessmentCategory = {
991
- MCQ: 'MCQ',
992
- COMPETENCY: 'COMPETENCY',
993
- CASE_STUDY: 'CASE_STUDY',
994
- ASSIGNMENT: 'ASSIGNMENT'
995
- };
996
-
997
987
  exports.AssignmentStatus = exports.$Enums.AssignmentStatus = {
998
988
  AVAILABLE: 'AVAILABLE',
999
989
  SCHEDULED: 'SCHEDULED',
@@ -1132,16 +1122,6 @@ exports.JobProfileStatus = exports.$Enums.JobProfileStatus = {
1132
1122
  COMPLETE: 'COMPLETE'
1133
1123
  };
1134
1124
 
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
-
1145
1125
  exports.OngoingEvaluationState = exports.$Enums.OngoingEvaluationState = {
1146
1126
  NOT_STARTED: 'NOT_STARTED',
1147
1127
  IN_PROGRESS: 'IN_PROGRESS',
@@ -1176,13 +1156,6 @@ exports.AsyncOperationStatus = exports.$Enums.AsyncOperationStatus = {
1176
1156
  CANCELLED: 'CANCELLED'
1177
1157
  };
1178
1158
 
1179
- exports.QuestionType = exports.$Enums.QuestionType = {
1180
- MCQ: 'MCQ',
1181
- TRUE_FALSE: 'TRUE_FALSE',
1182
- THEORY: 'THEORY',
1183
- CODING: 'CODING'
1184
- };
1185
-
1186
1159
  exports.Difficulty = exports.$Enums.Difficulty = {
1187
1160
  EASY: 'EASY',
1188
1161
  MEDIUM: 'MEDIUM',