@taiger-common/model 1.0.30 → 1.0.31

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.
@@ -47,6 +47,9 @@ var userSchema = new mongoose_1.Schema({
47
47
  lowercase: true,
48
48
  validate: [isEmail_1.default, 'Invalid email address']
49
49
  },
50
+ pictureUrl: {
51
+ type: String
52
+ },
50
53
  password: {
51
54
  type: String,
52
55
  select: false,
@@ -42,6 +42,9 @@ var userSchema = new Schema({
42
42
  lowercase: true,
43
43
  validate: [isEmail, 'Invalid email address']
44
44
  },
45
+ pictureUrl: {
46
+ type: String
47
+ },
45
48
  password: {
46
49
  type: String,
47
50
  select: false,