@adaptware/eagles-db 0.4.37 → 0.4.38

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.37",
3
+ "version": "0.4.38",
4
4
  "description": "A Prisma client package for Treadspace database operations",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -21,13 +21,11 @@ model OpenJobAnalytics {
21
21
  closure_type OpenJobClosureType?
22
22
  time_to_hire_days Int?
23
23
 
24
- application_count Int @default(0)
25
- in_consideration_count Int @default(0)
26
- shortlisted_count Int @default(0)
27
- filtered_count Int @default(0)
28
- in_evaluation_count Int @default(0)
29
- offered_count Int @default(0)
30
- hired_count Int @default(0)
24
+ application_count Int @default(0)
25
+ unscreened_count Int @default(0)
26
+ ongoing_count Int @default(0)
27
+ selected_count Int @default(0)
28
+ rejected_count Int @default(0)
31
29
 
32
30
  updated_at DateTime @updatedAt
33
31
 
@@ -65,13 +63,11 @@ model OpenJobAnalyticsDaily {
65
63
  closure_type OpenJobClosureType?
66
64
  time_to_hire_days Int?
67
65
 
68
- application_count Int @default(0)
69
- in_consideration_count Int @default(0)
70
- shortlisted_count Int @default(0)
71
- filtered_count Int @default(0)
72
- in_evaluation_count Int @default(0)
73
- offered_count Int @default(0)
74
- hired_count Int @default(0)
66
+ application_count Int @default(0)
67
+ unscreened_count Int @default(0)
68
+ ongoing_count Int @default(0)
69
+ selected_count Int @default(0)
70
+ rejected_count Int @default(0)
75
71
 
76
72
  @@unique([snapshot_date, job_description_id])
77
73
  @@index([snapshot_date], map: "ojad_snapshot_date_idx")