@a_team/prisma 3.14.5-macos-docker-linux → 3.14.6-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 +4 -4
- package/dist/client/index.d.ts +221 -0
- package/dist/client/index.js +6 -6
- 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 +8 -0
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -1272,6 +1272,7 @@ type ProposalCandidate {
|
|
|
1272
1272
|
portfolioUrl String?
|
|
1273
1273
|
portfolioPassword String?
|
|
1274
1274
|
slug String?
|
|
1275
|
+
numberOfHoursBilled Float?
|
|
1275
1276
|
}
|
|
1276
1277
|
|
|
1277
1278
|
type ProposalCandidateSectionData {
|
|
@@ -1512,6 +1513,12 @@ type AcceptTOS {
|
|
|
1512
1513
|
version TOSVersion?
|
|
1513
1514
|
}
|
|
1514
1515
|
|
|
1516
|
+
type UserPortfolio {
|
|
1517
|
+
url String
|
|
1518
|
+
description String?
|
|
1519
|
+
password String?
|
|
1520
|
+
}
|
|
1521
|
+
|
|
1515
1522
|
model User {
|
|
1516
1523
|
id String @id @default(auto()) @map("_id") @db.ObjectId
|
|
1517
1524
|
firstName String?
|
|
@@ -1567,6 +1574,7 @@ model User {
|
|
|
1567
1574
|
timezone TimezoneObject?
|
|
1568
1575
|
acceptTOS AcceptTOS?
|
|
1569
1576
|
acceptTOSHistory AcceptTOS[]
|
|
1577
|
+
portfolio UserPortfolio?
|
|
1570
1578
|
|
|
1571
1579
|
@@map("users")
|
|
1572
1580
|
}
|