@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 ADDED
@@ -0,0 +1,10 @@
1
+ # Changelog
2
+
3
+ ## Unreleased
4
+
5
+ ### Added
6
+
7
+ - `AdminNoteAuthor` composite type with `fullName String?`, `username String?`, and `pictureUrl String?` fields
8
+ - `createdAt DateTime? @default(now())`, `updatedAt DateTime?`, and `author AdminNoteAuthor?` fields to `AdminNote` composite type in `user.prisma`
9
+
10
+ Previously, `AdminNote` only had `text` and `category`. Prisma was silently dropping `createdAt`, `updatedAt`, and `author` on every write because the schema did not declare them, causing admin notes to show a wrong/changing timestamp and no author in the UI.