@adaptware/eagles-db 0.5.55 → 0.5.57
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 +25 -66
- package/client/index-browser.js +20 -61
- package/client/index.d.ts +2581 -4553
- package/client/index.js +25 -66
- package/client/libquery_engine-darwin.dylib.node +0 -0
- package/client/package.json +1 -1
- package/client/schema.prisma +78 -162
- package/client/wasm.js +25 -66
- package/package.json +1 -1
- package/prisma/.DS_Store +0 -0
- package/prisma/migrations/20260519120000_migrate_shortlisted_to_selected/migration.sql +2 -0
- package/prisma/schema/.DS_Store +0 -0
- package/prisma/schema/fitCheck.prisma +2 -0
- package/prisma/schema/interview.prisma +5 -5
- package/prisma/schema/migrations/20260914120000_add_fitcheck_score_reasoning/migration.sql +2 -0
- package/prisma/schema/migrations/20260915120000_drop_interview_legacy_feedback_columns/migration.sql +6 -0
- package/prisma/schema/migrations/20260915150000_add_interview_ai_context_and_oe_relevance/migration.sql +7 -0
- package/prisma/schema/ongoingEvaluation.prisma +3 -0
package/client/index-browser.js
CHANGED
|
@@ -281,10 +281,7 @@ exports.Prisma.ApplicationScalarFieldEnum = {
|
|
|
281
281
|
updated_at: 'updated_at',
|
|
282
282
|
created_by: 'created_by',
|
|
283
283
|
updated_by: 'updated_by',
|
|
284
|
-
is_active: 'is_active'
|
|
285
|
-
fit_check_report_document_id: 'fit_check_report_document_id',
|
|
286
|
-
fit_check_report_updated_flag: 'fit_check_report_updated_flag',
|
|
287
|
-
fit_check_report_data: 'fit_check_report_data'
|
|
284
|
+
is_active: 'is_active'
|
|
288
285
|
};
|
|
289
286
|
|
|
290
287
|
exports.Prisma.ApprovalScalarFieldEnum = {
|
|
@@ -332,8 +329,7 @@ exports.Prisma.AssessmentLibraryScalarFieldEnum = {
|
|
|
332
329
|
updated_at: 'updated_at',
|
|
333
330
|
created_by: 'created_by',
|
|
334
331
|
updated_by: 'updated_by',
|
|
335
|
-
is_active: 'is_active'
|
|
336
|
-
generation_state: 'generation_state'
|
|
332
|
+
is_active: 'is_active'
|
|
337
333
|
};
|
|
338
334
|
|
|
339
335
|
exports.Prisma.AssessmentQuestionScalarFieldEnum = {
|
|
@@ -828,6 +824,19 @@ exports.Prisma.EvaluationPlanScalarFieldEnum = {
|
|
|
828
824
|
is_active: 'is_active'
|
|
829
825
|
};
|
|
830
826
|
|
|
827
|
+
exports.Prisma.FeedbackScalarFieldEnum = {
|
|
828
|
+
id: 'id',
|
|
829
|
+
interview_id: 'interview_id',
|
|
830
|
+
order_no: 'order_no',
|
|
831
|
+
ai_feedback: 'ai_feedback',
|
|
832
|
+
human_feedback: 'human_feedback',
|
|
833
|
+
created_at: 'created_at',
|
|
834
|
+
updated_at: 'updated_at',
|
|
835
|
+
created_by: 'created_by',
|
|
836
|
+
updated_by: 'updated_by',
|
|
837
|
+
is_active: 'is_active'
|
|
838
|
+
};
|
|
839
|
+
|
|
831
840
|
exports.Prisma.FitCheckScalarFieldEnum = {
|
|
832
841
|
id: 'id',
|
|
833
842
|
organisation_id: 'organisation_id',
|
|
@@ -1010,9 +1019,6 @@ exports.Prisma.InterviewScalarFieldEnum = {
|
|
|
1010
1019
|
resume_id: 'resume_id',
|
|
1011
1020
|
job_description_id: 'job_description_id',
|
|
1012
1021
|
calendar_event_id: 'calendar_event_id',
|
|
1013
|
-
calendar_events: 'calendar_events',
|
|
1014
|
-
candidate_initiated: 'candidate_initiated',
|
|
1015
|
-
candidate_interview_metadata: 'candidate_interview_metadata',
|
|
1016
1022
|
room_name: 'room_name',
|
|
1017
1023
|
interview_summary: 'interview_summary',
|
|
1018
1024
|
scheduled_start_time: 'scheduled_start_time',
|
|
@@ -1260,8 +1266,7 @@ exports.Prisma.JobApplicationFieldScalarFieldEnum = {
|
|
|
1260
1266
|
created_by: 'created_by',
|
|
1261
1267
|
updated_by: 'updated_by',
|
|
1262
1268
|
created_at: 'created_at',
|
|
1263
|
-
updated_at: 'updated_at'
|
|
1264
|
-
order_no: 'order_no'
|
|
1269
|
+
updated_at: 'updated_at'
|
|
1265
1270
|
};
|
|
1266
1271
|
|
|
1267
1272
|
exports.Prisma.JobApplicationResponseScalarFieldEnum = {
|
|
@@ -1282,8 +1287,7 @@ exports.Prisma.JobApplicationResponseScalarFieldEnum = {
|
|
|
1282
1287
|
updated_at: 'updated_at',
|
|
1283
1288
|
created_by: 'created_by',
|
|
1284
1289
|
updated_by: 'updated_by',
|
|
1285
|
-
is_active: 'is_active'
|
|
1286
|
-
order_no: 'order_no'
|
|
1290
|
+
is_active: 'is_active'
|
|
1287
1291
|
};
|
|
1288
1292
|
|
|
1289
1293
|
exports.Prisma.JobApplicationTemplateScalarFieldEnum = {
|
|
@@ -1452,8 +1456,6 @@ exports.Prisma.PurchasedHiringUnitAssignmentEventScalarFieldEnum = {
|
|
|
1452
1456
|
event_kind: 'event_kind',
|
|
1453
1457
|
previous_department_id: 'previous_department_id',
|
|
1454
1458
|
new_department_id: 'new_department_id',
|
|
1455
|
-
previous_assigned_user_id: 'previous_assigned_user_id',
|
|
1456
|
-
new_assigned_user_id: 'new_assigned_user_id',
|
|
1457
1459
|
previous_job_description_id: 'previous_job_description_id',
|
|
1458
1460
|
new_job_description_id: 'new_job_description_id',
|
|
1459
1461
|
effective_at: 'effective_at',
|
|
@@ -1542,7 +1544,6 @@ exports.Prisma.PurchasedHiringUnitScalarFieldEnum = {
|
|
|
1542
1544
|
purchased_license_package_id: 'purchased_license_package_id',
|
|
1543
1545
|
status: 'status',
|
|
1544
1546
|
department_id: 'department_id',
|
|
1545
|
-
assigned_user_id: 'assigned_user_id',
|
|
1546
1547
|
first_assigned_at: 'first_assigned_at',
|
|
1547
1548
|
expiry_at: 'expiry_at',
|
|
1548
1549
|
job_description_id: 'job_description_id',
|
|
@@ -1812,8 +1813,7 @@ exports.Prisma.OrganisationScalarFieldEnum = {
|
|
|
1812
1813
|
job_sequence: 'job_sequence',
|
|
1813
1814
|
employee_sequence: 'employee_sequence',
|
|
1814
1815
|
timezone: 'timezone',
|
|
1815
|
-
country_code: 'country_code'
|
|
1816
|
-
hiring_unit_assignment_scope: 'hiring_unit_assignment_scope'
|
|
1816
|
+
country_code: 'country_code'
|
|
1817
1817
|
};
|
|
1818
1818
|
|
|
1819
1819
|
exports.Prisma.OrganisationConfigScalarFieldEnum = {
|
|
@@ -1907,8 +1907,6 @@ exports.Prisma.QuestionScalarFieldEnum = {
|
|
|
1907
1907
|
evaluation_plan_id: 'evaluation_plan_id',
|
|
1908
1908
|
candidate_id: 'candidate_id',
|
|
1909
1909
|
skill: 'skill',
|
|
1910
|
-
category: 'category',
|
|
1911
|
-
bank_item_key: 'bank_item_key',
|
|
1912
1910
|
question: 'question',
|
|
1913
1911
|
answer: 'answer',
|
|
1914
1912
|
options: 'options',
|
|
@@ -1971,18 +1969,7 @@ exports.Prisma.ResumeScalarFieldEnum = {
|
|
|
1971
1969
|
updated_by: 'updated_by',
|
|
1972
1970
|
is_active: 'is_active',
|
|
1973
1971
|
name: 'name',
|
|
1974
|
-
yearsOfExperience: 'yearsOfExperience'
|
|
1975
|
-
status: 'status',
|
|
1976
|
-
origin: 'origin',
|
|
1977
|
-
intake_session_id: 'intake_session_id',
|
|
1978
|
-
conversation_history: 'conversation_history',
|
|
1979
|
-
intake_progress: 'intake_progress',
|
|
1980
|
-
orion_execution_id: 'orion_execution_id',
|
|
1981
|
-
intake_raw_data: 'intake_raw_data',
|
|
1982
|
-
tailoring_jd_text: 'tailoring_jd_text',
|
|
1983
|
-
tailoring_jd_parsed: 'tailoring_jd_parsed',
|
|
1984
|
-
tailoring_gap_analysis: 'tailoring_gap_analysis',
|
|
1985
|
-
tailoring_draft: 'tailoring_draft'
|
|
1972
|
+
yearsOfExperience: 'yearsOfExperience'
|
|
1986
1973
|
};
|
|
1987
1974
|
|
|
1988
1975
|
exports.Prisma.ResumeDataScalarFieldEnum = {
|
|
@@ -2231,7 +2218,6 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
2231
2218
|
created_by: 'created_by',
|
|
2232
2219
|
updated_by: 'updated_by',
|
|
2233
2220
|
is_active: 'is_active',
|
|
2234
|
-
deleted_at: 'deleted_at',
|
|
2235
2221
|
is_self_registered: 'is_self_registered',
|
|
2236
2222
|
permission_id: 'permission_id',
|
|
2237
2223
|
preferences: 'preferences',
|
|
@@ -2507,8 +2493,6 @@ exports.EvaluationCategory = exports.$Enums.EvaluationCategory = {
|
|
|
2507
2493
|
|
|
2508
2494
|
exports.RoundType = exports.$Enums.RoundType = {
|
|
2509
2495
|
ASSESSMENT: 'ASSESSMENT',
|
|
2510
|
-
GENERAL_APTITUDE_ASSESSMENT: 'GENERAL_APTITUDE_ASSESSMENT',
|
|
2511
|
-
DOMAIN_KNOWLEDGE_ASSESSMENT: 'DOMAIN_KNOWLEDGE_ASSESSMENT',
|
|
2512
2496
|
INTERVIEW: 'INTERVIEW',
|
|
2513
2497
|
ASSIGNMENT: 'ASSIGNMENT',
|
|
2514
2498
|
SCREENING: 'SCREENING'
|
|
@@ -2779,8 +2763,6 @@ exports.AiCostLedgerReason = exports.$Enums.AiCostLedgerReason = {
|
|
|
2779
2763
|
exports.PurchasedHiringUnitAssignmentEventKind = exports.$Enums.PurchasedHiringUnitAssignmentEventKind = {
|
|
2780
2764
|
DEPARTMENT_ASSIGNED: 'DEPARTMENT_ASSIGNED',
|
|
2781
2765
|
DEPARTMENT_UNASSIGNED: 'DEPARTMENT_UNASSIGNED',
|
|
2782
|
-
USER_ASSIGNED: 'USER_ASSIGNED',
|
|
2783
|
-
USER_UNASSIGNED: 'USER_UNASSIGNED',
|
|
2784
2766
|
JOB_LINKED: 'JOB_LINKED',
|
|
2785
2767
|
JOB_UNLINKED: 'JOB_UNLINKED'
|
|
2786
2768
|
};
|
|
@@ -2887,12 +2869,6 @@ exports.OrganisationSize = exports.$Enums.OrganisationSize = {
|
|
|
2887
2869
|
FIVE_HUNDRED_PLUS: 'FIVE_HUNDRED_PLUS'
|
|
2888
2870
|
};
|
|
2889
2871
|
|
|
2890
|
-
exports.HiringUnitAssignmentScope = exports.$Enums.HiringUnitAssignmentScope = {
|
|
2891
|
-
USER: 'USER',
|
|
2892
|
-
DEPARTMENT: 'DEPARTMENT',
|
|
2893
|
-
ORGANISATION: 'ORGANISATION'
|
|
2894
|
-
};
|
|
2895
|
-
|
|
2896
2872
|
exports.AsyncOperationStatus = exports.$Enums.AsyncOperationStatus = {
|
|
2897
2873
|
PENDING: 'PENDING',
|
|
2898
2874
|
IN_PROGRESS: 'IN_PROGRESS',
|
|
@@ -2902,30 +2878,12 @@ exports.AsyncOperationStatus = exports.$Enums.AsyncOperationStatus = {
|
|
|
2902
2878
|
CANCELLED: 'CANCELLED'
|
|
2903
2879
|
};
|
|
2904
2880
|
|
|
2905
|
-
exports.QuestionCategory = exports.$Enums.QuestionCategory = {
|
|
2906
|
-
GENERAL_APTITUDE: 'GENERAL_APTITUDE',
|
|
2907
|
-
DOMAIN_KNOWLEDGE: 'DOMAIN_KNOWLEDGE'
|
|
2908
|
-
};
|
|
2909
|
-
|
|
2910
2881
|
exports.Difficulty = exports.$Enums.Difficulty = {
|
|
2911
2882
|
EASY: 'EASY',
|
|
2912
2883
|
MEDIUM: 'MEDIUM',
|
|
2913
2884
|
HARD: 'HARD'
|
|
2914
2885
|
};
|
|
2915
2886
|
|
|
2916
|
-
exports.ResumeStatus = exports.$Enums.ResumeStatus = {
|
|
2917
|
-
DRAFT: 'DRAFT',
|
|
2918
|
-
GENERATING: 'GENERATING',
|
|
2919
|
-
COMPLETED: 'COMPLETED'
|
|
2920
|
-
};
|
|
2921
|
-
|
|
2922
|
-
exports.ResumeOrigin = exports.$Enums.ResumeOrigin = {
|
|
2923
|
-
UPLOADED: 'UPLOADED',
|
|
2924
|
-
PARSED: 'PARSED',
|
|
2925
|
-
AI_GENERATED: 'AI_GENERATED',
|
|
2926
|
-
TAILORED: 'TAILORED'
|
|
2927
|
-
};
|
|
2928
|
-
|
|
2929
2887
|
exports.UsageSourceType = exports.$Enums.UsageSourceType = {
|
|
2930
2888
|
activity_event: 'activity_event',
|
|
2931
2889
|
usage_publisher: 'usage_publisher',
|
|
@@ -2995,6 +2953,7 @@ exports.Prisma.ModelName = {
|
|
|
2995
2953
|
Document: 'Document',
|
|
2996
2954
|
EvaluationCriteria: 'EvaluationCriteria',
|
|
2997
2955
|
EvaluationPlan: 'EvaluationPlan',
|
|
2956
|
+
Feedback: 'Feedback',
|
|
2998
2957
|
FitCheck: 'FitCheck',
|
|
2999
2958
|
Google: 'Google',
|
|
3000
2959
|
HiringPlan: 'HiringPlan',
|