@adaptware/eagles-db 0.4.37 → 0.4.41

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 (28) hide show
  1. package/client/edge.js +16 -18
  2. package/client/index-browser.js +9 -12
  3. package/client/index.d.ts +880 -424
  4. package/client/index.js +16 -18
  5. package/client/package.json +1 -1
  6. package/client/schema.prisma +40 -41
  7. package/client/wasm.js +16 -18
  8. package/package.json +1 -1
  9. package/prisma/schema/document.prisma +1 -0
  10. package/prisma/schema/jobDescription.prisma +2 -0
  11. package/prisma/schema/migrations/20260522120000_ongoing_evaluation_record_kind/migration.sql +25 -0
  12. package/prisma/schema/migrations/20260523120000_replace_record_kind_with_is_committed/migration.sql +24 -0
  13. package/prisma/schema/migrations/20260528120000_drop_job_description_recommendation_config/migration.sql +2 -0
  14. package/prisma/schema/migrations/20260710120000_add_resume_rendered_export_fields/migration.sql +9 -0
  15. package/prisma/schema/migrations/20260714120000_add_job_description_display_html_document/migration.sql +8 -0
  16. package/prisma/schema/openJobAnalytics.prisma +10 -14
  17. package/client/libquery_engine-darwin.dylib.node +0 -0
  18. package/prisma/.DS_Store +0 -0
  19. package/prisma/migrations/20260519120000_migrate_shortlisted_to_selected/migration.sql +0 -2
  20. package/prisma/schema/.DS_Store +0 -0
  21. package/prisma/schema/migrations/20260519120000_add_analytics_schema/migration.sql +0 -84
  22. package/prisma/schema/migrations/20260625120000_add_interviewer_analytics/migration.sql +0 -26
  23. package/prisma/schema/migrations/20260629120000_add_user_lifecycle_activity_events/migration.sql +0 -13
  24. package/prisma/schema/migrations/20260629140000_drop_organisation_org_code/migration.sql +0 -2
  25. package/prisma/schema/migrations/20260629160000_employee_codes_dual_interviewer_analytics/migration.sql +0 -87
  26. package/prisma/schema/migrations/20260630120000_add_application_sources/migration.sql +0 -38
  27. package/prisma/schema/migrations/20260701120000_add_source_effectiveness_analytics/migration.sql +0 -40
  28. package/prisma/schema/migrations/20260702120000_add_analytics_daily_tables/migration.sql +0 -232
@@ -1142,6 +1142,7 @@ exports.Prisma.JobDescriptionScalarFieldEnum = {
1142
1142
  uploaded_job_description_path: 'uploaded_job_description_path',
1143
1143
  source_document_id: 'source_document_id',
1144
1144
  rendered_jd_document_id: 'rendered_jd_document_id',
1145
+ display_html_document_id: 'display_html_document_id',
1145
1146
  is_plan_published: 'is_plan_published',
1146
1147
  is_posted: 'is_posted',
1147
1148
  summary: 'summary',
@@ -1343,12 +1344,10 @@ exports.Prisma.OpenJobAnalyticsScalarFieldEnum = {
1343
1344
  closure_type: 'closure_type',
1344
1345
  time_to_hire_days: 'time_to_hire_days',
1345
1346
  application_count: 'application_count',
1346
- in_consideration_count: 'in_consideration_count',
1347
- shortlisted_count: 'shortlisted_count',
1348
- filtered_count: 'filtered_count',
1349
- in_evaluation_count: 'in_evaluation_count',
1350
- offered_count: 'offered_count',
1351
- hired_count: 'hired_count',
1347
+ unscreened_count: 'unscreened_count',
1348
+ ongoing_count: 'ongoing_count',
1349
+ selected_count: 'selected_count',
1350
+ rejected_count: 'rejected_count',
1352
1351
  updated_at: 'updated_at'
1353
1352
  };
1354
1353
 
@@ -1373,12 +1372,10 @@ exports.Prisma.OpenJobAnalyticsDailyScalarFieldEnum = {
1373
1372
  closure_type: 'closure_type',
1374
1373
  time_to_hire_days: 'time_to_hire_days',
1375
1374
  application_count: 'application_count',
1376
- in_consideration_count: 'in_consideration_count',
1377
- shortlisted_count: 'shortlisted_count',
1378
- filtered_count: 'filtered_count',
1379
- in_evaluation_count: 'in_evaluation_count',
1380
- offered_count: 'offered_count',
1381
- hired_count: 'hired_count'
1375
+ unscreened_count: 'unscreened_count',
1376
+ ongoing_count: 'ongoing_count',
1377
+ selected_count: 'selected_count',
1378
+ rejected_count: 'rejected_count'
1382
1379
  };
1383
1380
 
1384
1381
  exports.Prisma.OrganisationScalarFieldEnum = {