cloud-ide-lms-model 1.0.205 → 1.0.208

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,6 +1,5 @@
1
- interface IUser {
1
+ declare class IUser {
2
2
  _id?: string;
3
- user_id_ent?: string;
4
3
  user_username?: string;
5
4
  user_firstname?: string;
6
5
  user_middlename?: string;
@@ -11,20 +10,14 @@ interface IUser {
11
10
  user_password?: string;
12
11
  user_activefrom?: Date;
13
12
  user_activeupto?: Date;
14
- user_photo_id_fm?: string;
13
+ user_photo_id_cyfm?: string;
15
14
  user_passwordchangeonlogin?: boolean;
16
- user_id_role?: string;
17
- user_id_desg?: string;
18
- user_id_dept?: string;
19
- user_permissions?: IUserPermissions[];
15
+ user_role_id_role?: string;
16
+ user_designation_id_sydsg?: string;
17
+ user_department_id_sydept?: string;
20
18
  user_isactive?: boolean;
21
19
  }
22
- interface IUserPermissions {
23
- _id: string;
24
- create?: boolean;
25
- read?: boolean;
26
- update?: boolean;
27
- delete?: boolean;
20
+ declare class AuthUserMst extends IUser {
28
21
  }
29
22
  export { IUser, // interface name
30
- IUserPermissions };
23
+ AuthUserMst };
@@ -1,2 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AuthUserMst = exports.IUser = void 0;
4
+ /* INTERFACE START */
5
+ class IUser {
6
+ }
7
+ exports.IUser = IUser;
8
+ class AuthUserMst extends IUser {
9
+ }
10
+ exports.AuthUserMst = AuthUserMst;
11
+ ;
@@ -0,0 +1,9 @@
1
+ declare class CoreUserAttributes {
2
+ _id?: string;
3
+ syuat_user_id_user?: string;
4
+ syuat_attribute_key?: string;
5
+ syuat_attribute_value?: any;
6
+ syuat_data_type?: string;
7
+ syuat_industry_context_sygms?: string;
8
+ }
9
+ export { CoreUserAttributes };
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CoreUserAttributes = void 0;
4
+ class CoreUserAttributes {
5
+ }
6
+ exports.CoreUserAttributes = CoreUserAttributes;
@@ -0,0 +1,18 @@
1
+ declare class CoreUserContactAddresses {
2
+ _id?: string;
3
+ sycad_user_id_user?: string;
4
+ sycad_address_type_id_sygms?: string;
5
+ sycad_contact_person_name?: string;
6
+ sycad_contact_person_famb?: string;
7
+ sycad_contact_address?: string;
8
+ sycad_contact_pin_sypin?: string;
9
+ sycad_contact_city_sypin?: string;
10
+ sycad_contact_state_sypin?: string;
11
+ sycad_contact_country_syctr?: string;
12
+ sycad_contact_phone?: number;
13
+ sycad_contact_phone_alt?: number;
14
+ sycad_contact_fax?: string;
15
+ sycad_contact_email?: string;
16
+ syen_corporate_email_alt?: string;
17
+ }
18
+ export { CoreUserContactAddresses };
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CoreUserContactAddresses = void 0;
4
+ class CoreUserContactAddresses {
5
+ }
6
+ exports.CoreUserContactAddresses = CoreUserContactAddresses;
@@ -0,0 +1,14 @@
1
+ declare class CoreUserDocuments {
2
+ _id?: string;
3
+ syusd_user_id_user?: string;
4
+ syusd_address_type_id_sygms?: string;
5
+ syusd_doc_number?: string;
6
+ syusd_doc_name_as_per_doc?: string;
7
+ syusd_doc_issue_date?: Date;
8
+ syusd_doc_expiry_date?: Date;
9
+ syusd_photo_group_id_cyfm?: string;
10
+ syusd_doc_verification_status_id_sygms?: string;
11
+ syusd_doc_kyc_status_id_sygms?: string;
12
+ syusd_isactive?: boolean;
13
+ }
14
+ export { CoreUserDocuments };
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CoreUserDocuments = void 0;
4
+ class CoreUserDocuments {
5
+ }
6
+ exports.CoreUserDocuments = CoreUserDocuments;
@@ -0,0 +1,11 @@
1
+ declare class CoreUserFamilyDetails {
2
+ _id?: string;
3
+ syfdl_user_id_user?: string;
4
+ syfdl_family_member_name?: string;
5
+ syfdl_family_member_id_user?: string;
6
+ syfdl_relationship_id_sygms?: string;
7
+ syfdl_family_member_dob?: Date;
8
+ syfdl_contact_number?: number;
9
+ syfdl_blood_group_sygms?: string;
10
+ }
11
+ export { CoreUserFamilyDetails };
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CoreUserFamilyDetails = void 0;
4
+ class CoreUserFamilyDetails {
5
+ }
6
+ exports.CoreUserFamilyDetails = CoreUserFamilyDetails;
@@ -23,4 +23,3 @@ export * from './core_iso_currency';
23
23
  export * from './core_department';
24
24
  export * from './core_designation';
25
25
  export * from './core_designation_grade_level';
26
- export * from './user-master';
@@ -39,4 +39,3 @@ __exportStar(require("./core_iso_currency"), exports);
39
39
  __exportStar(require("./core_department"), exports);
40
40
  __exportStar(require("./core_designation"), exports);
41
41
  __exportStar(require("./core_designation_grade_level"), exports);
42
- __exportStar(require("./user-master"), exports);
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.205",
8
+ "version": "1.0.208",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",