flykup_model_development 3.1.69 → 3.1.71

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.
@@ -131,6 +131,10 @@ const ProductListingSchema = new Schema(
131
131
  type: Boolean,
132
132
  default: true,
133
133
  },
134
+ shopifySynced: {
135
+ type: Boolean,
136
+ default: false,
137
+ },
134
138
  ratingSummary: {
135
139
  averageRating: { type: Number, default: 0 },
136
140
  totalRatings: { type: Number, default: 0 },
@@ -0,0 +1,4 @@
1
+ Seller Name,Owner Name,Email,Mobile,Total Amount,Total Orders,Total Products,Account Number,IFSC Code,Bank Name
2
+ "HARISH A","HARISH A","thebrandspot@gmail.com","THEBRANDSPOT","1270","38","38","","",""
3
+ "Shanthi","Shanthi","shanthiaravindan81@gmail.com","+919500060775","450","1","1","","",""
4
+ "Gokul Krishnan","Gokul Krishnan","gkgokul1817@gmail.com","gokul_krishnan","55","1","1","","",""
@@ -61,6 +61,12 @@ const UserSchema = new mongoose.Schema(
61
61
  },
62
62
  default: null,
63
63
  },
64
+ gender: {
65
+ type: String,
66
+ enum: ["male", "female", "other", "prefer-not-to-say"],
67
+ lowercase: true,
68
+ default: null
69
+ },
64
70
  accessAllowed: { type: Boolean, default: true },
65
71
  oAuth: {
66
72
  type: String,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flykup_model_development",
3
- "version": "3.1.69",
3
+ "version": "3.1.71",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "private": false,