biz-slide-core 1.2.65 → 1.2.66
Sign up to get free protection for your applications and to get access to all the features.
@@ -23,7 +23,8 @@ 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
|
+
catgeory: { type: String, default: "Default" }
|
27
28
|
}, {
|
28
29
|
timestamps: true,
|
29
30
|
});
|
package/entity/slide.entity.js
CHANGED
@@ -21,8 +21,7 @@ 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 }
|
25
|
-
catgeory: { type: String, default: "Default" },
|
24
|
+
isDefault: { type: Boolean, default: false }
|
26
25
|
}, {
|
27
26
|
timestamps: true,
|
28
27
|
});
|