picker-db 3.7.3 → 3.7.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.
@@ -177,6 +177,11 @@ module.exports = (connection) => {
177
177
  trim: true,
178
178
  index: true,
179
179
  },
180
+ customerCountryCode: {
181
+ type: String,
182
+ required: false,
183
+ trim: true,
184
+ },
180
185
  customerImage: {
181
186
  thumbnail: { type: String, default: null },
182
187
  original: { type: String, default: null },
@@ -763,6 +768,16 @@ module.exports = (connection) => {
763
768
  tipBusiness: {
764
769
  type: Number
765
770
  },
771
+ onlyMyFleet: {
772
+ type: Boolean,
773
+ default: false,
774
+ },
775
+ rating: {
776
+ type: Number
777
+ },
778
+ review: {
779
+ type: String
780
+ },
766
781
  }, { timestamps: true });
767
782
 
768
783
  BookingSchema.pre("save", function (next) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "picker-db",
3
- "version": "3.7.3",
3
+ "version": "3.7.5",
4
4
  "description": "Picker DB services",
5
5
  "main": "index.js",
6
6
  "scripts": {