@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@varaos/db",
3
- "version": "1.3.2",
3
+ "version": "1.3.4",
4
4
  "private": false,
5
5
  "main": "index.js",
6
6
  "files": [
@@ -0,0 +1,2 @@
1
+ -- AlterEnum
2
+ ALTER TYPE "public"."SubscriptionStatus" ADD VALUE 'created';
@@ -0,0 +1,3 @@
1
+ -- AlterTable
2
+ ALTER TABLE "public"."integration_catalog" ADD COLUMN "capabilities" JSONB,
3
+ ADD COLUMN "examplePrompts" TEXT[];
@@ -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[]