@edifice.io/client 2.0.4 → 2.0.5-develop-pedago.20250124124139

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.
@@ -53,7 +53,7 @@ export interface Recipient {
53
53
  export interface IFlashMessageModel {
54
54
  readonly id: string;
55
55
  readonly title?: string;
56
- readonly contents?: Object;
56
+ readonly contents?: object;
57
57
  readonly startDate?: string;
58
58
  readonly endDate?: string;
59
59
  readonly readCount?: number;
@@ -1,5 +1,5 @@
1
- import { IHttpParams, IHttpResponse } from '../transport/interfaces';
2
1
  import { IOdeServices } from '../services/OdeServices';
2
+ import { IHttpParams, IHttpResponse } from '../transport/interfaces';
3
3
  export declare class CacheService {
4
4
  private context;
5
5
  constructor(context: IOdeServices);
@@ -30,5 +30,5 @@ export declare class Theme implements ITheme {
30
30
  listThemes(): Promise<IThemeDesc[]>;
31
31
  setDefaultTheme(theme: IThemeDesc): Promise<void>;
32
32
  listSkins(): Promise<IThemeConfOverriding[]>;
33
- getHelpPath(): Promise<String>;
33
+ getHelpPath(): Promise<string>;
34
34
  }
@@ -42,7 +42,6 @@ export interface IConfigurationFramework {
42
42
  readonly idiom: IIdiom;
43
43
  listLanguages(): Promise<string[]>;
44
44
  };
45
- readonly School: {};
46
45
  readonly User: {
47
46
  /** User's preferences.*/
48
47
  readonly preferences: IUserPreferences;
@@ -130,7 +129,7 @@ export interface ITheme {
130
129
  /** List available skins. */
131
130
  listSkins(): Promise<IThemeConfOverriding[]>;
132
131
  /** Get the help path, which can be dedicated to 1D or 2D. */
133
- getHelpPath(): Promise<String>;
132
+ getHelpPath(): Promise<string>;
134
133
  }
135
134
  export interface IThemeDesc {
136
135
  _id: string;
package/dist/globals.d.ts CHANGED
@@ -25,11 +25,13 @@ export declare const APP: {
25
25
  readonly TIMELINE: "timeline";
26
26
  readonly WORKSPACE: "workspace";
27
27
  readonly EXPLORER: "explorer";
28
+ readonly HOMEWORKS: "homeworks";
28
29
  readonly VIDEO: "video";
29
30
  readonly MINDMAP: "mindmap";
30
31
  readonly SCRAPBOOK: "scrapbook";
31
32
  readonly COLLABORATIVEWALL: "collaborativewall";
32
33
  readonly WIKI: "wiki";
34
+ readonly TIMELINEGENERATOR: "timelinegenerator";
33
35
  };
34
36
  export type App = (typeof APP)[keyof typeof APP] | string;
35
37
  /**
@@ -1,6 +1,6 @@
1
- import { AddBundleCallback, IIdiom } from './interfaces';
2
- import { IOdeServices } from '../services/OdeServices';
3
1
  import { App } from '../globals';
2
+ import { IOdeServices } from '../services/OdeServices';
3
+ import { AddBundleCallback, IIdiom } from './interfaces';
4
4
  export declare const defaultDiacriticsRemovalMap: {
5
5
  base: string;
6
6
  letters: RegExp;