@adaptware/eagles-db 0.1.34 → 0.1.36
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 +12 -12
- package/client/index-browser.js +6 -6
- package/client/index.d.ts +417 -445
- package/client/index.js +14 -14
- package/client/{libquery_engine-darwin-arm64.dylib.node → libquery_engine-darwin.dylib.node} +0 -0
- package/client/package.json +1 -1
- package/client/schema.prisma +8 -8
- package/client/wasm.js +6 -6
- package/package.json +1 -1
- package/prisma/schema/fitCheck.prisma +5 -5
- package/prisma/schema/jobDescription.prisma +1 -2
- package/prisma/schema/resume.prisma +8 -7
- package/prisma/schema/suggestion.prisma +1 -1
- package/prisma/.DS_Store +0 -0
package/client/index-browser.js
CHANGED
|
@@ -367,7 +367,6 @@ exports.Prisma.FitCheckScalarFieldEnum = {
|
|
|
367
367
|
resume_id: 'resume_id',
|
|
368
368
|
job_description_id: 'job_description_id',
|
|
369
369
|
skills_match: 'skills_match',
|
|
370
|
-
skills_score: 'skills_score',
|
|
371
370
|
responsibilities_match: 'responsibilities_match',
|
|
372
371
|
responsibilities_score: 'responsibilities_score',
|
|
373
372
|
experience_match: 'experience_match',
|
|
@@ -376,17 +375,18 @@ exports.Prisma.FitCheckScalarFieldEnum = {
|
|
|
376
375
|
organisation_value_match: 'organisation_value_match',
|
|
377
376
|
qualifications_match: 'qualifications_match',
|
|
378
377
|
qualifications_score: 'qualifications_score',
|
|
379
|
-
overall_analysis: 'overall_analysis',
|
|
380
378
|
fit: 'fit',
|
|
381
379
|
fit_check_status: 'fit_check_status',
|
|
382
380
|
skills_analysis: 'skills_analysis',
|
|
383
|
-
|
|
381
|
+
overall_analysis: 'overall_analysis',
|
|
382
|
+
skills_score: 'skills_score',
|
|
384
383
|
overall_score: 'overall_score',
|
|
385
384
|
short_match_analysis: 'short_match_analysis',
|
|
385
|
+
fit_comparison: 'fit_comparison',
|
|
386
|
+
recommendation: 'recommendation',
|
|
386
387
|
candidate_analysis: 'candidate_analysis',
|
|
387
388
|
technical_analysis: 'technical_analysis',
|
|
388
389
|
competency_analysis: 'competency_analysis',
|
|
389
|
-
recommendation: 'recommendation',
|
|
390
390
|
created_by: 'created_by',
|
|
391
391
|
updated_by: 'updated_by',
|
|
392
392
|
is_active: 'is_active',
|
|
@@ -485,11 +485,10 @@ exports.Prisma.JobDescriptionScalarFieldEnum = {
|
|
|
485
485
|
screeningQuestions: 'screeningQuestions',
|
|
486
486
|
recommendedQuestions: 'recommendedQuestions',
|
|
487
487
|
uploaded_job_description_path: 'uploaded_job_description_path',
|
|
488
|
-
is_plan_locked: 'is_plan_locked',
|
|
489
488
|
is_plan_published: 'is_plan_published',
|
|
490
489
|
is_posted: 'is_posted',
|
|
491
490
|
ai_insight: 'ai_insight',
|
|
492
|
-
|
|
491
|
+
job_fit_comparison: 'job_fit_comparison',
|
|
493
492
|
created_at: 'created_at',
|
|
494
493
|
updated_at: 'updated_at',
|
|
495
494
|
created_by: 'created_by',
|
|
@@ -666,6 +665,7 @@ exports.Prisma.ResumeScalarFieldEnum = {
|
|
|
666
665
|
created_by: 'created_by',
|
|
667
666
|
updated_by: 'updated_by',
|
|
668
667
|
is_active: 'is_active',
|
|
668
|
+
name: 'name',
|
|
669
669
|
yearsOfExperience: 'yearsOfExperience'
|
|
670
670
|
};
|
|
671
671
|
|