flykup_model_development 2.0.6 → 2.0.7

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.
@@ -289,7 +289,8 @@ const SellerSchema = new mongoose.Schema(
289
289
  start: { type: String, default: '09:00' },
290
290
  end: { type: String, default: '18:00' }
291
291
  }
292
- }
292
+ },
293
+
293
294
  },
294
295
  { timestamps: true, strict: true }
295
296
  );
@@ -93,6 +93,10 @@ const UserSchema = new mongoose.Schema(
93
93
  },
94
94
  ],
95
95
  filledNewSellerForm: { type: Boolean, default: false },
96
+ sellerApplicationDraft: {
97
+ type: Schema.Types.Mixed,
98
+ default: null,
99
+ },
96
100
 
97
101
  // --- Verification Flow Fields ---
98
102
  verificationFlowStatus: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flykup_model_development",
3
- "version": "2.0.6",
3
+ "version": "2.0.7",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "private": false,