cloud-ide-model-schema 1.1.111 → 1.1.113

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.
@@ -22,11 +22,19 @@ var aca_prg_trm_section = new mongoose_1.Schema({
22
22
  type: Number,
23
23
  default: 0
24
24
  },
25
+ acapts_description: {
26
+ type: String,
27
+ trim: true
28
+ },
25
29
  acapts_class_program_id_acacpm: {
26
30
  type: mongoose_1.default.Schema.Types.ObjectId,
27
31
  ref: "aca_class_program_master",
28
32
  required: true
29
33
  },
34
+ acapts_class_program_branch_id_acabrn: {
35
+ type: mongoose_1.default.Schema.Types.ObjectId,
36
+ ref: "aca_class_prg_branch"
37
+ },
30
38
  acapts_parent_class_prog_term_acapt: {
31
39
  type: mongoose_1.default.Schema.Types.ObjectId,
32
40
  ref: "aca_class_program_term",
@@ -39,6 +47,10 @@ var aca_prg_trm_section = new mongoose_1.Schema({
39
47
  acapts_islocked: {
40
48
  type: Boolean,
41
49
  default: false
50
+ },
51
+ acapts_iscurrent: {
52
+ type: Boolean,
53
+ default: false
42
54
  }
43
55
  }, { collection: 'aca_prg_trm_section' });
44
56
  var CAcaPrgTrmSection = mongoose_1.default.model("aca_prg_trm_section", aca_prg_trm_section);
@@ -35,6 +35,10 @@ var core_general_master = new mongoose_1.Schema({
35
35
  type: mongoose_1.default.Schema.Types.ObjectId,
36
36
  ref: 'core_system_entity'
37
37
  },
38
+ sygms_id_sygms: {
39
+ type: mongoose_1.default.Schema.Types.ObjectId,
40
+ ref: 'core_general_master'
41
+ },
38
42
  sygms_isactive: {
39
43
  type: Boolean,
40
44
  default: true
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.111",
12
+ "version": "1.1.113",
13
13
  "description": "Pachage for schema management of Cloud IDEsys LMS",
14
14
  "main": "lib/index.js",
15
15
  "types": "lib/index.d.ts",