biz-slide-core 1.2.78 → 1.2.80
Sign up to get free protection for your applications and to get access to all the features.
@@ -10,7 +10,8 @@ var EmailTemplateStatusSchema = new mongoose_1.Schema({
|
|
10
10
|
});
|
11
11
|
var CustomerSchema = new mongoose_1.Schema({
|
12
12
|
appName: { type: String, required: true },
|
13
|
-
userId: { type: String,
|
13
|
+
userId: { type: String, required: true },
|
14
|
+
emailId: { type: String, default: "" },
|
14
15
|
emailTemplateStatus: { type: Map, of: EmailTemplateStatusSchema }
|
15
16
|
}, {
|
16
17
|
timestamps: true,
|
package/entity/ppt.entity.js
CHANGED
@@ -8,7 +8,6 @@ var PPTSchema = new mongoose_1.Schema({
|
|
8
8
|
isCompleted: { type: Boolean, default: false },
|
9
9
|
fileCreated: { type: Boolean, default: false }, // S3 file creation
|
10
10
|
userId: { type: String, default: null },
|
11
|
-
emailId: { type: String, default: null },
|
12
11
|
templateTypeId: { type: mongoose_1.Schema.Types.ObjectId, ref: "template-type" },
|
13
12
|
systemGeneratedtopics: { type: [String], default: [], _id: false },
|
14
13
|
userSelectedTopics: { type: [String], default: [], _id: false },
|