@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.
- package/client/edge.js +16 -18
- package/client/index-browser.js +9 -12
- package/client/index.d.ts +880 -424
- package/client/index.js +16 -18
- package/client/package.json +1 -1
- package/client/schema.prisma +40 -41
- package/client/wasm.js +16 -18
- package/package.json +1 -1
- package/prisma/schema/document.prisma +1 -0
- package/prisma/schema/jobDescription.prisma +2 -0
- package/prisma/schema/migrations/20260522120000_ongoing_evaluation_record_kind/migration.sql +25 -0
- package/prisma/schema/migrations/20260523120000_replace_record_kind_with_is_committed/migration.sql +24 -0
- package/prisma/schema/migrations/20260528120000_drop_job_description_recommendation_config/migration.sql +2 -0
- package/prisma/schema/migrations/20260710120000_add_resume_rendered_export_fields/migration.sql +9 -0
- package/prisma/schema/migrations/20260714120000_add_job_description_display_html_document/migration.sql +8 -0
- package/prisma/schema/openJobAnalytics.prisma +10 -14
- package/client/libquery_engine-darwin.dylib.node +0 -0
- package/prisma/.DS_Store +0 -0
- package/prisma/migrations/20260519120000_migrate_shortlisted_to_selected/migration.sql +0 -2
- package/prisma/schema/.DS_Store +0 -0
- package/prisma/schema/migrations/20260519120000_add_analytics_schema/migration.sql +0 -84
- package/prisma/schema/migrations/20260625120000_add_interviewer_analytics/migration.sql +0 -26
- package/prisma/schema/migrations/20260629120000_add_user_lifecycle_activity_events/migration.sql +0 -13
- package/prisma/schema/migrations/20260629140000_drop_organisation_org_code/migration.sql +0 -2
- package/prisma/schema/migrations/20260629160000_employee_codes_dual_interviewer_analytics/migration.sql +0 -87
- package/prisma/schema/migrations/20260630120000_add_application_sources/migration.sql +0 -38
- package/prisma/schema/migrations/20260701120000_add_source_effectiveness_analytics/migration.sql +0 -40
- package/prisma/schema/migrations/20260702120000_add_analytics_daily_tables/migration.sql +0 -232
package/client/index-browser.js
CHANGED
|
@@ -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
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
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
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
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 = {
|