@a_team/prisma 3.28.0-macos-docker-linux → 3.28.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 +6 -6
- package/dist/client/index-browser.js +2 -2
- package/dist/client/index.d.ts +710 -710
- package/dist/client/index.js +8 -8
- 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 +3 -3
- package/dist/client/wasm.js +2 -2
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -596,7 +596,7 @@ enum EvaluationProcessStatus {
|
|
|
596
596
|
Completed
|
|
597
597
|
}
|
|
598
598
|
|
|
599
|
-
model
|
|
599
|
+
model EvaluationProcess {
|
|
600
600
|
id String @id @default(auto()) @map("_id") @db.ObjectId
|
|
601
601
|
|
|
602
602
|
// User-facing public ID for the url
|
|
@@ -2162,8 +2162,8 @@ model User {
|
|
|
2162
2162
|
userVettingProcesses VettingProcess[] @relation("userVettingProcesses")
|
|
2163
2163
|
vetterVettingProcesses VettingProcess[] @relation("vetterVettingProcesses")
|
|
2164
2164
|
adminNotes AdminNotesObject?
|
|
2165
|
-
evaluatorEvaluationProcesses
|
|
2166
|
-
userEvaluationProcesses
|
|
2165
|
+
evaluatorEvaluationProcesses EvaluationProcess[] @relation("evaluatorEvaluationProcesses")
|
|
2166
|
+
userEvaluationProcesses EvaluationProcess[] @relation("userEvaluationProcesses")
|
|
2167
2167
|
vetters Vetter[] @relation("vetter")
|
|
2168
2168
|
|
|
2169
2169
|
@@map("users")
|
package/dist/client/wasm.js
CHANGED
|
@@ -271,7 +271,7 @@ exports.Prisma.ContractScalarFieldEnum = {
|
|
|
271
271
|
builderId: 'builderId'
|
|
272
272
|
};
|
|
273
273
|
|
|
274
|
-
exports.Prisma.
|
|
274
|
+
exports.Prisma.EvaluationProcessScalarFieldEnum = {
|
|
275
275
|
id: 'id',
|
|
276
276
|
publicId: 'publicId',
|
|
277
277
|
status: 'status',
|
|
@@ -1140,7 +1140,7 @@ exports.Prisma.ModelName = {
|
|
|
1140
1140
|
ClientInterview: 'ClientInterview',
|
|
1141
1141
|
Company: 'Company',
|
|
1142
1142
|
Contract: 'Contract',
|
|
1143
|
-
|
|
1143
|
+
EvaluationProcess: 'EvaluationProcess',
|
|
1144
1144
|
EvaluationTranscriptAnalysisResult: 'EvaluationTranscriptAnalysisResult',
|
|
1145
1145
|
Experience: 'Experience',
|
|
1146
1146
|
GptConfig: 'GptConfig',
|