biz-slide-core 1.2.38 → 1.2.39
Sign up to get free protection for your applications and to get access to all the features.
- package/entity/ppt.entity.js +2 -1
- package/package.json +1 -1
package/entity/ppt.entity.js
CHANGED
@@ -18,7 +18,8 @@ var PPTSchema = new mongoose_1.Schema({
|
|
18
18
|
prompt: { type: String, default: null },
|
19
19
|
templateId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'template' },
|
20
20
|
hasError: { type: Boolean, default: false },
|
21
|
-
slideRefs: { type: [{ type: mongoose_1.Schema.Types.ObjectId, ref: 'ppt-slide' }], default: [], _id: false }
|
21
|
+
slideRefs: { type: [{ type: mongoose_1.Schema.Types.ObjectId, ref: 'ppt-slide' }], default: [], _id: false },
|
22
|
+
version: { type: String, default: null },
|
22
23
|
}, {
|
23
24
|
timestamps: true,
|
24
25
|
});
|