@a_team/prisma 3.16.5-macos-docker-linux → 3.16.6-linux

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-920b7a175e2fcb19e5bfc9e2f23e32105a7bcfc4847b93b76f3ef05a50e2a535",
2
+ "name": "prisma-client-d30ceafb4b6f4bd8396ad9c3650fea53872be38957d1d3be1eabed9e100888aa",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -1365,32 +1365,23 @@ model RoleCategory {
1365
1365
  @@map("roleCategories")
1366
1366
  }
1367
1367
 
1368
- enum HiringCriteriaCategory {
1369
- skills
1370
- communication
1371
- culture
1372
- experience
1373
- other
1374
- }
1375
-
1376
1368
  enum CriteriaItemType {
1377
1369
  generated
1378
1370
  manual
1379
1371
  }
1380
1372
 
1381
- type CriteriaItem {
1382
- name String
1383
- description String
1384
- category HiringCriteriaCategory
1385
- type CriteriaItemType
1373
+ enum Priority {
1374
+ high
1375
+ medium
1376
+ low
1386
1377
  }
1387
1378
 
1388
- type WeightedCriteriaItem {
1379
+ type CriteriaItem {
1389
1380
  name String
1390
1381
  description String
1391
- category HiringCriteriaCategory
1392
1382
  type CriteriaItemType
1393
- weight Float?
1383
+ priority Priority
1384
+ updatedAt DateTime? @db.Date
1394
1385
  }
1395
1386
 
1396
1387
  model RoleHiringCriteria {
@@ -1415,8 +1406,7 @@ model RoleHiringCriteria {
1415
1406
  requiredIndustries String[] @db.ObjectId
1416
1407
  preferredIndustries String[] @db.ObjectId
1417
1408
 
1418
- hardCriteria CriteriaItem[]
1419
- weightedCriteria WeightedCriteriaItem[]
1409
+ dynamicCriteria CriteriaItem[]
1420
1410
 
1421
1411
  createdAt DateTime? @default(now()) @db.Date
1422
1412
  updatedAt DateTime? @updatedAt @db.Date
@@ -859,19 +859,17 @@ exports.ProposalCandidateRecommendation = exports.$Enums.ProposalCandidateRecomm
859
859
  Alternative: 'Alternative'
860
860
  };
861
861
 
862
- exports.HiringCriteriaCategory = exports.$Enums.HiringCriteriaCategory = {
863
- skills: 'skills',
864
- communication: 'communication',
865
- culture: 'culture',
866
- experience: 'experience',
867
- other: 'other'
868
- };
869
-
870
862
  exports.CriteriaItemType = exports.$Enums.CriteriaItemType = {
871
863
  generated: 'generated',
872
864
  manual: 'manual'
873
865
  };
874
866
 
867
+ exports.Priority = exports.$Enums.Priority = {
868
+ high: 'high',
869
+ medium: 'medium',
870
+ low: 'low'
871
+ };
872
+
875
873
  exports.RegisterRequestType = exports.$Enums.RegisterRequestType = {
876
874
  SUPERCHARGE: 'SUPERCHARGE',
877
875
  BUILD_PRODUCT: 'BUILD_PRODUCT'
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.16.5-macos-docker-linux",
4
- "os": [],
3
+ "version": "3.16.6-linux",
4
+ "os": [
5
+ "linux"
6
+ ],
5
7
  "cpu": [],
6
8
  "keywords": [],
7
9
  "prisma": {