@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.
- package/dist/client/edge.js +6 -6
- package/dist/client/index-browser.js +2 -2
- package/dist/client/index.d.ts +358 -358
- package/dist/client/index.js +8 -8
- package/dist/client/{libquery_engine-linux-arm64-openssl-3.0.x.so.node → libquery_engine-linux-musl-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +37 -37
- package/dist/client/wasm.js +2 -2
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -1068,41 +1068,41 @@ type ClientRoleQuestion {
|
|
|
1068
1068
|
}
|
|
1069
1069
|
|
|
1070
1070
|
model Proposal {
|
|
1071
|
-
id
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
missionId
|
|
1075
|
-
mission
|
|
1076
|
-
createdAt
|
|
1077
|
-
updatedAt
|
|
1078
|
-
expiresAt
|
|
1079
|
-
clientName
|
|
1080
|
-
projectName
|
|
1081
|
-
webflowId
|
|
1082
|
-
publicURL
|
|
1083
|
-
isShared
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
sharedAt
|
|
1087
|
-
archivedURL
|
|
1088
|
-
schemaVersion
|
|
1089
|
-
templateMap
|
|
1090
|
-
template
|
|
1091
|
-
version
|
|
1092
|
-
publicUntil
|
|
1093
|
-
missionSpecId
|
|
1094
|
-
missionSpec
|
|
1095
|
-
applications
|
|
1096
|
-
adminReview
|
|
1097
|
-
candidates
|
|
1098
|
-
currency
|
|
1099
|
-
teamProposal
|
|
1100
|
-
rolesData
|
|
1101
|
-
name
|
|
1102
|
-
slug
|
|
1103
|
-
teamBlurb
|
|
1104
|
-
teamAdvisorId
|
|
1105
|
-
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("
|
|
1453
|
-
sharedProposals Proposal[] @relation("
|
|
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")
|
package/dist/client/wasm.js
CHANGED
|
@@ -391,7 +391,7 @@ exports.Prisma.MissionSpecScalarFieldEnum = {
|
|
|
391
391
|
|
|
392
392
|
exports.Prisma.ProposalScalarFieldEnum = {
|
|
393
393
|
id: 'id',
|
|
394
|
-
|
|
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
|
-
|
|
404
|
+
sharedBy: 'sharedBy',
|
|
405
405
|
sharedAt: 'sharedAt',
|
|
406
406
|
archivedURL: 'archivedURL',
|
|
407
407
|
schemaVersion: 'schemaVersion',
|