@adaptware/eagles-db 0.4.10 → 0.4.11

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.
@@ -163,6 +163,22 @@ exports.Prisma.ActionScalarFieldEnum = {
163
163
  is_active: 'is_active'
164
164
  };
165
165
 
166
+ exports.Prisma.ActivityEventScalarFieldEnum = {
167
+ id: 'id',
168
+ organisation_id: 'organisation_id',
169
+ event_type: 'event_type',
170
+ entity_type: 'entity_type',
171
+ entity_id: 'entity_id',
172
+ actor_id: 'actor_id',
173
+ actor_type: 'actor_type',
174
+ related_entities: 'related_entities',
175
+ snapshot: 'snapshot',
176
+ payload: 'payload',
177
+ schema_version: 'schema_version',
178
+ occurred_at: 'occurred_at',
179
+ created_at: 'created_at'
180
+ };
181
+
166
182
  exports.Prisma.ActivityLogScalarFieldEnum = {
167
183
  id: 'id',
168
184
  application_id: 'application_id',
@@ -185,6 +201,7 @@ exports.Prisma.ApplicationScalarFieldEnum = {
185
201
  applied_at: 'applied_at',
186
202
  evaluation_plan_id: 'evaluation_plan_id',
187
203
  fit_check_id: 'fit_check_id',
204
+ recruiter_id: 'recruiter_id',
188
205
  round_no: 'round_no',
189
206
  on_notice_period: 'on_notice_period',
190
207
  expected_joining_date: 'expected_joining_date',
@@ -402,6 +419,7 @@ exports.Prisma.EvaluationPlanScalarFieldEnum = {
402
419
  duration: 'duration',
403
420
  duration_unit: 'duration_unit',
404
421
  deadline: 'deadline',
422
+ category: 'category',
405
423
  created_by: 'created_by',
406
424
  updated_by: 'updated_by',
407
425
  created_at: 'created_at',
@@ -585,7 +603,10 @@ exports.Prisma.JobDescriptionScalarFieldEnum = {
585
603
  summary: 'summary',
586
604
  ai_insight: 'ai_insight',
587
605
  job_fit_comparison: 'job_fit_comparison',
588
- recommendation_config: 'recommendation_config',
606
+ target_closing_date: 'target_closing_date',
607
+ closing_date: 'closing_date',
608
+ job_number: 'job_number',
609
+ job_code: 'job_code',
589
610
  created_at: 'created_at',
590
611
  updated_at: 'updated_at',
591
612
  created_by: 'created_by',
@@ -679,7 +700,6 @@ exports.Prisma.OngoingEvaluationScalarFieldEnum = {
679
700
  resume_id: 'resume_id',
680
701
  job_description_id: 'job_description_id',
681
702
  evaluation_plan_id: 'evaluation_plan_id',
682
- is_committed: 'is_committed',
683
703
  interview_id: 'interview_id',
684
704
  assignment_id: 'assignment_id',
685
705
  assessment_id: 'assessment_id',
@@ -687,6 +707,7 @@ exports.Prisma.OngoingEvaluationScalarFieldEnum = {
687
707
  round_status: 'round_status',
688
708
  comments: 'comments',
689
709
  completed_at: 'completed_at',
710
+ is_committed: 'is_committed',
690
711
  title: 'title',
691
712
  description: 'description',
692
713
  order_no: 'order_no',
@@ -726,6 +747,8 @@ exports.Prisma.OrganisationScalarFieldEnum = {
726
747
  is_active: 'is_active',
727
748
  alias: 'alias',
728
749
  logo: 'logo',
750
+ org_code: 'org_code',
751
+ job_sequence: 'job_sequence',
729
752
  timezone: 'timezone'
730
753
  };
731
754
 
@@ -992,6 +1015,56 @@ exports.ActionStatus = exports.$Enums.ActionStatus = {
992
1015
  CANCELLED: 'CANCELLED'
993
1016
  };
994
1017
 
1018
+ exports.ActivityEventType = exports.$Enums.ActivityEventType = {
1019
+ APPLICATION_CREATED: 'APPLICATION_CREATED',
1020
+ APPLICATION_STARTED: 'APPLICATION_STARTED',
1021
+ APPLICATION_REJECTED: 'APPLICATION_REJECTED',
1022
+ APPLICATION_SHORTLISTED: 'APPLICATION_SHORTLISTED',
1023
+ ROUND_ASSIGNED: 'ROUND_ASSIGNED',
1024
+ ROUND_STARTED: 'ROUND_STARTED',
1025
+ ROUND_COMPLETED: 'ROUND_COMPLETED',
1026
+ ROUND_PASSED: 'ROUND_PASSED',
1027
+ ROUND_FAILED: 'ROUND_FAILED',
1028
+ ROUND_SKIPPED: 'ROUND_SKIPPED',
1029
+ INTERVIEW_SCHEDULED: 'INTERVIEW_SCHEDULED',
1030
+ INTERVIEW_RESCHEDULED: 'INTERVIEW_RESCHEDULED',
1031
+ INTERVIEW_CANCELLED: 'INTERVIEW_CANCELLED',
1032
+ INTERVIEW_COMPLETED: 'INTERVIEW_COMPLETED',
1033
+ INTERVIEW_NO_SHOW: 'INTERVIEW_NO_SHOW',
1034
+ INTERVIEW_EVALUATION_PENDING: 'INTERVIEW_EVALUATION_PENDING',
1035
+ INTERVIEW_EVALUATED: 'INTERVIEW_EVALUATED',
1036
+ FEEDBACK_SUBMITTED: 'FEEDBACK_SUBMITTED',
1037
+ JOB_CREATED: 'JOB_CREATED',
1038
+ JOB_PUBLISHED: 'JOB_PUBLISHED',
1039
+ JOB_CLOSED: 'JOB_CLOSED',
1040
+ JOB_DEACTIVATED: 'JOB_DEACTIVATED',
1041
+ EVALUATION_PLAN_CREATED: 'EVALUATION_PLAN_CREATED',
1042
+ EVALUATION_PLAN_PUBLISHED: 'EVALUATION_PLAN_PUBLISHED',
1043
+ EVALUATION_PLAN_DELETED: 'EVALUATION_PLAN_DELETED',
1044
+ EVALUATION_PLAN_UPDATED: 'EVALUATION_PLAN_UPDATED',
1045
+ STATUS_CHANGED: 'STATUS_CHANGED',
1046
+ CUSTOM: 'CUSTOM'
1047
+ };
1048
+
1049
+ exports.ActivityEntityType = exports.$Enums.ActivityEntityType = {
1050
+ APPLICATION: 'APPLICATION',
1051
+ CANDIDATE: 'CANDIDATE',
1052
+ JOB: 'JOB',
1053
+ ONGOING_EVALUATION: 'ONGOING_EVALUATION',
1054
+ EVALUATION_PLAN: 'EVALUATION_PLAN',
1055
+ INTERVIEW: 'INTERVIEW',
1056
+ ASSESSMENT: 'ASSESSMENT',
1057
+ ORGANISATION: 'ORGANISATION',
1058
+ USER: 'USER'
1059
+ };
1060
+
1061
+ exports.ActivityEntityActorType = exports.$Enums.ActivityEntityActorType = {
1062
+ USER: 'USER',
1063
+ SYSTEM: 'SYSTEM',
1064
+ AI_AGENT: 'AI_AGENT',
1065
+ WEBHOOK: 'WEBHOOK'
1066
+ };
1067
+
995
1068
  exports.ActivityActorType = exports.$Enums.ActivityActorType = {
996
1069
  USER: 'USER',
997
1070
  AI: 'AI',
@@ -1079,6 +1152,14 @@ exports.DurationUnit = exports.$Enums.DurationUnit = {
1079
1152
  DAYS: 'DAYS'
1080
1153
  };
1081
1154
 
1155
+ exports.EvaluationCategory = exports.$Enums.EvaluationCategory = {
1156
+ EXPERIENCE_SCREENING: 'EXPERIENCE_SCREENING',
1157
+ TECHNICAL_SCREENING: 'TECHNICAL_SCREENING',
1158
+ TECHNICAL_INTERVIEW: 'TECHNICAL_INTERVIEW',
1159
+ BUSINESS_ROUND: 'BUSINESS_ROUND',
1160
+ BEHAVIORAL_ROUND: 'BEHAVIORAL_ROUND'
1161
+ };
1162
+
1082
1163
  exports.IntegrationProvider = exports.$Enums.IntegrationProvider = {
1083
1164
  NAUKRI: 'NAUKRI',
1084
1165
  ZOHO_RECRUIT: 'ZOHO_RECRUIT',
@@ -1216,6 +1297,7 @@ exports.Prisma.ModelName = {
1216
1297
  CandidateQuestionResponse: 'CandidateQuestionResponse',
1217
1298
  UserRole: 'UserRole',
1218
1299
  Action: 'Action',
1300
+ ActivityEvent: 'ActivityEvent',
1219
1301
  ActivityLog: 'ActivityLog',
1220
1302
  Application: 'Application',
1221
1303
  Approval: 'Approval',