biz-slide-core 1.2.45 → 1.2.46
Sign up to get free protection for your applications and to get access to all the features.
- package/entity/ppt.entity.js +1 -2
- package/package.json +1 -1
package/entity/ppt.entity.js
CHANGED
@@ -16,7 +16,6 @@ var PPTSchema = new mongoose_1.Schema({
|
|
16
16
|
questions: { type: [String], default: [], _id: false },
|
17
17
|
colors: { type: [String], default: [], _id: false },
|
18
18
|
prompt: { type: String, default: null },
|
19
|
-
additionalPrompt: { type: String, default: null },
|
20
19
|
templateId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'template' },
|
21
20
|
hasError: { type: Boolean, default: false },
|
22
21
|
slideRefs: { type: [{ type: mongoose_1.Schema.Types.ObjectId, ref: 'ppt-slide' }], default: [], _id: false },
|
@@ -26,7 +25,7 @@ var PPTSchema = new mongoose_1.Schema({
|
|
26
25
|
sessionId: { type: String, default: null },
|
27
26
|
fileCreateCount: { type: Number, default: 0 },
|
28
27
|
language: { type: String, default: "English" },
|
29
|
-
|
28
|
+
addtionalInfoUrl: { type: String, default: null }
|
30
29
|
}, {
|
31
30
|
timestamps: true,
|
32
31
|
});
|