@adaptware/eagles-db 0.3.6 → 0.4.1
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 +13 -6
- package/client/index-browser.js +15 -8
- package/client/index.d.ts +996 -316
- package/client/index.js +13 -6
- package/client/package.json +1 -1
- package/client/schema.prisma +32 -20
- package/client/wasm.js +15 -8
- package/package.json +1 -1
- package/prisma/schema/evaluationPlan.prisma +2 -1
- package/prisma/schema/interview.prisma +6 -1
- package/prisma/schema/jobDescription.prisma +2 -0
- package/prisma/schema/ongoingEvaluation.prisma +5 -2
package/client/index-browser.js
CHANGED
|
@@ -530,7 +530,10 @@ exports.Prisma.InterviewScalarFieldEnum = {
|
|
|
530
530
|
scheduled_end_time: 'scheduled_end_time',
|
|
531
531
|
actual_start_time: 'actual_start_time',
|
|
532
532
|
actual_end_time: 'actual_end_time',
|
|
533
|
+
duration: 'duration',
|
|
533
534
|
recording_url: 'recording_url',
|
|
535
|
+
evaluation_type: 'evaluation_type',
|
|
536
|
+
ai_assistance_mode: 'ai_assistance_mode',
|
|
534
537
|
interview_status: 'interview_status',
|
|
535
538
|
interview_platform: 'interview_platform',
|
|
536
539
|
ai_interview_feedback: 'ai_interview_feedback',
|
|
@@ -544,6 +547,7 @@ exports.Prisma.InterviewScalarFieldEnum = {
|
|
|
544
547
|
interview_preparation: 'interview_preparation',
|
|
545
548
|
final_feedback: 'final_feedback',
|
|
546
549
|
interview_analysis_ranges: 'interview_analysis_ranges',
|
|
550
|
+
interview_flow_summary: 'interview_flow_summary',
|
|
547
551
|
reschedule_count: 'reschedule_count',
|
|
548
552
|
last_rescheduled_at: 'last_rescheduled_at',
|
|
549
553
|
first_assigned_at: 'first_assigned_at',
|
|
@@ -552,8 +556,7 @@ exports.Prisma.InterviewScalarFieldEnum = {
|
|
|
552
556
|
updated_at: 'updated_at',
|
|
553
557
|
created_by: 'created_by',
|
|
554
558
|
updated_by: 'updated_by',
|
|
555
|
-
is_active: 'is_active'
|
|
556
|
-
ai_assistance_mode: 'ai_assistance_mode'
|
|
559
|
+
is_active: 'is_active'
|
|
557
560
|
};
|
|
558
561
|
|
|
559
562
|
exports.Prisma.InterviewNotesScalarFieldEnum = {
|
|
@@ -582,6 +585,7 @@ exports.Prisma.JobDescriptionScalarFieldEnum = {
|
|
|
582
585
|
summary: 'summary',
|
|
583
586
|
ai_insight: 'ai_insight',
|
|
584
587
|
job_fit_comparison: 'job_fit_comparison',
|
|
588
|
+
recommendation_config: 'recommendation_config',
|
|
585
589
|
created_at: 'created_at',
|
|
586
590
|
updated_at: 'updated_at',
|
|
587
591
|
created_by: 'created_by',
|
|
@@ -675,6 +679,7 @@ exports.Prisma.OngoingEvaluationScalarFieldEnum = {
|
|
|
675
679
|
resume_id: 'resume_id',
|
|
676
680
|
job_description_id: 'job_description_id',
|
|
677
681
|
evaluation_plan_id: 'evaluation_plan_id',
|
|
682
|
+
is_committed: 'is_committed',
|
|
678
683
|
interview_id: 'interview_id',
|
|
679
684
|
assignment_id: 'assignment_id',
|
|
680
685
|
assessment_id: 'assessment_id',
|
|
@@ -889,7 +894,8 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
889
894
|
gender: 'gender',
|
|
890
895
|
ethnicity: 'ethnicity',
|
|
891
896
|
veteran_status: 'veteran_status',
|
|
892
|
-
disability_status: 'disability_status'
|
|
897
|
+
disability_status: 'disability_status',
|
|
898
|
+
professional_expertise: 'professional_expertise'
|
|
893
899
|
};
|
|
894
900
|
|
|
895
901
|
exports.Prisma.UserProfileScalarFieldEnum = {
|
|
@@ -1049,6 +1055,7 @@ exports.EvaluationRoundFormat = exports.$Enums.EvaluationRoundFormat = {
|
|
|
1049
1055
|
|
|
1050
1056
|
exports.EvaluationType = exports.$Enums.EvaluationType = {
|
|
1051
1057
|
TREADSPACE_AI_ASSISTED: 'TREADSPACE_AI_ASSISTED',
|
|
1058
|
+
TREADSPACE_FULL_AI: 'TREADSPACE_FULL_AI',
|
|
1052
1059
|
EXTERNAL_AI_ASSISTED: 'EXTERNAL_AI_ASSISTED',
|
|
1053
1060
|
NON_AI_ASSISTED: 'NON_AI_ASSISTED'
|
|
1054
1061
|
};
|
|
@@ -1107,6 +1114,11 @@ exports.SyncStatus = exports.$Enums.SyncStatus = {
|
|
|
1107
1114
|
FAILED: 'FAILED'
|
|
1108
1115
|
};
|
|
1109
1116
|
|
|
1117
|
+
exports.AiAssistanceMode = exports.$Enums.AiAssistanceMode = {
|
|
1118
|
+
NONE: 'NONE',
|
|
1119
|
+
ASSISTED: 'ASSISTED'
|
|
1120
|
+
};
|
|
1121
|
+
|
|
1110
1122
|
exports.InterviewStatus = exports.$Enums.InterviewStatus = {
|
|
1111
1123
|
INTERVIEW_REQUESTED: 'INTERVIEW_REQUESTED',
|
|
1112
1124
|
SCHEDULED: 'SCHEDULED',
|
|
@@ -1129,11 +1141,6 @@ exports.InterviewFeedback = exports.$Enums.InterviewFeedback = {
|
|
|
1129
1141
|
STRONG_NO_HIRE: 'STRONG_NO_HIRE'
|
|
1130
1142
|
};
|
|
1131
1143
|
|
|
1132
|
-
exports.AiAssistanceMode = exports.$Enums.AiAssistanceMode = {
|
|
1133
|
-
NONE: 'NONE',
|
|
1134
|
-
ASSISTED: 'ASSISTED'
|
|
1135
|
-
};
|
|
1136
|
-
|
|
1137
1144
|
exports.JobDescriptionStatus = exports.$Enums.JobDescriptionStatus = {
|
|
1138
1145
|
CREATED: 'CREATED',
|
|
1139
1146
|
DRAFT: 'DRAFT',
|