jp-shared 1.0.19 → 1.0.20
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.
|
@@ -98,6 +98,14 @@ const paymentHistorySchema = new mongoose.Schema(
|
|
|
98
98
|
type: Boolean,
|
|
99
99
|
required: [true, "isVerified is required"]
|
|
100
100
|
},
|
|
101
|
+
paymentId: {
|
|
102
|
+
type: String,
|
|
103
|
+
default: null,
|
|
104
|
+
},
|
|
105
|
+
orderId: {
|
|
106
|
+
type: String,
|
|
107
|
+
default: null,
|
|
108
|
+
},
|
|
101
109
|
jobOfferDiscountPercentage: {
|
|
102
110
|
type: Number,
|
|
103
111
|
required: function () {
|