@a_team/prisma 3.8.5-macos-docker-linux → 3.8.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 +329 -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 +13 -0
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -999,6 +999,17 @@ type GitHubData {
|
|
|
999
999
|
username String
|
|
1000
1000
|
}
|
|
1001
1001
|
|
|
1002
|
+
type Location {
|
|
1003
|
+
country String
|
|
1004
|
+
city String?
|
|
1005
|
+
countryShortName String?
|
|
1006
|
+
province String?
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
type PlatformExperience {
|
|
1010
|
+
billedMinutes Float
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1002
1013
|
model User {
|
|
1003
1014
|
id String @id @default(auto()) @map("_id") @db.ObjectId
|
|
1004
1015
|
firstName String?
|
|
@@ -1033,6 +1044,8 @@ model User {
|
|
|
1033
1044
|
dribbble String?
|
|
1034
1045
|
yearsExperience Float?
|
|
1035
1046
|
websites String[]
|
|
1047
|
+
location Location?
|
|
1048
|
+
platformExperience PlatformExperience?
|
|
1036
1049
|
authoredProposals Proposal[] @relation("createdBy")
|
|
1037
1050
|
sharedProposals Proposal[] @relation("sharedBy")
|
|
1038
1051
|
|