cloud-ide-model-schema 1.1.141 → 1.1.143

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.
Files changed (33) hide show
  1. package/lib/config/database.js +297 -30
  2. package/lib/schema/academics/academics_bonafide_request.d.ts +8 -0
  3. package/lib/schema/academics/academics_bonafide_request.js +98 -0
  4. package/lib/schema/academics/index.d.ts +1 -0
  5. package/lib/schema/academics/index.js +1 -0
  6. package/lib/schema/admission/admission_application_main.js +44 -0
  7. package/lib/schema/admission/admission_family_members.js +5 -0
  8. package/lib/schema/admission/admission_rte_details.d.ts +45 -0
  9. package/lib/schema/admission/admission_rte_details.js +177 -0
  10. package/lib/schema/admission/admission_vital_information.d.ts +45 -0
  11. package/lib/schema/admission/admission_vital_information.js +120 -0
  12. package/lib/schema/admission/index.d.ts +2 -0
  13. package/lib/schema/admission/index.js +2 -0
  14. package/lib/schema/auth/auth_user_mst.js +11 -0
  15. package/lib/schema/core/core_department.js +6 -0
  16. package/lib/schema/core/core_designation.js +6 -0
  17. package/lib/schema/core/core_entity_mapping.js +11 -0
  18. package/lib/schema/core/core_user_role.js +6 -0
  19. package/lib/schema/core/core_workflow_approver_rules.d.ts +8 -0
  20. package/lib/schema/core/core_workflow_approver_rules.js +83 -0
  21. package/lib/schema/core/core_workflow_config.d.ts +8 -0
  22. package/lib/schema/core/core_workflow_config.js +103 -0
  23. package/lib/schema/core/core_workflow_registry.d.ts +8 -0
  24. package/lib/schema/core/core_workflow_registry.js +128 -0
  25. package/lib/schema/core/core_workflow_transaction_history.d.ts +8 -0
  26. package/lib/schema/core/core_workflow_transaction_history.js +86 -0
  27. package/lib/schema/core/index.d.ts +13 -1
  28. package/lib/schema/core/index.js +9 -1
  29. package/lib/schema/email/email_log.js +22 -1
  30. package/lib/schema/email/email_reference.js +23 -3
  31. package/lib/schema/email/email_subscription_vendor.js +16 -1
  32. package/lib/schema/email/email_templete.js +36 -1
  33. package/package.json +2 -2
