@a_team/prisma 3.6.3-win → 3.6.4-linux-debian

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-30b5557aebde29991d78dbfd83b85044a2dba89a4564c17be99d00e241c06b25",
2
+ "name": "prisma-client-c3fc3eb2fd83bf2ad1398d8ef54a4b733b78b2ffbc58bd6c5b8e5d2f0620a10a",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -980,10 +980,15 @@ enum UserStatus {
980
980
  }
981
981
 
982
982
  type AvailabilityObject {
983
- availableFrom String?
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 AvailabilityObject?
1020
+ availability Availability?
1016
1021
  missionApplication MissionApplication[]
1017
1022
  authoredProposals Proposal[] @relation("createdBy")
1018
1023
  sharedProposals Proposal[] @relation("sharedBy")
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.6.3-win",
3
+ "version": "3.6.4-linux-debian",
4
4
  "os": [
5
- "win32"
5
+ "linux"
6
6
  ],
7
7
  "cpu": [],
8
8
  "keywords": [],