cloud-ide-lms-model 1.0.16 → 1.0.17
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.
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const coreRoutesUrl: {
|
|
2
2
|
/** Endpoint to get file details (get-file-details)
|
|
3
3
|
* for more details refer https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1#bookmark=id.nhxx52qzdmct
|
|
4
4
|
*/
|
|
5
5
|
module: string;
|
|
6
6
|
getFileDetails: string;
|
|
7
7
|
};
|
|
8
|
-
export {
|
|
8
|
+
export { coreRoutesUrl };
|
package/lib/routes/coreRoutes.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
const
|
|
3
|
+
exports.coreRoutesUrl = void 0;
|
|
4
|
+
const coreRoutesUrl = {
|
|
5
5
|
/** Endpoint to get file details (get-file-details)
|
|
6
6
|
* for more details refer https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1#bookmark=id.nhxx52qzdmct
|
|
7
7
|
*/
|
|
8
8
|
module: 'core',
|
|
9
9
|
getFileDetails: "get-file-details"
|
|
10
10
|
};
|
|
11
|
-
exports.
|
|
12
|
-
Object.freeze(
|
|
11
|
+
exports.coreRoutesUrl = coreRoutesUrl;
|
|
12
|
+
Object.freeze(coreRoutesUrl);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const hostManagerRoutesUrl: {
|
|
2
2
|
/** Base path for host name to interceptor and replace with actual URL
|
|
3
3
|
* for more details refer https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1#bookmark=id.j3vzaryhajl1
|
|
4
4
|
* __version__ need to add in future
|
|
5
5
|
*/
|
|
6
6
|
coreModuleHost: string;
|
|
7
7
|
};
|
|
8
|
-
export {
|
|
8
|
+
export { hostManagerRoutesUrl };
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
const
|
|
3
|
+
exports.hostManagerRoutesUrl = void 0;
|
|
4
|
+
const hostManagerRoutesUrl = {
|
|
5
5
|
/** Base path for host name to interceptor and replace with actual URL
|
|
6
6
|
* for more details refer https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1#bookmark=id.j3vzaryhajl1
|
|
7
7
|
* __version__ need to add in future
|
|
8
8
|
*/
|
|
9
9
|
coreModuleHost: "__cloud_ide_suite_layout__"
|
|
10
10
|
};
|
|
11
|
-
exports.
|
|
12
|
-
Object.freeze(
|
|
11
|
+
exports.hostManagerRoutesUrl = hostManagerRoutesUrl;
|
|
12
|
+
Object.freeze(hostManagerRoutesUrl);
|