@a_team/prisma 3.17.3-macos-docker-linux → 3.17.4-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-ae8358dcf25b951d95f37f520cc767bcfb886d14edb812580ecd09aaf58e35e7",
2
+ "name": "prisma-client-8f298beef9fbf20c8659825012565483684cdc4e33fe05719193ff86ee382924",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -1138,23 +1138,26 @@ model MissionSpec {
1138
1138
  }
1139
1139
 
1140
1140
  type MissionSpecRole {
1141
- id String @map("_id") @db.ObjectId
1142
- builderRateMax Float? @db.Double
1143
- builderRateMin Float? @db.Double
1144
- margin Float? @db.Double
1145
- categoryId String @map("category") @db.ObjectId
1146
- createdAt DateTime? @default(now()) @db.Date
1147
- createdBy String? @db.ObjectId
1148
- customQuestions ClientRoleQuestion[]
1149
- description String?
1150
- isLead Boolean @default(false)
1151
- tags String[]
1152
- locations String[]
1153
- minimumCommitment Int?
1154
- preferredSkills String[] @db.ObjectId
1155
- requiredSkills String[] @db.ObjectId
1156
- typicalHourlyRate Int?
1157
- user String? @db.ObjectId
1141
+ id String @map("_id") @db.ObjectId
1142
+ builderRateMax Float? @db.Double
1143
+ builderRateMin Float? @db.Double
1144
+ builderMonthlyRateMin Float?
1145
+ builderMonthlyRateMax Float?
1146
+ margin Float? @db.Double
1147
+ categoryId String @map("category") @db.ObjectId
1148
+ createdAt DateTime? @default(now()) @db.Date
1149
+ createdBy String? @db.ObjectId
1150
+ customQuestions ClientRoleQuestion[]
1151
+ description String?
1152
+ isLead Boolean @default(false)
1153
+ tags String[]
1154
+ locations String[]
1155
+ minimumCommitment Int?
1156
+ preferredSkills MissionRolePreferredSkill[]
1157
+ requiredSkills MissionRoleRequiredSkill[]
1158
+ typicalHourlyRate Int?
1159
+ user String? @db.ObjectId
1160
+ availability MissionRoleAvailability?
1158
1161
  }
1159
1162
 
1160
1163
  type AttachedLink {
@@ -1416,14 +1419,10 @@ model RoleHiringCriteria {
1416
1419
  id String @id @default(auto()) @map("_id") @db.ObjectId
1417
1420
  roleId String @unique @db.ObjectId
1418
1421
 
1419
- requiredSpecializations String[] @db.ObjectId
1420
- suggestedSpecializations String[] @db.ObjectId
1421
-
1422
1422
  requiredSkills String[] @db.ObjectId
1423
1423
  preferredSkills String[] @db.ObjectId
1424
1424
 
1425
- requiredCountries String[]
1426
- preferredCountries String[]
1425
+ requiredCountries String[]
1427
1426
 
1428
1427
  requiredStartDate DateTime? @db.Date
1429
1428
  requiredWeeklyHours Int?
@@ -1431,9 +1430,6 @@ model RoleHiringCriteria {
1431
1430
  maxHourlyRate Float?
1432
1431
  maxMonthlyRate Float?
1433
1432
 
1434
- requiredIndustries String[] @db.ObjectId
1435
- preferredIndustries String[] @db.ObjectId
1436
-
1437
1433
  dynamicCriteria CriteriaItem[]
1438
1434
 
1439
1435
  createdAt DateTime? @default(now()) @db.Date
@@ -489,18 +489,13 @@ exports.Prisma.RoleCategoryScalarFieldEnum = {
489
489
  exports.Prisma.RoleHiringCriteriaScalarFieldEnum = {
490
490
  id: 'id',
491
491
  roleId: 'roleId',
492
- requiredSpecializations: 'requiredSpecializations',
493
- suggestedSpecializations: 'suggestedSpecializations',
494
492
  requiredSkills: 'requiredSkills',
495
493
  preferredSkills: 'preferredSkills',
496
494
  requiredCountries: 'requiredCountries',
497
- preferredCountries: 'preferredCountries',
498
495
  requiredStartDate: 'requiredStartDate',
499
496
  requiredWeeklyHours: 'requiredWeeklyHours',
500
497
  maxHourlyRate: 'maxHourlyRate',
501
498
  maxMonthlyRate: 'maxMonthlyRate',
502
- requiredIndustries: 'requiredIndustries',
503
- preferredIndustries: 'preferredIndustries',
504
499
  createdAt: 'createdAt',
505
500
  updatedAt: 'updatedAt'
506
501
  };
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.17.3-macos-docker-linux",
4
- "os": [],
3
+ "version": "3.17.4-linux",
4
+ "os": [
5
+ "linux"
6
+ ],
5
7
  "cpu": [],
6
8
  "keywords": [],
7
9
  "prisma": {