@adaptware/eagles-db 0.4.42 → 0.4.44

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.
Files changed (44) hide show
  1. package/client/edge.js +32 -16
  2. package/client/index-browser.js +27 -11
  3. package/client/index.d.ts +1028 -228
  4. package/client/index.js +32 -16
  5. package/client/libquery_engine-darwin.dylib.node +0 -0
  6. package/client/package.json +1 -1
  7. package/client/schema.prisma +30 -13
  8. package/client/wasm.js +32 -16
  9. package/package.json +1 -1
  10. package/prisma/.DS_Store +0 -0
  11. package/prisma/migrations/20260519120000_migrate_shortlisted_to_selected/migration.sql +2 -0
  12. package/prisma/schema/.DS_Store +0 -0
  13. package/prisma/schema/activityEvent.prisma +2 -0
  14. package/prisma/schema/applicationAnalytics.prisma +4 -0
  15. package/prisma/schema/applications.prisma +1 -0
  16. package/prisma/schema/assessment.prisma +1 -0
  17. package/prisma/schema/assignment.prisma +1 -0
  18. package/prisma/schema/evaluationPlan.prisma +2 -3
  19. package/prisma/schema/interview.prisma +2 -0
  20. package/prisma/schema/jobDescription.prisma +1 -0
  21. package/prisma/schema/migrations/20260519120000_add_analytics_schema/migration.sql +84 -0
  22. package/prisma/schema/migrations/20260625120000_add_interviewer_analytics/migration.sql +26 -0
  23. package/prisma/schema/migrations/20260629120000_add_user_lifecycle_activity_events/migration.sql +13 -0
  24. package/prisma/schema/migrations/20260629140000_drop_organisation_org_code/migration.sql +2 -0
  25. package/prisma/schema/migrations/20260629160000_employee_codes_dual_interviewer_analytics/migration.sql +87 -0
  26. package/prisma/schema/migrations/20260630120000_add_application_sources/migration.sql +38 -0
  27. package/prisma/schema/migrations/20260701120000_add_source_effectiveness_analytics/migration.sql +40 -0
  28. package/prisma/schema/migrations/20260702120000_add_analytics_daily_tables/migration.sql +232 -0
  29. package/prisma/schema/migrations/20260716120000_evaluation_category_four_values/migration.sql +204 -0
  30. package/prisma/schema/migrations/20260716130000_application_withdrawn_analytics/migration.sql +31 -0
  31. package/prisma/schema/ongoingEvaluation.prisma +2 -0
  32. package/prisma/schema/openJobAnalytics.prisma +4 -0
  33. package/prisma/schema/pipelineDistributionAnalytics.prisma +4 -6
  34. package/prisma/schema/sourceEffectivenessAnalytics.prisma +2 -0
  35. package/prisma/schema/migrations/20260519120000_interview_deadline/migration.sql +0 -2
  36. package/prisma/schema/migrations/20260520120000_interview_duration_drop_deadline/migration.sql +0 -30
  37. package/prisma/schema/migrations/20260602120000_resume_file_hash_drop_unique/migration.sql +0 -2
  38. package/prisma/schema/migrations/20260603120000_job_application_field_is_mandatory/migration.sql +0 -2
  39. package/prisma/schema/migrations/20260604120000_job_application_response_updated_by_organisation/migration.sql +0 -2
  40. package/prisma/schema/migrations/20260605120000_drop_document_application_id/migration.sql +0 -3
  41. package/prisma/schema/migrations/20260610120000_jaf_template_model/migration.sql +0 -70
  42. package/prisma/schema/migrations/20260610130000_assignment_document_fks/migration.sql +0 -15
  43. package/prisma/schema/migrations/20260610140000_jaf_draft_activation/migration.sql +0 -12
  44. package/prisma/schema/migrations/20260713120000_add_focus_areas_backfill/migration.sql +0 -16
@@ -216,6 +216,8 @@ exports.Prisma.ApplicationAnalyticsScalarFieldEnum = {
216
216
  is_evaluated: 'is_evaluated',
217
217
  is_rejected: 'is_rejected',
218
218
  is_shortlisted: 'is_shortlisted',
219
+ is_on_hold: 'is_on_hold',
220
+ is_withdrawn: 'is_withdrawn',
219
221
  has_committed_evaluation: 'has_committed_evaluation',
220
222
  updated_at: 'updated_at'
221
223
  };
