joye-backend-utility 3.0.17 → 3.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -20,5 +20,9 @@ const MasterPodcastSchema = new mongoose_1.Schema({
20
20
  type: String,
21
21
  required: false,
22
22
  },
23
+ duration: {
24
+ type: String,
25
+ required: false,
26
+ },
23
27
  });
24
28
  exports.MasterPodcastModel = (0, mongoose_1.model)('Master_Podcast', MasterPodcastSchema);
@@ -126,6 +126,10 @@ const UserSchema = new mongoose_1.Schema({
126
126
  type: String,
127
127
  required: false,
128
128
  },
129
+ cardPodcastClickCount: {
130
+ type: Number,
131
+ required: false,
132
+ },
129
133
  });
130
134
  const userModel = (0, mongoose_1.model)('User', UserSchema);
131
135
  userModel.syncIndexes();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joye-backend-utility",
3
- "version": "3.0.17",
3
+ "version": "3.0.18",
4
4
  "description": "Joye backend utility for db functions and common functions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",