cloud-ide-lms-model 1.0.217 → 1.0.219

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.
@@ -25,7 +25,7 @@ declare class AuthUserMstCreatePayload {
25
25
  core_user_documents: CoreUserDocuments[];
26
26
  core_user_family_details: CoreUserFamilyDetails[];
27
27
  core_user_attributes: CoreUserAttributes[];
28
- entity_mappings?: any[];
28
+ core_entity_mapping?: any[];
29
29
  menu_rights?: {
30
30
  [mappingIndex: string]: any[];
31
31
  };
@@ -23,7 +23,7 @@ class AuthUserMstCreatePayload {
23
23
  this.core_user_documents = [];
24
24
  this.core_user_family_details = [];
25
25
  this.core_user_attributes = [];
26
- this.entity_mappings = [];
26
+ this.core_entity_mapping = [];
27
27
  this.menu_rights = {};
28
28
  if (init) {
29
29
  Object.assign(this, init);
@@ -32,7 +32,7 @@ class AuthUserMstCreatePayload {
32
32
  this.core_user_documents = init.core_user_documents || [];
33
33
  this.core_user_family_details = init.core_user_family_details || [];
34
34
  this.core_user_attributes = init.core_user_attributes || [];
35
- this.entity_mappings = init.entity_mappings || [];
35
+ this.core_entity_mapping = init.core_entity_mapping || [];
36
36
  this.menu_rights = init.menu_rights || {};
37
37
  // Initialize auth_user_mst if provided
38
38
  if (init.auth_user_mst) {
@@ -3,6 +3,7 @@ import { controllerResponse } from "../../utilities";
3
3
  export declare class IGeneralMasterListRequest {
4
4
  sygms_id_sygmt?: string;
5
5
  sygms_entity_id_syen?: string;
6
+ sygmt_code?: string;
6
7
  constructor(init: Partial<IGeneralMasterListRequest>);
7
8
  Validate?(): Partial<Record<keyof IGeneralMasterListRequest, string>>;
8
9
  }
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.217",
8
+ "version": "1.0.219",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",