@@ -245,6 +247,8 @@ exports.Prisma.ApplicationAnalyticsDailyScalarFieldEnum = {
245
247
  is_evaluated: 'is_evaluated',
246
248
  is_rejected: 'is_rejected',
247
249
  is_shortlisted: 'is_shortlisted',
250
+ is_on_hold: 'is_on_hold',
251
+ is_withdrawn: 'is_withdrawn',
248
252
  has_committed_evaluation: 'has_committed_evaluation'
249
253
  };
250
254
 
@@ -304,6 +308,7 @@ exports.Prisma.AssessmentScalarFieldEnum = {
304
308
  actual_start_time: 'actual_start_time',
305
309
  actual_end_time: 'actual_end_time',
306
310
  attempt_expires_at: 'attempt_expires_at',
311
+ evaluated_at: 'evaluated_at',
307
312
  created_at: 'created_at',
308
313
  updated_at: 'updated_at',
309
314
  created_by: 'created_by',
@@ -430,6 +435,7 @@ exports.Prisma.AssignmentScalarFieldEnum = {
430
435
  zip_document_id: 'zip_document_id',
431
436
  scheduled_start_time: 'scheduled_start_time',
432
437
  scheduled_end_time: 'scheduled_end_time',
438
+ evaluated_at: 'evaluated_at',
433
439
  created_at: 'created_at',
434
440
  updated_at: 'updated_at',
435
441
  created_by: 'created_by',
@@ -875,6 +881,7 @@ exports.Prisma.InterviewScalarFieldEnum = {
875
881
  interview_flow_summary: 'interview_flow_summary',
876
882
  ai_feedback_generated_at: 'ai_feedback_generated_at',
877
883
  human_feedback_updated_at: 'human_feedback_updated_at',
884
+ evaluated_at: 'evaluated_at',
878
885
  reschedule_count: 'reschedule_count',
879
886
  last_rescheduled_at: 'last_rescheduled_at',
880
887
  first_assigned_at: 'first_assigned_at',
@@ -1151,6 +1158,7 @@ exports.Prisma.JobDescriptionScalarFieldEnum = {
1151
1158
  job_fit_comparison: 'job_fit_comparison',
1152
1159
  target_closing_date: 'target_closing_date',
1153
1160
  closing_date: 'closing_date',
1161
+ opened_at: 'opened_at',
1154
1162
  job_number: 'job_number',
1155
1163
  job_code: 'job_code',
1156
1164
  created_at: 'created_at',
@@ -1301,6 +1309,8 @@ exports.Prisma.OngoingEvaluationScalarFieldEnum = {
1301
1309
  round_status: 'round_status',
1302
1310
  comments: 'comments',
1303
1311
  completed_at: 'completed_at',
1312
+ assigned_at: 'assigned_at',
1313
+ result_at: 'result_at',
1304
1314
  is_committed: 'is_committed',
1305
1315
  title: 'title',
1306
1316
  description: 'description',
@@ -1350,6 +1360,8 @@ exports.Prisma.OpenJobAnalyticsScalarFieldEnum = {
1350
1360
  ongoing_count: 'ongoing_count',
1351
1361
  selected_count: 'selected_count',
1352
1362
  rejected_count: 'rejected_count',
1363
+ on_hold_count: 'on_hold_count',
1364
+ withdrawn_count: 'withdrawn_count',
1353
1365
  updated_at: 'updated_at'
1354
1366
  };
1355
1367
 
@@ -1377,7 +1389,9 @@ exports.Prisma.OpenJobAnalyticsDailyScalarFieldEnum = {
1377
1389
  unscreened_count: 'unscreened_count',
1378
1390
  ongoing_count: 'ongoing_count',
1379
1391
  selected_count: 'selected_count',
1380
- rejected_count: 'rejected_count'
1392
+ rejected_count: 'rejected_count',
1393
+ on_hold_count: 'on_hold_count',
1394
+ withdrawn_count: 'withdrawn_count'
1381
1395
  };
1382
1396
 
1383
1397
  exports.Prisma.OrganisationScalarFieldEnum = {
@@ -1433,9 +1447,8 @@ exports.Prisma.PipelineDistributionAnalyticsScalarFieldEnum = {
1433
1447
  application_count: 'application_count',
1434
1448
  filtered_in_count: 'filtered_in_count',
1435
1449
  min_fit_score: 'min_fit_score',
1436
- experience_screening_count: 'experience_screening_count',
1437
- technical_screening_count: 'technical_screening_count',
1438
- technical_interview_count: 'technical_interview_count',
1450
+ screening_count: 'screening_count',
1451
+ business_screening_count: 'business_screening_count',
1439
1452
  business_round_count: 'business_round_count',
1440
1453
  behavioral_round_count: 'behavioral_round_count',
1441
1454
  shortlisted_count: 'shortlisted_count',
@@ -1454,9 +1467,8 @@ exports.Prisma.PipelineDistributionAnalyticsDailyScalarFieldEnum = {
1454
1467
  application_count: 'application_count',
1455
1468
  filtered_in_count: 'filtered_in_count',
1456
1469
  min_fit_score: 'min_fit_score',
1457
- experience_screening_count: 'experience_screening_count',
1458
- technical_screening_count: 'technical_screening_count',
1459
- technical_interview_count: 'technical_interview_count',
1470
+ screening_count: 'screening_count',
1471
+ business_screening_count: 'business_screening_count',
1460
1472
  business_round_count: 'business_round_count',
1461
1473
  behavioral_round_count: 'behavioral_round_count',
1462
1474
  shortlisted_count: 'shortlisted_count'
@@ -1653,6 +1665,7 @@ exports.Prisma.SourceEffectivenessAnalyticsScalarFieldEnum = {
1653
1665
  screened_count: 'screened_count',
1654
1666
  evaluated_count: 'evaluated_count',
1655
1667
  rejected_count: 'rejected_count',
1668
+ on_hold_count: 'on_hold_count',
1656
1669
  shortlisted_count: 'shortlisted_count',
1657
1670
  offered_count: 'offered_count',
1658
1671
  offer_accepted_count: 'offer_accepted_count',
@@ -1682,6 +1695,7 @@ exports.Prisma.SourceEffectivenessAnalyticsDailyScalarFieldEnum = {
1682
1695
  screened_count: 'screened_count',
1683
1696
  evaluated_count: 'evaluated_count',
1684
1697
  rejected_count: 'rejected_count',
1698
+ on_hold_count: 'on_hold_count',
1685
1699
  shortlisted_count: 'shortlisted_count',
1686
1700
  offered_count: 'offered_count',
1687
1701
  offer_accepted_count: 'offer_accepted_count',
@@ -1866,6 +1880,8 @@ exports.ActivityEventType = exports.$Enums.ActivityEventType = {
1866
1880
  APPLICATION_CREATED: 'APPLICATION_CREATED',
1867
1881
  APPLICATION_STARTED: 'APPLICATION_STARTED',
1868
1882
  APPLICATION_REJECTED: 'APPLICATION_REJECTED',
1883
+ APPLICATION_ON_HOLD: 'APPLICATION_ON_HOLD',
1884
+ APPLICATION_WITHDRAWN: 'APPLICATION_WITHDRAWN',
1869
1885
  APPLICATION_SHORTLISTED: 'APPLICATION_SHORTLISTED',
1870
1886
  FIT_CHECK_COMPLETED: 'FIT_CHECK_COMPLETED',
1871
1887
  ROUND_ASSIGNED: 'ROUND_ASSIGNED',
@@ -1958,7 +1974,8 @@ exports.ApplicationStatus = exports.$Enums.ApplicationStatus = {
1958
1974
  SELECTED: 'SELECTED',
1959
1975
  SHORTLISTED: 'SHORTLISTED',
1960
1976
  REJECTED: 'REJECTED',
1961
- ON_HOLD: 'ON_HOLD'
1977
+ ON_HOLD: 'ON_HOLD',
1978
+ WITHDRAWN: 'WITHDRAWN'
1962
1979
  };
1963
1980
 
1964
1981
  exports.FitCheckStatus = exports.$Enums.FitCheckStatus = {
@@ -1968,9 +1985,8 @@ exports.FitCheckStatus = exports.$Enums.FitCheckStatus = {
1968
1985
  };
1969
1986
 
1970
1987
  exports.EvaluationCategory = exports.$Enums.EvaluationCategory = {
1971
- EXPERIENCE_SCREENING: 'EXPERIENCE_SCREENING',
1972
- TECHNICAL_SCREENING: 'TECHNICAL_SCREENING',
1973
- TECHNICAL_INTERVIEW: 'TECHNICAL_INTERVIEW',
1988
+ SCREENING: 'SCREENING',
1989
+ BUSINESS_SCREENING: 'BUSINESS_SCREENING',
1974
1990
  BUSINESS_ROUND: 'BUSINESS_ROUND',
1975
1991
  BEHAVIORAL_ROUND: 'BEHAVIORAL_ROUND'
1976
1992
  };