cloud-ide-lms-model 1.0.104 → 1.0.106

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.
@@ -13,11 +13,17 @@ declare class MSystemThemeRequest {
13
13
  interface SystemThemeControllerRespoonse extends controllerResponse {
14
14
  data?: SystemThemeControllerRespoonseData;
15
15
  }
16
+ interface SystemThemesListControllerRespoonse extends controllerResponse {
17
+ data?: SystemThemesListControllerRespoonseData;
18
+ }
16
19
  interface SystemThemeControllerRespoonseData {
17
20
  core_system_themes?: ICoreSyth;
18
21
  core_system_theme_user_preferences?: ICoreSyupth;
19
22
  core_system_organization_themes?: ICoreSyoth;
20
23
  }
24
+ interface SystemThemesListControllerRespoonseData {
25
+ core_system_themes?: ICoreSyth[];
26
+ }
21
27
  export { ISystemThemeRequestErrorLogger, //interface
22
28
  MSystemThemeRequest, // model
23
- SystemThemeControllerRespoonse, SystemThemeControllerRespoonseData };
29
+ SystemThemeControllerRespoonse, SystemThemeControllerRespoonseData, SystemThemesListControllerRespoonse, SystemThemesListControllerRespoonseData };
@@ -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);
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.104",
8
+ "version": "1.0.106",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",