joye-backend-utility 4.1.1 → 4.1.3

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.
@@ -113,6 +113,10 @@ const Brew = new mongoose_1.Schema({
113
113
  type: String,
114
114
  required: true,
115
115
  },
116
+ rating: {
117
+ type: Number,
118
+ required: false,
119
+ },
116
120
  });
117
121
  Brew.index({ userId: 1, date: -1 }, {
118
122
  unique: false,
@@ -29,5 +29,9 @@ const MasterPodcast = new mongoose_1.Schema({
29
29
  default: false,
30
30
  required: false,
31
31
  },
32
+ tId: {
33
+ type: String,
34
+ required: false,
35
+ },
32
36
  });
33
37
  exports.MasterPodcastSchema = MasterPodcast;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joye-backend-utility",
3
- "version": "4.1.1",
3
+ "version": "4.1.3",
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",