@adaptware/eagles-db 0.4.41 → 0.4.43

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 (35) hide show
  1. package/client/edge.js +29 -18
  2. package/client/index-browser.js +23 -11
  3. package/client/index.d.ts +631 -225
  4. package/client/index.js +29 -18
  5. package/client/libquery_engine-darwin.dylib.node +0 -0
  6. package/client/package.json +1 -1
  7. package/client/schema.prisma +25 -13
  8. package/client/wasm.js +29 -18
  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/evaluationPlan.prisma +3 -3
  17. package/prisma/schema/migrations/20260519120000_add_analytics_schema/migration.sql +84 -0
  18. package/prisma/schema/migrations/20260625120000_add_interviewer_analytics/migration.sql +26 -0
  19. package/prisma/schema/migrations/20260629120000_add_user_lifecycle_activity_events/migration.sql +13 -0
  20. package/prisma/schema/migrations/20260629140000_drop_organisation_org_code/migration.sql +2 -0
  21. package/prisma/schema/migrations/20260629160000_employee_codes_dual_interviewer_analytics/migration.sql +87 -0
  22. package/prisma/schema/migrations/20260630120000_add_application_sources/migration.sql +38 -0
  23. package/prisma/schema/migrations/20260701120000_add_source_effectiveness_analytics/migration.sql +40 -0
  24. package/prisma/schema/migrations/20260702120000_add_analytics_daily_tables/migration.sql +232 -0
  25. package/prisma/schema/migrations/20260716120000_evaluation_category_four_values/migration.sql +204 -0
  26. package/prisma/schema/migrations/20260716130000_application_withdrawn_analytics/migration.sql +31 -0
  27. package/prisma/schema/ongoingEvaluation.prisma +1 -0
  28. package/prisma/schema/openJobAnalytics.prisma +4 -0
  29. package/prisma/schema/pipelineDistributionAnalytics.prisma +4 -6
  30. package/prisma/schema/sourceEffectivenessAnalytics.prisma +2 -0
  31. package/prisma/schema/migrations/20260522120000_ongoing_evaluation_record_kind/migration.sql +0 -25
  32. package/prisma/schema/migrations/20260523120000_replace_record_kind_with_is_committed/migration.sql +0 -24
  33. package/prisma/schema/migrations/20260528120000_drop_job_description_recommendation_config/migration.sql +0 -2
  34. package/prisma/schema/migrations/20260710120000_add_resume_rendered_export_fields/migration.sql +0 -9
  35. package/prisma/schema/migrations/20260714120000_add_job_description_display_html_document/migration.sql +0 -8
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-794c9246e0fdd1d66f228141824fbaad78c1104d5e01e352af177d6fe86c922a",
2
+ "name": "prisma-client-36b309c059e84fa970a9d6fe42d85088622e33556b0a18b7d55194a6d808b4d6",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "default.js",
@@ -91,6 +91,8 @@ enum ActivityEventType {
91
91
  APPLICATION_CREATED
92
92
  APPLICATION_STARTED
93
93
  APPLICATION_REJECTED
94
+ APPLICATION_ON_HOLD
95
+ APPLICATION_WITHDRAWN
94
96
  APPLICATION_SHORTLISTED
95
97
 
96
98
  FIT_CHECK_COMPLETED
@@ -283,6 +285,8 @@ model ApplicationAnalytics {
283
285
  is_evaluated Boolean @default(false)
284
286
  is_rejected Boolean @default(false)
285
287
  is_shortlisted Boolean @default(false)
288
+ is_on_hold Boolean @default(false)
289
+ is_withdrawn Boolean @default(false)
286
290
  has_committed_evaluation Boolean @default(false)
287
291
 
288
292
  updated_at DateTime @updatedAt
@@ -328,6 +332,8 @@ model ApplicationAnalyticsDaily {
328
332
  is_evaluated Boolean @default(false)
329
333
  is_rejected Boolean @default(false)
330
334
  is_shortlisted Boolean @default(false)
335
+ is_on_hold Boolean @default(false)
336
+ is_withdrawn Boolean @default(false)
331
337
  has_committed_evaluation Boolean @default(false)
332
338
 
333
339
  @@unique([snapshot_date, application_id])
@@ -348,6 +354,7 @@ enum ApplicationStatus {
348
354
  SHORTLISTED
349
355
  REJECTED
350
356
  ON_HOLD
357
+ WITHDRAWN
351
358
 
352
359
  @@schema("public")
353
360
  }
@@ -1182,9 +1189,8 @@ enum RoundType {
1182
1189
  }
1183
1190
 
1184
1191
  enum EvaluationCategory {
1185
- EXPERIENCE_SCREENING
1186
- TECHNICAL_SCREENING
1187
- TECHNICAL_INTERVIEW
1192
+ SCREENING
1193
+ BUSINESS_SCREENING
1188
1194
  BUSINESS_ROUND
1189
1195
  BEHAVIORAL_ROUND
1190
1196
 
@@ -1264,6 +1270,7 @@ model EvaluationPlan {
1264
1270
  title String
1265
1271
  description String?
1266
1272
  format EvaluationRoundFormat?
1273
+ focus_areas String[]
1267
1274
  topics String[]
1268
1275
  assignee String?
1269
1276
  elimination_round Boolean @default(false)
@@ -2388,6 +2395,7 @@ model OngoingEvaluation {
2388
2395
  order_no Int?
2389
2396
  format EvaluationRoundFormat?
2390
2397
  round_purpose String?
2398
+ focus_areas String[]
2391
2399
  topics String[]
2392
2400
  assignee String?
2393
2401
  elimination_round Boolean? @default(false)
@@ -2450,6 +2458,8 @@ model OpenJobAnalytics {
2450
2458
  ongoing_count Int @default(0)
2451
2459
  selected_count Int @default(0)
2452
2460
  rejected_count Int @default(0)
2461
+ on_hold_count Int @default(0)
2462
+ withdrawn_count Int @default(0)
2453
2463
 
2454
2464
  updated_at DateTime @updatedAt
2455
2465
 
@@ -2492,6 +2502,8 @@ model OpenJobAnalyticsDaily {
2492
2502
  ongoing_count Int @default(0)
2493
2503
  selected_count Int @default(0)
2494
2504
  rejected_count Int @default(0)
2505
+ on_hold_count Int @default(0)
2506
+ withdrawn_count Int @default(0)
2495
2507
 
2496
2508
  @@unique([snapshot_date, job_description_id])
2497
2509
  @@index([snapshot_date], map: "ojad_snapshot_date_idx")
@@ -2613,11 +2625,10 @@ model PipelineDistributionAnalytics {
2613
2625
  filtered_in_count Int @default(0)
2614
2626
  min_fit_score Float?
2615
2627
 
2616
- experience_screening_count Int @default(0)
2617
- technical_screening_count Int @default(0)
2618
- technical_interview_count Int @default(0)
2619
- business_round_count Int @default(0)
2620
- behavioral_round_count Int @default(0)
2628
+ screening_count Int @default(0)
2629
+ business_screening_count Int @default(0)
2630
+ business_round_count Int @default(0)
2631
+ behavioral_round_count Int @default(0)
2621
2632
 
2622
2633
  shortlisted_count Int @default(0)
2623
2634
 
@@ -2646,11 +2657,10 @@ model PipelineDistributionAnalyticsDaily {
2646
2657
  filtered_in_count Int @default(0)
2647
2658
  min_fit_score Float?
2648
2659
 
2649
- experience_screening_count Int @default(0)
2650
- technical_screening_count Int @default(0)
2651
- technical_interview_count Int @default(0)
2652
- business_round_count Int @default(0)
2653
- behavioral_round_count Int @default(0)
2660
+ screening_count Int @default(0)
2661
+ business_screening_count Int @default(0)
2662
+ business_round_count Int @default(0)
2663
+ behavioral_round_count Int @default(0)
2654
2664
 
2655
2665
  shortlisted_count Int @default(0)
2656
2666
 
@@ -3081,6 +3091,7 @@ model SourceEffectivenessAnalytics {
3081
3091
  screened_count Int @default(0)
3082
3092
  evaluated_count Int @default(0)
3083
3093
  rejected_count Int @default(0)
3094
+ on_hold_count Int @default(0)
3084
3095
  shortlisted_count Int @default(0)
3085
3096
  offered_count Int @default(0)
3086
3097
  offer_accepted_count Int @default(0)
@@ -3122,6 +3133,7 @@ model SourceEffectivenessAnalyticsDaily {
3122
3133
  screened_count Int @default(0)
3123
3134
  evaluated_count Int @default(0)
3124
3135
  rejected_count Int @default(0)
3136
+ on_hold_count Int @default(0)
3125
3137
  shortlisted_count Int @default(0)
3126
3138
  offered_count Int @default(0)
3127
3139
  offer_accepted_count Int @default(0)