cloud-ide-model-schema 1.1.163 → 1.1.164

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.
@@ -39,11 +39,24 @@ var admission_application_main = new mongoose_1.Schema({
39
39
  maxlength: 100,
40
40
  trim: true
41
41
  },
42
+ admap_mother_name: {
43
+ type: String,
44
+ maxlength: 100,
45
+ trim: true,
46
+ comment: "Student's mother name"
47
+ },
42
48
  admap_preferred_name: {
43
49
  type: String,
44
50
  maxlength: 255,
45
51
  trim: true
46
52
  },
53
+ admap_primary_email: {
54
+ type: String,
55
+ maxlength: 255,
56
+ trim: true,
57
+ lowercase: true,
58
+ comment: "Student/Applicant primary email"
59
+ },
47
60
  admap_date_of_birth: {
48
61
  type: Date
49
62
  },
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "typescript": "^5.8.3"
10
10
  },
11
11
  "name": "cloud-ide-model-schema",
12
- "version": "1.1.163",
12
+ "version": "1.1.164",
13
13
  "description": "Pachage for schema management of Cloud IDEsys LMS",
14
14
  "main": "lib/index.js",
15
15
  "types": "lib/index.d.ts",