@a_team/prisma 3.9.3-macos-docker-linux → 3.9.4-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 -5
- package/dist/client/index-browser.js +0 -1
- package/dist/client/index.d.ts +160 -59
- package/dist/client/index.js +6 -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 +6 -1
- package/dist/client/wasm.js +0 -1
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -1046,6 +1046,11 @@ type GitHubData {
|
|
|
1046
1046
|
username String
|
|
1047
1047
|
}
|
|
1048
1048
|
|
|
1049
|
+
type DribbbleData {
|
|
1050
|
+
username String
|
|
1051
|
+
profileURL String?
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1049
1054
|
type Location {
|
|
1050
1055
|
country String
|
|
1051
1056
|
city String?
|
|
@@ -1088,7 +1093,7 @@ model User {
|
|
|
1088
1093
|
availability Availability?
|
|
1089
1094
|
missionApplication MissionApplication[]
|
|
1090
1095
|
github GitHubData?
|
|
1091
|
-
dribbble
|
|
1096
|
+
dribbble DribbbleData?
|
|
1092
1097
|
yearsExperience Float?
|
|
1093
1098
|
websites String[]
|
|
1094
1099
|
location Location?
|
package/dist/client/wasm.js
CHANGED