@adaptware/eagles-db 0.4.43 → 0.4.44
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 -3
- package/client/index-browser.js +6 -0
- package/client/index.d.ts +547 -5
- package/client/index.js +9 -3
- package/client/package.json +1 -1
- package/client/schema.prisma +7 -0
- package/client/wasm.js +9 -3
- package/package.json +1 -1
- package/prisma/schema/assessment.prisma +1 -0
- package/prisma/schema/assignment.prisma +1 -0
- package/prisma/schema/interview.prisma +2 -0
- package/prisma/schema/jobDescription.prisma +1 -0
- package/prisma/schema/ongoingEvaluation.prisma +2 -0
package/client/package.json
CHANGED
package/client/schema.prisma
CHANGED
|
@@ -450,6 +450,7 @@ model Assessment {
|
|
|
450
450
|
actual_end_time DateTime?
|
|
451
451
|
/// Attempt Expires At
|
|
452
452
|
attempt_expires_at DateTime?
|
|
453
|
+
evaluated_at DateTime?
|
|
453
454
|
/// Audit fields
|
|
454
455
|
created_at DateTime @default(now())
|
|
455
456
|
updated_at DateTime @updatedAt
|
|
@@ -664,6 +665,7 @@ model Assignment {
|
|
|
664
665
|
zip_document_id String? @unique
|
|
665
666
|
scheduled_start_time DateTime?
|
|
666
667
|
scheduled_end_time DateTime?
|
|
668
|
+
evaluated_at DateTime?
|
|
667
669
|
created_at DateTime @default(now())
|
|
668
670
|
updated_at DateTime @updatedAt
|
|
669
671
|
created_by String
|
|
@@ -1600,6 +1602,8 @@ model Interview {
|
|
|
1600
1602
|
ai_feedback_generated_at DateTime?
|
|
1601
1603
|
/// When recruiter human feedback was last saved (draft or final).
|
|
1602
1604
|
human_feedback_updated_at DateTime?
|
|
1605
|
+
/// When final human feedback was submitted.
|
|
1606
|
+
evaluated_at DateTime?
|
|
1603
1607
|
|
|
1604
1608
|
/// Self-scheduling
|
|
1605
1609
|
reschedule_count Int @default(0)
|
|
@@ -2073,6 +2077,7 @@ model JobDescription {
|
|
|
2073
2077
|
job_fit_comparison Json?
|
|
2074
2078
|
target_closing_date DateTime?
|
|
2075
2079
|
closing_date DateTime?
|
|
2080
|
+
opened_at DateTime?
|
|
2076
2081
|
|
|
2077
2082
|
job_number Int?
|
|
2078
2083
|
job_code String? @unique
|
|
@@ -2388,6 +2393,8 @@ model OngoingEvaluation {
|
|
|
2388
2393
|
round_status OngoingEvaluationRoundStatus? @default(NOT_SCHEDULED)
|
|
2389
2394
|
comments String? @default("")
|
|
2390
2395
|
completed_at DateTime?
|
|
2396
|
+
assigned_at DateTime?
|
|
2397
|
+
result_at DateTime?
|
|
2391
2398
|
is_committed Boolean?
|
|
2392
2399
|
/// Evaluation Plan Fields Filled After Round Started
|
|
2393
2400
|
title String?
|