@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/client/edge.js +11 -15
- package/client/index-browser.js +8 -12
- package/client/index.d.ts +282 -422
- package/client/index.js +11 -15
- package/client/package.json +1 -1
- package/client/schema.prisma +10 -14
- package/client/wasm.js +11 -15
- package/package.json +1 -1
- package/prisma/schema/openJobAnalytics.prisma +10 -14
package/client/package.json
CHANGED
package/client/schema.prisma
CHANGED
|
@@ -2442,13 +2442,11 @@ model OpenJobAnalytics {
|
|
|
2442
2442
|
closure_type OpenJobClosureType?
|
|
2443
2443
|
time_to_hire_days Int?
|
|
2444
2444
|
|
|
2445
|
-
application_count
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
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
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
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")
|