joye-backend-utility 5.1.3 → 5.1.5

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.
@@ -19,6 +19,10 @@ const OrganizationUserAttrPermission = new mongoose_1.Schema({
19
19
  type: String,
20
20
  required: false,
21
21
  },
22
+ privacyBlockImage: {
23
+ type: String,
24
+ required: false,
25
+ },
22
26
  email: {
23
27
  type: String,
24
28
  required: false,
@@ -45,5 +49,11 @@ const OrganizationUserAttrPermission = new mongoose_1.Schema({
45
49
  required: false,
46
50
  default: false,
47
51
  },
52
+ enableHubUninstallSection: {
53
+ // If set to true then only display "Uninstall" session in Hub card
54
+ type: Boolean,
55
+ required: false,
56
+ default: false,
57
+ },
48
58
  });
49
59
  exports.OrganizationUserAttrPermissionSchema = OrganizationUserAttrPermission;
@@ -17,10 +17,12 @@ const userJoyLevelQa = new mongoose_1.Schema({
17
17
  required: true,
18
18
  },
19
19
  question: {
20
+ // If value if "Brew" then it will be treated as entry from brews table
20
21
  type: String,
21
22
  required: true,
22
23
  },
23
24
  answer: {
25
+ // If value if "Brew" then it will be treated as entry from brews table
24
26
  type: String,
25
27
  required: true,
26
28
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joye-backend-utility",
3
- "version": "5.1.3",
3
+ "version": "5.1.5",
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",