cloud-ide-lms-model 1.0.19 → 1.0.21

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.
@@ -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);
@@ -1,2 +1,3 @@
1
1
  export * from './hostManagerRoutes';
2
2
  export * from './coreRoutes';
3
+ export * from './designConfigRoutes';
@@ -16,3 +16,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./hostManagerRoutes"), exports);
18
18
  __exportStar(require("./coreRoutes"), exports);
19
+ __exportStar(require("./designConfigRoutes"), 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.19",
8
+ "version": "1.0.21",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",