cloud-ide-lms-model 1.0.64 → 1.0.66

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,8 +4,27 @@ declare class ICoreSytm {
4
4
  sytm_title?: string;
5
5
  sytm_desc?: string;
6
6
  sytm_configuration?: any;
7
+ sytm_layout?: ICoreSytmLayout;
7
8
  sytm_page_id_sypg?: string;
8
9
  sytm_preview_id_fm?: string;
9
10
  sytm_isactive?: boolean;
10
11
  }
11
- export { ICoreSytm };
12
+ declare class ICoreSytmLayout {
13
+ sytm_layout_sidebar?: {
14
+ status: boolean;
15
+ };
16
+ sytm_layout_header?: {
17
+ status: boolean;
18
+ };
19
+ sytm_layout_footer?: {
20
+ status: boolean;
21
+ };
22
+ sytm_layout_breadcrumb?: {
23
+ status: boolean;
24
+ };
25
+ sytm_layout_console?: {
26
+ status: boolean;
27
+ };
28
+ }
29
+ export { ICoreSytm, // interface
30
+ ICoreSytmLayout };
@@ -1,7 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ICoreSytm = void 0;
3
+ exports.ICoreSytmLayout = exports.ICoreSytm = void 0;
4
4
  /* INTERFASE START */
5
5
  class ICoreSytm {
6
6
  }
7
7
  exports.ICoreSytm = ICoreSytm;
8
+ class ICoreSytmLayout {
9
+ }
10
+ exports.ICoreSytmLayout = ICoreSytmLayout;
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.64",
8
+ "version": "1.0.66",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",