@adaptware/eagles-db 0.1.61 → 0.1.67

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.
@@ -209,19 +209,21 @@ exports.Prisma.ApprovalScalarFieldEnum = {
209
209
 
210
210
  exports.Prisma.AssessmentScalarFieldEnum = {
211
211
  id: 'id',
212
+ organisation_id: 'organisation_id',
212
213
  assessment_library_id: 'assessment_library_id',
213
214
  candidate_id: 'candidate_id',
214
215
  reviewer_id: 'reviewer_id',
215
216
  score: 'score',
216
217
  feedback: 'feedback',
217
218
  scheduled_start_time: 'scheduled_start_time',
218
- assessment_status: 'assessment_status',
219
+ scheduled_end_time: 'scheduled_end_time',
220
+ actual_start_time: 'actual_start_time',
221
+ actual_end_time: 'actual_end_time',
219
222
  created_at: 'created_at',
220
223
  updated_at: 'updated_at',
221
224
  created_by: 'created_by',
222
225
  updated_by: 'updated_by',
223
226
  is_active: 'is_active',
224
- panelistId: 'panelistId',
225
227
  userId: 'userId'
226
228
  };
227
229
 
@@ -264,6 +266,7 @@ exports.Prisma.AssignmentScalarFieldEnum = {
264
266
  status: 'status',
265
267
  cancel_reason: 'cancel_reason',
266
268
  solution_url: 'solution_url',
269
+ zip_url: 'zip_url',
267
270
  scheduled_start_time: 'scheduled_start_time',
268
271
  scheduled_end_time: 'scheduled_end_time',
269
272
  created_at: 'created_at',
@@ -553,7 +556,8 @@ exports.Prisma.JobDescriptionScalarFieldEnum = {
553
556
  created_by: 'created_by',
554
557
  updated_by: 'updated_by',
555
558
  is_active: 'is_active',
556
- openings: 'openings'
559
+ openings: 'openings',
560
+ job_profile_id: 'job_profile_id'
557
561
  };
558
562
 
559
563
  exports.Prisma.JobDescriptionDataScalarFieldEnum = {
@@ -568,6 +572,47 @@ exports.Prisma.JobDescriptionDataScalarFieldEnum = {
568
572
  is_active: 'is_active'
569
573
  };
570
574
 
575
+ exports.Prisma.JobProfileScalarFieldEnum = {
576
+ id: 'id',
577
+ organisation_id: 'organisation_id',
578
+ created_by: 'created_by',
579
+ assigned_to: 'assigned_to',
580
+ status: 'status',
581
+ title: 'title',
582
+ role_type: 'role_type',
583
+ work_arrangement: 'work_arrangement',
584
+ location: 'location',
585
+ experience_min: 'experience_min',
586
+ reporting: 'reporting',
587
+ comp_range: 'comp_range',
588
+ comp_benchmark: 'comp_benchmark',
589
+ responsibilities: 'responsibilities',
590
+ deliverables: 'deliverables',
591
+ must_have_skills: 'must_have_skills',
592
+ nice_to_have_skills: 'nice_to_have_skills',
593
+ dealbreakers: 'dealbreakers',
594
+ culture: 'culture',
595
+ success_metrics: 'success_metrics',
596
+ competencies: 'competencies',
597
+ conversation_history: 'conversation_history',
598
+ current_phase: 'current_phase',
599
+ orion_execution_id: 'orion_execution_id',
600
+ created_at: 'created_at',
601
+ updated_at: 'updated_at',
602
+ is_active: 'is_active'
603
+ };
604
+
605
+ exports.Prisma.LiveAnalysisScalarFieldEnum = {
606
+ id: 'id',
607
+ interview_id: 'interview_id',
608
+ analysis: 'analysis',
609
+ created_at: 'created_at',
610
+ updated_at: 'updated_at',
611
+ created_by: 'created_by',
612
+ updated_by: 'updated_by',
613
+ is_active: 'is_active'
614
+ };
615
+
571
616
  exports.Prisma.MessageScalarFieldEnum = {
572
617
  id: 'id',
573
618
  sender_id: 'sender_id',
@@ -590,6 +635,7 @@ exports.Prisma.OngoingEvaluationScalarFieldEnum = {
590
635
  evaluation_plan_id: 'evaluation_plan_id',
591
636
  interview_id: 'interview_id',
592
637
  assignment_id: 'assignment_id',
638
+ assessment_id: 'assessment_id',
593
639
  status: 'status',
594
640
  state: 'state',
595
641
  round_status: 'round_status',
@@ -849,17 +895,6 @@ exports.FitCheckStatus = exports.$Enums.FitCheckStatus = {
849
895
  NOT_RECOMMENDED: 'NOT_RECOMMENDED'
850
896
  };
851
897
 
852
- exports.AssessmentStatus = exports.$Enums.AssessmentStatus = {
853
- SCHEDULED: 'SCHEDULED',
854
- IN_PROGRESS: 'IN_PROGRESS',
855
- COMPLETED: 'COMPLETED',
856
- CANCELLED: 'CANCELLED',
857
- RESCHEDULED: 'RESCHEDULED',
858
- NO_SHOW: 'NO_SHOW',
859
- EVALUATION_PENDING: 'EVALUATION_PENDING',
860
- EVALUATED: 'EVALUATED'
861
- };
862
-
863
898
  exports.AssessmentCategory = exports.$Enums.AssessmentCategory = {
864
899
  MCQ: 'MCQ',
865
900
  COMPETENCY: 'COMPETENCY',
@@ -923,7 +958,8 @@ exports.EvaluationPlanType = exports.$Enums.EvaluationPlanType = {
923
958
 
924
959
  exports.IntegrationProvider = exports.$Enums.IntegrationProvider = {
925
960
  NAUKRI: 'NAUKRI',
926
- ZOHO_RECRUIT: 'ZOHO_RECRUIT'
961
+ ZOHO_RECRUIT: 'ZOHO_RECRUIT',
962
+ LINKEDIN: 'LINKEDIN'
927
963
  };
928
964
 
929
965
  exports.IntegrationAuthType = exports.$Enums.IntegrationAuthType = {
@@ -975,6 +1011,13 @@ exports.JobDescriptionStatus = exports.$Enums.JobDescriptionStatus = {
975
1011
  CLOSED: 'CLOSED'
976
1012
  };
977
1013
 
1014
+ exports.JobProfileStatus = exports.$Enums.JobProfileStatus = {
1015
+ DRAFT: 'DRAFT',
1016
+ INTAKE_SENT: 'INTAKE_SENT',
1017
+ INTAKE_IN_PROGRESS: 'INTAKE_IN_PROGRESS',
1018
+ COMPLETE: 'COMPLETE'
1019
+ };
1020
+
978
1021
  exports.OngoingEvaluationStatus = exports.$Enums.OngoingEvaluationStatus = {
979
1022
  LOCKED: 'LOCKED',
980
1023
  ACTION_REQUIRED: 'ACTION_REQUIRED',
@@ -1064,6 +1107,8 @@ exports.Prisma.ModelName = {
1064
1107
  InterviewNotes: 'InterviewNotes',
1065
1108
  JobDescription: 'JobDescription',
1066
1109
  JobDescriptionData: 'JobDescriptionData',
1110
+ JobProfile: 'JobProfile',
1111
+ LiveAnalysis: 'LiveAnalysis',
1067
1112
  Message: 'Message',
1068
1113
  OngoingEvaluation: 'OngoingEvaluation',
1069
1114
  Organisation: 'Organisation',