@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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-d8b906f5045b32feb05d0a6f29f5c617815d470b2ff0cbbd6faf541af315ed2c",
2
+ "name": "prisma-client-a3d9b695d947951ed70e866b5fe5fe9438d58ee410e3c62d37e70587ea2ee8f9",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -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
@@ -665,6 +665,7 @@ exports.Prisma.ResumeScalarFieldEnum = {
665
665
  created_by: 'created_by',
666
666
  updated_by: 'updated_by',
667
667
  is_active: 'is_active',
668
+ name: 'name',
668
669
  yearsOfExperience: 'yearsOfExperience'
669
670
  };
670
671
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptware/eagles-db",
3
- "version": "0.1.35",
3
+ "version": "0.1.36",
4
4
  "description": "A Prisma client package for Treadspace database operations",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,17 +1,18 @@
1
1
  model Resume {
2
- id String @id @default(uuid())
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 @default(now())
8
- updated_at DateTime @updatedAt
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 @default(true)
12
- user User? @relation(fields: [user_id], references: [id], onDelete: SetNull, onUpdate: Cascade)
13
- organisation Organisation? @relation(fields: [organisation_id], references: [id], onDelete: SetNull, onUpdate: Cascade)
14
- job_description JobDescription? @relation(fields: [job_description_id], references: [id], onDelete: SetNull, onUpdate: Cascade)
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