cloud-ide-lms-model 1.0.298 → 1.0.300

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.
@@ -101,5 +101,9 @@ declare const coreRoutesUrl: {
101
101
  * generic path to get the mapping of entity access pass management for any form
102
102
  */
103
103
  coreEntityAccessPassManagement: string;
104
+ /**
105
+ * @description Endpoint to get the breadcrumb (breadcrumb)
106
+ */
107
+ breadcrumb: string;
104
108
  };
105
109
  export { coreRoutesUrl };
@@ -104,6 +104,10 @@ const coreRoutesUrl = {
104
104
  * generic path to get the mapping of entity access pass management for any form
105
105
  */
106
106
  coreEntityAccessPassManagement: "core-entity-access-pass-management",
107
+ /**
108
+ * @description Endpoint to get the breadcrumb (breadcrumb)
109
+ */
110
+ breadcrumb: "breadcrumb",
107
111
  };
108
112
  exports.coreRoutesUrl = coreRoutesUrl;
109
113
  Object.freeze(coreRoutesUrl);
@@ -1,6 +1,7 @@
1
1
  declare class CoreUserRoleExceptionsBase {
2
2
  _id?: string;
3
3
  syusrex_isactive?: boolean;
4
+ syusrex_status?: boolean;
4
5
  syusrex_user_entity_mapping_id_syenm?: string;
5
6
  }
6
7
  declare class CoreUserRoleExceptions extends CoreUserRoleExceptionsBase {
@@ -30,3 +30,4 @@ export * from './core_user_attributes';
30
30
  export * from './core_user_role';
31
31
  export * from './core_user_role_rights';
32
32
  export * from './core_entity_access_pass_management';
33
+ export * from './core_user_role_exceptions';
@@ -46,3 +46,4 @@ __exportStar(require("./core_user_attributes"), exports);
46
46
  __exportStar(require("./core_user_role"), exports);
47
47
  __exportStar(require("./core_user_role_rights"), exports);
48
48
  __exportStar(require("./core_entity_access_pass_management"), exports);
49
+ __exportStar(require("./core_user_role_exceptions"), 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.298",
8
+ "version": "1.0.300",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",