shuttlepro-shared 1.2.58 → 1.2.59
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.
- package/config/database.js +1 -4
- package/models/Order.js +5 -1
- package/package.json +2 -2
package/config/database.js
CHANGED
package/models/Order.js
CHANGED
|
@@ -108,7 +108,11 @@ const OrderSchema = new Schema(
|
|
|
108
108
|
ivrGenerated: { type: Boolean, default: false },
|
|
109
109
|
isActivityGenerated: { type: Boolean, default: false },
|
|
110
110
|
platformFinancialStatus: { type: String, default: "pending" },
|
|
111
|
-
payment: {
|
|
111
|
+
payment: {
|
|
112
|
+
isPaid: { type: Boolean, default: false },
|
|
113
|
+
paymentDate: { type: String, default: "" },
|
|
114
|
+
paymentDetails: {},
|
|
115
|
+
},
|
|
112
116
|
credentials: {},
|
|
113
117
|
sender: { type: String, default: "" },
|
|
114
118
|
orderName: { type: String, default: "" },
|