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
  });
@@ -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
  });
@@ -6,6 +6,7 @@ var questionSchema = new mongoose_1.Schema({
6
6
  question: { type: String },
7
7
  systemMessage: { type: String },
8
8
  keyId: { type: String },
9
+ placeholder: { type: String },
9
10
  }, {
10
11
  timestamps: false,
11
12
  _id: false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "biz-slide-core",
3
- "version": "1.2.26",
3
+ "version": "1.2.28",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {