playov2-js-utilities 0.3.74 → 0.3.75

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.
@@ -115,7 +115,7 @@ const UserActivitySchema = new Schema({
115
115
  }],
116
116
  hostType: {
117
117
  type: String,
118
- enum: ['playo-game', 'regular'],
118
+ enum: ['playo-game', 'regular','voucher'],
119
119
  default: 'regular'
120
120
  },
121
121
  partialPayable: { type: Boolean, default: false },
@@ -3,7 +3,7 @@ const Filter = require("bad-words");
3
3
  const profanityFilter = new Filter();
4
4
  const profanityWordList = profanityWords.split(",");
5
5
 
6
- const excludeWords = ['swastik', 'swastika', 'islam'];
6
+ const excludeWords = ['swastik', 'swastika', 'islam','hang'];
7
7
 
8
8
  profanityFilter.addWords(...profanityWordList);
9
9
  profanityFilter.removeWords(...excludeWords)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "playov2-js-utilities",
3
- "version": "0.3.74",
3
+ "version": "0.3.75",
4
4
  "description": "Private package for JS utility functions",
5
5
  "main": "index.js",
6
6
  "scripts": {