@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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-aee69ea008028a22f66e424877e9508f9645488b1fb83c5a361781a28489a931",
2
+ "name": "prisma-client-297e575629f46612a9055b93c9b187ac39828dd59bacea7650c25310a482b91d",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "default.js",
@@ -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 tailored ResumeFormData. Scratch space only materialised into
3886
- /// `resume_data` when the candidate saves the draft.
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("{}")