cloud-ide-lms-model 1.0.46 → 1.0.48
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.
|
@@ -4,5 +4,10 @@ declare const coreRoutesUrl: {
|
|
|
4
4
|
* for more details refer https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1#bookmark=id.nhxx52qzdmct
|
|
5
5
|
*/
|
|
6
6
|
getFileDetails: string;
|
|
7
|
+
/**
|
|
8
|
+
* @description Endpoint to get sidebar menu (menu)
|
|
9
|
+
* for more details refer @link {https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1&tab=t.0#bookmark=id.ze2wrml3eew3}
|
|
10
|
+
*/
|
|
11
|
+
getSidebarMenues: string;
|
|
7
12
|
};
|
|
8
13
|
export { coreRoutesUrl };
|
package/lib/routes/coreRoutes.js
CHANGED
|
@@ -6,7 +6,12 @@ const coreRoutesUrl = {
|
|
|
6
6
|
/** Endpoint to get file details (get-file-details)
|
|
7
7
|
* for more details refer https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1#bookmark=id.nhxx52qzdmct
|
|
8
8
|
*/
|
|
9
|
-
getFileDetails: "get-file-details"
|
|
9
|
+
getFileDetails: "get-file-details",
|
|
10
|
+
/**
|
|
11
|
+
* @description Endpoint to get sidebar menu (menu)
|
|
12
|
+
* for more details refer @link {https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1&tab=t.0#bookmark=id.ze2wrml3eew3}
|
|
13
|
+
*/
|
|
14
|
+
getSidebarMenues: "menu"
|
|
10
15
|
};
|
|
11
16
|
exports.coreRoutesUrl = coreRoutesUrl;
|
|
12
17
|
Object.freeze(coreRoutesUrl);
|