biz-slide-core 1.2.54 → 1.2.56
Sign up to get free protection for your applications and to get access to all the features.
package/entity/ppt.entity.js
CHANGED
@@ -25,6 +25,7 @@ var PPTSchema = new mongoose_1.Schema({
|
|
25
25
|
addtionalInfoUrl: { type: String, default: null },
|
26
26
|
info: { type: String, default: null },
|
27
27
|
prompt: { type: String, default: null },
|
28
|
+
promptAlias: { type: String, default: null },
|
28
29
|
noOfSlides: { type: Number, default: null },
|
29
30
|
appName: { type: String, default: null },
|
30
31
|
navigateFromGPT: { type: Boolean, default: false },
|
@@ -33,6 +33,15 @@ var TemplateTypeSchema = new mongoose_1.Schema({
|
|
33
33
|
layoutPrompt: systemSchema,
|
34
34
|
defaultLayout: { type: String, default: "" },
|
35
35
|
deletedAt: { type: Date, default: null },
|
36
|
+
colorPalletes: {
|
37
|
+
type: [
|
38
|
+
{
|
39
|
+
type: [String],
|
40
|
+
default: [],
|
41
|
+
_id: false
|
42
|
+
}
|
43
|
+
], default: [], _id: false
|
44
|
+
},
|
36
45
|
}, {
|
37
46
|
timestamps: true,
|
38
47
|
});
|