@adaptware/eagles-db 0.1.73 → 0.1.75

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-88a5287d6d2b4747b23e998603ab2b5c0065cff82858cb3475eb1ffb1d9557ec",
2
+ "name": "prisma-client-1fd905e58fa711fcb7a16d1aa13d5380f536993d0801611d54c44e8297a806da",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -1170,6 +1170,7 @@ model Resume {
1170
1170
  organisation_id String?
1171
1171
  job_description_id String?
1172
1172
  uploaded_resume_path String?
1173
+ file_hash String? @unique
1173
1174
  summary Json?
1174
1175
  created_at DateTime @default(now())
1175
1176
  updated_at DateTime @updatedAt
package/client/wasm.js CHANGED
@@ -736,6 +736,7 @@ exports.Prisma.ResumeScalarFieldEnum = {
736
736
  organisation_id: 'organisation_id',
737
737
  job_description_id: 'job_description_id',
738
738
  uploaded_resume_path: 'uploaded_resume_path',
739
+ file_hash: 'file_hash',
739
740
  summary: 'summary',
740
741
  created_at: 'created_at',
741
742
  updated_at: 'updated_at',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptware/eagles-db",
3
- "version": "0.1.73",
3
+ "version": "0.1.75",
4
4
  "description": "A Prisma client package for Treadspace database operations",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -4,6 +4,7 @@ model Resume {
4
4
  organisation_id String?
5
5
  job_description_id String?
6
6
  uploaded_resume_path String?
7
+ file_hash String? @unique
7
8
  summary Json?
8
9
  created_at DateTime @default(now())
9
10
  updated_at DateTime @updatedAt