@adaptware/eagles-db 0.4.42 → 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.
- package/client/edge.js +26 -16
- package/client/index-browser.js +21 -11
- package/client/index.d.ts +481 -223
- package/client/index.js +26 -16
- package/client/libquery_engine-darwin.dylib.node +0 -0
- package/client/package.json +1 -1
- package/client/schema.prisma +23 -13
- package/client/wasm.js +26 -16
- 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/activityEvent.prisma +2 -0
- package/prisma/schema/applicationAnalytics.prisma +4 -0
- package/prisma/schema/applications.prisma +1 -0
- package/prisma/schema/evaluationPlan.prisma +2 -3
- 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/migrations/20260716120000_evaluation_category_four_values/migration.sql +204 -0
- package/prisma/schema/migrations/20260716130000_application_withdrawn_analytics/migration.sql +31 -0
- package/prisma/schema/openJobAnalytics.prisma +4 -0
- package/prisma/schema/pipelineDistributionAnalytics.prisma +4 -6
- package/prisma/schema/sourceEffectivenessAnalytics.prisma +2 -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
- package/prisma/schema/migrations/20260713120000_add_focus_areas_backfill/migration.sql +0 -16
package/client/index-browser.js
CHANGED
|
@@ -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
|
|
|
@@ -1350,6 +1354,8 @@ exports.Prisma.OpenJobAnalyticsScalarFieldEnum = {
|
|
|
1350
1354
|
ongoing_count: 'ongoing_count',
|
|
1351
1355
|
selected_count: 'selected_count',
|
|
1352
1356
|
rejected_count: 'rejected_count',
|
|
1357
|
+
on_hold_count: 'on_hold_count',
|
|
1358
|
+
withdrawn_count: 'withdrawn_count',
|
|
1353
1359
|
updated_at: 'updated_at'
|
|
1354
1360
|
};
|
|
1355
1361
|
|
|
@@ -1377,7 +1383,9 @@ exports.Prisma.OpenJobAnalyticsDailyScalarFieldEnum = {
|
|
|
1377
1383
|
unscreened_count: 'unscreened_count',
|
|
1378
1384
|
ongoing_count: 'ongoing_count',
|
|
1379
1385
|
selected_count: 'selected_count',
|
|
1380
|
-
rejected_count: 'rejected_count'
|
|
1386
|
+
rejected_count: 'rejected_count',
|
|
1387
|
+
on_hold_count: 'on_hold_count',
|
|
1388
|
+
withdrawn_count: 'withdrawn_count'
|
|
1381
1389
|
};
|
|
1382
1390
|
|
|
1383
1391
|
exports.Prisma.OrganisationScalarFieldEnum = {
|
|
@@ -1433,9 +1441,8 @@ exports.Prisma.PipelineDistributionAnalyticsScalarFieldEnum = {
|
|
|
1433
1441
|
application_count: 'application_count',
|
|
1434
1442
|
filtered_in_count: 'filtered_in_count',
|
|
1435
1443
|
min_fit_score: 'min_fit_score',
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
technical_interview_count: 'technical_interview_count',
|
|
1444
|
+
screening_count: 'screening_count',
|
|
1445
|
+
business_screening_count: 'business_screening_count',
|
|
1439
1446
|
business_round_count: 'business_round_count',
|
|
1440
1447
|
behavioral_round_count: 'behavioral_round_count',
|
|
1441
1448
|
shortlisted_count: 'shortlisted_count',
|
|
@@ -1454,9 +1461,8 @@ exports.Prisma.PipelineDistributionAnalyticsDailyScalarFieldEnum = {
|
|
|
1454
1461
|
application_count: 'application_count',
|
|
1455
1462
|
filtered_in_count: 'filtered_in_count',
|
|
1456
1463
|
min_fit_score: 'min_fit_score',
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
technical_interview_count: 'technical_interview_count',
|
|
1464
|
+
screening_count: 'screening_count',
|
|
1465
|
+
business_screening_count: 'business_screening_count',
|
|
1460
1466
|
business_round_count: 'business_round_count',
|
|
1461
1467
|
behavioral_round_count: 'behavioral_round_count',
|
|
1462
1468
|
shortlisted_count: 'shortlisted_count'
|
|
@@ -1653,6 +1659,7 @@ exports.Prisma.SourceEffectivenessAnalyticsScalarFieldEnum = {
|
|
|
1653
1659
|
screened_count: 'screened_count',
|
|
1654
1660
|
evaluated_count: 'evaluated_count',
|
|
1655
1661
|
rejected_count: 'rejected_count',
|
|
1662
|
+
on_hold_count: 'on_hold_count',
|
|
1656
1663
|
shortlisted_count: 'shortlisted_count',
|
|
1657
1664
|
offered_count: 'offered_count',
|
|
1658
1665
|
offer_accepted_count: 'offer_accepted_count',
|
|
@@ -1682,6 +1689,7 @@ exports.Prisma.SourceEffectivenessAnalyticsDailyScalarFieldEnum = {
|
|
|
1682
1689
|
screened_count: 'screened_count',
|
|
1683
1690
|
evaluated_count: 'evaluated_count',
|
|
1684
1691
|
rejected_count: 'rejected_count',
|
|
1692
|
+
on_hold_count: 'on_hold_count',
|
|
1685
1693
|
shortlisted_count: 'shortlisted_count',
|
|
1686
1694
|
offered_count: 'offered_count',
|
|
1687
1695
|
offer_accepted_count: 'offer_accepted_count',
|
|
@@ -1866,6 +1874,8 @@ exports.ActivityEventType = exports.$Enums.ActivityEventType = {
|
|
|
1866
1874
|
APPLICATION_CREATED: 'APPLICATION_CREATED',
|
|
1867
1875
|
APPLICATION_STARTED: 'APPLICATION_STARTED',
|
|
1868
1876
|
APPLICATION_REJECTED: 'APPLICATION_REJECTED',
|
|
1877
|
+
APPLICATION_ON_HOLD: 'APPLICATION_ON_HOLD',
|
|
1878
|
+
APPLICATION_WITHDRAWN: 'APPLICATION_WITHDRAWN',
|
|
1869
1879
|
APPLICATION_SHORTLISTED: 'APPLICATION_SHORTLISTED',
|
|
1870
1880
|
FIT_CHECK_COMPLETED: 'FIT_CHECK_COMPLETED',
|
|
1871
1881
|
ROUND_ASSIGNED: 'ROUND_ASSIGNED',
|
|
@@ -1958,7 +1968,8 @@ exports.ApplicationStatus = exports.$Enums.ApplicationStatus = {
|
|
|
1958
1968
|
SELECTED: 'SELECTED',
|
|
1959
1969
|
SHORTLISTED: 'SHORTLISTED',
|
|
1960
1970
|
REJECTED: 'REJECTED',
|
|
1961
|
-
ON_HOLD: 'ON_HOLD'
|
|
1971
|
+
ON_HOLD: 'ON_HOLD',
|
|
1972
|
+
WITHDRAWN: 'WITHDRAWN'
|
|
1962
1973
|
};
|
|
1963
1974
|
|
|
1964
1975
|
exports.FitCheckStatus = exports.$Enums.FitCheckStatus = {
|
|
@@ -1968,9 +1979,8 @@ exports.FitCheckStatus = exports.$Enums.FitCheckStatus = {
|
|
|
1968
1979
|
};
|
|
1969
1980
|
|
|
1970
1981
|
exports.EvaluationCategory = exports.$Enums.EvaluationCategory = {
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
TECHNICAL_INTERVIEW: 'TECHNICAL_INTERVIEW',
|
|
1982
|
+
SCREENING: 'SCREENING',
|
|
1983
|
+
BUSINESS_SCREENING: 'BUSINESS_SCREENING',
|
|
1974
1984
|
BUSINESS_ROUND: 'BUSINESS_ROUND',
|
|
1975
1985
|
BEHAVIORAL_ROUND: 'BEHAVIORAL_ROUND'
|
|
1976
1986
|
};
|