picker-db 3.9.7 → 3.9.9

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.
@@ -263,6 +263,9 @@ module.exports = (connection) => {
263
263
  type: String,
264
264
  default: null,
265
265
  },
266
+ deliveryZone: {
267
+ type: String,
268
+ },
266
269
  deliveryState: {
267
270
  type: String,
268
271
  default: null,
@@ -552,6 +555,7 @@ module.exports = (connection) => {
552
555
  default: 0,
553
556
  },
554
557
  providerFeeNoMarkup: { type: Number, min: 0 },
558
+ restartPenaltyFee: { type: Number, default: 0 },
555
559
  },
556
560
  pendingAmount: {
557
561
  type: Number,
@@ -829,6 +833,8 @@ module.exports = (connection) => {
829
833
  totalReassignments: { type: Number, default: 0 },
830
834
  assignManually: { type: Number, default: 0 },
831
835
  restartSearch: { type: Number, default: 0 },
836
+ restartByBusiness: { type: Number, default: 0 },
837
+ restartByBusinessWithPenalty: { type: Number, default: 0 },
832
838
  },
833
839
  bookingAutoAccepted: {
834
840
  type: Boolean,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "picker-db",
3
- "version": "3.9.7",
3
+ "version": "3.9.9",
4
4
  "description": "Picker DB services",
5
5
  "main": "index.js",
6
6
  "scripts": {