@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/package.json
CHANGED
package/client/schema.prisma
CHANGED
|
@@ -798,6 +798,7 @@ model JobDescription {
|
|
|
798
798
|
uploaded_job_description_path String?
|
|
799
799
|
is_plan_published Boolean @default(false)
|
|
800
800
|
is_posted Boolean @default(false)
|
|
801
|
+
summary Json?
|
|
801
802
|
ai_insight Json?
|
|
802
803
|
job_fit_comparison Json?
|
|
803
804
|
// Audit fields
|
|
@@ -906,14 +907,20 @@ model JobProfile {
|
|
|
906
907
|
|
|
907
908
|
model LiveAnalysis {
|
|
908
909
|
id String @id @default(uuid())
|
|
910
|
+
//foreign keys
|
|
909
911
|
interview_id String
|
|
912
|
+
//data
|
|
910
913
|
analysis Json
|
|
914
|
+
//audit fields
|
|
911
915
|
created_at DateTime @default(now())
|
|
912
916
|
updated_at DateTime @updatedAt
|
|
913
917
|
created_by String
|
|
914
918
|
updated_by String
|
|
915
919
|
is_active Boolean @default(true)
|
|
920
|
+
//relations
|
|
916
921
|
interview Interview @relation(fields: [interview_id], references: [id])
|
|
922
|
+
|
|
923
|
+
@@index([interview_id])
|
|
917
924
|
}
|
|
918
925
|
|
|
919
926
|
model Message {
|
|
@@ -1153,6 +1160,7 @@ model Resume {
|
|
|
1153
1160
|
organisation_id String?
|
|
1154
1161
|
job_description_id String?
|
|
1155
1162
|
uploaded_resume_path String?
|
|
1163
|
+
summary Json?
|
|
1156
1164
|
created_at DateTime @default(now())
|
|
1157
1165
|
updated_at DateTime @updatedAt
|
|
1158
1166
|
created_by String
|
package/client/wasm.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',
|
package/package.json
CHANGED