@@ -0,0 +1,8 @@
1
+ import { ICoreWorkflowRegistry } from "cloud-ide-lms-model";
2
+ import mongoose from "mongoose";
3
+ declare const CCoreWorkflowRegistry: mongoose.Model<ICoreWorkflowRegistry, {}, {}, {}, mongoose.Document<unknown, {}, ICoreWorkflowRegistry, {}> & ICoreWorkflowRegistry & Required<{
4
+ _id: string;
5
+ }> & {
6
+ __v: number;
7
+ }, any>;
8
+ export { CCoreWorkflowRegistry };
@@ -0,0 +1,128 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CCoreWorkflowRegistry = void 0;
4
+ var mongoose_1 = require("mongoose");
5
+ /* SCHEMA START */
6
+ var core_workflow_registry = new mongoose_1.Schema({
7
+ wfrg_workflow_code: {
8
+ type: String,
9
+ required: true,
10
+ unique: true,
11
+ maxlength: 40,
12
+ trim: true,
13
+ comment: "Unique workflow identifier"
14
+ },
15
+ wfrg_title: {
16
+ type: String,
17
+ required: true,
18
+ maxlength: 100,
19
+ trim: true,
20
+ comment: "Workflow display name"
21
+ },
22
+ wfrg_desc: {
23
+ type: String,
24
+ maxlength: 500,
25
+ trim: true,
26
+ comment: "Description"
27
+ },
28
+ wfrg_category_id_sygms: {
29
+ type: mongoose_1.default.Schema.Types.ObjectId,
30
+ ref: "core_general_master",
31
+ comment: "Category (Bonafide, Fee Refund, etc.) - Reference to core_general_master with type 'WORKFLOW_CATEGORY'"
32
+ },
33
+ wfrg_entity_id_syen: {
34
+ type: mongoose_1.default.Schema.Types.ObjectId,
35
+ ref: "core_system_entity",
36
+ comment: "Entity-specific configuration"
37
+ },
38
+ wfrg_page_id_sypg: {
39
+ type: mongoose_1.default.Schema.Types.ObjectId,
40
+ ref: "core_system_pages",
41
+ comment: "Associated page"
42
+ },
43
+ wfrg_menu_id_syme: {
44
+ type: mongoose_1.default.Schema.Types.ObjectId,
45
+ ref: "core_system_menu",
46
+ comment: "Associated menu (alternative to page)"
47
+ },
48
+ wfrg_component_selector: {
49
+ type: String,
50
+ maxlength: 200,
51
+ trim: true,
52
+ comment: "Angular component selector (e.g., 'app-bonafide-form')"
53
+ },
54
+ wfrg_component_path: {
55
+ type: String,
56
+ maxlength: 500,
57
+ trim: true,
58
+ comment: "Module path for lazy loading"
59
+ },
60
+ wfrg_query_params: {
61
+ type: Object,
62
+ comment: "Default query parameters for component"
63
+ },
64
+ wfrg_view_mode_id_sygms: {
65
+ type: mongoose_1.default.Schema.Types.ObjectId,
66
+ ref: "core_general_master",
67
+ comment: "View mode (from WORKFLOW_VIEW_MODE type)"
68
+ },
69
+ wfrg_trigger_type_id_sygms: {
70
+ type: mongoose_1.default.Schema.Types.ObjectId,
71
+ ref: "core_general_master",
72
+ comment: "Trigger type (from WORKFLOW_TRIGGER_TYPE)"
73
+ },
74
+ wfrg_trigger_condition: {
75
+ type: Object,
76
+ comment: "Condition for conditional triggers"
77
+ },
78
+ wfrg_auto_initialize: {
79
+ type: Boolean,
80
+ default: true,
81
+ comment: "Auto-initialize on submission"
82
+ },
83
+ wfrg_isactive: {
84
+ type: Boolean,
85
+ default: true,
86
+ comment: "Workflow is active and can be used"
87
+ },
88
+ wfrg_valid_from_date: {
89
+ type: Date,
90
+ comment: "Workflow valid from date (for time-based activation)"
91
+ },
92
+ wfrg_valid_to_date: {
93
+ type: Date,
94
+ comment: "Workflow valid to date (for time-based deactivation)"
95
+ },
96
+ wfrg_reinitialize_on_edit: {
97
+ type: Boolean,
98
+ default: true,
99
+ comment: "Re-initialize workflow when form is re-edited"
100
+ },
101
+ wfrg_notify_approvers_on_final_status: {
102
+ type: Boolean,
103
+ default: true,
104
+ comment: "Notify all approvers of final status"
105
+ },
106
+ wfrg_show_approver_names: {
107
+ type: Boolean,
108
+ default: true,
109
+ comment: "Show approver names in notifications/history"
110
+ },
111
+ wfrg_mask_approver_info: {
112
+ type: Boolean,
113
+ default: false,
114
+ comment: "Mask approver information (for sensitive cases)"
115
+ },
116
+ wfrg_configuration: {
117
+ type: Object,
118
+ comment: "Additional JSON configuration"
119
+ }
120
+ }, { collection: 'core_workflow_registry' });
121
+ // Indexes for performance optimization
122
+ core_workflow_registry.index({ wfrg_workflow_code: 1 });
123
+ core_workflow_registry.index({ wfrg_category_id_sygms: 1, wfrg_entity_id_syen: 1, wfrg_isactive: 1 });
124
+ core_workflow_registry.index({ wfrg_page_id_sypg: 1, wfrg_isactive: 1 });
125
+ core_workflow_registry.index({ wfrg_menu_id_syme: 1, wfrg_isactive: 1 });
126
+ core_workflow_registry.index({ wfrg_entity_id_syen: 1, wfrg_isactive: 1 });
127
+ var CCoreWorkflowRegistry = mongoose_1.default.model("core_workflow_registry", core_workflow_registry);
128
+ exports.CCoreWorkflowRegistry = CCoreWorkflowRegistry;
@@ -0,0 +1,8 @@
1
+ import { ICoreWorkflowTransactionHistory } from "cloud-ide-lms-model";
2
+ import mongoose from "mongoose";
3
+ declare const CCoreWorkflowTransactionHistory: mongoose.Model<ICoreWorkflowTransactionHistory, {}, {}, {}, mongoose.Document<unknown, {}, ICoreWorkflowTransactionHistory, {}> & ICoreWorkflowTransactionHistory & Required<{
4
+ _id: string;
5
+ }> & {
6
+ __v: number;
7
+ }, any>;
8
+ export { CCoreWorkflowTransactionHistory };
@@ -0,0 +1,86 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CCoreWorkflowTransactionHistory = void 0;
4
+ var mongoose_1 = require("mongoose");
5
+ /* SCHEMA START */
6
+ var core_workflow_transaction_history = new mongoose_1.Schema({
7
+ wfth_workflow_id_wfrg: {
8
+ type: mongoose_1.default.Schema.Types.ObjectId,
9
+ ref: "core_workflow_registry",
10
+ required: true,
11
+ comment: "Workflow reference"
12
+ },
13
+ wfth_request_id: {
14
+ type: String,
15
+ required: true,
16
+ maxlength: 100,
17
+ trim: true,
18
+ comment: "Reference to request (table name + _id)"
19
+ },
20
+ wfth_request_table: {
21
+ type: String,
22
+ required: true,
23
+ maxlength: 100,
24
+ trim: true,
25
+ comment: "Source table name"
26
+ },
27
+ wfth_step_number: {
28
+ type: Number,
29
+ required: true,
30
+ comment: "Workflow step"
31
+ },
32
+ wfth_action_type_id_sygms: {
33
+ type: mongoose_1.default.Schema.Types.ObjectId,
34
+ ref: "core_general_master",
35
+ required: true,
36
+ comment: "Action type (from WORKFLOW_ACTION_TYPE)"
37
+ },
38
+ wfth_action_by_user: {
39
+ type: mongoose_1.default.Schema.Types.ObjectId,
40
+ ref: "auth_user_mst",
41
+ required: true,
42
+ comment: "User who performed the action"
43
+ },
44
+ wfth_action_date: {
45
+ type: Date,
46
+ required: true,
47
+ default: Date.now,
48
+ comment: "Action date and time"
49
+ },
50
+ wfth_comments: {
51
+ type: String,
52
+ maxlength: 1000,
53
+ trim: true,
54
+ comment: "Action comments"
55
+ },
56
+ wfth_previous_values: {
57
+ type: Object,
58
+ comment: "Previous component values (if edited)"
59
+ },
60
+ wfth_new_values: {
61
+ type: Object,
62
+ comment: "New component values (if edited)"
63
+ },
64
+ wfth_attachments: {
65
+ type: [mongoose_1.default.Schema.Types.ObjectId],
66
+ ref: "core_file_manager",
67
+ comment: "Attachments related to this action"
68
+ },
69
+ wfth_notification_sent: {
70
+ type: Boolean,
71
+ default: false,
72
+ comment: "Whether notification was sent"
73
+ },
74
+ wfth_entity_id_syen: {
75
+ type: mongoose_1.default.Schema.Types.ObjectId,
76
+ ref: "core_system_entity",
77
+ comment: "Entity reference"
78
+ }
79
+ }, { collection: 'core_workflow_transaction_history' });
80
+ // Indexes for performance optimization
81
+ core_workflow_transaction_history.index({ wfth_workflow_id_wfrg: 1, wfth_request_id: 1 });
82
+ core_workflow_transaction_history.index({ wfth_request_table: 1, wfth_request_id: 1 });
83
+ core_workflow_transaction_history.index({ wfth_action_by_user: 1, wfth_action_date: -1 });
84
+ core_workflow_transaction_history.index({ wfth_action_date: -1 });
85
+ var CCoreWorkflowTransactionHistory = mongoose_1.default.model("core_workflow_transaction_history", core_workflow_transaction_history);
86
+ exports.CCoreWorkflowTransactionHistory = CCoreWorkflowTransactionHistory;
@@ -36,6 +36,10 @@ import { CCoreEntityUdise } from './core_entity_udise';
36
36
  import { CCoreBoardExamPattern } from './core_board_exam_pattern';
