@a_team/prisma 3.17.5-macos-docker-linux → 3.17.6-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 +16 -8
- 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 +2 -1
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -1410,10 +1410,11 @@ enum Priority {
|
|
|
1410
1410
|
}
|
|
1411
1411
|
|
|
1412
1412
|
type CriteriaItem {
|
|
1413
|
-
|
|
1413
|
+
id String @db.ObjectId
|
|
1414
1414
|
description String
|
|
1415
1415
|
type CriteriaItemType
|
|
1416
1416
|
priority Priority
|
|
1417
|
+
createdAt DateTime? @default(now()) @db.Date
|
|
1417
1418
|
updatedAt DateTime? @db.Date
|
|
1418
1419
|
}
|
|
1419
1420
|
|