@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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-a29aa7511663e4b6fc0c14d1257b2899a04a6eb2c3e7a911cc9f1751f658c3d3",
2
+ "name": "prisma-client-b8a152c17883cec8423f831dd476c571d07179ce3f4ee7f1a2ba388ae623b6e9",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -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
  }
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.26.2-macos-docker-linux",
4
- "os": [],
3
+ "version": "3.27.0-linux",
4
+ "os": [
5
+ "linux"
6
+ ],
5
7
  "cpu": [],
6
8
  "keywords": [],
7
9
  "prisma": {