flykup_model_development 3.1.22 → 3.1.23

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.
@@ -475,9 +475,9 @@ const orderSchema = new mongoose.Schema(
475
475
  expectedDeliveryDate: Date,
476
476
  shipmentBookedAt: Date,
477
477
  logisticsResponse: mongoose.Schema.Types.Mixed,
478
- shipmentBookingStatus: {
478
+ shipmentBookingStatus: {
479
479
  type: String,
480
- enum: ['pending', 'booked', 'failed','cancelled'],
480
+ enum: ['pending', 'booked', 'failed', 'cancelled', 'cancellation_failed'], // Add the new value here
481
481
  default: 'pending'
482
482
  },
483
483
  shipmentBookingError: String,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flykup_model_development",
3
- "version": "3.1.22",
3
+ "version": "3.1.23",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "private": false,