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.
- package/lib/model/auth/auth_user_mst.d.ts +1 -3
- package/lib/model/core/core_entity_mapping.d.ts +0 -0
- package/lib/model/core/core_entity_mapping.js +1 -0
- package/lib/schema/collection_names.d.ts +1 -0
- package/lib/schema/collection_names.js +2 -1
- package/lib/schema/core/core_entity_mapping.d.ts +13 -8
- package/package.json +1 -1
|
@@ -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";
|
|
@@ -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
|
|
1
|
+
interface CoreEntityMapping {
|
|
2
2
|
_id?: string;
|
|
3
|
-
syenm_id_user
|
|
4
|
-
|
|
5
|
-
syenm_id_logses
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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 {
|
|
15
|
+
export { CoreEntityMapping };
|