joye-backend-utility 5.0.31 → 5.0.33

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.
@@ -81,6 +81,10 @@ const User = new mongoose_1.Schema({
81
81
  type: String,
82
82
  required: false,
83
83
  },
84
+ officeLocation: {
85
+ type: String,
86
+ required: false,
87
+ },
84
88
  // Optional user attributes end
85
89
  notificationDate: {
86
90
  type: String,
@@ -164,6 +168,10 @@ const User = new mongoose_1.Schema({
164
168
  type: String,
165
169
  required: false,
166
170
  },
171
+ appreciationDate: {
172
+ type: String,
173
+ required: false,
174
+ },
167
175
  consent: {
168
176
  type: Boolean,
169
177
  required: false,
@@ -35,6 +35,10 @@ const UserMessageLog = new mongoose_1.Schema({
35
35
  type: Boolean,
36
36
  required: false,
37
37
  },
38
+ appreciation: {
39
+ type: Boolean,
40
+ required: false,
41
+ },
38
42
  saved: {
39
43
  type: Boolean,
40
44
  default: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joye-backend-utility",
3
- "version": "5.0.31",
3
+ "version": "5.0.33",
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",