cloud-ide-lms-model 1.0.92 → 1.0.95
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/lib/routes/coreRoutes.d.ts +4 -0
- package/lib/routes/coreRoutes.js +4 -0
- package/lib/schema/core/core_system_page_notes_manager.d.ts +14 -0
- package/lib/schema/core/core_system_page_notes_manager.js +7 -0
- package/lib/schema/core/index.d.ts +1 -0
- package/lib/schema/core/index.js +1 -0
- package/package.json +1 -1
|
@@ -17,5 +17,9 @@ declare const coreRoutesUrl: {
|
|
|
17
17
|
* @description Endpoint to create the language (create-language)
|
|
18
18
|
*/
|
|
19
19
|
createLanguage: string;
|
|
20
|
+
/**
|
|
21
|
+
* @description to get the notes taken by the user (get-system-page-notes-manager)
|
|
22
|
+
*/
|
|
23
|
+
systemPageNotesManager: string;
|
|
20
24
|
};
|
|
21
25
|
export { coreRoutesUrl };
|
package/lib/routes/coreRoutes.js
CHANGED
|
@@ -20,6 +20,10 @@ const coreRoutesUrl = {
|
|
|
20
20
|
* @description Endpoint to create the language (create-language)
|
|
21
21
|
*/
|
|
22
22
|
createLanguage: "create-language",
|
|
23
|
+
/**
|
|
24
|
+
* @description to get the notes taken by the user (get-system-page-notes-manager)
|
|
25
|
+
*/
|
|
26
|
+
systemPageNotesManager: "system-page-notes-manager",
|
|
23
27
|
};
|
|
24
28
|
exports.coreRoutesUrl = coreRoutesUrl;
|
|
25
29
|
Object.freeze(coreRoutesUrl);
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare class ICoreSypn {
|
|
2
|
+
_id?: string;
|
|
3
|
+
sypn_titile?: string;
|
|
4
|
+
sypn_desc?: string;
|
|
5
|
+
sypn_page_id_sypg?: string;
|
|
6
|
+
sypn_entity_id_sype?: string;
|
|
7
|
+
sypn_page_them_id_sytm?: string;
|
|
8
|
+
sypn_user_id_user?: string;
|
|
9
|
+
sypn_is_page_specific?: string;
|
|
10
|
+
sypn_is_user_specific?: string;
|
|
11
|
+
sypn_is_entity_specific?: string;
|
|
12
|
+
sypn_is_theme_specific?: string;
|
|
13
|
+
}
|
|
14
|
+
export { ICoreSypn };
|
package/lib/schema/core/index.js
CHANGED
|
@@ -33,3 +33,4 @@ __exportStar(require("./core_language"), exports);
|
|
|
33
33
|
__exportStar(require("./core_system_theme_user_preferences"), exports);
|
|
34
34
|
__exportStar(require("./core_system_themes"), exports);
|
|
35
35
|
__exportStar(require("./core_system_organization_themes"), exports);
|
|
36
|
+
__exportStar(require("./core_system_page_notes_manager"), exports);
|