@adaptware/eagles-db 0.4.3 → 0.4.6
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 -4
- package/client/index-browser.js +1 -1
- package/client/index.d.ts +84 -108
- package/client/index.js +4 -4
- package/client/package.json +1 -1
- package/client/schema.prisma +1 -2
- package/client/wasm.js +1 -1
- package/package.json +1 -1
- package/prisma/schema/jobDescription.prisma +0 -2
- package/prisma/schema/ongoingEvaluation.prisma +1 -0
package/client/package.json
CHANGED
package/client/schema.prisma
CHANGED
|
@@ -882,8 +882,6 @@ model JobDescription {
|
|
|
882
882
|
summary Json?
|
|
883
883
|
ai_insight Json?
|
|
884
884
|
job_fit_comparison Json?
|
|
885
|
-
/// Per-job thresholds for AI round recommendation (interview vs work-sample routing).
|
|
886
|
-
recommendation_config Json?
|
|
887
885
|
// Audit fields
|
|
888
886
|
created_at DateTime @default(now())
|
|
889
887
|
updated_at DateTime @updatedAt
|
|
@@ -1077,6 +1075,7 @@ model OngoingEvaluation {
|
|
|
1077
1075
|
round_status OngoingEvaluationRoundStatus? @default(NOT_SCHEDULED)
|
|
1078
1076
|
comments String? @default("")
|
|
1079
1077
|
completed_at DateTime?
|
|
1078
|
+
is_committed Boolean?
|
|
1080
1079
|
/// Evaluation Plan Fields Filled After Round Started
|
|
1081
1080
|
title String?
|
|
1082
1081
|
description String?
|
package/client/wasm.js
CHANGED
|
@@ -585,7 +585,6 @@ exports.Prisma.JobDescriptionScalarFieldEnum = {
|
|
|
585
585
|
summary: 'summary',
|
|
586
586
|
ai_insight: 'ai_insight',
|
|
587
587
|
job_fit_comparison: 'job_fit_comparison',
|
|
588
|
-
recommendation_config: 'recommendation_config',
|
|
589
588
|
created_at: 'created_at',
|
|
590
589
|
updated_at: 'updated_at',
|
|
591
590
|
created_by: 'created_by',
|
|
@@ -686,6 +685,7 @@ exports.Prisma.OngoingEvaluationScalarFieldEnum = {
|
|
|
686
685
|
round_status: 'round_status',
|
|
687
686
|
comments: 'comments',
|
|
688
687
|
completed_at: 'completed_at',
|
|
688
|
+
is_committed: 'is_committed',
|
|
689
689
|
title: 'title',
|
|
690
690
|
description: 'description',
|
|
691
691
|
order_no: 'order_no',
|
package/package.json
CHANGED
|
@@ -19,8 +19,6 @@ model JobDescription {
|
|
|
19
19
|
summary Json?
|
|
20
20
|
ai_insight Json?
|
|
21
21
|
job_fit_comparison Json?
|
|
22
|
-
/// Per-job thresholds for AI round recommendation (interview vs work-sample routing).
|
|
23
|
-
recommendation_config Json?
|
|
24
22
|
// Audit fields
|
|
25
23
|
created_at DateTime @default(now())
|
|
26
24
|
updated_at DateTime @updatedAt
|
|
@@ -33,6 +33,7 @@ model OngoingEvaluation {
|
|
|
33
33
|
round_status OngoingEvaluationRoundStatus? @default(NOT_SCHEDULED)
|
|
34
34
|
comments String? @default("")
|
|
35
35
|
completed_at DateTime?
|
|
36
|
+
is_committed Boolean?
|
|
36
37
|
/// Evaluation Plan Fields Filled After Round Started
|
|
37
38
|
title String?
|
|
38
39
|
description String?
|