cloud-ide-lms-model 1.0.105 → 1.0.107

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.
@@ -9,5 +9,9 @@ declare const designConfigRoutesUrl: {
9
9
  * this will return the user specific design, else org
10
10
  */
11
11
  getSystemTheme: string;
12
+ /**
13
+ * this will return the system theme list for the application
14
+ */
15
+ getSystemThemesList: string;
12
16
  };
13
17
  export { designConfigRoutesUrl };
@@ -11,7 +11,11 @@ const designConfigRoutesUrl = {
11
11
  /**
12
12
  * this will return the user specific design, else org
13
13
  */
14
- getSystemTheme: "system-theme"
14
+ getSystemTheme: "system-theme",
15
+ /**
16
+ * this will return the system theme list for the application
17
+ */
18
+ getSystemThemesList: "system-themes-list"
15
19
  };
16
20
  exports.designConfigRoutesUrl = designConfigRoutesUrl;
17
21
  Object.freeze(designConfigRoutesUrl);
@@ -4,6 +4,7 @@ declare class ICoreSyth {
4
4
  syth_theme_id?: string;
5
5
  syth_theme_name?: string;
6
6
  syth_is_public?: boolean;
7
+ syth_is_default?: boolean;
7
8
  syth_properties?: any;
8
9
  }
9
10
  interface ICoreSythDrawer {
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.105",
8
+ "version": "1.0.107",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",