picker-db 3.9.3 → 3.9.5

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.
@@ -771,6 +771,10 @@ module.exports = (connection) => {
771
771
  type: Boolean,
772
772
  default: false,
773
773
  },
774
+ requiresProofOfDelivery: {
775
+ type: Boolean,
776
+ default: false,
777
+ },
774
778
  proofValidationCode: {
775
779
  type: String,
776
780
  },
@@ -862,6 +866,9 @@ module.exports = (connection) => {
862
866
  lastResponsable: {
863
867
  type: String,
864
868
  },
869
+ scrapperFail: {
870
+ type: Boolean
871
+ }
865
872
  }, { timestamps: true });
866
873
 
867
874
  BookingSchema.pre("save", function (next) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "picker-db",
3
- "version": "3.9.3",
3
+ "version": "3.9.5",
4
4
  "description": "Picker DB services",
5
5
  "main": "index.js",
6
6
  "scripts": {