@a_team/prisma 3.13.1-macos-docker-linux → 3.13.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-13967ae919ffb3598ada296f1b0e3991300d150460fa405bc90cbda51cc7938a",
2
+ "name": "prisma-client-0a16171548a940847cbcf6f7d0a4cef5501303c87a933dd20f26b8b499afa942",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -1068,41 +1068,41 @@ type ClientRoleQuestion {
1068
1068
  }
1069
1069
 
1070
1070
  model Proposal {
1071
- id String @id @default(auto()) @map("_id") @db.ObjectId
1072
- createdById String? @db.ObjectId
1073
- createdBy User? @relation(fields: [createdById], references: [id], name: "createdBy")
1074
- missionId String? @db.ObjectId
1075
- mission Mission? @relation(fields: [missionId], references: [mid])
1076
- createdAt DateTime? @default(now()) @db.Date
1077
- updatedAt DateTime? @updatedAt @db.Date
1078
- expiresAt DateTime? @db.Date
1079
- clientName String?
1080
- projectName String?
1081
- webflowId String?
1082
- publicURL String?
1083
- isShared Boolean?
1084
- sharedById String? @db.ObjectId
1085
- sharedBy User? @relation(fields: [sharedById], references: [id], name: "sharedBy")
1086
- sharedAt DateTime? @db.Date
1087
- archivedURL String?
1088
- schemaVersion ProposalSchemaVersion @default(v1)
1089
- templateMap ProposalTemplateMap?
1090
- template ProposalTemplate?
1091
- version Int?
1092
- publicUntil DateTime? @db.Date
1093
- missionSpecId String? @db.ObjectId
1094
- missionSpec MissionSpec? @relation(fields: [missionSpecId], references: [id])
1095
- applications String[] @db.ObjectId
1096
- adminReview ProposalReview?
1097
- candidates ProposalCandidate[]
1098
- currency String?
1099
- teamProposal Boolean?
1100
- rolesData ProposalRoleData[]
1101
- name String?
1102
- slug String?
1103
- teamBlurb String?
1104
- teamAdvisorId String? @db.ObjectId
1105
- teamAdvisor User? @relation(fields: [teamAdvisorId], references: [id], name: "teamAdvisor")
1071
+ id String @id @default(auto()) @map("_id") @db.ObjectId
1072
+ createdBy String? @db.ObjectId
1073
+ createdByModel User? @relation(fields: [createdBy], references: [id], name: "createdByModel")
1074
+ missionId String? @db.ObjectId
1075
+ mission Mission? @relation(fields: [missionId], references: [mid])
1076
+ createdAt DateTime? @default(now()) @db.Date
1077
+ updatedAt DateTime? @updatedAt @db.Date
1078
+ expiresAt DateTime? @db.Date
1079
+ clientName String?
1080
+ projectName String?
1081
+ webflowId String?
1082
+ publicURL String?
1083
+ isShared Boolean?
1084
+ sharedBy String? @db.ObjectId
1085
+ sharedByModel User? @relation(fields: [sharedBy], references: [id], name: "sharedByModel")
1086
+ sharedAt DateTime? @db.Date
1087
+ archivedURL String?
1088
+ schemaVersion ProposalSchemaVersion @default(v1)
1089
+ templateMap ProposalTemplateMap?
1090
+ template ProposalTemplate?
1091
+ version Int?
1092
+ publicUntil DateTime? @db.Date
1093
+ missionSpecId String? @db.ObjectId
1094
+ missionSpec MissionSpec? @relation(fields: [missionSpecId], references: [id])
1095
+ applications String[] @db.ObjectId
1096
+ adminReview ProposalReview?
1097
+ candidates ProposalCandidate[]
1098
+ currency String?
1099
+ teamProposal Boolean?
1100
+ rolesData ProposalRoleData[]
1101
+ name String?
1102
+ slug String?
1103
+ teamBlurb String?
1104
+ teamAdvisorId String? @db.ObjectId
1105
+ teamAdvisor User? @relation(fields: [teamAdvisorId], references: [id], name: "teamAdvisor")
1106
1106
 
1107
1107
  clientInterviews ClientInterview[]
1108
1108
 
@@ -1449,8 +1449,8 @@ model User {
1449
1449
  exclusiveApplication UserExclusiveApplication?
1450
1450
 
1451
1451
  platformExperience PlatformExperience?
1452
- authoredProposals Proposal[] @relation("createdBy")
1453
- sharedProposals Proposal[] @relation("sharedBy")
1452
+ authoredProposals Proposal[] @relation("createdByModel")
1453
+ sharedProposals Proposal[] @relation("sharedByModel")
1454
1454
  linkedInRecommendations LinkedInRecommendation[]
1455
1455
  givenReviews UserReview[] @relation("fromUser")
1456
1456
  receivedReviews UserReview[] @relation("toUser")
@@ -391,7 +391,7 @@ exports.Prisma.MissionSpecScalarFieldEnum = {
391
391
 
392
392
  exports.Prisma.ProposalScalarFieldEnum = {
393
393
  id: 'id',
394
- createdById: 'createdById',
394
+ createdBy: 'createdBy',
395
395
  missionId: 'missionId',
396
396
  createdAt: 'createdAt',
397
397
  updatedAt: 'updatedAt',
@@ -401,7 +401,7 @@ exports.Prisma.ProposalScalarFieldEnum = {
401
401
  webflowId: 'webflowId',
402
402
  publicURL: 'publicURL',
403
403
  isShared: 'isShared',
404
- sharedById: 'sharedById',
404
+ sharedBy: 'sharedBy',
405
405
  sharedAt: 'sharedAt',
406
406
  archivedURL: 'archivedURL',
407
407
  schemaVersion: 'schemaVersion',
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.13.1-macos-docker-linux",
4
- "os": [],
3
+ "version": "3.13.2-linux",
4
+ "os": [
5
+ "linux"
6
+ ],
5
7
  "cpu": [],
6
8
  "keywords": [],
7
9
  "prisma": {