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.
@@ -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 },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "biz-slide-core",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {