@a_team/prisma 3.6.1-macos-docker-linux → 3.6.2-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 +6 -0
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -882,6 +882,11 @@ enum UserStatus {
|
|
|
882
882
|
Deleted
|
|
883
883
|
}
|
|
884
884
|
|
|
885
|
+
type AvailabilityObject {
|
|
886
|
+
availableFrom String?
|
|
887
|
+
weeklyHoursAvailable Int?
|
|
888
|
+
}
|
|
889
|
+
|
|
885
890
|
model User {
|
|
886
891
|
id String @id @default(auto()) @map("_id") @db.ObjectId
|
|
887
892
|
firstName String?
|
|
@@ -910,6 +915,7 @@ model User {
|
|
|
910
915
|
talentProfile TalentProfile?
|
|
911
916
|
onboardingStage InternalOnboardingStage?
|
|
912
917
|
missionPreferences MissionPreferences?
|
|
918
|
+
availability AvailabilityObject?
|
|
913
919
|
missionApplication MissionApplication[]
|
|
914
920
|
|
|
915
921
|
@@map("users")
|