37
37
  import { CCoreBoardGradeSystem } from './core_board_grade_system';
38
38
  import { CCoreDashboardCards } from './core_dashboard_cards';
39
+ import { CCoreWorkflowRegistry } from './core_workflow_registry';
40
+ import { CCoreWorkflowConfig } from './core_workflow_config';
41
+ import { CCoreWorkflowApproverRules } from './core_workflow_approver_rules';
42
+ import { CCoreWorkflowTransactionHistory } from './core_workflow_transaction_history';
39
43
  export * from './core_user_contact_addresses';
40
44
  export * from './core_entity_access_pass_management';
41
45
  export { CCoreSypg, CCoreSytm, CCoreSyme, CCoreSylog, CCoreSyen, CCoreSyco, CCoreFinancialConfig, CCoreSypin, CCoreSyptb, CCoreSypgr, CCoreSype, CCoreSygms, CCoreSygmt, CCoreSyenm, CCoreCyfm, CCoreSyctr, CCoreSynat,
@@ -80,4 +84,12 @@ CCoreBoardGradeSystem,
80
84
  /** User Type Mapping schemas */
81
85
  CCoreUserTypeMapping,
82
86
  /** Dashboard Cards schemas */
83
- CCoreDashboardCards };
87
+ CCoreDashboardCards,
88
+ /** Workflow Registry schemas */
89
+ CCoreWorkflowRegistry,
90
+ /** Workflow Config schemas */
91
+ CCoreWorkflowConfig,
92
+ /** Workflow Approver Rules schemas */
93
+ CCoreWorkflowApproverRules,
94
+ /** Workflow Transaction History schemas */
95
+ CCoreWorkflowTransactionHistory };
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- exports.CCoreDashboardCards = exports.CCoreUserTypeMapping = exports.CCoreBoardGradeSystem = exports.CCoreBoardExamPattern = exports.CCoreEntityUdise = exports.CCoreSchoolBoardAffiliation = exports.CCoreEducationBoard = exports.CCoreUserRoleExceptions = exports.CCoreUserRoleRights = exports.CCoreUserRole = exports.CCoreUserFamilyDetails = exports.CCoreUserDocuments = exports.CCoreSydept = exports.CCoreSydsgl = exports.CCoreSydsg = exports.CCoreSycr = exports.CCoreSypn = exports.CCoreSyoth = exports.CCoreSyupth = exports.CCoreSyth = exports.CCoreSylang = exports.CCoreSynat = exports.CCoreSyctr = exports.CCoreCyfm = exports.CCoreSyenm = exports.CCoreSygmt = exports.CCoreSygms = exports.CCoreSype = exports.CCoreSypgr = exports.CCoreSyptb = exports.CCoreSypin = exports.CCoreFinancialConfig = exports.CCoreSyco = exports.CCoreSyen = exports.CCoreSylog = exports.CCoreSyme = exports.CCoreSytm = exports.CCoreSypg = void 0;
17
+ exports.CCoreWorkflowTransactionHistory = exports.CCoreWorkflowApproverRules = exports.CCoreWorkflowConfig = exports.CCoreWorkflowRegistry = exports.CCoreDashboardCards = exports.CCoreUserTypeMapping = exports.CCoreBoardGradeSystem = exports.CCoreBoardExamPattern = exports.CCoreEntityUdise = exports.CCoreSchoolBoardAffiliation = exports.CCoreEducationBoard = exports.CCoreUserRoleExceptions = exports.CCoreUserRoleRights = exports.CCoreUserRole = exports.CCoreUserFamilyDetails = exports.CCoreUserDocuments = exports.CCoreSydept = exports.CCoreSydsgl = exports.CCoreSydsg = exports.CCoreSycr = exports.CCoreSypn = exports.CCoreSyoth = exports.CCoreSyupth = exports.CCoreSyth = exports.CCoreSylang = exports.CCoreSynat = exports.CCoreSyctr = exports.CCoreCyfm = exports.CCoreSyenm = exports.CCoreSygmt = exports.CCoreSygms = exports.CCoreSype = exports.CCoreSypgr = exports.CCoreSyptb = exports.CCoreSypin = exports.CCoreFinancialConfig = exports.CCoreSyco = exports.CCoreSyen = exports.CCoreSylog = exports.CCoreSyme = exports.CCoreSytm = exports.CCoreSypg = void 0;
18
18
  var core_system_pages_1 = require("./core_system_pages");
