cloud-ide-lms-model 1.0.13 → 1.0.15

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.
@@ -2,11 +2,6 @@ declare const controllerRoutes: {
2
2
  /** Endpoint to core module
3
3
  * for more details refer https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit#bookmark=id.r7i5y3qldjhw
4
4
  */
5
- coreRoutes: {
6
- url: string;
7
- children: {
8
- getFileDetails: string;
9
- };
10
- };
5
+ coreRoutes: string;
11
6
  };
12
7
  export { controllerRoutes };
@@ -1,15 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.controllerRoutes = void 0;
4
- const coreRoutes_1 = require("./coreRoutes");
5
4
  const controllerRoutes = {
6
5
  /** Endpoint to core module
7
6
  * for more details refer https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit#bookmark=id.r7i5y3qldjhw
8
7
  */
9
- coreRoutes: {
10
- url: "core",
11
- children: coreRoutes_1.coreRoutes
12
- }
8
+ coreRoutes: "core"
13
9
  };
14
10
  exports.controllerRoutes = controllerRoutes;
15
11
  Object.freeze(controllerRoutes);
@@ -1,6 +1,6 @@
1
1
  declare const coreRoutes: {
2
- /** Endpoint to get file details
3
- * for more details refer https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit#bookmark=id.adkmvq2c22du
2
+ /** Endpoint to get file details (get-file-details)
3
+ * for more details refer https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1#bookmark=id.nhxx52qzdmct
4
4
  */
5
5
  getFileDetails: string;
6
6
  };
@@ -2,8 +2,8 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.coreRoutes = void 0;
4
4
  const coreRoutes = {
5
- /** Endpoint to get file details
6
- * for more details refer https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit#bookmark=id.adkmvq2c22du
5
+ /** Endpoint to get file details (get-file-details)
6
+ * for more details refer https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1#bookmark=id.nhxx52qzdmct
7
7
  */
8
8
  getFileDetails: "get-file-details"
9
9
  };
@@ -1,15 +1,8 @@
1
- export interface CloudIdeRoute {
2
- [key: string]: {
3
- url: string;
4
- children: {
5
- [key: string]: {
6
- url: string;
7
- children: {
8
- [key: string]: string;
9
- };
10
- };
11
- };
12
- };
13
- }
14
- declare const hostManagerRoutes: CloudIdeRoute;
1
+ declare const hostManagerRoutes: {
2
+ /** Base path for host name to interceptor and replace with actual URL
3
+ * for more details refer https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1#bookmark=id.j3vzaryhajl1
4
+ * __version__ need to add in future
5
+ */
6
+ coreModuleHost: string;
7
+ };
15
8
  export { hostManagerRoutes };
@@ -1,23 +1,12 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.hostManagerRoutes = void 0;
4
- const controllerRoutes_1 = require("./controllerRoutes");
5
4
  const hostManagerRoutes = {
6
5
  /** Base path for host name to interceptor and replace with actual URL
7
- * for more details refer
6
+ * for more details refer https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1#bookmark=id.j3vzaryhajl1
7
+ * __version__ need to add in future
8
8
  */
9
- cloudIdeSuteLayoutHost: {
10
- url: "https://__cloud_ide_suite_layout__/__version__",
11
- children: controllerRoutes_1.controllerRoutes
12
- },
13
- cloudIdeSuteAdminHost: {
14
- url: "https://__cloud_ide_suite_admin__/__version__",
15
- children: controllerRoutes_1.controllerRoutes
16
- },
17
- cloudIdeSuteInventoryHost: {
18
- url: "https://__cloud_ide_suite_inventory__/__version__",
19
- children: controllerRoutes_1.controllerRoutes
20
- }
9
+ coreModuleHost: "https://__cloud_ide_suite_layout__"
21
10
  };
22
11
  exports.hostManagerRoutes = hostManagerRoutes;
23
12
  Object.freeze(hostManagerRoutes);
@@ -1 +1,2 @@
1
1
  export * from './hostManagerRoutes';
2
+ export * from './coreRoutes';
@@ -15,3 +15,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./hostManagerRoutes"), exports);
18
+ __exportStar(require("./coreRoutes"), 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.13",
8
+ "version": "1.0.15",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",