@varaos/db 1.2.0 → 1.3.0

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.2.0",
3
+ "version": "1.3.0",
4
4
  "private": false,
5
5
  "main": "index.js",
6
6
  "files": [
@@ -0,0 +1,5 @@
1
+ -- AlterEnum
2
+ ALTER TYPE "public"."WorkflowStatus" ADD VALUE 'draft';
3
+
4
+ -- AlterEnum
5
+ ALTER TYPE "public"."WorkflowStepStatus" ADD VALUE 'draft';
@@ -91,6 +91,7 @@ enum SubscriptionStatus {
91
91
  }
92
92
 
93
93
  enum WorkflowStatus {
94
+ draft
94
95
  active
95
96
  paused
96
97
  archived
@@ -104,6 +105,7 @@ enum WorkflowRunStatus {
104
105
  }
105
106
 
106
107
  enum WorkflowStepStatus {
108
+ draft
107
109
  active
108
110
  paused
109
111
  deprecated