biz-slide-core 1.2.44 → 1.2.45
Sign up to get free protection for your applications and to get access to all the features.
package/entity/ppt.entity.js
CHANGED
@@ -16,6 +16,7 @@ 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 },
|
19
20
|
templateId: { type: mongoose_1.Schema.Types.ObjectId, ref: 'template' },
|
20
21
|
hasError: { type: Boolean, default: false },
|
21
22
|
slideRefs: { type: [{ type: mongoose_1.Schema.Types.ObjectId, ref: 'ppt-slide' }], default: [], _id: false },
|
@@ -25,6 +26,7 @@ var PPTSchema = new mongoose_1.Schema({
|
|
25
26
|
sessionId: { type: String, default: null },
|
26
27
|
fileCreateCount: { type: Number, default: 0 },
|
27
28
|
language: { type: String, default: "English" },
|
29
|
+
hasUploadFile: { type: Boolean, default: false }
|
28
30
|
}, {
|
29
31
|
timestamps: true,
|
30
32
|
});
|
@@ -12,6 +12,9 @@ var questionSchema = new mongoose_1.Schema({
|
|
12
12
|
keyId: { type: String },
|
13
13
|
answerKeyName: { type: String },
|
14
14
|
systemMessage: { type: String },
|
15
|
+
caption: { type: String },
|
16
|
+
question: { type: String },
|
17
|
+
placeholder: { type: String },
|
15
18
|
language: {
|
16
19
|
type: Map,
|
17
20
|
of: questionLanguageSchema
|