mftsccs-browser 2.1.157-beta → 2.1.159-beta
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/bundle-report.html +39 -0
- package/dist/main.bundle.js +2 -1
- package/dist/main.bundle.js.LICENSE.txt +1 -4
- package/dist/serviceWorker.bundle.js +2 -1
- package/dist/serviceWorker.bundle.js.LICENSE.txt +1 -4
- package/dist/types/DataStructures/BaseUrl.d.ts +1 -0
- package/dist/types/Middleware/logger.service.d.ts +4 -0
- package/dist/types/Widgets/NormalizeStyles.service.d.ts +1 -0
- package/package.json +3 -5
|
@@ -35,6 +35,7 @@ export declare class BaseUrl {
|
|
|
35
35
|
static GetSuggestedConcepts(): string;
|
|
36
36
|
static GetSuggestedConnections(): string;
|
|
37
37
|
static PostLogger(): string;
|
|
38
|
+
static LogHealth(): string;
|
|
38
39
|
static GetAllPrefetchConnectionsUrl(): string;
|
|
39
40
|
static GetAllLinkerConnectionOfConceptUrl(): string;
|
|
40
41
|
static GetAllLinkerConnectionToConceptUrl(): string;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export declare class Logger {
|
|
2
|
+
private static isLoggerActive;
|
|
3
|
+
private static lastCheck;
|
|
4
|
+
private static checkInterval;
|
|
2
5
|
private static logLevel;
|
|
3
6
|
private static packageLogsData;
|
|
4
7
|
private static applicationLogsData;
|
|
@@ -40,6 +43,7 @@ export declare class Logger {
|
|
|
40
43
|
static logfunction(myFunction: string, ...args: any[]): any;
|
|
41
44
|
static logError(startTime: number, userId: string | number, operationType?: "read" | "create" | "update" | "delete" | "search", requestFrom?: string, requestIP?: string, responseStatus?: number, responseData?: any, functionName?: string, functionParameters?: any[], userAgent?: string, conceptsUsed?: string[]): void;
|
|
42
45
|
static logApplication(level: string, message: string, data?: any): void;
|
|
46
|
+
static checkLoggerServerStatus(): Promise<void>;
|
|
43
47
|
/**
|
|
44
48
|
* Helper method to send logs to the server.
|
|
45
49
|
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function normalizeCSS(cssString: string): Promise<string | null>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mftsccs-browser",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.159-beta",
|
|
4
4
|
"environment": "production",
|
|
5
5
|
"description": "Full Pack of concept and connection system",
|
|
6
6
|
"main": "dist/main.bundle.js",
|
|
@@ -24,11 +24,9 @@
|
|
|
24
24
|
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
|
|
25
25
|
"@babel/preset-env": "^7.25.4",
|
|
26
26
|
"@babel/preset-typescript": "^7.24.7",
|
|
27
|
-
"babel-jest": "^29.7.0",
|
|
28
27
|
"cross-fetch": "^4.0.0",
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"jest-environment-jsdom": "^29.7.0",
|
|
28
|
+
"postcss": "^8.5.6",
|
|
29
|
+
"postcss-nested": "^7.0.2",
|
|
32
30
|
"ts-loader": "^9.5.1",
|
|
33
31
|
"typescript": "^5.3.2",
|
|
34
32
|
"webpack": "^5.89.0",
|