jp-shared 1.0.15 → 1.0.17

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.
@@ -94,6 +94,10 @@ const paymentHistorySchema = new mongoose.Schema(
94
94
  type: Boolean,
95
95
  required: [true, "Job offer status is required"],
96
96
  },
97
+ isVerified: {
98
+ type: Boolean,
99
+ required: [true, "isVerified is required"]
100
+ },
97
101
  jobOfferDiscountPercentage: {
98
102
  type: Number,
99
103
  required: function () {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jp-shared",
3
- "version": "1.0.15",
3
+ "version": "1.0.17",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"