@trycompai/db 1.3.15-canary.1 → 1.3.15-canary.3
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/schema.prisma +2 -0
- package/package.json +1 -1
package/dist/schema.prisma
CHANGED
|
@@ -272,6 +272,7 @@ model EvidenceAutomation {
|
|
|
272
272
|
name String
|
|
273
273
|
description String?
|
|
274
274
|
createdAt DateTime @default(now())
|
|
275
|
+
isEnabled Boolean @default(false)
|
|
275
276
|
|
|
276
277
|
chatHistory String?
|
|
277
278
|
evaluationCriteria String?
|
|
@@ -857,6 +858,7 @@ enum TaskStatus {
|
|
|
857
858
|
in_progress
|
|
858
859
|
done
|
|
859
860
|
not_relevant
|
|
861
|
+
failed
|
|
860
862
|
}
|
|
861
863
|
|
|
862
864
|
enum TaskFrequency {
|
package/package.json
CHANGED