biz-slide-core 1.2.69 → 1.2.71
Sign up to get free protection for your applications and to get access to all the features.
package/entity/ppt.entity.js
CHANGED
@@ -6,7 +6,7 @@ var PPTSchema = new mongoose_1.Schema({
|
|
6
6
|
deletedAt: { type: Date, default: null },
|
7
7
|
isLocked: { type: Boolean, default: false },
|
8
8
|
isCompleted: { type: Boolean, default: false },
|
9
|
-
fileCreated: { type: Boolean, default: false },
|
9
|
+
fileCreated: { type: Boolean, default: false }, // S3 file creation
|
10
10
|
userId: { type: String, default: null },
|
11
11
|
templateTypeId: { type: mongoose_1.Schema.Types.ObjectId, ref: "template-type" },
|
12
12
|
systemGeneratedtopics: { type: [String], default: [], _id: false },
|
@@ -29,7 +29,8 @@ var PPTSchema = new mongoose_1.Schema({
|
|
29
29
|
noOfSlides: { type: Number, default: null },
|
30
30
|
appName: { type: String, default: null },
|
31
31
|
navigateFromGPT: { type: Boolean, default: false },
|
32
|
-
googleDriveId: { type: String, default: null }
|
32
|
+
googleDriveId: { type: String, default: null }, // google file creation
|
33
|
+
isPartialFile: { type: Boolean, default: false } // was free file created
|
33
34
|
}, {
|
34
35
|
timestamps: true,
|
35
36
|
});
|
@@ -19,6 +19,7 @@ var systemSchema = new mongoose_1.Schema({
|
|
19
19
|
var SlideLayoutSchema = new mongoose_1.Schema({
|
20
20
|
published: { type: Boolean, default: false },
|
21
21
|
name: { type: String, default: "", required: true },
|
22
|
+
displayName: { type: String, default: "" },
|
22
23
|
alias: { type: [String], default: [], _id: false },
|
23
24
|
templateTypeId: { type: mongoose_1.Schema.Types.ObjectId, ref: "template-type" },
|
24
25
|
deletedAt: { type: Date, default: null },
|