playov2-js-utilities 0.4.6 → 0.4.7

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.
@@ -21,7 +21,7 @@ const JerseyInventorySchema = new Schema(
21
21
  id: { type: String, default: uuidv4, unique: true },
22
22
 
23
23
  // 0 - home, 1 - away, 2 - third, etc.
24
- category: { type: string, required: true, default: "default" },
24
+ category: { type: String, required: true, default: "default" },
25
25
 
26
26
  // Optional sport association
27
27
  sportId: { type: String, default: null },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "playov2-js-utilities",
3
- "version": "0.4.6",
3
+ "version": "0.4.7",
4
4
  "description": "Private package for JS utility functions",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/run.js DELETED
@@ -1,13 +0,0 @@
1
- const { checkProfanity } = require("./lib/profanityFilter/profanityFilter")
2
-
3
-
4
- function checkfilter() {
5
- console.log(checkProfanity(`Hi there, Playoholics!
6
- If you've ed here,
7
- Let’s hit th court and make some magic!
8
- `
9
- ))
10
- }
11
-
12
- checkfilter()
13
-