@adaptware/eagles-db 0.1.66 → 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 +18 -3
- package/client/index-browser.js +15 -0
- package/client/index.d.ts +2259 -215
- package/client/index.js +18 -3
- package/client/package.json +1 -1
- package/client/schema.prisma +40 -17
- package/client/wasm.js +15 -0
- package/package.json +1 -1
- package/prisma/schema/assignment.prisma +1 -0
- package/prisma/schema/interview.prisma +2 -1
- package/prisma/schema/jobDescription.prisma +1 -0
- package/prisma/schema/liveAnalysis.prisma +17 -0
- package/prisma/schema/resume.prisma +1 -0
package/client/index-browser.js
CHANGED
|
@@ -266,6 +266,7 @@ exports.Prisma.AssignmentScalarFieldEnum = {
|
|
|
266
266
|
status: 'status',
|
|
267
267
|
cancel_reason: 'cancel_reason',
|
|
268
268
|
solution_url: 'solution_url',
|
|
269
|
+
zip_url: 'zip_url',
|
|
269
270
|
scheduled_start_time: 'scheduled_start_time',
|
|
270
271
|
scheduled_end_time: 'scheduled_end_time',
|
|
271
272
|
created_at: 'created_at',
|
|
@@ -548,6 +549,7 @@ exports.Prisma.JobDescriptionScalarFieldEnum = {
|
|
|
548
549
|
uploaded_job_description_path: 'uploaded_job_description_path',
|
|
549
550
|
is_plan_published: 'is_plan_published',
|
|
550
551
|
is_posted: 'is_posted',
|
|
552
|
+
summary: 'summary',
|
|
551
553
|
ai_insight: 'ai_insight',
|
|
552
554
|
job_fit_comparison: 'job_fit_comparison',
|
|
553
555
|
created_at: 'created_at',
|
|
@@ -601,6 +603,17 @@ exports.Prisma.JobProfileScalarFieldEnum = {
|
|
|
601
603
|
is_active: 'is_active'
|
|
602
604
|
};
|
|
603
605
|
|
|
606
|
+
exports.Prisma.LiveAnalysisScalarFieldEnum = {
|
|
607
|
+
id: 'id',
|
|
608
|
+
interview_id: 'interview_id',
|
|
609
|
+
analysis: 'analysis',
|
|
610
|
+
created_at: 'created_at',
|
|
611
|
+
updated_at: 'updated_at',
|
|
612
|
+
created_by: 'created_by',
|
|
613
|
+
updated_by: 'updated_by',
|
|
614
|
+
is_active: 'is_active'
|
|
615
|
+
};
|
|
616
|
+
|
|
604
617
|
exports.Prisma.MessageScalarFieldEnum = {
|
|
605
618
|
id: 'id',
|
|
606
619
|
sender_id: 'sender_id',
|
|
@@ -721,6 +734,7 @@ exports.Prisma.ResumeScalarFieldEnum = {
|
|
|
721
734
|
organisation_id: 'organisation_id',
|
|
722
735
|
job_description_id: 'job_description_id',
|
|
723
736
|
uploaded_resume_path: 'uploaded_resume_path',
|
|
737
|
+
summary: 'summary',
|
|
724
738
|
created_at: 'created_at',
|
|
725
739
|
updated_at: 'updated_at',
|
|
726
740
|
created_by: 'created_by',
|
|
@@ -1096,6 +1110,7 @@ exports.Prisma.ModelName = {
|
|
|
1096
1110
|
JobDescription: 'JobDescription',
|
|
1097
1111
|
JobDescriptionData: 'JobDescriptionData',
|
|
1098
1112
|
JobProfile: 'JobProfile',
|
|
1113
|
+
LiveAnalysis: 'LiveAnalysis',
|
|
1099
1114
|
Message: 'Message',
|
|
1100
1115
|
OngoingEvaluation: 'OngoingEvaluation',
|
|
1101
1116
|
Organisation: 'Organisation',
|