@a_team/prisma 3.26.0-win → 3.26.1-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 +5 -4
- package/dist/client/index-browser.js +1 -0
- package/dist/client/index.d.ts +119 -0
- package/dist/client/index.js +7 -6
- package/dist/client/{query_engine-windows.dll.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 +1 -0
- package/dist/client/wasm.js +1 -0
- package/package.json +2 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -2010,6 +2010,7 @@ model User {
|
|
|
2010
2010
|
lastName String?
|
|
2011
2011
|
username String? @unique(map: "username_1")
|
|
2012
2012
|
email String @unique(map: "email_1")
|
|
2013
|
+
displayEmail String?
|
|
2013
2014
|
isAdmin Boolean @default(false)
|
|
2014
2015
|
createdMissionsModels Mission[] @relation("creator")
|
|
2015
2016
|
ownedMissionsModels Mission[] @relation("ownerModel")
|
package/dist/client/wasm.js
CHANGED