@adaptware/eagles-db 0.1.67 → 0.1.68
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 +5 -3
- package/client/index-browser.js +2 -0
- package/client/index.d.ts +167 -2
- package/client/index.js +5 -3
- package/client/package.json +1 -1
- package/client/schema.prisma +8 -0
- package/client/wasm.js +2 -0
- package/package.json +1 -1
- package/prisma/schema/jobDescription.prisma +1 -0
- package/prisma/schema/resume.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',
|
|
@@ -733,6 +734,7 @@ exports.Prisma.ResumeScalarFieldEnum = {
|
|
|
733
734
|
organisation_id: 'organisation_id',
|
|
734
735
|
job_description_id: 'job_description_id',
|
|
735
736
|
uploaded_resume_path: 'uploaded_resume_path',
|
|
737
|
+
summary: 'summary',
|
|
736
738
|
created_at: 'created_at',
|
|
737
739
|
updated_at: 'updated_at',
|
|
738
740
|
created_by: 'created_by',
|