@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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-5be67eb696fd42d1991f2c34498399bfcdc4bffd797ccfe1e55a96b2bcad43d4",
2
+ "name": "prisma-client-88599a8e10ec108bcddab41b6c3b233339fd8a3988504481b1fa53a8526a6f6e",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptware/eagles-db",
3
- "version": "0.4.3",
3
+ "version": "0.4.6",
4
4
  "description": "A Prisma client package for Treadspace database operations",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -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?