@edifice.io/client 2.0.3 → 2.0.5-develop-pedago.20250123145105
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.
- package/dist/apps/timeline/interfaces.d.ts +1 -1
- package/dist/cache/Service.d.ts +1 -1
- package/dist/configure/Theme.d.ts +1 -1
- package/dist/configure/interfaces.d.ts +1 -2
- package/dist/globals.d.ts +2 -0
- package/dist/idiom/Service.d.ts +2 -2
- package/dist/index.cjs +1 -1
- package/dist/index.js +747 -643
- package/dist/resources/interface.d.ts +8 -0
- package/dist/resources/services/HomeworksResourceService.d.ts +14 -0
- package/dist/resources/services/TimelineGeneratorResourceService.d.ts +14 -0
- package/dist/session/Session.d.ts +5 -5
- package/dist/session/interfaces.d.ts +5 -5
- package/package.json +14 -4
|
@@ -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?:
|
|
56
|
+
readonly contents?: object;
|
|
57
57
|
readonly startDate?: string;
|
|
58
58
|
readonly endDate?: string;
|
|
59
59
|
readonly readCount?: number;
|
package/dist/cache/Service.d.ts
CHANGED
|
@@ -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);
|
|
@@ -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<
|
|
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
|
/**
|
package/dist/idiom/Service.d.ts
CHANGED
|
@@ -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;
|