flykup_model_production 1.0.24 → 1.0.25

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.
@@ -163,6 +163,11 @@ const UserSchema = new mongoose.Schema(
163
163
  type: String,
164
164
  enum: ["pending","profile_setup", "completed"],
165
165
  default: "completed" // Default to completed for existing users
166
+ },
167
+ preferredPayment: {
168
+ type: String,
169
+ enum: ["flykup_balance", "payment_gateway", null],
170
+ default: null,
166
171
  },
167
172
  deviceInfo: {
168
173
  deviceId: { type: String, default: null },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flykup_model_production",
3
- "version": "1.0.24",
3
+ "version": "1.0.25",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "private": false,