@a_team/prisma 3.4.5-win → 3.4.6-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 +260 -0
- package/dist/client/index.js +6 -6
- package/dist/client/{query_engine-windows.dll.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 +10 -0
- package/package.json +2 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -707,6 +707,15 @@ enum InternalOnboardingStage {
|
|
|
707
707
|
ProfileCompleteWithPendingApplication
|
|
708
708
|
}
|
|
709
709
|
|
|
710
|
+
type MissionPreference {
|
|
711
|
+
missionId String @db.ObjectId
|
|
712
|
+
reason String?
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
type MissionPreferences {
|
|
716
|
+
notInterestedMissions MissionPreference[]
|
|
717
|
+
}
|
|
718
|
+
|
|
710
719
|
model User {
|
|
711
720
|
id String @id @default(auto()) @map("_id") @db.ObjectId
|
|
712
721
|
firstName String?
|
|
@@ -734,6 +743,7 @@ model User {
|
|
|
734
743
|
rateRange RateRange?
|
|
735
744
|
talentProfile TalentProfile?
|
|
736
745
|
onboardingStage InternalOnboardingStage?
|
|
746
|
+
missionPreferences MissionPreferences?
|
|
737
747
|
|
|
738
748
|
@@map("users")
|
|
739
749
|
}
|