cloud-ide-lms-model 1.0.227 → 1.0.228

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.
@@ -55,11 +55,17 @@ declare class AuthUserMstGetByIdData {
55
55
  core_user_documents?: CoreUserDocuments[];
56
56
  core_user_family_details?: CoreUserFamilyDetails[];
57
57
  core_user_attributes?: CoreUserAttributes[];
58
- core_entity_mapping?: CoreEntityMapping[];
58
+ core_entity_mapping?: AuthUserCoreEntityMapping[];
59
59
  menu_rights?: {
60
60
  [mappingIndex: string]: any[];
61
61
  };
62
62
  }
63
+ declare class AuthUserCoreEntityMapping extends CoreEntityMapping {
64
+ syenm_entity_id_syen?: {
65
+ _id: string;
66
+ syen_name: string;
67
+ };
68
+ }
63
69
  export { AuthUserMstListErrorLogger, //interface
64
70
  AuthUserMstListPayload, // model
65
- authUserMstListControllerResponse, AuthUserMstCreatePayload, authUserMstCreateControllerResponse, AuthUserMstGetByIdPayload, authUserMstGetByIdControllerResponse, AuthUserMstGetByIdErrorLogger, AuthUserMstCreateErrorLogger, AuthUserMstGetByIdData };
71
+ authUserMstListControllerResponse, AuthUserMstCreatePayload, authUserMstCreateControllerResponse, AuthUserMstGetByIdPayload, authUserMstGetByIdControllerResponse, AuthUserMstGetByIdErrorLogger, AuthUserMstCreateErrorLogger, AuthUserMstGetByIdData, AuthUserCoreEntityMapping };
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AuthUserMstGetByIdData = exports.AuthUserMstGetByIdPayload = exports.AuthUserMstCreatePayload = exports.AuthUserMstListPayload = void 0;
3
+ exports.AuthUserCoreEntityMapping = 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 */
@@ -72,3 +72,4 @@ class AuthUserMstGetByIdData {
72
72
  exports.AuthUserMstGetByIdData = AuthUserMstGetByIdData;
73
73
  class AuthUserCoreEntityMapping extends schema_1.CoreEntityMapping {
74
74
  }
75
+ exports.AuthUserCoreEntityMapping = AuthUserCoreEntityMapping;
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.227",
8
+ "version": "1.0.228",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",