@a_team/prisma 3.26.2-macos-docker-linux → 3.27.0-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 +332 -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 +10 -0
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -2060,6 +2060,15 @@ type DefaultRates {
|
|
|
2060
2060
|
monthlyRate Float?
|
|
2061
2061
|
}
|
|
2062
2062
|
|
|
2063
|
+
type AdminNote {
|
|
2064
|
+
text String
|
|
2065
|
+
category String?
|
|
2066
|
+
}
|
|
2067
|
+
|
|
2068
|
+
type AdminNotesObject {
|
|
2069
|
+
notes AdminNote[]
|
|
2070
|
+
}
|
|
2071
|
+
|
|
2063
2072
|
model User {
|
|
2064
2073
|
id String @id @default(auto()) @map("_id") @db.ObjectId
|
|
2065
2074
|
firstName String?
|
|
@@ -2122,6 +2131,7 @@ model User {
|
|
|
2122
2131
|
builderWebsitesData BuilderWebsitesData[]
|
|
2123
2132
|
userVettingProcesses VettingProcess[] @relation("userVettingProcesses")
|
|
2124
2133
|
vetterVettingProcesses VettingProcess[] @relation("vetterVettingProcesses")
|
|
2134
|
+
adminNotes AdminNotesObject?
|
|
2125
2135
|
|
|
2126
2136
|
@@map("users")
|
|
2127
2137
|
}
|