@adaptware/eagles-db 0.5.55 → 0.5.56
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/package.json
CHANGED
package/prisma/.DS_Store
ADDED
|
Binary file
|
|
Binary file
|
|
@@ -21,6 +21,8 @@ model FitCheck {
|
|
|
21
21
|
overall_score Float
|
|
22
22
|
/// Free-text from Overall Analysis agent; preferred over recommendation Json.
|
|
23
23
|
overall_recommendation String?
|
|
24
|
+
/// Why `overall_score` is this value. Distinct from `overall_recommendation`.
|
|
25
|
+
score_reasoning String?
|
|
24
26
|
short_match_analysis Json[]
|
|
25
27
|
fit_comparison Json?
|
|
26
28
|
recommendation Json?
|
|
@@ -42,8 +42,6 @@ model Interview {
|
|
|
42
42
|
candidate_interview_metadata Json?
|
|
43
43
|
/// Data
|
|
44
44
|
room_name String?
|
|
45
|
-
/// @deprecated Prefer `ai_feedback.feedback` (narrative string on AI feedback JSON).
|
|
46
|
-
interview_summary String[]
|
|
47
45
|
scheduled_start_time DateTime?
|
|
48
46
|
scheduled_end_time DateTime?
|
|
49
47
|
actual_start_time DateTime?
|
|
@@ -57,17 +55,18 @@ model Interview {
|
|
|
57
55
|
ai_assistance_mode AiAssistanceMode? @default(ASSISTED)
|
|
58
56
|
interview_status InterviewStatus @default(SCHEDULED)
|
|
59
57
|
interview_platform InterviewPlatform @default(TREADSPACE)
|
|
60
|
-
overall_feedback String?
|
|
61
58
|
/// Feedback JSON fields
|
|
62
59
|
/// AI overall payload: `{ score, rating, feedback? }` where `feedback` is the
|
|
63
|
-
/// narrative summary string
|
|
60
|
+
/// narrative summary string.
|
|
64
61
|
ai_feedback Json?
|
|
65
62
|
human_feedback Json?
|
|
66
|
-
section_feedback Json[]
|
|
67
63
|
interview_preparation Json?
|
|
68
64
|
final_feedback Json?
|
|
69
65
|
interview_analysis_ranges Json?
|
|
70
66
|
interview_flow_summary String?
|
|
67
|
+
/// Extra Orion prose for downstream AI input (FitCheck, interview prep).
|
|
68
|
+
/// Not interviewer-facing; omit from evidence GET / snapshots / Zoho.
|
|
69
|
+
ai_context String?
|
|
71
70
|
/// When Orion AI feedback was last persisted on this interview.
|
|
72
71
|
ai_feedback_generated_at DateTime?
|
|
73
72
|
/// Experimental Beta AI feedback store (parallel to production AI columns).
|
|
@@ -76,6 +75,7 @@ model Interview {
|
|
|
76
75
|
beta_section_feedback Json[] @default([])
|
|
77
76
|
beta_final_feedback Json?
|
|
78
77
|
beta_interview_flow_summary String?
|
|
78
|
+
beta_ai_context String?
|
|
79
79
|
beta_ai_feedback_generated_at DateTime?
|
|
80
80
|
/// When recruiter human feedback was last saved (draft or final).
|
|
81
81
|
human_feedback_updated_at DateTime?
|
package/prisma/schema/migrations/20260915120000_drop_interview_legacy_feedback_columns/migration.sql
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
-- Drop leftover interview feedback columns after sanitizing into
|
|
2
|
+
-- ai_feedback, human_feedback, and sectioned final_feedback.
|
|
3
|
+
|
|
4
|
+
ALTER TABLE "Interview" DROP COLUMN IF EXISTS "interview_summary";
|
|
5
|
+
ALTER TABLE "Interview" DROP COLUMN IF EXISTS "overall_feedback";
|
|
6
|
+
ALTER TABLE "Interview" DROP COLUMN IF EXISTS "section_feedback";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
-- Interview sidecar prose for downstream AI input (not interviewer-facing).
|
|
2
|
+
ALTER TABLE "Interview" ADD COLUMN IF NOT EXISTS "ai_context" TEXT;
|
|
3
|
+
ALTER TABLE "Interview" ADD COLUMN IF NOT EXISTS "beta_ai_context" TEXT;
|
|
4
|
+
|
|
5
|
+
-- Round relevance vs JD / application. Unused until a later writer.
|
|
6
|
+
ALTER TABLE "OngoingEvaluation" ADD COLUMN IF NOT EXISTS "relevance_score" DOUBLE PRECISION;
|
|
7
|
+
ALTER TABLE "OngoingEvaluation" ADD COLUMN IF NOT EXISTS "relevance_reasoning" TEXT;
|
|
@@ -56,6 +56,9 @@ model OngoingEvaluation {
|
|
|
56
56
|
duration_unit DurationUnit?
|
|
57
57
|
details Json?
|
|
58
58
|
category EvaluationCategory?
|
|
59
|
+
/// Round relevance vs JD / application. Unused until a later writer.
|
|
60
|
+
relevance_score Float?
|
|
61
|
+
relevance_reasoning String?
|
|
59
62
|
// Audit Fields
|
|
60
63
|
created_at DateTime @default(now())
|
|
61
64
|
updated_at DateTime @updatedAt
|