@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.
- package/dist/client/edge.js +4 -9
- package/dist/client/index-browser.js +0 -5
- package/dist/client/index.d.ts +34 -184
- package/dist/client/index.js +6 -11
- package/dist/client/{libquery_engine-linux-arm64-openssl-3.0.x.so.node → libquery_engine-linux-musl-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +21 -25
- package/dist/client/wasm.js +0 -5
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -1138,23 +1138,26 @@ model MissionSpec {
|
|
|
1138
1138
|
}
|
|
1139
1139
|
|
|
1140
1140
|
type MissionSpecRole {
|
|
1141
|
-
id
|
|
1142
|
-
builderRateMax
|
|
1143
|
-
builderRateMin
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
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
|
|
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
|
package/dist/client/wasm.js
CHANGED
|
@@ -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
|
};
|