@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/package.json
CHANGED
|
@@ -21,13 +21,11 @@ model OpenJobAnalytics {
|
|
|
21
21
|
closure_type OpenJobClosureType?
|
|
22
22
|
time_to_hire_days Int?
|
|
23
23
|
|
|
24
|
-
application_count
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
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
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
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")
|