@a_team/prisma 3.29.0-macos-docker-linux → 3.29.1-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-78dae7a35dc5600b81f47562602bf621c317dcf0ade02331774cc7bee51a14c1",
2
+ "name": "prisma-client-d0156c8f48b74c3f106579fc07d6647461e08df012f91fad877956d02ca5f41a",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -1219,6 +1219,40 @@ type MissionApplicationProposedRates {
1219
1219
  clientMonthlyRate Float?
1220
1220
  }
1221
1221
 
1222
+ type BuilderProvidedEvidence {
1223
+ criteriaId String @db.ObjectId
1224
+ text String
1225
+ createdAt DateTime @db.Date
1226
+ }
1227
+
1228
+ type HardRequirementResult {
1229
+ name String
1230
+ score Float
1231
+ maxScore Float
1232
+ details String
1233
+ }
1234
+
1235
+ type DynamicCriteriaResult {
1236
+ criteriaId String
1237
+ description String
1238
+ priority String
1239
+ rubricScore Float
1240
+ normalizedScore Float
1241
+ evidence EvidencePointer[]
1242
+ reasoning String
1243
+ }
1244
+
1245
+ type RoleScoringSystemResult {
1246
+ totalScore Float
1247
+ hardRequirementsScore Float
1248
+ aiScore Float
1249
+ hardRequirements HardRequirementResult[]
1250
+ dynamicCriteria DynamicCriteriaResult[]
1251
+ scoredAt DateTime @db.Date
1252
+ scoringSystemVersion String @default("1.0")
1253
+ includesBuilderInput Boolean @default(false)
1254
+ }
1255
+
1222
1256
  model MissionApplication {
1223
1257
  aid String @id @default(auto()) @map("_id") @db.ObjectId
1224
1258
  uid String @map("user") @db.ObjectId
@@ -1248,6 +1282,8 @@ model MissionApplication {
1248
1282
  changes MissionApplicationChanges?
1249
1283
  analysis MissionApplicationAnalysisObject?
1250
1284
  proposedRates MissionApplicationProposedRates?
1285
+ builderProvidedEvidence BuilderProvidedEvidence[]
1286
+ scoringResults RoleScoringSystemResult[]
1251
1287
 
1252
1288
  @@map("missionApplications")
1253
1289
  }
@@ -1713,9 +1749,11 @@ type EvidenceLocator {
1713
1749
  }
1714
1750
 
1715
1751
  type EvidencePointer {
1716
- sourceType EvidenceSourceType
1717
- sourceId String
1718
- locator EvidenceLocator?
1752
+ sourceType EvidenceSourceType
1753
+ sourceId String
1754
+ locator EvidenceLocator?
1755
+ quoteOrPointer String?
1756
+ isPrivate Boolean? @default(false)
1719
1757
  }
1720
1758
 
1721
1759
  type CriteriaItem {
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.29.0-macos-docker-linux",
4
- "os": [],
3
+ "version": "3.29.1-linux",
4
+ "os": [
5
+ "linux"
6
+ ],
5
7
  "cpu": [],
6
8
  "keywords": [],
7
9
  "prisma": {