@adaptware/eagles-db 0.1.61 → 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 +52 -20
- package/client/index-browser.js +47 -15
- package/client/index.d.ts +23395 -17871
- package/client/index.js +52 -20
- package/client/package.json +1 -1
- package/client/schema.prisma +82 -16
- package/client/wasm.js +47 -15
- package/package.json +1 -1
- package/prisma/.DS_Store +0 -0
- package/prisma/schema/CandidateQuestionResponse.prisma +4 -1
- package/prisma/schema/assessment.prisma +11 -15
- package/prisma/schema/integration.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/libquery_engine-darwin.dylib.node +0 -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
|
|
|
@@ -553,7 +555,8 @@ exports.Prisma.JobDescriptionScalarFieldEnum = {
|
|
|
553
555
|
created_by: 'created_by',
|
|
554
556
|
updated_by: 'updated_by',
|
|
555
557
|
is_active: 'is_active',
|
|
556
|
-
openings: 'openings'
|
|
558
|
+
openings: 'openings',
|
|
559
|
+
job_profile_id: 'job_profile_id'
|
|
557
560
|
};
|
|
558
561
|
|
|
559
562
|
exports.Prisma.JobDescriptionDataScalarFieldEnum = {
|
|
@@ -568,6 +571,36 @@ exports.Prisma.JobDescriptionDataScalarFieldEnum = {
|
|
|
568
571
|
is_active: 'is_active'
|
|
569
572
|
};
|
|
570
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
|
+
|
|
571
604
|
exports.Prisma.MessageScalarFieldEnum = {
|
|
572
605
|
id: 'id',
|
|
573
606
|
sender_id: 'sender_id',
|
|
@@ -590,6 +623,7 @@ exports.Prisma.OngoingEvaluationScalarFieldEnum = {
|
|
|
590
623
|
evaluation_plan_id: 'evaluation_plan_id',
|
|
591
624
|
interview_id: 'interview_id',
|
|
592
625
|
assignment_id: 'assignment_id',
|
|
626
|
+
assessment_id: 'assessment_id',
|
|
593
627
|
status: 'status',
|
|
594
628
|
state: 'state',
|
|
595
629
|
round_status: 'round_status',
|
|
@@ -849,17 +883,6 @@ exports.FitCheckStatus = exports.$Enums.FitCheckStatus = {
|
|
|
849
883
|
NOT_RECOMMENDED: 'NOT_RECOMMENDED'
|
|
850
884
|
};
|
|
851
885
|
|
|
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
886
|
exports.AssessmentCategory = exports.$Enums.AssessmentCategory = {
|
|
864
887
|
MCQ: 'MCQ',
|
|
865
888
|
COMPETENCY: 'COMPETENCY',
|
|
@@ -923,7 +946,8 @@ exports.EvaluationPlanType = exports.$Enums.EvaluationPlanType = {
|
|
|
923
946
|
|
|
924
947
|
exports.IntegrationProvider = exports.$Enums.IntegrationProvider = {
|
|
925
948
|
NAUKRI: 'NAUKRI',
|
|
926
|
-
ZOHO_RECRUIT: 'ZOHO_RECRUIT'
|
|
949
|
+
ZOHO_RECRUIT: 'ZOHO_RECRUIT',
|
|
950
|
+
LINKEDIN: 'LINKEDIN'
|
|
927
951
|
};
|
|
928
952
|
|
|
929
953
|
exports.IntegrationAuthType = exports.$Enums.IntegrationAuthType = {
|
|
@@ -975,6 +999,13 @@ exports.JobDescriptionStatus = exports.$Enums.JobDescriptionStatus = {
|
|
|
975
999
|
CLOSED: 'CLOSED'
|
|
976
1000
|
};
|
|
977
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
|
+
|
|
978
1009
|
exports.OngoingEvaluationStatus = exports.$Enums.OngoingEvaluationStatus = {
|
|
979
1010
|
LOCKED: 'LOCKED',
|
|
980
1011
|
ACTION_REQUIRED: 'ACTION_REQUIRED',
|
|
@@ -1064,6 +1095,7 @@ exports.Prisma.ModelName = {
|
|
|
1064
1095
|
InterviewNotes: 'InterviewNotes',
|
|
1065
1096
|
JobDescription: 'JobDescription',
|
|
1066
1097
|
JobDescriptionData: 'JobDescriptionData',
|
|
1098
|
+
JobProfile: 'JobProfile',
|
|
1067
1099
|
Message: 'Message',
|
|
1068
1100
|
OngoingEvaluation: 'OngoingEvaluation',
|
|
1069
1101
|
Organisation: 'Organisation',
|