shuttlepro-shared 1.4.10 → 1.4.11

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.
@@ -24,8 +24,9 @@ const CustomerProfileSchema = new Schema(
24
24
  default: null,
25
25
  },
26
26
  body: {},
27
- suspend: { type: Boolean, default: false }, // For Delete Comment Check
28
- spam: { type: Boolean, default: false }, // For Hide Comment Check
27
+ blocked: { type: Boolean, default: false }, // To Block User (Current Automation case)
28
+ hideComments: { type: Boolean, default: false }, // For Hide Comment Check
29
+ deleteComments: { type: Boolean, default: false }, // For Delete Comment Check
29
30
  },
30
31
  { timestamps: true, toJSON: { virtuals: true }, toObject: { virtuals: true } }
31
32
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shuttlepro-shared",
3
- "version": "1.4.10",
3
+ "version": "1.4.11",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {