flykup_model_development 3.1.43 → 3.1.44

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.
@@ -150,7 +150,11 @@ const UserSchema = new mongoose.Schema(
150
150
  },
151
151
  isAutoPaymentEnabled: { type: Boolean, default: false },
152
152
  autoPaymentSetupDate: { type: Date },
153
-
153
+ onboardingStatus: {
154
+ type: String,
155
+ enum: ["pending", "completed"],
156
+ default: "completed" // Default to completed for existing users
157
+ },
154
158
  deviceInfo: {
155
159
  deviceId: { type: String, default: null },
156
160
  appPlatform: { type: String, enum: ["android", "ios", "web"], default: "web" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flykup_model_development",
3
- "version": "3.1.43",
3
+ "version": "3.1.44",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "private": false,