@adaptware/eagles-db 0.1.83 → 0.1.84

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 (30) hide show
  1. package/client/edge.js +18 -37
  2. package/client/index-browser.js +13 -32
  3. package/client/index.d.ts +1002 -1170
  4. package/client/index.js +18 -37
  5. package/client/package.json +1 -1
  6. package/client/schema.prisma +43 -59
  7. package/client/wasm.js +13 -32
  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/migration_lock.toml +3 -0
  26. package/prisma/schema/assessmentLibrary.prisma +15 -26
  27. package/prisma/schema/evaluationPlan.prisma +1 -2
  28. package/prisma/schema/interview.prisma +20 -21
  29. package/prisma/schema/ongoingEvaluation.prisma +26 -30
  30. 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',
@@ -526,7 +522,6 @@ exports.Prisma.InterviewScalarFieldEnum = {
526
522
  application_id: 'application_id',
527
523
  resume_id: 'resume_id',
528
524
  job_description_id: 'job_description_id',
529
- calendar_event_id: 'calendar_event_id',
530
525
  room_name: 'room_name',
531
526
  interview_summary: 'interview_summary',
532
527
  scheduled_start_time: 'scheduled_start_time',
@@ -536,6 +531,7 @@ exports.Prisma.InterviewScalarFieldEnum = {
536
531
  recording_url: 'recording_url',
537
532
  interview_status: 'interview_status',
538
533
  interview_platform: 'interview_platform',
534
+ google_event_id: 'google_event_id',
539
535
  ai_interview_feedback: 'ai_interview_feedback',
540
536
  interview_feedback: 'interview_feedback',
541
537
  overall_feedback: 'overall_feedback',
@@ -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 = {
@@ -986,13 +984,6 @@ exports.ApplicationStatus = exports.$Enums.ApplicationStatus = {
986
984
  REJECTED: 'REJECTED'
987
985
  };
988
986
 
989
- exports.AssessmentCategory = exports.$Enums.AssessmentCategory = {
990
- MCQ: 'MCQ',
991
- COMPETENCY: 'COMPETENCY',
992
- CASE_STUDY: 'CASE_STUDY',
993
- ASSIGNMENT: 'ASSIGNMENT'
994
- };
995
-
996
987
  exports.AssignmentStatus = exports.$Enums.AssignmentStatus = {
997
988
  AVAILABLE: 'AVAILABLE',
998
989
  SCHEDULED: 'SCHEDULED',
@@ -1130,16 +1121,6 @@ exports.JobProfileStatus = exports.$Enums.JobProfileStatus = {
1130
1121
  COMPLETE: 'COMPLETE'
1131
1122
  };
1132
1123
 
1133
- exports.OngoingEvaluationStatus = exports.$Enums.OngoingEvaluationStatus = {
1134
- LOCKED: 'LOCKED',
1135
- ACTION_REQUIRED: 'ACTION_REQUIRED',
1136
- IN_PROGRESS: 'IN_PROGRESS',
1137
- EVALUATED: 'EVALUATED',
1138
- CLEARED: 'CLEARED',
1139
- NOT_CLEARED: 'NOT_CLEARED',
1140
- SKIPPED: 'SKIPPED'
1141
- };
1142
-
1143
1124
  exports.OngoingEvaluationState = exports.$Enums.OngoingEvaluationState = {
1144
1125
  NOT_STARTED: 'NOT_STARTED',
1145
1126
  IN_PROGRESS: 'IN_PROGRESS',