cloud-ide-lms-model 1.0.223 → 1.0.225
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 } from "../../schema";
|
|
2
|
+
import { AuthUserMst, CoreEntityMapping } 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";
|
|
@@ -45,21 +45,21 @@ interface authUserMstCreateControllerResponse extends controllerResponse {
|
|
|
45
45
|
data?: AuthUserMst;
|
|
46
46
|
}
|
|
47
47
|
interface authUserMstGetByIdControllerResponse extends controllerResponse {
|
|
48
|
-
data?:
|
|
48
|
+
data?: AuthUserMstGetByIdData;
|
|
49
49
|
}
|
|
50
|
-
|
|
51
|
-
user_id
|
|
52
|
-
syenm_entity_id_syen
|
|
53
|
-
auth_user_mst
|
|
54
|
-
core_user_contact_addresses
|
|
55
|
-
core_user_documents
|
|
56
|
-
core_user_family_details
|
|
57
|
-
core_user_attributes
|
|
58
|
-
core_entity_mapping
|
|
59
|
-
menu_rights
|
|
50
|
+
declare class AuthUserMstGetByIdData {
|
|
51
|
+
user_id?: string;
|
|
52
|
+
syenm_entity_id_syen?: string;
|
|
53
|
+
auth_user_mst?: AuthUserMst;
|
|
54
|
+
core_user_contact_addresses?: CoreUserContactAddresses[];
|
|
55
|
+
core_user_documents?: CoreUserDocuments[];
|
|
56
|
+
core_user_family_details?: CoreUserFamilyDetails[];
|
|
57
|
+
core_user_attributes?: CoreUserAttributes[];
|
|
58
|
+
core_entity_mapping?: CoreEntityMapping[];
|
|
59
|
+
menu_rights?: {
|
|
60
60
|
[mappingIndex: string]: any[];
|
|
61
61
|
};
|
|
62
62
|
}
|
|
63
63
|
export { AuthUserMstListErrorLogger, //interface
|
|
64
64
|
AuthUserMstListPayload, // model
|
|
65
|
-
authUserMstListControllerResponse, AuthUserMstCreatePayload, authUserMstCreateControllerResponse, AuthUserMstGetByIdPayload, authUserMstGetByIdControllerResponse, AuthUserMstGetByIdErrorLogger, AuthUserMstCreateErrorLogger };
|
|
65
|
+
authUserMstListControllerResponse, AuthUserMstCreatePayload, authUserMstCreateControllerResponse, AuthUserMstGetByIdPayload, authUserMstGetByIdControllerResponse, AuthUserMstGetByIdErrorLogger, AuthUserMstCreateErrorLogger, AuthUserMstGetByIdData };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AuthUserMstGetByIdPayload = exports.AuthUserMstCreatePayload = exports.AuthUserMstListPayload = void 0;
|
|
3
|
+
exports.AuthUserMstGetByIdData = exports.AuthUserMstGetByIdPayload = exports.AuthUserMstCreatePayload = exports.AuthUserMstListPayload = void 0;
|
|
4
4
|
const common_types_1 = require("../../common-types");
|
|
5
5
|
const schema_1 = require("../../schema");
|
|
6
6
|
/* INTERFACE END */
|
|
@@ -67,3 +67,6 @@ class AuthUserMstGetByIdPayload {
|
|
|
67
67
|
}
|
|
68
68
|
}
|
|
69
69
|
exports.AuthUserMstGetByIdPayload = AuthUserMstGetByIdPayload;
|
|
70
|
+
class AuthUserMstGetByIdData {
|
|
71
|
+
}
|
|
72
|
+
exports.AuthUserMstGetByIdData = AuthUserMstGetByIdData;
|