19
19
  Object.defineProperty(exports, "CCoreSypg", { enumerable: true, get: function () { return core_system_pages_1.CCoreSypg; } });
20
20
  var core_system_pages_theme_1 = require("./core_system_pages_theme");
@@ -91,5 +91,13 @@ var core_board_grade_system_1 = require("./core_board_grade_system");
91
91
  Object.defineProperty(exports, "CCoreBoardGradeSystem", { enumerable: true, get: function () { return core_board_grade_system_1.CCoreBoardGradeSystem; } });
92
92
  var core_dashboard_cards_1 = require("./core_dashboard_cards");
93
93
  Object.defineProperty(exports, "CCoreDashboardCards", { enumerable: true, get: function () { return core_dashboard_cards_1.CCoreDashboardCards; } });
94
+ var core_workflow_registry_1 = require("./core_workflow_registry");
95
+ Object.defineProperty(exports, "CCoreWorkflowRegistry", { enumerable: true, get: function () { return core_workflow_registry_1.CCoreWorkflowRegistry; } });
96
+ var core_workflow_config_1 = require("./core_workflow_config");
97
+ Object.defineProperty(exports, "CCoreWorkflowConfig", { enumerable: true, get: function () { return core_workflow_config_1.CCoreWorkflowConfig; } });
98
+ var core_workflow_approver_rules_1 = require("./core_workflow_approver_rules");
99
+ Object.defineProperty(exports, "CCoreWorkflowApproverRules", { enumerable: true, get: function () { return core_workflow_approver_rules_1.CCoreWorkflowApproverRules; } });
100
+ var core_workflow_transaction_history_1 = require("./core_workflow_transaction_history");
101
+ Object.defineProperty(exports, "CCoreWorkflowTransactionHistory", { enumerable: true, get: function () { return core_workflow_transaction_history_1.CCoreWorkflowTransactionHistory; } });
94
102
  __exportStar(require("./core_user_contact_addresses"), exports);
