@a_team/prisma 3.9.4-macos-docker-linux → 3.9.5-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 +8 -5
- package/dist/client/index-browser.js +4 -1
- package/dist/client/index.d.ts +351 -1
- package/dist/client/index.js +10 -7
- 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 +18 -0
- package/dist/client/wasm.js +4 -1
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -788,6 +788,9 @@ model Proposal {
|
|
|
788
788
|
currency String?
|
|
789
789
|
teamProposal Boolean?
|
|
790
790
|
rolesData ProposalRoleData[]
|
|
791
|
+
name String?
|
|
792
|
+
slug String?
|
|
793
|
+
teamBlurb String?
|
|
791
794
|
|
|
792
795
|
@@map("proposals")
|
|
793
796
|
}
|
|
@@ -844,6 +847,16 @@ type ProposalCandidate {
|
|
|
844
847
|
projects String[] @db.ObjectId
|
|
845
848
|
reviews String[] @db.ObjectId
|
|
846
849
|
cardSections ProposalCandidateSections?
|
|
850
|
+
isTeamLead Boolean?
|
|
851
|
+
tfsPitch ProposalTfsPitch?
|
|
852
|
+
proposedAt DateTime?
|
|
853
|
+
githubUrl String?
|
|
854
|
+
cvUrl String?
|
|
855
|
+
portfolioUrl String?
|
|
856
|
+
portfolioPassword String?
|
|
857
|
+
gptUsageLogId String?
|
|
858
|
+
linkedInRecommendations String[]
|
|
859
|
+
slug String?
|
|
847
860
|
}
|
|
848
861
|
|
|
849
862
|
type ProposalCandidateSectionData {
|
|
@@ -862,6 +875,11 @@ type ProposalRoleData {
|
|
|
862
875
|
aboutBuildersSection String?
|
|
863
876
|
}
|
|
864
877
|
|
|
878
|
+
type ProposalTfsPitch {
|
|
879
|
+
blurb String?
|
|
880
|
+
website String?
|
|
881
|
+
}
|
|
882
|
+
|
|
865
883
|
model RoleCategory {
|
|
866
884
|
id String @id @default(auto()) @map("_id") @db.ObjectId
|
|
867
885
|
anchors String[]
|
package/dist/client/wasm.js
CHANGED
|
@@ -315,7 +315,10 @@ exports.Prisma.ProposalScalarFieldEnum = {
|
|
|
315
315
|
missionSpecId: 'missionSpecId',
|
|
316
316
|
applications: 'applications',
|
|
317
317
|
currency: 'currency',
|
|
318
|
-
teamProposal: 'teamProposal'
|
|
318
|
+
teamProposal: 'teamProposal',
|
|
319
|
+
name: 'name',
|
|
320
|
+
slug: 'slug',
|
|
321
|
+
teamBlurb: 'teamBlurb'
|
|
319
322
|
};
|
|
320
323
|
|
|
321
324
|
exports.Prisma.RoleCategoryScalarFieldEnum = {
|