@a_team/prisma 3.7.0-macos-docker-linux → 3.7.1-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-057aaa224ca1b6d177d976c9300380de2ed9914c3149b7ef5d01144c22bf209d",
2
+ "name": "prisma-client-bf671d97d863be99b9b8c882698f94a4c8984e27042ca7cfb2f87a6691b2f208",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -118,6 +118,7 @@ model Contract {
118
118
  documentTitle String?
119
119
  accountId String? @map("account") @db.ObjectId
120
120
  account Account? @relation(fields: [accountId], references: [id])
121
+ deletedAt DateTime? @db.Date
121
122
 
122
123
  @@index([type, missionId, role, createdAt], map: "type_1_mission_1_role_1_createdAt_-1")
123
124
  @@index([parties.user, status, createdAt], map: "parties.user_1_status_1_createdAt_1")
@@ -584,7 +585,7 @@ type MissionPrefillRole {
584
585
  headline String?
585
586
  requiredSkills String[] @db.ObjectId
586
587
  preferredSkills String[] @db.ObjectId
587
- timeCommitemnt String?
588
+ timeCommitment String?
588
589
  screeningQuestion String?
589
590
  }
590
591
 
@@ -742,6 +743,8 @@ model Proposal {
742
743
  applications String[] @db.ObjectId
743
744
  adminReview ProposalReview?
744
745
  candidates ProposalCandidate[]
746
+ currency String?
747
+ teamProposal Boolean?
745
748
 
746
749
  @@map("proposals")
747
750
  }
@@ -797,7 +800,7 @@ type ProposalCandidate {
797
800
  includeCustomQuestionReply Boolean?
798
801
  projects String[] @db.ObjectId
799
802
  reviews String[] @db.ObjectId
800
- cardSections ProposalCandidateSections
803
+ cardSections ProposalCandidateSections?
801
804
  }
802
805
 
803
806
  type ProposalCandidateSectionData {
@@ -161,7 +161,8 @@ exports.Prisma.ContractScalarFieldEnum = {
161
161
  custom: 'custom',
162
162
  source: 'source',
163
163
  documentTitle: 'documentTitle',
164
- accountId: 'accountId'
164
+ accountId: 'accountId',
165
+ deletedAt: 'deletedAt'
165
166
  };
166
167
 
167
168
  exports.Prisma.ExperienceScalarFieldEnum = {
@@ -305,7 +306,9 @@ exports.Prisma.ProposalScalarFieldEnum = {
305
306
  version: 'version',
306
307
  publicUntil: 'publicUntil',
307
308
  missionSpecId: 'missionSpecId',
308
- applications: 'applications'
309
+ applications: 'applications',
310
+ currency: 'currency',
311
+ teamProposal: 'teamProposal'
309
312
  };
310
313
 
311
314
  exports.Prisma.RoleCategoryScalarFieldEnum = {
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.7.0-macos-docker-linux",
4
- "os": [],
3
+ "version": "3.7.1-linux",
4
+ "os": [
5
+ "linux"
6
+ ],
5
7
  "cpu": [],
6
8
  "keywords": [],
7
9
  "scripts": {