@adaptware/eagles-db 0.4.33 → 0.4.34

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptware/eagles-db",
3
- "version": "0.4.33",
3
+ "version": "0.4.34",
4
4
  "description": "A Prisma client package for Treadspace database operations",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -5,6 +5,7 @@ enum ApplicationStatus {
5
5
  SELECTED
6
6
  SHORTLISTED
7
7
  REJECTED
8
+ ON_HOLD
8
9
 
9
10
  @@schema("public")
10
11
  }
@@ -23,6 +24,7 @@ model Application {
23
24
  source_id String?
24
25
  round_no Int @default(0)
25
26
  is_jaf_completed Boolean @default(false)
27
+ proceed_to_next_round Boolean? @default(false)
26
28
  //Screening fields
27
29
  on_notice_period Boolean @default(false)
28
30
  expected_joining_date DateTime?
@@ -95,6 +95,7 @@ model EvaluationPlan {
95
95
  elimination_round Boolean @default(false)
96
96
  evaluation_type EvaluationType @default(TREADSPACE_AI_ASSISTED)
97
97
  type_of_round RoundType
98
+ round_purpose String?
98
99
  timeline Int?
99
100
  order_no Int?
100
101
  details Json?
@@ -43,6 +43,7 @@ model OngoingEvaluation {
43
43
  description String?
44
44
  order_no Int?
45
45
  format EvaluationRoundFormat?
46
+ round_purpose String?
46
47
  topics String[]
47
48
  assignee String?
48
49
  elimination_round Boolean? @default(false)