joye-backend-utility 5.0.12 → 5.0.13

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.
@@ -39,13 +39,18 @@ const Organization = new mongoose_1.Schema({
39
39
  streakPercentage: {
40
40
  type: Number,
41
41
  default: 10,
42
- required: false
42
+ required: false,
43
43
  },
44
44
  streakQualifier: {
45
45
  type: Number,
46
46
  default: 3,
47
47
  required: false,
48
48
  },
49
+ praiseThanksQualifier: {
50
+ type: Number,
51
+ default: 5,
52
+ required: false,
53
+ },
49
54
  subscriptionEndDate: {
50
55
  type: Number,
51
56
  required: false,
@@ -158,6 +158,6 @@ const User = new mongoose_1.Schema({
158
158
  type: Boolean,
159
159
  default: false,
160
160
  required: false,
161
- }
161
+ },
162
162
  });
163
163
  exports.UserSchema = User;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joye-backend-utility",
3
- "version": "5.0.12",
3
+ "version": "5.0.13",
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",