@adaptware/eagles-db 0.1.49 → 0.1.51
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 +112 -32
- package/client/index-browser.js +104 -24
- package/client/index.d.ts +27342 -18906
- package/client/index.js +114 -34
- package/client/{libquery_engine-darwin-arm64.dylib.node → libquery_engine-darwin.dylib.node} +0 -0
- package/client/package.json +1 -1
- package/client/schema.prisma +210 -99
- package/client/wasm.js +104 -24
- package/package.json +1 -1
- package/prisma/schema/applications.prisma +1 -0
- package/prisma/schema/assessment.prisma +24 -22
- package/prisma/schema/assignment.prisma +42 -0
- package/prisma/schema/assignmentLibrary.prisma +1 -0
- package/prisma/schema/evaluationPlan.prisma +7 -4
- package/prisma/schema/feedback.prisma +3 -9
- package/prisma/schema/intermediateFeedback.prisma +18 -0
- package/prisma/schema/interview.prisma +46 -37
- package/prisma/schema/interviewLibrary.prisma +31 -0
- package/prisma/schema/jobDescription.prisma +1 -0
- package/prisma/schema/ongoingEvaluation.prisma +2 -0
- package/prisma/schema/organisation.prisma +4 -1
- package/prisma/schema/overallFeedback.prisma +34 -0
- package/prisma/schema/panelist.prisma +24 -0
- package/prisma/schema/transcript.prisma +9 -8
- package/prisma/schema/user.prisma +3 -0
- package/prisma/.DS_Store +0 -0
package/client/index-browser.js
CHANGED
|
@@ -163,18 +163,6 @@ exports.Prisma.ActionScalarFieldEnum = {
|
|
|
163
163
|
is_active: 'is_active'
|
|
164
164
|
};
|
|
165
165
|
|
|
166
|
-
exports.Prisma.ActivityLogScalarFieldEnum = {
|
|
167
|
-
id: 'id',
|
|
168
|
-
application_id: 'application_id',
|
|
169
|
-
actor_id: 'actor_id',
|
|
170
|
-
actor_type: 'actor_type',
|
|
171
|
-
message: 'message',
|
|
172
|
-
timestamp: 'timestamp',
|
|
173
|
-
metadata: 'metadata',
|
|
174
|
-
created_at: 'created_at',
|
|
175
|
-
is_active: 'is_active'
|
|
176
|
-
};
|
|
177
|
-
|
|
178
166
|
exports.Prisma.ApplicationScalarFieldEnum = {
|
|
179
167
|
id: 'id',
|
|
180
168
|
candidate_id: 'candidate_id',
|
|
@@ -221,6 +209,7 @@ exports.Prisma.AssessmentScalarFieldEnum = {
|
|
|
221
209
|
created_by: 'created_by',
|
|
222
210
|
updated_by: 'updated_by',
|
|
223
211
|
is_active: 'is_active',
|
|
212
|
+
panelistId: 'panelistId',
|
|
224
213
|
userId: 'userId'
|
|
225
214
|
};
|
|
226
215
|
|
|
@@ -362,7 +351,6 @@ exports.Prisma.EvaluationPlanScalarFieldEnum = {
|
|
|
362
351
|
exports.Prisma.FeedbackScalarFieldEnum = {
|
|
363
352
|
id: 'id',
|
|
364
353
|
interview_id: 'interview_id',
|
|
365
|
-
feedback_type: 'feedback_type',
|
|
366
354
|
order_no: 'order_no',
|
|
367
355
|
ai_feedback: 'ai_feedback',
|
|
368
356
|
human_feedback: 'human_feedback',
|
|
@@ -376,7 +364,6 @@ exports.Prisma.FeedbackScalarFieldEnum = {
|
|
|
376
364
|
exports.Prisma.FitCheckScalarFieldEnum = {
|
|
377
365
|
id: 'id',
|
|
378
366
|
organisation_id: 'organisation_id',
|
|
379
|
-
candidate_id: 'candidate_id',
|
|
380
367
|
resume_id: 'resume_id',
|
|
381
368
|
job_description_id: 'job_description_id',
|
|
382
369
|
skills_match: 'skills_match',
|
|
@@ -420,16 +407,33 @@ exports.Prisma.GoogleScalarFieldEnum = {
|
|
|
420
407
|
is_active: 'is_active'
|
|
421
408
|
};
|
|
422
409
|
|
|
410
|
+
exports.Prisma.IntermediateFeedbackScalarFieldEnum = {
|
|
411
|
+
id: 'id',
|
|
412
|
+
interview_id: 'interview_id',
|
|
413
|
+
overall_feedback_id: 'overall_feedback_id',
|
|
414
|
+
intermediate_feedback: 'intermediate_feedback',
|
|
415
|
+
order_no: 'order_no',
|
|
416
|
+
created_at: 'created_at',
|
|
417
|
+
updated_at: 'updated_at',
|
|
418
|
+
created_by: 'created_by',
|
|
419
|
+
updated_by: 'updated_by',
|
|
420
|
+
is_active: 'is_active'
|
|
421
|
+
};
|
|
422
|
+
|
|
423
423
|
exports.Prisma.InterviewScalarFieldEnum = {
|
|
424
424
|
id: 'id',
|
|
425
425
|
candidate_id: 'candidate_id',
|
|
426
426
|
interviewer_id: 'interviewer_id',
|
|
427
|
+
evaluation_plan_id: 'evaluation_plan_id',
|
|
427
428
|
application_id: 'application_id',
|
|
428
429
|
resume_id: 'resume_id',
|
|
429
430
|
job_description_id: 'job_description_id',
|
|
430
431
|
organisation_id: 'organisation_id',
|
|
431
432
|
room_name: 'room_name',
|
|
432
433
|
interview_summary: 'interview_summary',
|
|
434
|
+
ai_interview_feedback: 'ai_interview_feedback',
|
|
435
|
+
interview_feedback: 'interview_feedback',
|
|
436
|
+
interview_rating: 'interview_rating',
|
|
433
437
|
scheduled_start_time: 'scheduled_start_time',
|
|
434
438
|
scheduled_end_time: 'scheduled_end_time',
|
|
435
439
|
actual_start_time: 'actual_start_time',
|
|
@@ -444,6 +448,22 @@ exports.Prisma.InterviewScalarFieldEnum = {
|
|
|
444
448
|
is_active: 'is_active'
|
|
445
449
|
};
|
|
446
450
|
|
|
451
|
+
exports.Prisma.InterviewLibraryScalarFieldEnum = {
|
|
452
|
+
id: 'id',
|
|
453
|
+
title: 'title',
|
|
454
|
+
description: 'description',
|
|
455
|
+
organisation_id: 'organisation_id',
|
|
456
|
+
category: 'category',
|
|
457
|
+
evaluation_type: 'evaluation_type',
|
|
458
|
+
duration: 'duration',
|
|
459
|
+
passing_marks: 'passing_marks',
|
|
460
|
+
is_active: 'is_active',
|
|
461
|
+
created_by: 'created_by',
|
|
462
|
+
updated_by: 'updated_by',
|
|
463
|
+
created_at: 'created_at',
|
|
464
|
+
updated_at: 'updated_at'
|
|
465
|
+
};
|
|
466
|
+
|
|
447
467
|
exports.Prisma.InterviewNotesScalarFieldEnum = {
|
|
448
468
|
id: 'id',
|
|
449
469
|
interview_id: 'interview_id',
|
|
@@ -552,6 +572,39 @@ exports.Prisma.OrganisationScalarFieldEnum = {
|
|
|
552
572
|
logo: 'logo'
|
|
553
573
|
};
|
|
554
574
|
|
|
575
|
+
exports.Prisma.OverallFeedbackScalarFieldEnum = {
|
|
576
|
+
id: 'id',
|
|
577
|
+
interview_id: 'interview_id',
|
|
578
|
+
interviewer_id: 'interviewer_id',
|
|
579
|
+
feedback_type: 'feedback_type',
|
|
580
|
+
overall_score: 'overall_score',
|
|
581
|
+
overall_recommendation: 'overall_recommendation',
|
|
582
|
+
overall_feedback: 'overall_feedback',
|
|
583
|
+
created_at: 'created_at',
|
|
584
|
+
updated_at: 'updated_at',
|
|
585
|
+
created_by: 'created_by',
|
|
586
|
+
updated_by: 'updated_by',
|
|
587
|
+
is_active: 'is_active'
|
|
588
|
+
};
|
|
589
|
+
|
|
590
|
+
exports.Prisma.PanelistScalarFieldEnum = {
|
|
591
|
+
id: 'id',
|
|
592
|
+
name: 'name',
|
|
593
|
+
designation: 'designation',
|
|
594
|
+
experience: 'experience',
|
|
595
|
+
expertise: 'expertise',
|
|
596
|
+
suited_interview: 'suited_interview',
|
|
597
|
+
industry: 'industry',
|
|
598
|
+
special_areas: 'special_areas',
|
|
599
|
+
organisation_id: 'organisation_id',
|
|
600
|
+
user_id: 'user_id',
|
|
601
|
+
created_at: 'created_at',
|
|
602
|
+
updated_at: 'updated_at',
|
|
603
|
+
created_by: 'created_by',
|
|
604
|
+
updated_by: 'updated_by',
|
|
605
|
+
is_active: 'is_active'
|
|
606
|
+
};
|
|
607
|
+
|
|
555
608
|
exports.Prisma.PermissionScalarFieldEnum = {
|
|
556
609
|
id: 'id',
|
|
557
610
|
permissions: 'permissions',
|
|
@@ -719,6 +772,10 @@ exports.Prisma.NullableJsonNullValueInput = {
|
|
|
719
772
|
JsonNull: Prisma.JsonNull
|
|
720
773
|
};
|
|
721
774
|
|
|
775
|
+
exports.Prisma.JsonNullValueInput = {
|
|
776
|
+
JsonNull: Prisma.JsonNull
|
|
777
|
+
};
|
|
778
|
+
|
|
722
779
|
exports.Prisma.QueryMode = {
|
|
723
780
|
default: 'default',
|
|
724
781
|
insensitive: 'insensitive'
|
|
@@ -746,12 +803,6 @@ exports.ActionStatus = exports.$Enums.ActionStatus = {
|
|
|
746
803
|
CANCELLED: 'CANCELLED'
|
|
747
804
|
};
|
|
748
805
|
|
|
749
|
-
exports.ActivityActorType = exports.$Enums.ActivityActorType = {
|
|
750
|
-
USER: 'USER',
|
|
751
|
-
AI: 'AI',
|
|
752
|
-
SYSTEM: 'SYSTEM'
|
|
753
|
-
};
|
|
754
|
-
|
|
755
806
|
exports.ApplicationStatus = exports.$Enums.ApplicationStatus = {
|
|
756
807
|
PENDING: 'PENDING',
|
|
757
808
|
IN_PROGRESS: 'IN_PROGRESS',
|
|
@@ -831,9 +882,11 @@ exports.EvaluationPlanType = exports.$Enums.EvaluationPlanType = {
|
|
|
831
882
|
DELETED: 'DELETED'
|
|
832
883
|
};
|
|
833
884
|
|
|
834
|
-
exports.
|
|
835
|
-
|
|
836
|
-
|
|
885
|
+
exports.InterviewFeedback = exports.$Enums.InterviewFeedback = {
|
|
886
|
+
STRONG_HIRE: 'STRONG_HIRE',
|
|
887
|
+
HIRE: 'HIRE',
|
|
888
|
+
NO_HIRE: 'NO_HIRE',
|
|
889
|
+
STRONG_NO_HIRE: 'STRONG_NO_HIRE'
|
|
837
890
|
};
|
|
838
891
|
|
|
839
892
|
exports.InterviewStatus = exports.$Enums.InterviewStatus = {
|
|
@@ -846,6 +899,17 @@ exports.InterviewStatus = exports.$Enums.InterviewStatus = {
|
|
|
846
899
|
EVALUATED: 'EVALUATED'
|
|
847
900
|
};
|
|
848
901
|
|
|
902
|
+
exports.InterviewCategory = exports.$Enums.InterviewCategory = {
|
|
903
|
+
SCREENING: 'SCREENING',
|
|
904
|
+
TECHNICAL: 'TECHNICAL',
|
|
905
|
+
BEHAVIORAL: 'BEHAVIORAL',
|
|
906
|
+
CASE_STUDY: 'CASE_STUDY',
|
|
907
|
+
MANAGERIAL: 'MANAGERIAL',
|
|
908
|
+
CULTURAL_FIT: 'CULTURAL_FIT',
|
|
909
|
+
FINAL_DISCUSSION: 'FINAL_DISCUSSION',
|
|
910
|
+
GENERAL: 'GENERAL'
|
|
911
|
+
};
|
|
912
|
+
|
|
849
913
|
exports.JobDescriptionStatus = exports.$Enums.JobDescriptionStatus = {
|
|
850
914
|
CREATED: 'CREATED',
|
|
851
915
|
DRAFT: 'DRAFT',
|
|
@@ -889,6 +953,19 @@ exports.OrganisationSize = exports.$Enums.OrganisationSize = {
|
|
|
889
953
|
FIVE_HUNDRED_PLUS: 'FIVE_HUNDRED_PLUS'
|
|
890
954
|
};
|
|
891
955
|
|
|
956
|
+
exports.FeedbackType = exports.$Enums.FeedbackType = {
|
|
957
|
+
HUMAN: 'HUMAN',
|
|
958
|
+
AI: 'AI'
|
|
959
|
+
};
|
|
960
|
+
|
|
961
|
+
exports.OverallRecommendation = exports.$Enums.OverallRecommendation = {
|
|
962
|
+
StrongHire: 'StrongHire',
|
|
963
|
+
Hire: 'Hire',
|
|
964
|
+
LeaningHire: 'LeaningHire',
|
|
965
|
+
NoHire: 'NoHire',
|
|
966
|
+
StrongNoHire: 'StrongNoHire'
|
|
967
|
+
};
|
|
968
|
+
|
|
892
969
|
exports.AsyncOperationStatus = exports.$Enums.AsyncOperationStatus = {
|
|
893
970
|
PENDING: 'PENDING',
|
|
894
971
|
IN_PROGRESS: 'IN_PROGRESS',
|
|
@@ -920,7 +997,6 @@ exports.Prisma.ModelName = {
|
|
|
920
997
|
CandidateQuestionResponse: 'CandidateQuestionResponse',
|
|
921
998
|
UserRole: 'UserRole',
|
|
922
999
|
Action: 'Action',
|
|
923
|
-
ActivityLog: 'ActivityLog',
|
|
924
1000
|
Application: 'Application',
|
|
925
1001
|
Approval: 'Approval',
|
|
926
1002
|
Assessment: 'Assessment',
|
|
@@ -935,13 +1011,17 @@ exports.Prisma.ModelName = {
|
|
|
935
1011
|
Feedback: 'Feedback',
|
|
936
1012
|
FitCheck: 'FitCheck',
|
|
937
1013
|
Google: 'Google',
|
|
1014
|
+
IntermediateFeedback: 'IntermediateFeedback',
|
|
938
1015
|
Interview: 'Interview',
|
|
1016
|
+
InterviewLibrary: 'InterviewLibrary',
|
|
939
1017
|
InterviewNotes: 'InterviewNotes',
|
|
940
1018
|
JobDescription: 'JobDescription',
|
|
941
1019
|
JobDescriptionData: 'JobDescriptionData',
|
|
942
1020
|
Message: 'Message',
|
|
943
1021
|
OngoingEvaluation: 'OngoingEvaluation',
|
|
944
1022
|
Organisation: 'Organisation',
|
|
1023
|
+
OverallFeedback: 'OverallFeedback',
|
|
1024
|
+
Panelist: 'Panelist',
|
|
945
1025
|
Permission: 'Permission',
|
|
946
1026
|
AsyncOperation: 'AsyncOperation',
|
|
947
1027
|
Question: 'Question',
|