@adaptware/eagles-db 1.1.63 → 1.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 +7 -47
- package/client/index-browser.js +2 -42
- package/client/index.d.ts +31049 -35535
- package/client/index.js +7 -47
- package/client/libquery_engine-darwin.dylib.node +0 -0
- package/client/package.json +1 -1
- package/client/schema.prisma +0 -64
- package/client/wasm.js +2 -42
- package/package.json +1 -1
- package/prisma/schema/CandidateQuestionResponse.prisma +4 -1
- package/prisma/schema/assessment.prisma +11 -15
- package/prisma/schema/interview.prisma +2 -1
- package/prisma/schema/liveAnalysis.prisma +11 -0
- package/prisma/schema/ongoingEvaluation.prisma +2 -0
- package/prisma/schema/organisation.prisma +25 -24
package/client/index-browser.js
CHANGED
|
@@ -553,8 +553,7 @@ exports.Prisma.JobDescriptionScalarFieldEnum = {
|
|
|
553
553
|
created_by: 'created_by',
|
|
554
554
|
updated_by: 'updated_by',
|
|
555
555
|
is_active: 'is_active',
|
|
556
|
-
openings: 'openings'
|
|
557
|
-
job_profile_id: 'job_profile_id'
|
|
556
|
+
openings: 'openings'
|
|
558
557
|
};
|
|
559
558
|
|
|
560
559
|
exports.Prisma.JobDescriptionDataScalarFieldEnum = {
|
|
@@ -569,36 +568,6 @@ exports.Prisma.JobDescriptionDataScalarFieldEnum = {
|
|
|
569
568
|
is_active: 'is_active'
|
|
570
569
|
};
|
|
571
570
|
|
|
572
|
-
exports.Prisma.JobProfileScalarFieldEnum = {
|
|
573
|
-
id: 'id',
|
|
574
|
-
organisation_id: 'organisation_id',
|
|
575
|
-
created_by: 'created_by',
|
|
576
|
-
assigned_to: 'assigned_to',
|
|
577
|
-
status: 'status',
|
|
578
|
-
title: 'title',
|
|
579
|
-
role_type: 'role_type',
|
|
580
|
-
work_arrangement: 'work_arrangement',
|
|
581
|
-
location: 'location',
|
|
582
|
-
experience_min: 'experience_min',
|
|
583
|
-
reporting: 'reporting',
|
|
584
|
-
comp_range: 'comp_range',
|
|
585
|
-
comp_benchmark: 'comp_benchmark',
|
|
586
|
-
responsibilities: 'responsibilities',
|
|
587
|
-
deliverables: 'deliverables',
|
|
588
|
-
must_have_skills: 'must_have_skills',
|
|
589
|
-
nice_to_have_skills: 'nice_to_have_skills',
|
|
590
|
-
dealbreakers: 'dealbreakers',
|
|
591
|
-
culture: 'culture',
|
|
592
|
-
success_metrics: 'success_metrics',
|
|
593
|
-
competencies: 'competencies',
|
|
594
|
-
conversation_history: 'conversation_history',
|
|
595
|
-
current_phase: 'current_phase',
|
|
596
|
-
orion_execution_id: 'orion_execution_id',
|
|
597
|
-
created_at: 'created_at',
|
|
598
|
-
updated_at: 'updated_at',
|
|
599
|
-
is_active: 'is_active'
|
|
600
|
-
};
|
|
601
|
-
|
|
602
571
|
exports.Prisma.MessageScalarFieldEnum = {
|
|
603
572
|
id: 'id',
|
|
604
573
|
sender_id: 'sender_id',
|
|
@@ -954,8 +923,7 @@ exports.EvaluationPlanType = exports.$Enums.EvaluationPlanType = {
|
|
|
954
923
|
|
|
955
924
|
exports.IntegrationProvider = exports.$Enums.IntegrationProvider = {
|
|
956
925
|
NAUKRI: 'NAUKRI',
|
|
957
|
-
ZOHO_RECRUIT: 'ZOHO_RECRUIT'
|
|
958
|
-
LINKEDIN: 'LINKEDIN'
|
|
926
|
+
ZOHO_RECRUIT: 'ZOHO_RECRUIT'
|
|
959
927
|
};
|
|
960
928
|
|
|
961
929
|
exports.IntegrationAuthType = exports.$Enums.IntegrationAuthType = {
|
|
@@ -1007,13 +975,6 @@ exports.JobDescriptionStatus = exports.$Enums.JobDescriptionStatus = {
|
|
|
1007
975
|
CLOSED: 'CLOSED'
|
|
1008
976
|
};
|
|
1009
977
|
|
|
1010
|
-
exports.JobProfileStatus = exports.$Enums.JobProfileStatus = {
|
|
1011
|
-
DRAFT: 'DRAFT',
|
|
1012
|
-
INTAKE_SENT: 'INTAKE_SENT',
|
|
1013
|
-
INTAKE_IN_PROGRESS: 'INTAKE_IN_PROGRESS',
|
|
1014
|
-
COMPLETE: 'COMPLETE'
|
|
1015
|
-
};
|
|
1016
|
-
|
|
1017
978
|
exports.OngoingEvaluationStatus = exports.$Enums.OngoingEvaluationStatus = {
|
|
1018
979
|
LOCKED: 'LOCKED',
|
|
1019
980
|
ACTION_REQUIRED: 'ACTION_REQUIRED',
|
|
@@ -1103,7 +1064,6 @@ exports.Prisma.ModelName = {
|
|
|
1103
1064
|
InterviewNotes: 'InterviewNotes',
|
|
1104
1065
|
JobDescription: 'JobDescription',
|
|
1105
1066
|
JobDescriptionData: 'JobDescriptionData',
|
|
1106
|
-
JobProfile: 'JobProfile',
|
|
1107
1067
|
Message: 'Message',
|
|
1108
1068
|
OngoingEvaluation: 'OngoingEvaluation',
|
|
1109
1069
|
Organisation: 'Organisation',
|