@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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-3919e392483ae7d7b9cb9ccf892c53d9a862462d2ef8edabd17c9a2c989fef54",
2
+ "name": "prisma-client-4ff02823678342f4a5ed972b8d39d5cd7f60650d6d0b7ea768370ac2690ef7cb",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -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
  }
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.4.5-win",
3
+ "version": "3.4.6-linux",
4
4
  "os": [
5
- "win32"
5
+ "linux"
6
6
  ],
7
7
  "cpu": [],
8
8
  "keywords": [],