@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.
- package/dist/client/edge.js +4 -4
- package/dist/client/index.d.ts +642 -0
- package/dist/client/index.js +6 -6
- 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 +41 -3
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -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
|
|
1717
|
-
sourceId
|
|
1718
|
-
locator
|
|
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 {
|