@a_team/prisma 3.14.6-macos-docker-linux → 3.14.7-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 +152 -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 +8 -0
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -984,6 +984,13 @@ type MissionApplicationAnalysisObject {
|
|
|
984
984
|
gptConfigId String @db.ObjectId
|
|
985
985
|
}
|
|
986
986
|
|
|
987
|
+
type MissionApplicationProposedRates {
|
|
988
|
+
builderHourlyRate Float?
|
|
989
|
+
clientHourlyRate Float?
|
|
990
|
+
builderMonthlyRate Float?
|
|
991
|
+
clientMonthlyRate Float?
|
|
992
|
+
}
|
|
993
|
+
|
|
987
994
|
model MissionApplication {
|
|
988
995
|
aid String @id @default(auto()) @map("_id") @db.ObjectId
|
|
989
996
|
uid String @map("user") @db.ObjectId
|
|
@@ -1012,6 +1019,7 @@ model MissionApplication {
|
|
|
1012
1019
|
roleHistory RoleHistoryEntry[]
|
|
1013
1020
|
changes MissionApplicationChanges?
|
|
1014
1021
|
analysis MissionApplicationAnalysisObject?
|
|
1022
|
+
proposedRates MissionApplicationProposedRates?
|
|
1015
1023
|
|
|
1016
1024
|
@@map("missionApplications")
|
|
1017
1025
|
}
|