codebase-models 2.1.18 → 2.1.19

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.
@@ -59,7 +59,7 @@ const TestSchema = new mongoose_1.Schema({
59
59
  status: {
60
60
  type: String,
61
61
  default: "draft",
62
- enum: ["live", "draft", "ended", "paused", "preview", "running", "discard"]
62
+ enum: ["live", "draft", "ended", "paused", "preview", "running", "archive"]
63
63
  },
64
64
  name: { type: String, required: true },
65
65
  traffic_allocation: { type: Number, default: 100 },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codebase-models",
3
- "version": "2.1.18",
3
+ "version": "2.1.19",
4
4
  "description": "Common models for codebase",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -107,7 +107,7 @@ const TestSchema = new Schema<ITest>(
107
107
  status: {
108
108
  type: String,
109
109
  default: "draft",
110
- enum: ["live", "draft", "ended", "paused", "preview", "running", "discard"]
110
+ enum: ["live", "draft", "ended", "paused", "preview", "running", "archive"]
111
111
  },
112
112
  name: { type: String, required: true },
113
113
  traffic_allocation: { type: Number, default: 100 },