biz-slide-core 1.0.7 → 1.0.8
Sign up to get free protection for your applications and to get access to all the features.
- package/entity/ppt.entity.ts +2 -0
- package/package.json +1 -1
package/entity/ppt.entity.ts
CHANGED
@@ -28,6 +28,7 @@ export interface IPPTSchema extends Document {
|
|
28
28
|
userId: string;
|
29
29
|
questions: IPPTQuestions[];
|
30
30
|
isLocked?: boolean;
|
31
|
+
fileCreated?: boolean;
|
31
32
|
isCompleted?: boolean;
|
32
33
|
createdAt?: Date;
|
33
34
|
updatedAt?: Date;
|
@@ -41,6 +42,7 @@ const PPTSchema = new Schema<IPPTSchema>(
|
|
41
42
|
deletedAt: { type: Date, default: null },
|
42
43
|
isLocked: { type: Boolean, default: false },
|
43
44
|
isCompleted: { type: Boolean, default: false },
|
45
|
+
fileCreated: { type: Boolean, default: false },
|
44
46
|
userId: { type: String, default: null },
|
45
47
|
template_type: { type: String, default: null },
|
46
48
|
systemGeneratedtopics: { type: [String], default: [], _id: false },
|