@a_team/prisma 3.31.1-win → 3.31.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/CHANGELOG.md +10 -0
- package/dist/client/edge.js +4 -4
- package/dist/client/index.d.ts +144 -1
- package/dist/client/index.js +6 -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 +11 -2
- package/package.json +2 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -2134,9 +2134,18 @@ type DefaultRates {
|
|
|
2134
2134
|
monthlyRate Float?
|
|
2135
2135
|
}
|
|
2136
2136
|
|
|
2137
|
+
type AdminNoteAuthor {
|
|
2138
|
+
fullName String?
|
|
2139
|
+
username String?
|
|
2140
|
+
pictureUrl String?
|
|
2141
|
+
}
|
|
2142
|
+
|
|
2137
2143
|
type AdminNote {
|
|
2138
|
-
text
|
|
2139
|
-
category
|
|
2144
|
+
text String
|
|
2145
|
+
category String?
|
|
2146
|
+
createdAt DateTime? @default(now())
|
|
2147
|
+
updatedAt DateTime? @default(now())
|
|
2148
|
+
author AdminNoteAuthor?
|
|
2140
2149
|
}
|
|
2141
2150
|
|
|
2142
2151
|
type AdminNotesObject {
|