@adaptware/eagles-db 0.1.67 → 0.1.70
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 +8 -3
- package/client/index-browser.js +5 -0
- package/client/index.d.ts +1118 -68
- package/client/index.js +8 -3
- package/client/package.json +1 -1
- package/client/schema.prisma +21 -7
- package/client/wasm.js +5 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/prisma/schema/jobDescription.prisma +1 -0
- package/prisma/schema/jobProfile.prisma +26 -21
- package/prisma/schema/resume.prisma +1 -0
- package/prisma/schema/user.prisma +1 -0
package/client/index-browser.js
CHANGED
|
@@ -549,6 +549,7 @@ exports.Prisma.JobDescriptionScalarFieldEnum = {
|
|
|
549
549
|
uploaded_job_description_path: 'uploaded_job_description_path',
|
|
550
550
|
is_plan_published: 'is_plan_published',
|
|
551
551
|
is_posted: 'is_posted',
|
|
552
|
+
summary: 'summary',
|
|
552
553
|
ai_insight: 'ai_insight',
|
|
553
554
|
job_fit_comparison: 'job_fit_comparison',
|
|
554
555
|
created_at: 'created_at',
|
|
@@ -575,17 +576,20 @@ exports.Prisma.JobDescriptionDataScalarFieldEnum = {
|
|
|
575
576
|
exports.Prisma.JobProfileScalarFieldEnum = {
|
|
576
577
|
id: 'id',
|
|
577
578
|
organisation_id: 'organisation_id',
|
|
579
|
+
hiring_manager_id: 'hiring_manager_id',
|
|
578
580
|
created_by: 'created_by',
|
|
579
581
|
assigned_to: 'assigned_to',
|
|
580
582
|
status: 'status',
|
|
581
583
|
title: 'title',
|
|
582
584
|
role_type: 'role_type',
|
|
583
585
|
work_arrangement: 'work_arrangement',
|
|
586
|
+
employment_type: 'employment_type',
|
|
584
587
|
location: 'location',
|
|
585
588
|
experience_min: 'experience_min',
|
|
586
589
|
reporting: 'reporting',
|
|
587
590
|
comp_range: 'comp_range',
|
|
588
591
|
comp_benchmark: 'comp_benchmark',
|
|
592
|
+
budget: 'budget',
|
|
589
593
|
responsibilities: 'responsibilities',
|
|
590
594
|
deliverables: 'deliverables',
|
|
591
595
|
must_have_skills: 'must_have_skills',
|
|
@@ -733,6 +737,7 @@ exports.Prisma.ResumeScalarFieldEnum = {
|
|
|
733
737
|
organisation_id: 'organisation_id',
|
|
734
738
|
job_description_id: 'job_description_id',
|
|
735
739
|
uploaded_resume_path: 'uploaded_resume_path',
|
|
740
|
+
summary: 'summary',
|
|
736
741
|
created_at: 'created_at',
|
|
737
742
|
updated_at: 'updated_at',
|
|
738
743
|
created_by: 'created_by',
|