biz-slide-core 1.2.26 → 1.2.28
Sign up to get free protection for your applications and to get access to all the features.
@@ -4,7 +4,8 @@ exports.PPTSlideEventModel = void 0;
|
|
4
4
|
var mongoose_1 = require("mongoose");
|
5
5
|
var PPTEventSchema = new mongoose_1.Schema({
|
6
6
|
pptRef: { type: mongoose_1.Schema.Types.ObjectId, ref: 'ppt' },
|
7
|
-
message: { type: String, default: null }
|
7
|
+
message: { type: String, default: null },
|
8
|
+
event: { type: String, default: null },
|
8
9
|
}, {
|
9
10
|
timestamps: true,
|
10
11
|
});
|
package/entity/slide.entity.js
CHANGED
@@ -18,6 +18,7 @@ var SlideSchema = new mongoose_1.Schema({
|
|
18
18
|
slideLayoutId: { type: mongoose_1.Schema.Types.ObjectId, ref: "slide-layout" },
|
19
19
|
templateId: { type: mongoose_1.Schema.Types.ObjectId, ref: "template" },
|
20
20
|
deletedAt: { type: Date, default: null },
|
21
|
+
isDelete: { type: Boolean, default: false }
|
21
22
|
}, {
|
22
23
|
timestamps: true,
|
23
24
|
});
|