@a_team/prisma 3.6.3-macos-docker-linux → 3.6.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 -4
- package/dist/client/index.d.ts +194 -78
- 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 +7 -2
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -980,10 +980,15 @@ enum UserStatus {
|
|
|
980
980
|
}
|
|
981
981
|
|
|
982
982
|
type AvailabilityObject {
|
|
983
|
-
|
|
983
|
+
date DateTime? @db.Date
|
|
984
984
|
weeklyHoursAvailable Int?
|
|
985
985
|
}
|
|
986
986
|
|
|
987
|
+
type Availability {
|
|
988
|
+
updatedAt DateTime? @default(now()) @db.Date
|
|
989
|
+
availability AvailabilityObject?
|
|
990
|
+
}
|
|
991
|
+
|
|
987
992
|
model User {
|
|
988
993
|
id String @id @default(auto()) @map("_id") @db.ObjectId
|
|
989
994
|
firstName String?
|
|
@@ -1012,7 +1017,7 @@ model User {
|
|
|
1012
1017
|
talentProfile TalentProfile?
|
|
1013
1018
|
onboardingStage InternalOnboardingStage?
|
|
1014
1019
|
missionPreferences MissionPreferences?
|
|
1015
|
-
availability
|
|
1020
|
+
availability Availability?
|
|
1016
1021
|
missionApplication MissionApplication[]
|
|
1017
1022
|
authoredProposals Proposal[] @relation("createdBy")
|
|
1018
1023
|
sharedProposals Proposal[] @relation("sharedBy")
|