|
|
|
@ -15,14 +15,14 @@ const installationschema = new mongoose.Schema({
|
|
|
|
|
oneTimePasswordSetFlag: { type: Boolean, default: false },
|
|
|
|
|
emails: [{ email: String, verified: { type: Boolean, default: false } }],
|
|
|
|
|
services: { password: { bcrypt: String } },
|
|
|
|
|
|
|
|
|
|
alternativeNumber: { type: String, default: null },
|
|
|
|
|
firstName: { type: String, default: null },
|
|
|
|
|
lastName: { type: String, default: null },
|
|
|
|
|
address1: { type: String, default: null },
|
|
|
|
|
address2: { type: String, default: null },
|
|
|
|
|
city: { type: String, default: null },
|
|
|
|
|
profile: {
|
|
|
|
|
alternativeNumber: { type: String, default: null },
|
|
|
|
|
firstName: { type: String, default: null },
|
|
|
|
|
lastName: { type: String, default: null },
|
|
|
|
|
address1: { type: String, default: null },
|
|
|
|
|
address2: { type: String, default: null },
|
|
|
|
|
city: { type: String, default: null },
|
|
|
|
|
|
|
|
|
|
state: { type: String, default: null },
|
|
|
|
|
country: { type: String, default: null },
|
|
|
|
|
},
|
|
|
|
|