biz-slide-core 1.2.53 → 1.2.55
Sign up to get free protection for your applications and to get access to all the features.
- package/entity/ppt.entity.js +2 -0
- package/package.json +1 -1
package/entity/ppt.entity.js
CHANGED
@@ -25,9 +25,11 @@ var PPTSchema = new mongoose_1.Schema({
|
|
25
25
|
addtionalInfoUrl: { type: String, default: null },
|
26
26
|
info: { type: String, default: null },
|
27
27
|
prompt: { type: String, default: null },
|
28
|
+
promptAlias: { type: String, default: null },
|
28
29
|
noOfSlides: { type: Number, default: null },
|
29
30
|
appName: { type: String, default: null },
|
30
31
|
navigateFromGPT: { type: Boolean, default: false },
|
32
|
+
googleDriveId: { type: String, default: null }
|
31
33
|
}, {
|
32
34
|
timestamps: true,
|
33
35
|
});
|