@adaptware/eagles-db 0.1.35 → 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 +7 -6
- package/client/index-browser.js +1 -0
- package/client/index.d.ts +73 -1
- package/client/index.js +9 -8
- 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 +1 -0
- package/client/wasm.js +1 -0
- package/package.json +1 -1
- package/prisma/schema/resume.prisma +8 -7
- package/prisma/.DS_Store +0 -0
package/client/{libquery_engine-darwin-arm64.dylib.node → libquery_engine-darwin.dylib.node}
RENAMED
|
Binary file
|
package/client/package.json
CHANGED
package/client/schema.prisma
CHANGED
|
@@ -1024,6 +1024,7 @@ model Resume {
|
|
|
1024
1024
|
created_by String
|
|
1025
1025
|
updated_by String
|
|
1026
1026
|
is_active Boolean @default(true)
|
|
1027
|
+
name String?
|
|
1027
1028
|
user User? @relation(fields: [user_id], references: [id], onDelete: SetNull, onUpdate: Cascade)
|
|
1028
1029
|
organisation Organisation? @relation(fields: [organisation_id], references: [id], onDelete: SetNull, onUpdate: Cascade)
|
|
1029
1030
|
job_description JobDescription? @relation(fields: [job_description_id], references: [id], onDelete: SetNull, onUpdate: Cascade)
|
package/client/wasm.js
CHANGED
package/package.json
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
model Resume {
|
|
2
|
-
id String
|
|
2
|
+
id String @id @default(uuid())
|
|
3
3
|
user_id String?
|
|
4
4
|
organisation_id String?
|
|
5
5
|
job_description_id String?
|
|
6
6
|
uploaded_resume_path String?
|
|
7
|
-
created_at DateTime
|
|
8
|
-
updated_at DateTime
|
|
7
|
+
created_at DateTime @default(now())
|
|
8
|
+
updated_at DateTime @updatedAt
|
|
9
9
|
created_by String
|
|
10
10
|
updated_by String
|
|
11
|
-
is_active Boolean
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
is_active Boolean @default(true)
|
|
12
|
+
name String?
|
|
13
|
+
user User? @relation(fields: [user_id], references: [id], onDelete: SetNull, onUpdate: Cascade)
|
|
14
|
+
organisation Organisation? @relation(fields: [organisation_id], references: [id], onDelete: SetNull, onUpdate: Cascade)
|
|
15
|
+
job_description JobDescription? @relation(fields: [job_description_id], references: [id], onDelete: SetNull, onUpdate: Cascade)
|
|
15
16
|
applications Application[]
|
|
16
17
|
interviews Interview[]
|
|
17
18
|
ongoing_evaluations OngoingEvaluation[] // optional one-to-many
|
package/prisma/.DS_Store
DELETED
|
Binary file
|