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 };
|
package/lib/routes/coreRoutes.js
CHANGED
|
@@ -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);
|
package/lib/schema/core/index.js
CHANGED
|
@@ -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);
|