picker-db 4.5.5 → 4.5.7

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.
@@ -909,6 +909,9 @@ module.exports = (connection) => {
909
909
  paymentInfoRequired: {
910
910
  type: Boolean,
911
911
  },
912
+ isPaidUponDelivery: {
913
+ type: Boolean,
914
+ },
912
915
  preBookingID: {
913
916
  type: connection.base.Schema.ObjectId,
914
917
  default: null,
@@ -31,6 +31,10 @@ module.exports = (connection) => {
31
31
  PNF_REASON.PROVIDER_ERROR,
32
32
  ],
33
33
  },
34
+ origin: {
35
+ type: String,
36
+ required: false,
37
+ }
34
38
  }, { timestamps: false });
35
39
 
36
40
  return MiniBookingSchema;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "picker-db",
3
- "version": "4.5.5",
3
+ "version": "4.5.7",
4
4
  "description": "Picker DB services",
5
5
  "main": "index.js",
6
6
  "scripts": {