@varaos/db 1.3.3 → 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.3",
3
+ "version": "1.3.4",
4
4
  "private": false,
5
5
  "main": "index.js",
6
6
  "files": [
@@ -0,0 +1,3 @@
1
+ -- AlterTable
2
+ ALTER TABLE "public"."integration_catalog" ADD COLUMN "capabilities" JSONB,
3
+ ADD COLUMN "examplePrompts" TEXT[];
@@ -486,6 +486,10 @@ model IntegrationCatalog {
486
486
  setupInstructions Json?
487
487
  status Status @default(draft)
488
488
 
489
+ // ✅ NEW
490
+ capabilities Json?
491
+ examplePrompts String[]
492
+
489
493
  createdAt DateTime @default(now())
490
494
  updatedAt DateTime @updatedAt
491
495
  Integration Integration[]