joye-backend-utility 7.2.8 → 7.2.10

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.
@@ -33,6 +33,10 @@ const Platform = new mongoose_1.Schema({
33
33
  required: false,
34
34
  default: false,
35
35
  },
36
+ notificationDays: {
37
+ type: Array,
38
+ required: false,
39
+ },
36
40
  // Sample data
37
41
  /* aiModels: {
38
42
  "brew": "claude-sonnet-4-20250514",
@@ -115,6 +115,10 @@ const UserAnalytic = new mongoose_1.Schema({
115
115
  type: Boolean,
116
116
  required: false,
117
117
  },
118
+ dailySuggestion: {
119
+ type: Object,
120
+ required: false,
121
+ },
118
122
  });
119
123
  UserAnalytic.index({ employeeId: 1, weekNumber: -1, year: -1, date: -1 });
120
124
  UserAnalytic.index({ employeeId: 1, month: -1, year: -1, date: -1 });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joye-backend-utility",
3
- "version": "7.2.8",
3
+ "version": "7.2.10",
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",