biz-slide-core 1.2.66 → 1.2.67

Sign up to get free protection for your applications and to get access to all the features.
@@ -24,7 +24,9 @@ var SlideLayoutSchema = new mongoose_1.Schema({
24
24
  deletedAt: { type: Date, default: null },
25
25
  insertSelectionPrompt: systemSchema,
26
26
  newSelectionPrompt: systemSchema,
27
- catgeory: { type: String, default: "Default" }
27
+ category: { type: String, default: "Default" },
28
+ subCategory: { type: [String], default: [], _id: false },
29
+ slideSelectionQuestion: { type: String, default: "" }
28
30
  }, {
29
31
  timestamps: true,
30
32
  });
@@ -21,7 +21,8 @@ var SlideSchema = new mongoose_1.Schema({
21
21
  deletedAt: { type: Date, default: null },
22
22
  isDelete: { type: Boolean, default: false },
23
23
  stage: { type: String, default: "" },
24
- isDefault: { type: Boolean, default: false }
24
+ isDefault: { type: Boolean, default: false },
25
+ category: { type: String, default: "Default" }
25
26
  }, {
26
27
  timestamps: true,
27
28
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "biz-slide-core",
3
- "version": "1.2.66",
3
+ "version": "1.2.67",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {