@adaptware/eagles-db 0.4.32 → 0.4.33
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 +15 -11
- package/client/index-browser.js +10 -6
- package/client/index.d.ts +317 -288
- package/client/index.js +15 -11
- package/client/libquery_engine-darwin.dylib.node +0 -0
- package/client/package.json +1 -1
- package/client/schema.prisma +8 -4
- package/client/wasm.js +15 -11
- package/package.json +1 -1
- package/prisma/.DS_Store +0 -0
- package/prisma/migrations/20260519120000_migrate_shortlisted_to_selected/migration.sql +2 -0
- package/prisma/schema/.DS_Store +0 -0
- package/prisma/schema/applications.prisma +0 -2
- package/prisma/schema/evaluationPlan.prisma +0 -1
- package/prisma/schema/migrations/20260519120000_add_analytics_schema/migration.sql +84 -0
- package/prisma/schema/migrations/20260625120000_add_interviewer_analytics/migration.sql +26 -0
- package/prisma/schema/migrations/20260629120000_add_user_lifecycle_activity_events/migration.sql +13 -0
- package/prisma/schema/migrations/20260629140000_drop_organisation_org_code/migration.sql +2 -0
- package/prisma/schema/migrations/20260629160000_employee_codes_dual_interviewer_analytics/migration.sql +87 -0
- package/prisma/schema/migrations/20260630120000_add_application_sources/migration.sql +38 -0
- package/prisma/schema/migrations/20260701120000_add_source_effectiveness_analytics/migration.sql +40 -0
- package/prisma/schema/migrations/20260702120000_add_analytics_daily_tables/migration.sql +232 -0
- package/prisma/schema/ongoingEvaluation.prisma +0 -1
- package/prisma/schema/openJobAnalytics.prisma +8 -0
- package/prisma/schema/migrations/20260519120000_interview_deadline/migration.sql +0 -2
- package/prisma/schema/migrations/20260520120000_interview_duration_drop_deadline/migration.sql +0 -30
- package/prisma/schema/migrations/20260602120000_resume_file_hash_drop_unique/migration.sql +0 -2
- package/prisma/schema/migrations/20260603120000_job_application_field_is_mandatory/migration.sql +0 -2
- package/prisma/schema/migrations/20260604120000_job_application_response_updated_by_organisation/migration.sql +0 -2
- package/prisma/schema/migrations/20260605120000_drop_document_application_id/migration.sql +0 -3
- package/prisma/schema/migrations/20260610120000_jaf_template_model/migration.sql +0 -70
- package/prisma/schema/migrations/20260610130000_assignment_document_fks/migration.sql +0 -15
- package/prisma/schema/migrations/20260610140000_jaf_draft_activation/migration.sql +0 -12
|
Binary file
|
package/client/package.json
CHANGED
package/client/schema.prisma
CHANGED
|
@@ -347,7 +347,6 @@ enum ApplicationStatus {
|
|
|
347
347
|
SELECTED
|
|
348
348
|
SHORTLISTED
|
|
349
349
|
REJECTED
|
|
350
|
-
ON_HOLD
|
|
351
350
|
|
|
352
351
|
@@schema("public")
|
|
353
352
|
}
|
|
@@ -366,7 +365,6 @@ model Application {
|
|
|
366
365
|
source_id String?
|
|
367
366
|
round_no Int @default(0)
|
|
368
367
|
is_jaf_completed Boolean @default(false)
|
|
369
|
-
proceed_to_next_round Boolean? @default(false)
|
|
370
368
|
//Screening fields
|
|
371
369
|
on_notice_period Boolean @default(false)
|
|
372
370
|
expected_joining_date DateTime?
|
|
@@ -1267,7 +1265,6 @@ model EvaluationPlan {
|
|
|
1267
1265
|
elimination_round Boolean @default(false)
|
|
1268
1266
|
evaluation_type EvaluationType @default(TREADSPACE_AI_ASSISTED)
|
|
1269
1267
|
type_of_round RoundType
|
|
1270
|
-
round_purpose String?
|
|
1271
1268
|
timeline Int?
|
|
1272
1269
|
order_no Int?
|
|
1273
1270
|
details Json?
|
|
@@ -2383,7 +2380,6 @@ model OngoingEvaluation {
|
|
|
2383
2380
|
description String?
|
|
2384
2381
|
order_no Int?
|
|
2385
2382
|
format EvaluationRoundFormat?
|
|
2386
|
-
round_purpose String?
|
|
2387
2383
|
topics String[]
|
|
2388
2384
|
assignee String?
|
|
2389
2385
|
elimination_round Boolean? @default(false)
|
|
@@ -2444,6 +2440,10 @@ model OpenJobAnalytics {
|
|
|
2444
2440
|
application_count Int @default(0)
|
|
2445
2441
|
in_consideration_count Int @default(0)
|
|
2446
2442
|
shortlisted_count Int @default(0)
|
|
2443
|
+
filtered_count Int @default(0)
|
|
2444
|
+
in_evaluation_count Int @default(0)
|
|
2445
|
+
offered_count Int @default(0)
|
|
2446
|
+
hired_count Int @default(0)
|
|
2447
2447
|
|
|
2448
2448
|
updated_at DateTime @updatedAt
|
|
2449
2449
|
|
|
@@ -2484,6 +2484,10 @@ model OpenJobAnalyticsDaily {
|
|
|
2484
2484
|
application_count Int @default(0)
|
|
2485
2485
|
in_consideration_count Int @default(0)
|
|
2486
2486
|
shortlisted_count Int @default(0)
|
|
2487
|
+
filtered_count Int @default(0)
|
|
2488
|
+
in_evaluation_count Int @default(0)
|
|
2489
|
+
offered_count Int @default(0)
|
|
2490
|
+
hired_count Int @default(0)
|
|
2487
2491
|
|
|
2488
2492
|
@@unique([snapshot_date, job_description_id])
|
|
2489
2493
|
@@index([snapshot_date], map: "ojad_snapshot_date_idx")
|