@adaptware/eagles-db 0.1.39 → 0.1.41

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-3d6f737e76c812c2732fa6b2b1ce3c4668c542f50849008927bd91bbb546fede",
2
+ "name": "prisma-client-23c70d16b49e6790467fd4e983caca8aa8eb2e5817181f66b1b76c4cd4fbf2ff",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -96,8 +96,6 @@ model ActivityLog {
96
96
  // Relations
97
97
  actor User? @relation("ActorActivityLogs", fields: [actor_id], references: [id], onDelete: SetNull, onUpdate: Cascade)
98
98
  application Application @relation(fields: [application_id], references: [id], onDelete: Cascade, onUpdate: Cascade)
99
- user User? @relation(fields: [userId], references: [id])
100
- userId String?
101
99
 
102
100
  @@index([application_id])
103
101
  }
@@ -1207,7 +1205,6 @@ model User {
1207
1205
  ethnicity String?
1208
1206
  veteran_status String?
1209
1207
  disability_status String?
1210
- activityLogs ActivityLog[]
1211
1208
 
1212
1209
  @@index([role_id])
1213
1210
  @@index([permission_id])
package/client/wasm.js CHANGED
@@ -172,8 +172,7 @@ exports.Prisma.ActivityLogScalarFieldEnum = {
172
172
  timestamp: 'timestamp',
173
173
  metadata: 'metadata',
174
174
  created_at: 'created_at',
175
- is_active: 'is_active',
176
- userId: 'userId'
175
+ is_active: 'is_active'
177
176
  };
178
177
 
179
178
  exports.Prisma.ApplicationScalarFieldEnum = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptware/eagles-db",
3
- "version": "0.1.39",
3
+ "version": "0.1.41",
4
4
  "description": "A Prisma client package for Treadspace database operations",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -17,8 +17,6 @@ model ActivityLog {
17
17
  // Relations
18
18
  actor User? @relation("ActorActivityLogs", fields: [actor_id], references: [id], onDelete: SetNull, onUpdate: Cascade)
19
19
  application Application @relation(fields: [application_id], references: [id], onDelete: Cascade, onUpdate: Cascade)
20
- user User? @relation(fields: [userId], references: [id])
21
- userId String?
22
20
 
23
21
  @@index([application_id])
24
22
  }
@@ -28,6 +28,7 @@ model Interview {
28
28
  interview_summary String[]
29
29
  ai_interview_feedback InterviewFeedback?
30
30
  interview_feedback InterviewFeedback?
31
+ overall_feedback String?
31
32
  interview_rating Float? // Overall rating out of 100 based on evaluation
32
33
  scheduled_start_time DateTime?
33
34
  scheduled_end_time DateTime?
@@ -65,7 +65,6 @@ model User {
65
65
  ethnicity String?
66
66
  veteran_status String?
67
67
  disability_status String?
68
- activityLogs ActivityLog[]
69
68
 
70
69
  @@index([role_id])
71
70
  @@index([permission_id])