cloud-ide-lms-model 1.0.283 → 1.0.285
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,7 +1,7 @@
|
|
|
1
1
|
import { MTableQueries } from "../../common-types";
|
|
2
2
|
import { AuthUserMst, CoreEntityMapping, CoreEntityMappingBase } from "../../schema";
|
|
3
3
|
import { CoreUserAttributes } from "../../schema/core/core_user_attributes";
|
|
4
|
-
import { CoreUserContactAddresses, CoreUserContactAddressesBase } from "../../schema/core/core_user_contact_addresses";
|
|
4
|
+
import { CoreEntityAccessPassManagementSycadBase, CoreUserContactAddresses, CoreUserContactAddressesBase } from "../../schema/core/core_user_contact_addresses";
|
|
5
5
|
import { CoreUserDocuments, CoreUserDocumentsBase } from "../../schema/core/core_user_documents";
|
|
6
6
|
import { CoreUserFamilyDetails, CoreUserFamilyDetailsBase } from "../../schema/core/core_user_family_details";
|
|
7
7
|
import { CoreUserRoleExceptions, CoreUserRoleExceptionsBase } from "../../schema/core/core_user_role_exceptions";
|
|
@@ -22,24 +22,12 @@ declare class AuthUserMstListPayload extends MTableQueries {
|
|
|
22
22
|
}
|
|
23
23
|
declare class AuthUserMstCreatePayload {
|
|
24
24
|
auth_user_mst: AuthUserMst;
|
|
25
|
-
core_user_contact_addresses:
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
core_user_family_details: (CoreUserFamilyDetails & {
|
|
32
|
-
isDeleted?: boolean;
|
|
33
|
-
})[];
|
|
34
|
-
core_user_attributes: (CoreUserAttributes & {
|
|
35
|
-
isDeleted?: boolean;
|
|
36
|
-
})[];
|
|
37
|
-
core_entity_mapping?: (CoreEntityMapping & {
|
|
38
|
-
isDeleted?: boolean;
|
|
39
|
-
})[];
|
|
40
|
-
core_user_role_exceptions?: (CoreUserRoleExceptions & {
|
|
41
|
-
isDeleted?: boolean;
|
|
42
|
-
})[];
|
|
25
|
+
core_user_contact_addresses: CoreUserContactAddresses[];
|
|
26
|
+
core_user_documents: CoreUserDocuments[];
|
|
27
|
+
core_user_family_details: CoreUserFamilyDetails[];
|
|
28
|
+
core_user_attributes: CoreUserAttributes[];
|
|
29
|
+
core_entity_mapping?: CoreEntityMapping[];
|
|
30
|
+
core_user_role_exceptions?: CoreUserRoleExceptions[];
|
|
43
31
|
constructor(init?: Partial<AuthUserMstCreatePayload>);
|
|
44
32
|
Validate?(): Partial<AuthUserMstCreateErrorLogger>;
|
|
45
33
|
}
|
|
@@ -140,6 +128,7 @@ declare class AuthUserCoreUserDocuments extends CoreUserDocumentsBase {
|
|
|
140
128
|
_id?: string;
|
|
141
129
|
sygms_name?: string;
|
|
142
130
|
};
|
|
131
|
+
core_entity_access_pass_management?: CoreEntityAccessPassManagementSycadBase;
|
|
143
132
|
}
|
|
144
133
|
declare class AuthUserCoreUserFamilyDetails extends CoreUserFamilyDetailsBase {
|
|
145
134
|
syfdl_family_member_id_user?: {
|
|
@@ -18,5 +18,18 @@ declare class CoreUserContactAddresses extends CoreUserContactAddressesBase {
|
|
|
18
18
|
sycad_contact_pin_sypin?: string;
|
|
19
19
|
sycad_contact_country_syctr?: string;
|
|
20
20
|
}
|
|
21
|
+
declare class CoreEntityAccessPassManagementSycadBase {
|
|
22
|
+
_id?: string;
|
|
23
|
+
syepm_is_owner?: boolean;
|
|
24
|
+
syepm_can_edit?: boolean;
|
|
25
|
+
syepm_can_view?: boolean;
|
|
26
|
+
syepm_isactive?: boolean;
|
|
27
|
+
syepm_actions_allowed?: any;
|
|
28
|
+
}
|
|
29
|
+
declare class CoreEntityAccessPassManagementSycad extends CoreEntityAccessPassManagementSycadBase {
|
|
30
|
+
syepm_user_id_user?: string;
|
|
31
|
+
syepm_entity_id_syen?: string;
|
|
32
|
+
syepm_access_passs_to_sycad?: string;
|
|
33
|
+
}
|
|
21
34
|
export { CoreUserContactAddressesBase, // interface
|
|
22
|
-
CoreUserContactAddresses };
|
|
35
|
+
CoreUserContactAddresses, CoreEntityAccessPassManagementSycad, CoreEntityAccessPassManagementSycadBase };
|
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CoreUserContactAddresses = exports.CoreUserContactAddressesBase = void 0;
|
|
3
|
+
exports.CoreEntityAccessPassManagementSycadBase = exports.CoreEntityAccessPassManagementSycad = exports.CoreUserContactAddresses = exports.CoreUserContactAddressesBase = void 0;
|
|
4
4
|
class CoreUserContactAddressesBase {
|
|
5
5
|
}
|
|
6
6
|
exports.CoreUserContactAddressesBase = CoreUserContactAddressesBase;
|
|
7
7
|
class CoreUserContactAddresses extends CoreUserContactAddressesBase {
|
|
8
8
|
}
|
|
9
9
|
exports.CoreUserContactAddresses = CoreUserContactAddresses;
|
|
10
|
+
// Access pass
|
|
11
|
+
class CoreEntityAccessPassManagementSycadBase {
|
|
12
|
+
}
|
|
13
|
+
exports.CoreEntityAccessPassManagementSycadBase = CoreEntityAccessPassManagementSycadBase;
|
|
14
|
+
class CoreEntityAccessPassManagementSycad extends CoreEntityAccessPassManagementSycadBase {
|
|
15
|
+
}
|
|
16
|
+
exports.CoreEntityAccessPassManagementSycad = CoreEntityAccessPassManagementSycad;
|