cloud-ide-lms-model 1.0.228 → 1.0.229
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MTableQueries } from "../../common-types";
|
|
2
|
-
import { AuthUserMst,
|
|
2
|
+
import { AuthUserMst, CoreEntityMappingBase } from "../../schema";
|
|
3
3
|
import { CoreUserAttributes } from "../../schema/core/core_user_attributes";
|
|
4
4
|
import { CoreUserContactAddresses } from "../../schema/core/core_user_contact_addresses";
|
|
5
5
|
import { CoreUserDocuments } from "../../schema/core/core_user_documents";
|
|
@@ -60,7 +60,7 @@ declare class AuthUserMstGetByIdData {
|
|
|
60
60
|
[mappingIndex: string]: any[];
|
|
61
61
|
};
|
|
62
62
|
}
|
|
63
|
-
declare class AuthUserCoreEntityMapping extends
|
|
63
|
+
declare class AuthUserCoreEntityMapping extends CoreEntityMappingBase {
|
|
64
64
|
syenm_entity_id_syen?: {
|
|
65
65
|
_id: string;
|
|
66
66
|
syen_name: string;
|
|
@@ -70,6 +70,6 @@ exports.AuthUserMstGetByIdPayload = AuthUserMstGetByIdPayload;
|
|
|
70
70
|
class AuthUserMstGetByIdData {
|
|
71
71
|
}
|
|
72
72
|
exports.AuthUserMstGetByIdData = AuthUserMstGetByIdData;
|
|
73
|
-
class AuthUserCoreEntityMapping extends schema_1.
|
|
73
|
+
class AuthUserCoreEntityMapping extends schema_1.CoreEntityMappingBase {
|
|
74
74
|
}
|
|
75
75
|
exports.AuthUserCoreEntityMapping = AuthUserCoreEntityMapping;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare class
|
|
1
|
+
declare class CoreEntityMappingBase {
|
|
2
2
|
_id?: string;
|
|
3
3
|
syenm_id_user?: string;
|
|
4
4
|
syenm_role_id_syusrol?: string;
|
|
@@ -7,12 +7,12 @@ declare class CoreEntityMapping {
|
|
|
7
7
|
syenm_activeupto?: string;
|
|
8
8
|
syenm_designation_id_sydsg?: string;
|
|
9
9
|
syenm_department_id_sydept?: string;
|
|
10
|
-
syenm_entity_id_syen?: string | {
|
|
11
|
-
_id: string;
|
|
12
|
-
syen_name: string;
|
|
13
|
-
};
|
|
14
10
|
syenm_isactive?: boolean;
|
|
15
11
|
syenm_isdefault?: boolean;
|
|
16
12
|
syenm_isloggedin?: boolean;
|
|
17
13
|
}
|
|
18
|
-
|
|
14
|
+
declare class CoreEntityMapping {
|
|
15
|
+
syenm_entity_id_syen?: string;
|
|
16
|
+
}
|
|
17
|
+
export { CoreEntityMapping, // interface
|
|
18
|
+
CoreEntityMappingBase };
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CoreEntityMapping = void 0;
|
|
3
|
+
exports.CoreEntityMappingBase = exports.CoreEntityMapping = void 0;
|
|
4
4
|
/* INTERFASE START */
|
|
5
|
+
class CoreEntityMappingBase {
|
|
6
|
+
}
|
|
7
|
+
exports.CoreEntityMappingBase = CoreEntityMappingBase;
|
|
5
8
|
class CoreEntityMapping {
|
|
6
9
|
}
|
|
7
10
|
exports.CoreEntityMapping = CoreEntityMapping;
|