cloud-ide-model-schema 1.1.82 → 1.1.83

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.
@@ -0,0 +1,8 @@
1
+ import { AcaClassPrgBranch } from "cloud-ide-lms-model";
2
+ import mongoose from "mongoose";
3
+ declare const CAcaClassPrgBranch: mongoose.Model<AcaClassPrgBranch, {}, {}, {}, mongoose.Document<unknown, {}, AcaClassPrgBranch, {}> & AcaClassPrgBranch & Required<{
4
+ _id: string;
5
+ }> & {
6
+ __v: number;
7
+ }, any>;
8
+ export { CAcaClassPrgBranch };
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CAcaClassPrgBranch = void 0;
4
+ var mongoose_1 = require("mongoose");
5
+ /* SCHEMA START */
6
+ var aca_class_prg_branch = new mongoose_1.Schema({
7
+ acabrn_class_program_id_acacpm: {
8
+ type: mongoose_1.default.Schema.Types.ObjectId,
9
+ ref: "aca_class_program_master",
10
+ required: true
11
+ },
12
+ acabrn_name: {
13
+ type: String,
14
+ required: true,
15
+ minlength: 1,
16
+ maxlength: 100,
17
+ trim: true
18
+ },
19
+ acabm_code: {
20
+ type: String,
21
+ minlength: 0,
22
+ maxlength: 15,
23
+ trim: true
24
+ },
25
+ acabm_sequence: {
26
+ type: Number,
27
+ default: 0
28
+ },
29
+ acabm_isactive: {
30
+ type: Boolean,
31
+ default: true
32
+ },
33
+ acabm_islocked: {
34
+ type: Boolean,
35
+ default: false
36
+ }
37
+ }, { collection: 'aca_class_prg_branch' });
38
+ var CAcaClassPrgBranch = mongoose_1.default.model("aca_class_prg_branch", aca_class_prg_branch);
39
+ exports.CAcaClassPrgBranch = CAcaClassPrgBranch;
@@ -3,3 +3,4 @@ export * from "./aca_academic_year_mapping";
3
3
  export * from './aca_class_program_master';
4
4
  export * from './aca_class_program_term';
5
5
  export * from './aca_prg_trm_section';
6
+ export * from './aca_class_prg_branch';
@@ -19,3 +19,4 @@ __exportStar(require("./aca_academic_year_mapping"), exports);
19
19
  __exportStar(require("./aca_class_program_master"), exports);
20
20
  __exportStar(require("./aca_class_program_term"), exports);
21
21
  __exportStar(require("./aca_prg_trm_section"), exports);
22
+ __exportStar(require("./aca_class_prg_branch"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "dependencies": {
3
- "cloud-ide-lms-model": "^1.0.246",
3
+ "cloud-ide-lms-model": "^1.0.252",
4
4
  "dotenv": "^16.5.0",
5
5
  "mongoose": "^8.15.0"
6
6
  },
@@ -9,7 +9,7 @@
9
9
  "typescript": "^5.8.3"
10
10
  },
11
11
  "name": "cloud-ide-model-schema",
12
- "version": "1.1.82",
12
+ "version": "1.1.83",
13
13
  "description": "Pachage for schema management of Cloud IDEsys LMS",
14
14
  "main": "lib/index.js",
15
15
  "types": "lib/index.d.ts",