cloud-ide-lms-model 1.0.18 → 1.0.20

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,3 +1,4 @@
1
+ export * from "./core_page_elements";
1
2
  export * from "./design-config";
2
3
  export * from "./file-manager";
3
4
  export * from "./entity";
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./core_page_elements"), exports);
17
18
  __exportStar(require("./design-config"), exports);
18
19
  __exportStar(require("./file-manager"), exports);
19
20
  __exportStar(require("./entity"), exports);
@@ -0,0 +1,9 @@
1
+ declare const designConfigRoutesUrl: {
2
+ module: string;
3
+ /**
4
+ * @description Endpoint to get page details (page)
5
+ * for more details refer {@link https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1&tab=t.0#bookmark=id.qbwilgqdw9a2}
6
+ */
7
+ getPageData: string;
8
+ };
9
+ export { designConfigRoutesUrl };
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.designConfigRoutesUrl = void 0;
4
+ const designConfigRoutesUrl = {
5
+ module: 'design-config',
6
+ /**
7
+ * @description Endpoint to get page details (page)
8
+ * for more details refer {@link https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1&tab=t.0#bookmark=id.qbwilgqdw9a2}
9
+ */
10
+ getPageData: "page"
11
+ };
12
+ exports.designConfigRoutesUrl = designConfigRoutesUrl;
13
+ Object.freeze(designConfigRoutesUrl);
@@ -3,6 +3,6 @@ declare const hostManagerRoutesUrl: {
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
- coreModuleHost: string;
6
+ cideSuiteHost: string;
7
7
  };
8
8
  export { hostManagerRoutesUrl };
@@ -6,7 +6,7 @@ const hostManagerRoutesUrl = {
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
- coreModuleHost: "__cloud_ide_suite_layout__"
9
+ cideSuiteHost: "__cloud_ide_suite_layout__"
10
10
  };
11
11
  exports.hostManagerRoutesUrl = hostManagerRoutesUrl;
12
12
  Object.freeze(hostManagerRoutesUrl);
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.18",
8
+ "version": "1.0.20",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",