@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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-b839e0b0c20c230b737c3590b4b091a55ae2d7912e2877ab2df64bfbd8f6ee2a",
2
+ "name": "prisma-client-c7ac7fac9dab2000cab890ae08fc671f1dc7fc433a7c1461c03b7192a8739a2e",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "default.js",
@@ -2442,13 +2442,11 @@ model OpenJobAnalytics {
2442
2442
  closure_type OpenJobClosureType?
2443
2443
  time_to_hire_days Int?
2444
2444
 
2445
- application_count Int @default(0)
2446
- in_consideration_count Int @default(0)
2447
- shortlisted_count Int @default(0)
2448
- filtered_count Int @default(0)
2449
- in_evaluation_count Int @default(0)
2450
- offered_count Int @default(0)
2451
- hired_count Int @default(0)
2445
+ application_count Int @default(0)
2446
+ unscreened_count Int @default(0)
2447
+ ongoing_count Int @default(0)
2448
+ selected_count Int @default(0)
2449
+ rejected_count Int @default(0)
2452
2450
 
2453
2451
  updated_at DateTime @updatedAt
2454
2452
 
@@ -2486,13 +2484,11 @@ model OpenJobAnalyticsDaily {
2486
2484
  closure_type OpenJobClosureType?
2487
2485
  time_to_hire_days Int?
2488
2486
 
2489
- application_count Int @default(0)
2490
- in_consideration_count Int @default(0)
2491
- shortlisted_count Int @default(0)
2492
- filtered_count Int @default(0)
2493
- in_evaluation_count Int @default(0)
2494
- offered_count Int @default(0)
2495
- hired_count Int @default(0)
2487
+ application_count Int @default(0)
2488
+ unscreened_count Int @default(0)
2489
+ ongoing_count Int @default(0)
2490
+ selected_count Int @default(0)
2491
+ rejected_count Int @default(0)
2496
2492
 
2497
2493
  @@unique([snapshot_date, job_description_id])
2498
2494
  @@index([snapshot_date], map: "ojad_snapshot_date_idx")