cloud-ide-model-schema 1.1.98 → 1.1.100

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.
@@ -6,7 +6,7 @@ var mongoose_1 = require("mongoose");
6
6
  var auth_user_mst = new mongoose_1.Schema({
7
7
  user_username: {
8
8
  type: String,
9
- minlength: 8,
9
+ minlength: 5,
10
10
  maxlength: 20,
11
11
  required: true,
12
12
  trim: true,
@@ -26,7 +26,7 @@ var auth_user_mst = new mongoose_1.Schema({
26
26
  },
27
27
  user_lastname: {
28
28
  type: String,
29
- minlength: 8,
29
+ minlength: 3,
30
30
  maxlength: 20
31
31
  },
32
32
  user_fullname: {
@@ -38,6 +38,11 @@ var core_user_role_exceptions = new mongoose_1.Schema({
38
38
  type: Boolean,
39
39
  default: true,
40
40
  comment: "is role is active or not"
41
+ },
42
+ syusrex_status: {
43
+ type: Boolean,
44
+ default: true,
45
+ comment: "status of the role exception"
41
46
  }
42
47
  }, { collection: 'core_user_role_exceptions' });
43
48
  var CCoreUserRoleExceptions = mongoose_1.default.model("core_user_role_exceptions", core_user_role_exceptions);
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.98",
12
+ "version": "1.1.100",
13
13
  "description": "Pachage for schema management of Cloud IDEsys LMS",
14
14
  "main": "lib/index.js",
15
15
  "types": "lib/index.d.ts",