@adaptware/eagles-db 0.5.47 → 0.5.48
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 +9 -6
- package/client/index-browser.js +2 -0
- package/client/index.d.ts +290 -4
- package/client/index.js +9 -6
- package/client/package.json +1 -1
- package/client/schema.prisma +7 -2
- package/client/wasm.js +9 -6
- package/package.json +1 -1
- package/prisma/.DS_Store +0 -0
- package/prisma/schema/.DS_Store +0 -0
- package/prisma/schema/interview.prisma +39 -38
- package/prisma/schema/migrations/.DS_Store +0 -0
- package/prisma/schema/migrations/20260826160000_add_application_fit_check_report_document/.DS_Store +0 -0
package/client/package.json
CHANGED
package/client/schema.prisma
CHANGED
|
@@ -1967,6 +1967,7 @@ model Interview {
|
|
|
1967
1967
|
resume_id String
|
|
1968
1968
|
job_description_id String
|
|
1969
1969
|
calendar_event_id String?
|
|
1970
|
+
calendar_events Json?
|
|
1970
1971
|
/// Data
|
|
1971
1972
|
room_name String?
|
|
1972
1973
|
/// @deprecated Prefer `ai_feedback.feedback` (narrative string on AI feedback JSON).
|
|
@@ -3882,8 +3883,10 @@ model Resume {
|
|
|
3882
3883
|
tailoring_jd_parsed Json?
|
|
3883
3884
|
/// Cached ResumeGapAnalysis output; computed once per tailoring session.
|
|
3884
3885
|
tailoring_gap_analysis Json?
|
|
3885
|
-
/// Working
|
|
3886
|
-
///
|
|
3886
|
+
/// Working tailoring state: the draft ResumeFormData, tailoring notes, the
|
|
3887
|
+
/// pending contradiction awaiting resolution, and the question counter.
|
|
3888
|
+
/// Scratch space only — the draft is materialised into `resume_data` when the
|
|
3889
|
+
/// candidate saves it.
|
|
3887
3890
|
tailoring_draft Json?
|
|
3888
3891
|
|
|
3889
3892
|
@@index([user_id])
|
|
@@ -4383,6 +4386,8 @@ model User {
|
|
|
4383
4386
|
created_by String
|
|
4384
4387
|
updated_by String
|
|
4385
4388
|
is_active Boolean @default(true)
|
|
4389
|
+
/// Set when removed from team (Delete); null for active/inactive-only users.
|
|
4390
|
+
deleted_at DateTime?
|
|
4386
4391
|
is_self_registered Boolean @default(true)
|
|
4387
4392
|
permission_id String? @unique
|
|
4388
4393
|
preferences Json? @default("{}")
|