@a_team/prisma 3.8.1-macos-docker-linux → 3.8.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 +7 -5
- package/dist/client/index-browser.js +3 -1
- package/dist/client/index.d.ts +276 -1
- package/dist/client/index.js +9 -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 +7 -0
- package/dist/client/wasm.js +3 -1
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -995,6 +995,10 @@ type Availability {
|
|
|
995
995
|
availability AvailabilityObject?
|
|
996
996
|
}
|
|
997
997
|
|
|
998
|
+
type GitHubData {
|
|
999
|
+
username String
|
|
1000
|
+
}
|
|
1001
|
+
|
|
998
1002
|
model User {
|
|
999
1003
|
id String @id @default(auto()) @map("_id") @db.ObjectId
|
|
1000
1004
|
firstName String?
|
|
@@ -1025,6 +1029,9 @@ model User {
|
|
|
1025
1029
|
missionPreferences MissionPreferences?
|
|
1026
1030
|
availability Availability?
|
|
1027
1031
|
missionApplication MissionApplication[]
|
|
1032
|
+
github GitHubData?
|
|
1033
|
+
dribbble String?
|
|
1034
|
+
yearsExperience Float?
|
|
1028
1035
|
authoredProposals Proposal[] @relation("createdBy")
|
|
1029
1036
|
sharedProposals Proposal[] @relation("sharedBy")
|
|
1030
1037
|
|
package/dist/client/wasm.js
CHANGED
|
@@ -361,7 +361,9 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
361
361
|
tokenVersion: 'tokenVersion',
|
|
362
362
|
aboutMe: 'aboutMe',
|
|
363
363
|
cvURL: 'cvURL',
|
|
364
|
-
onboardingStage: 'onboardingStage'
|
|
364
|
+
onboardingStage: 'onboardingStage',
|
|
365
|
+
dribbble: 'dribbble',
|
|
366
|
+
yearsExperience: 'yearsExperience'
|
|
365
367
|
};
|
|
366
368
|
|
|
367
369
|
exports.Prisma.SortOrder = {
|