cloud-ide-lms-model 1.0.212 → 1.0.214

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.
@@ -10,9 +10,7 @@ declare class AuthUserMstListPayload extends MTableQueries {
10
10
  Validate?(): Partial<AuthUserMstListErrorLogger>;
11
11
  }
12
12
  interface authUserMstListControllerResponse extends controllerResponse {
13
- data?: {
14
- auth_user_mst: AuthUserMst[];
15
- };
13
+ data?: AuthUserMst[];
16
14
  }
17
15
  export { AuthUserMstListErrorLogger, //interface
18
16
  AuthUserMstListPayload, // model
File without changes
@@ -0,0 +1 @@
1
+ "use strict";
@@ -10,5 +10,6 @@ declare const COLLECTIONS: {
10
10
  core_user_family_details: string;
11
11
  core_user_attributes: string;
12
12
  core_entity_access_pass_management: string;
13
+ core_entity_mapping: string;
13
14
  };
14
15
  export { COLLECTIONS };
@@ -12,6 +12,7 @@ const COLLECTIONS = {
12
12
  core_user_documents: "core_user_documents",
13
13
  core_user_family_details: "core_user_family_details",
14
14
  core_user_attributes: "core_user_attributes",
15
- core_entity_access_pass_management: "core_entity_access_pass_management"
15
+ core_entity_access_pass_management: "core_entity_access_pass_management",
16
+ core_entity_mapping: "core_entity_mapping"
16
17
  };
17
18
  exports.COLLECTIONS = COLLECTIONS;
@@ -1,10 +1,15 @@
1
- interface ICoreSyenm {
1
+ interface CoreEntityMapping {
2
2
  _id?: string;
3
- syenm_id_user?: string;
4
- syenm_id_syen?: string;
5
- syenm_id_logses?: string;
6
- syenm_isactive?: boolean;
7
- syenm_isdefault?: boolean;
8
- syenm_isloggedin?: boolean;
3
+ syenm_id_user: string;
4
+ syenm_role_id_syusrol: string;
5
+ syenm_id_logses: string;
6
+ syenm_activefrom: string;
7
+ syenm_activeupto: string;
8
+ syenm_designation_id_sydsg: string;
9
+ syenm_department_id_sydept: string;
10
+ syenm_entity_id_syen: string;
11
+ syenm_isactive: boolean;
12
+ syenm_isdefault: boolean;
13
+ syenm_isloggedin: boolean;
9
14
  }
10
- export { ICoreSyenm };
15
+ export { 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.212",
8
+ "version": "1.0.214",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",