jp-shared 1.1.9 → 1.1.10

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.
@@ -51,6 +51,10 @@ const schema = new Schema(
51
51
  minlength: [2, "Designation must be at least 2 characters long"],
52
52
  maxlength: [50, "Designation cannot exceed 50 characters"],
53
53
  },
54
+ isFroozen: {
55
+ type: Boolean,
56
+ default: false
57
+ },
54
58
  },
55
59
  { timestamps: { createdAt: true, updatedAt: true } }
56
60
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jp-shared",
3
- "version": "1.1.9",
3
+ "version": "1.1.10",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"