@varaos/db 1.3.2 → 1.3.4
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/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -83,6 +83,7 @@ enum TwoFactorMethod {
|
|
|
83
83
|
}
|
|
84
84
|
|
|
85
85
|
enum SubscriptionStatus {
|
|
86
|
+
created // intent created, payment pending
|
|
86
87
|
active
|
|
87
88
|
trialing
|
|
88
89
|
past_due
|
|
@@ -90,6 +91,7 @@ enum SubscriptionStatus {
|
|
|
90
91
|
paused
|
|
91
92
|
}
|
|
92
93
|
|
|
94
|
+
|
|
93
95
|
enum WorkflowStatus {
|
|
94
96
|
draft
|
|
95
97
|
active
|
|
@@ -484,6 +486,10 @@ model IntegrationCatalog {
|
|
|
484
486
|
setupInstructions Json?
|
|
485
487
|
status Status @default(draft)
|
|
486
488
|
|
|
489
|
+
// ✅ NEW
|
|
490
|
+
capabilities Json?
|
|
491
|
+
examplePrompts String[]
|
|
492
|
+
|
|
487
493
|
createdAt DateTime @default(now())
|
|
488
494
|
updatedAt DateTime @updatedAt
|
|
489
495
|
Integration Integration[]
|