biz-slide-core 1.2.57 → 1.2.59
Sign up to get free protection for your applications and to get access to all the features.
@@ -9,6 +9,7 @@ var PPTSlideSchema = new mongoose_1.Schema({
|
|
9
9
|
slideLayoutRef: { type: mongoose_1.Schema.Types.ObjectId, ref: 'slide-layout' },
|
10
10
|
title: { type: String, default: null },
|
11
11
|
rawData: { type: String, default: "{}" },
|
12
|
+
originalData: { type: String, default: "{}" },
|
12
13
|
images: { type: String, default: "{}" },
|
13
14
|
istmp: { type: Boolean, default: false }
|
14
15
|
}, {
|
@@ -38,6 +38,7 @@ var TemplateTypeSchema = new mongoose_1.Schema({
|
|
38
38
|
slidePrompt: messageSchema,
|
39
39
|
topicPrompt: variantsSystemSchema,
|
40
40
|
layoutPrompt: variantsSystemSchema,
|
41
|
+
insertTopicPrompt: systemSchema,
|
41
42
|
defaultLayout: { type: String, default: "" },
|
42
43
|
deletedAt: { type: Date, default: null },
|
43
44
|
colorPalletes: {
|