@adaptware/eagles-db 0.1.60 → 0.1.66
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 +51 -18
- package/client/index-browser.js +48 -15
- package/client/index.d.ts +23485 -17875
- package/client/index.js +51 -18
- package/client/package.json +1 -1
- package/client/schema.prisma +83 -16
- package/client/wasm.js +48 -15
- package/package.json +1 -1
- package/prisma/schema/CandidateQuestionResponse.prisma +4 -1
- package/prisma/schema/assessment.prisma +11 -15
- package/prisma/schema/integration.prisma +1 -0
- package/prisma/schema/interview.prisma +1 -0
- package/prisma/schema/jobDescription.prisma +3 -0
- package/prisma/schema/jobProfile.prisma +56 -0
- package/prisma/schema/ongoingEvaluation.prisma +2 -0
- package/prisma/schema/organisation.prisma +25 -23
- package/prisma/schema/user.prisma +2 -0
package/client/index-browser.js
CHANGED
|
@@ -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
|
-
|
|
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
|
|
|
@@ -515,6 +517,7 @@ exports.Prisma.InterviewScalarFieldEnum = {
|
|
|
515
517
|
interviewer_feedback: 'interviewer_feedback',
|
|
516
518
|
section_feedback: 'section_feedback',
|
|
517
519
|
interview_preparation: 'interview_preparation',
|
|
520
|
+
final_feedback: 'final_feedback',
|
|
518
521
|
created_at: 'created_at',
|
|
519
522
|
updated_at: 'updated_at',
|
|
520
523
|
created_by: 'created_by',
|
|
@@ -552,7 +555,8 @@ exports.Prisma.JobDescriptionScalarFieldEnum = {
|
|
|
552
555
|
created_by: 'created_by',
|
|
553
556
|
updated_by: 'updated_by',
|
|
554
557
|
is_active: 'is_active',
|
|
555
|
-
openings: 'openings'
|
|
558
|
+
openings: 'openings',
|
|
559
|
+
job_profile_id: 'job_profile_id'
|
|
556
560
|
};
|
|
557
561
|
|
|
558
562
|
exports.Prisma.JobDescriptionDataScalarFieldEnum = {
|
|
@@ -567,6 +571,36 @@ exports.Prisma.JobDescriptionDataScalarFieldEnum = {
|
|
|
567
571
|
is_active: 'is_active'
|
|
568
572
|
};
|
|
569
573
|
|
|
574
|
+
exports.Prisma.JobProfileScalarFieldEnum = {
|
|
575
|
+
id: 'id',
|
|
576
|
+
organisation_id: 'organisation_id',
|
|
577
|
+
created_by: 'created_by',
|
|
578
|
+
assigned_to: 'assigned_to',
|
|
579
|
+
status: 'status',
|
|
580
|
+
title: 'title',
|
|
581
|
+
role_type: 'role_type',
|
|
582
|
+
work_arrangement: 'work_arrangement',
|
|
583
|
+
location: 'location',
|
|
584
|
+
experience_min: 'experience_min',
|
|
585
|
+
reporting: 'reporting',
|
|
586
|
+
comp_range: 'comp_range',
|
|
587
|
+
comp_benchmark: 'comp_benchmark',
|
|
588
|
+
responsibilities: 'responsibilities',
|
|
589
|
+
deliverables: 'deliverables',
|
|
590
|
+
must_have_skills: 'must_have_skills',
|
|
591
|
+
nice_to_have_skills: 'nice_to_have_skills',
|
|
592
|
+
dealbreakers: 'dealbreakers',
|
|
593
|
+
culture: 'culture',
|
|
594
|
+
success_metrics: 'success_metrics',
|
|
595
|
+
competencies: 'competencies',
|
|
596
|
+
conversation_history: 'conversation_history',
|
|
597
|
+
current_phase: 'current_phase',
|
|
598
|
+
orion_execution_id: 'orion_execution_id',
|
|
599
|
+
created_at: 'created_at',
|
|
600
|
+
updated_at: 'updated_at',
|
|
601
|
+
is_active: 'is_active'
|
|
602
|
+
};
|
|
603
|
+
|
|
570
604
|
exports.Prisma.MessageScalarFieldEnum = {
|
|
571
605
|
id: 'id',
|
|
572
606
|
sender_id: 'sender_id',
|
|
@@ -589,6 +623,7 @@ exports.Prisma.OngoingEvaluationScalarFieldEnum = {
|
|
|
589
623
|
evaluation_plan_id: 'evaluation_plan_id',
|
|
590
624
|
interview_id: 'interview_id',
|
|
591
625
|
assignment_id: 'assignment_id',
|
|
626
|
+
assessment_id: 'assessment_id',
|
|
592
627
|
status: 'status',
|
|
593
628
|
state: 'state',
|
|
594
629
|
round_status: 'round_status',
|
|
@@ -848,17 +883,6 @@ exports.FitCheckStatus = exports.$Enums.FitCheckStatus = {
|
|
|
848
883
|
NOT_RECOMMENDED: 'NOT_RECOMMENDED'
|
|
849
884
|
};
|
|
850
885
|
|
|
851
|
-
exports.AssessmentStatus = exports.$Enums.AssessmentStatus = {
|
|
852
|
-
SCHEDULED: 'SCHEDULED',
|
|
853
|
-
IN_PROGRESS: 'IN_PROGRESS',
|
|
854
|
-
COMPLETED: 'COMPLETED',
|
|
855
|
-
CANCELLED: 'CANCELLED',
|
|
856
|
-
RESCHEDULED: 'RESCHEDULED',
|
|
857
|
-
NO_SHOW: 'NO_SHOW',
|
|
858
|
-
EVALUATION_PENDING: 'EVALUATION_PENDING',
|
|
859
|
-
EVALUATED: 'EVALUATED'
|
|
860
|
-
};
|
|
861
|
-
|
|
862
886
|
exports.AssessmentCategory = exports.$Enums.AssessmentCategory = {
|
|
863
887
|
MCQ: 'MCQ',
|
|
864
888
|
COMPETENCY: 'COMPETENCY',
|
|
@@ -922,7 +946,8 @@ exports.EvaluationPlanType = exports.$Enums.EvaluationPlanType = {
|
|
|
922
946
|
|
|
923
947
|
exports.IntegrationProvider = exports.$Enums.IntegrationProvider = {
|
|
924
948
|
NAUKRI: 'NAUKRI',
|
|
925
|
-
ZOHO_RECRUIT: 'ZOHO_RECRUIT'
|
|
949
|
+
ZOHO_RECRUIT: 'ZOHO_RECRUIT',
|
|
950
|
+
LINKEDIN: 'LINKEDIN'
|
|
926
951
|
};
|
|
927
952
|
|
|
928
953
|
exports.IntegrationAuthType = exports.$Enums.IntegrationAuthType = {
|
|
@@ -974,6 +999,13 @@ exports.JobDescriptionStatus = exports.$Enums.JobDescriptionStatus = {
|
|
|
974
999
|
CLOSED: 'CLOSED'
|
|
975
1000
|
};
|
|
976
1001
|
|
|
1002
|
+
exports.JobProfileStatus = exports.$Enums.JobProfileStatus = {
|
|
1003
|
+
DRAFT: 'DRAFT',
|
|
1004
|
+
INTAKE_SENT: 'INTAKE_SENT',
|
|
1005
|
+
INTAKE_IN_PROGRESS: 'INTAKE_IN_PROGRESS',
|
|
1006
|
+
COMPLETE: 'COMPLETE'
|
|
1007
|
+
};
|
|
1008
|
+
|
|
977
1009
|
exports.OngoingEvaluationStatus = exports.$Enums.OngoingEvaluationStatus = {
|
|
978
1010
|
LOCKED: 'LOCKED',
|
|
979
1011
|
ACTION_REQUIRED: 'ACTION_REQUIRED',
|
|
@@ -1063,6 +1095,7 @@ exports.Prisma.ModelName = {
|
|
|
1063
1095
|
InterviewNotes: 'InterviewNotes',
|
|
1064
1096
|
JobDescription: 'JobDescription',
|
|
1065
1097
|
JobDescriptionData: 'JobDescriptionData',
|
|
1098
|
+
JobProfile: 'JobProfile',
|
|
1066
1099
|
Message: 'Message',
|
|
1067
1100
|
OngoingEvaluation: 'OngoingEvaluation',
|
|
1068
1101
|
Organisation: 'Organisation',
|