biz-slide-core 1.2.65 → 1.2.67
Sign up to get free protection for your applications and to get access to all the features.
@@ -23,7 +23,10 @@ var SlideLayoutSchema = new mongoose_1.Schema({
|
|
23
23
|
templateTypeId: { type: mongoose_1.Schema.Types.ObjectId, ref: "template-type" },
|
24
24
|
deletedAt: { type: Date, default: null },
|
25
25
|
insertSelectionPrompt: systemSchema,
|
26
|
-
newSelectionPrompt: systemSchema
|
26
|
+
newSelectionPrompt: systemSchema,
|
27
|
+
category: { type: String, default: "Default" },
|
28
|
+
subCategory: { type: [String], default: [], _id: false },
|
29
|
+
slideSelectionQuestion: { type: String, default: "" }
|
27
30
|
}, {
|
28
31
|
timestamps: true,
|
29
32
|
});
|
package/entity/slide.entity.js
CHANGED
@@ -22,7 +22,7 @@ var SlideSchema = new mongoose_1.Schema({
|
|
22
22
|
isDelete: { type: Boolean, default: false },
|
23
23
|
stage: { type: String, default: "" },
|
24
24
|
isDefault: { type: Boolean, default: false },
|
25
|
-
|
25
|
+
category: { type: String, default: "Default" }
|
26
26
|
}, {
|
27
27
|
timestamps: true,
|
28
28
|
});
|