biz-slide-core 1.2.55 → 1.2.56
Sign up to get free protection for your applications and to get access to all the features.
@@ -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
|
});
|