@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.
- package/client/edge.js +4 -5
- package/client/index-browser.js +1 -2
- package/client/index.d.ts +2 -625
- package/client/index.js +4 -5
- package/client/package.json +1 -1
- package/client/schema.prisma +0 -3
- package/client/wasm.js +1 -2
- package/package.json +1 -1
- package/prisma/schema/activityLog.prisma +0 -2
- package/prisma/schema/interview.prisma +1 -0
- package/prisma/schema/user.prisma +0 -1
package/client/package.json
CHANGED
package/client/schema.prisma
CHANGED
|
@@ -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
|
@@ -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?
|