@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.
- package/dist/client/edge.js +9 -6
- package/dist/client/index-browser.js +5 -2
- package/dist/client/index.d.ts +183 -32
- package/dist/client/index.js +11 -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 +5 -2
- package/dist/client/wasm.js +5 -2
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -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
|
-
|
|
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 {
|
package/dist/client/wasm.js
CHANGED
|
@@ -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 = {
|