@adaptware/eagles-db 0.4.6 → 0.4.7
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 +7 -6
- package/client/index-browser.js +2 -1
- package/client/index.d.ts +303 -182
- package/client/index.js +7 -6
- package/client/libquery_engine-darwin.dylib.node +0 -0
- package/client/package.json +1 -1
- package/client/schema.prisma +7 -3
- package/client/wasm.js +2 -1
- package/package.json +1 -1
- package/prisma/schema/applications.prisma +2 -0
- package/prisma/schema/evaluationPlan.prisma +9 -0
- package/prisma/schema/jobDescription.prisma +29 -24
- package/prisma/schema/organisation.prisma +2 -0
- package/prisma/schema/user.prisma +1 -0
- package/prisma/.DS_Store +0 -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/client/index-browser.js
CHANGED
|
@@ -585,6 +585,7 @@ exports.Prisma.JobDescriptionScalarFieldEnum = {
|
|
|
585
585
|
summary: 'summary',
|
|
586
586
|
ai_insight: 'ai_insight',
|
|
587
587
|
job_fit_comparison: 'job_fit_comparison',
|
|
588
|
+
recommendation_config: 'recommendation_config',
|
|
588
589
|
created_at: 'created_at',
|
|
589
590
|
updated_at: 'updated_at',
|
|
590
591
|
created_by: 'created_by',
|
|
@@ -678,6 +679,7 @@ exports.Prisma.OngoingEvaluationScalarFieldEnum = {
|
|
|
678
679
|
resume_id: 'resume_id',
|
|
679
680
|
job_description_id: 'job_description_id',
|
|
680
681
|
evaluation_plan_id: 'evaluation_plan_id',
|
|
682
|
+
is_committed: 'is_committed',
|
|
681
683
|
interview_id: 'interview_id',
|
|
682
684
|
assignment_id: 'assignment_id',
|
|
683
685
|
assessment_id: 'assessment_id',
|
|
@@ -685,7 +687,6 @@ exports.Prisma.OngoingEvaluationScalarFieldEnum = {
|
|
|
685
687
|
round_status: 'round_status',
|
|
686
688
|
comments: 'comments',
|
|
687
689
|
completed_at: 'completed_at',
|
|
688
|
-
is_committed: 'is_committed',
|
|
689
690
|
title: 'title',
|
|
690
691
|
description: 'description',
|
|
691
692
|
order_no: 'order_no',
|