@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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-2005e40cdf32cb699f678d4c0a586790cdc2eec34598b797ef4a54a6f22652bc",
2
+ "name": "prisma-client-c19355c325c9129f66e8b5118a813fa9bbe8f66bca94ad40d402b06012ea1a61",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -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")
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.6.1-macos-docker-linux",
4
- "os": [],
3
+ "version": "3.6.2-linux",
4
+ "os": [
5
+ "linux"
6
+ ],
5
7
  "cpu": [],
6
8
  "keywords": [],
7
9
  "scripts": {