95
103
  __exportStar(require("./core_entity_access_pass_management"), exports);
@@ -35,7 +35,28 @@ var email_log = new mongoose_1.Schema({
35
35
  type: String,
36
36
  trim: true,
37
37
  default: 'created',
38
- enum: ['created', 'sent', 'not_sent']
38
+ enum: ['created', 'pending', 'queued', 'sent', 'delivered', 'failed', 'not_sent', 'bounced'],
39
+ comment: "Email delivery status"
40
+ },
41
+ elog_response_data: {
42
+ type: String,
43
+ comment: "Vendor response data (JSON string)"
44
+ },
45
+ elog_error_message: {
46
+ type: String,
47
+ maxlength: 1000,
48
+ trim: true,
49
+ comment: "Error message if email failed"
50
+ },
51
+ elog_retry_count: {
52
+ type: Number,
53
+ default: 0,
54
+ min: 0,
55
+ comment: "Number of retry attempts"
56
+ },
57
+ elog_delivered_at: {
58
+ type: Date,
59
+ comment: "Timestamp when email was delivered"
39
60
  },
40
61
  elog_timestamp: {
41
62
  type: Date,
@@ -12,18 +12,38 @@ var email_reference = new mongoose_1.Schema({
12
12
  eref_sender_id_elst: {
13
13
  type: mongoose_1.default.Schema.Types.ObjectId,
14
14
  require: true,
15
- ref: "email_vendor"
15
+ ref: "email_list",
16
+ comment: "Reference to email_list (fixed: was incorrectly referencing email_vendor)"
16
17
  },
17
18
  eref_receiver_id_elst: {
18
19
  type: mongoose_1.default.Schema.Types.ObjectId,
19
20
  require: true,
20
- ref: "email_vendor"
21
+ ref: "email_list",
22
+ comment: "Reference to email_list"
21
23
  },
22
24
  eref_var: {
23
25
  type: Array,
24
26
  required: true,
25
27
  trim: true,
26
- default: []
28
+ default: [],
29
+ comment: "Array of template variables"
30
+ },
31
+ eref_description: {
32
+ type: String,
33
+ maxlength: 500,
34
+ trim: true,
35
+ comment: "Email reference description"
36
+ },
37
+ eref_category: {
38
+ type: String,
39
+ maxlength: 100,
40
+ trim: true,
41
+ comment: "Email reference category"
42
+ },
43
+ eref_default_variables: {
44
+ type: [String],
45
+ default: [],
46
+ comment: "Default variables expected for this reference"
27
47
  },
28
48
  eref_isactive: {
29
49
  type: Boolean,
@@ -17,7 +17,13 @@ var email_subscription_vendor = new mongoose_1.Schema({
17
17
  esub_end_dtm: {
18
18
  type: Date,
19
19
  required: true,
20
- default: new Date()
20
+ default: new Date(),
21
+ validate: {
22
+ validator: function (value) {
23
+ return !this.esub_start_dtm || value > this.esub_start_dtm;
24
+ },
25
+ message: 'End date must be after start date'
26
+ }
21
27
  },
22
28
  esub_timestamp: {
23
29
  type: Date,
@@ -45,6 +51,15 @@ var email_subscription_vendor = new mongoose_1.Schema({
45
51
  minvalue: 0,
46
52
  default: 0,
47
53
  },
54
+ esub_alert_sent: {
55
+ type: Boolean,
56
+ default: false,
57
+ comment: "Whether alert has been sent for limit"
58
+ },
59
+ esub_last_alert_at: {
60
+ type: Date,
61
+ comment: "Timestamp of last alert sent"
62
+ },
48
63
  esub_status: {
49
64
  type: String,
50
65
  required: true,
@@ -23,11 +23,46 @@ var email_templete = new mongoose_1.Schema({
23
23
  maxlength: 384000,
24
24
  required: true
25
25
  },
26
+ etmp_variables: {
27
+ type: [String],
28
+ default: [],
29
+ comment: "Template variables detected in body (e.g., {{user_name}})"
30
+ },
31
+ etmp_category: {
32
+ type: String,
33
+ maxlength: 100,
34
+ trim: true,
35
+ comment: "Template category for organization"
36
+ },
37
+ etmp_description: {
38
+ type: String,
39
+ maxlength: 500,
40
+ trim: true,
41
+ comment: "Template description"
42
+ },
26
43
  etmp_isactive: {
27
44
  type: Boolean,
28
45
  required: true,
29
46
  default: true
47
+ },
48
+ etmp_created_at: {
49
+ type: Date,
50
+ default: Date.now,
51
+ comment: "Creation timestamp"
52
+ },
53
+ etmp_updated_at: {
54
+ type: Date,
55
+ default: Date.now,
56
+ comment: "Last update timestamp"
30
57
  }
31
- }, { collection: 'email_templete' });
58
+ }, {
59
+ collection: 'email_templete',
60
+ timestamps: { createdAt: 'etmp_created_at', updatedAt: 'etmp_updated_at' }
61
+ });
62
+ // Indexes for better query performance
63
+ email_templete.index({ etmp_id_eref: 1 });
64
+ email_templete.index({ etmp_isactive: 1 });
65
+ email_templete.index({ etmp_category: 1 });
66
+ email_templete.index({ etmp_created_at: -1 });
32
67
  var CEmailTemplete = mongoose_1.default.model("email_templete", email_templete);
33
68
  exports.CEmailTemplete = CEmailTemplete;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "dependencies": {
3
- "cloud-ide-lms-model": "^1.0.356",
3
+ "cloud-ide-lms-model": "^1.1.8",
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.141",
12
+ "version": "1.1.143",
13
13
  "description": "Pachage for schema management of Cloud IDEsys LMS",
14
14
  "main": "lib/index.js",
15
15
  "types": "lib/index.d.ts",