cloud-ide-lms-model 1.0.229 → 1.0.231

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.
@@ -65,6 +65,18 @@ declare class AuthUserCoreEntityMapping extends CoreEntityMappingBase {
65
65
  _id: string;
66
66
  syen_name: string;
67
67
  };
68
+ syenm_designation_id_sydsg?: {
69
+ _id: string;
70
+ sydsg_name: string;
71
+ };
72
+ syenm_role_id_syusrol?: {
73
+ _id: string;
74
+ syusrol_name: string;
75
+ };
76
+ syenm_department_id_sydept?: {
77
+ _id: string;
78
+ sydept_name: string;
79
+ };
68
80
  }
69
81
  export { AuthUserMstListErrorLogger, //interface
70
82
  AuthUserMstListPayload, // model
@@ -1,18 +1,18 @@
1
1
  declare class CoreEntityMappingBase {
2
2
  _id?: string;
3
3
  syenm_id_user?: string;
4
- syenm_role_id_syusrol?: string;
5
4
  syenm_id_logses?: string;
6
5
  syenm_activefrom?: string;
7
6
  syenm_activeupto?: string;
8
- syenm_designation_id_sydsg?: string;
9
- syenm_department_id_sydept?: string;
10
7
  syenm_isactive?: boolean;
11
8
  syenm_isdefault?: boolean;
12
9
  syenm_isloggedin?: boolean;
13
10
  }
14
- declare class CoreEntityMapping {
11
+ declare class CoreEntityMapping extends CoreEntityMappingBase {
15
12
  syenm_entity_id_syen?: string;
13
+ syenm_designation_id_sydsg?: string;
14
+ syenm_role_id_syusrol?: string;
15
+ syenm_department_id_sydept?: string;
16
16
  }
17
17
  export { CoreEntityMapping, // interface
18
18
  CoreEntityMappingBase };
@@ -5,6 +5,6 @@ exports.CoreEntityMappingBase = exports.CoreEntityMapping = void 0;
5
5
  class CoreEntityMappingBase {
6
6
  }
7
7
  exports.CoreEntityMappingBase = CoreEntityMappingBase;
8
- class CoreEntityMapping {
8
+ class CoreEntityMapping extends CoreEntityMappingBase {
9
9
  }
10
10
  exports.CoreEntityMapping = CoreEntityMapping;
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "typescript": "^5.4.2"
6
6
  },
7
7
  "name": "cloud-ide-lms-model",
8
- "version": "1.0.229",
8
+ "version": "1.0.231",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",