cloud-ide-lms-model 1.0.73 → 1.0.74
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.
|
@@ -5,6 +5,8 @@ type ISystemThemeRequestErrorLogger = {
|
|
|
5
5
|
};
|
|
6
6
|
declare class MSystemThemeRequest {
|
|
7
7
|
syth_theme_id?: string;
|
|
8
|
+
syupth_user_id_user?: string;
|
|
9
|
+
syoth_entity_id_syen?: string;
|
|
8
10
|
constructor(init: MSystemThemeRequest);
|
|
9
11
|
Validate?(): Partial<ISystemThemeRequestErrorLogger>;
|
|
10
12
|
}
|
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* @description type for system logs
|
|
3
|
+
* @typedef {string} log_type
|
|
4
|
+
* @property {string} log_type - type of log, can be 'TRACE', 'SECURITY', 'APPLICATION_ERROR'
|
|
5
|
+
* 'TRACE' - for general tracing of actions like login, logout, page access,
|
|
6
|
+
* 'SECURITY' - for security related events like unauthorized access, password reset, etc.
|
|
7
|
+
* 'APPLICATION_ERROR' - for application errors LIKE database connection failure, email service failure, internal server errors
|
|
8
|
+
*/
|
|
9
|
+
export type log_type = 'TRACE' | 'SECURITY' | 'APPLICATION_ERROR';
|
|
2
10
|
declare class ICoreSylog {
|
|
3
11
|
_id?: string;
|
|
4
12
|
sylog_id_user?: string;
|