opticore-webapp 1.0.68 → 1.0.69
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/index.cjs +778 -560
- package/dist/index.d.cts +462 -148
- package/dist/index.d.ts +462 -148
- package/dist/index.js +780 -558
- package/dist/utils/translations/message.translation.en.json +20 -1
- package/dist/utils/translations/message.translation.fr.json +1 -1
- package/package.json +6 -7
|
@@ -16,9 +16,12 @@
|
|
|
16
16
|
"memoryUsageSystem": "Memory usage system",
|
|
17
17
|
"dbConnection": "DataBase connection",
|
|
18
18
|
"dbConnectionClosed": "MySQL connection is closed",
|
|
19
|
+
"DB_CON_FAILED": "Database connection failed: {dbErrorMessage}",
|
|
19
20
|
"mysqlErrorCon": "MysqlError connection",
|
|
20
21
|
"mySQLError": "MysqlError",
|
|
21
22
|
"mySqlCloseConnection": "MySql close connection",
|
|
23
|
+
"DEPENDENCY_INJECTION_FAILED": "Dependency injection failed: {depErrorMessage}",
|
|
24
|
+
"SERVER_COMPONENT_CONFIG_FAILED": "Server component configuration failed: {errorMessage}",
|
|
22
25
|
"verifyExistingKey": "Verify Existing Key",
|
|
23
26
|
"invalidRequest": "Invalid request",
|
|
24
27
|
"tokenNotProvided": "No token provided.",
|
|
@@ -97,6 +100,7 @@
|
|
|
97
100
|
"ENOENT:NoSuchFileOrDir": "ENOENT:NoSuchFileOrDir",
|
|
98
101
|
"serverRunning mode": "serverRunning mode",
|
|
99
102
|
"server": "server",
|
|
103
|
+
"HTTP_SERVER_FAILED": "HTTP server startup failed: {errorMessage}",
|
|
100
104
|
"registerDependencies": "Register Dependencies",
|
|
101
105
|
"tailingServerLog": "OptiCore Web Server log file",
|
|
102
106
|
"HOT_RELOAD_READY": "Server HTTP started - Hot reload ready",
|
|
@@ -175,5 +179,20 @@
|
|
|
175
179
|
"SERVER_FORCE_SHUTDOWN": "Server forced to shutdown after timeout",
|
|
176
180
|
"STARTUP_ERROR": "Startup Error",
|
|
177
181
|
"noLocalLang": "Local Language Missing",
|
|
178
|
-
"localLangMissing": "Local language configuration is missing : DEFAULT_LOCAL_LANG"
|
|
182
|
+
"localLangMissing": "Local language configuration is missing : DEFAULT_LOCAL_LANG",
|
|
183
|
+
"CHANGE_DETECTION": "Change detected : {fileName} -- {eventType}",
|
|
184
|
+
"RELOAD_ROUTES": "Reloading application routes",
|
|
185
|
+
"HMR_DISABLED": "HMR disabled",
|
|
186
|
+
"HMR_WATCH_PATTERNS_MISSING": "HMR_WATCH_PATTERNS missing from .env",
|
|
187
|
+
"HMR_WATCH_PATTERNS_EMPTY": "HMR_WATCH_PATTERNS is empty",
|
|
188
|
+
"HMR_IGNORE_PATTERNS_DEFAULT": "Default HMR exclusions",
|
|
189
|
+
"HMR_CONFIG_LOADED": "HMR configuration loaded",
|
|
190
|
+
"HMR_CONFIG_DETAILS": "Monitoring: {watchCount} patterns | Ignored: {ignoreCount} | Debounce: {debounce}ms | Max Restarts: {maxRestarts} | Auto Restart: {autoRestart}",
|
|
191
|
+
"HMR_CONFIG_ERROR": "HMR configuration error",
|
|
192
|
+
"HMR_NOT_STARTED": "HMR not started",
|
|
193
|
+
"HMR_AUTO_RESTART_DISABLED": "HMR automatic restart disabled",
|
|
194
|
+
"HMR_RESTART_LIMIT_EXCEEDED": "HMR revision limit reached",
|
|
195
|
+
"HMR_RESTART_LIMIT_MESSAGE": "Maximum scheduled revisions per minute reached. Next revision to be executed in {nextReset} seconds",
|
|
196
|
+
"HMR_WATCHING_DETAILS": "Monitoring {watchCount} models, excluding {ignoreCount} models",
|
|
197
|
+
"FILE_CHANGE_DETECTED": "Change detected"
|
|
179
198
|
}
|
|
@@ -170,5 +170,5 @@
|
|
|
170
170
|
"STARTUP_ERROR": "Erreur de Démarrage",
|
|
171
171
|
"ERROR_HANDLING_CONFIGURED": "La gestion des erreurs a été configurée",
|
|
172
172
|
"ERROR_EMITTED": "Erreur Émise",
|
|
173
|
-
"CONFIG_RELOADED": "Configuration Rechargée"
|
|
173
|
+
"CONFIG_RELOADED": "Configuration Rechargée"
|
|
174
174
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opticore-webapp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.69",
|
|
4
4
|
"description": "wep server",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -35,17 +35,16 @@
|
|
|
35
35
|
"gradient-string": "^3.0.0",
|
|
36
36
|
"opticore-catch-exception-error": "^1.0.26",
|
|
37
37
|
"opticore-dependency-inject": "^1.0.2",
|
|
38
|
-
"opticore-env-access": "^1.0.
|
|
38
|
+
"opticore-env-access": "^1.0.12",
|
|
39
39
|
"opticore-express": "^1.0.7",
|
|
40
40
|
"opticore-http-response": "^1.0.9",
|
|
41
41
|
"opticore-loader-translation": "^1.0.3",
|
|
42
42
|
"opticore-logger": "^1.0.22",
|
|
43
|
-
"opticore-request-call-event": "^1.0.
|
|
44
|
-
"opticore-router": "^1.0.
|
|
43
|
+
"opticore-request-call-event": "^1.0.8",
|
|
44
|
+
"opticore-router": "^1.0.19",
|
|
45
45
|
"opticore-server-logger": "^1.0.7",
|
|
46
|
-
"opticore-translator": "^1.0.
|
|
47
|
-
"opticore-validator": "^1.0.3"
|
|
48
|
-
"opticore-watcher": "^1.0.21"
|
|
46
|
+
"opticore-translator": "^1.0.11",
|
|
47
|
+
"opticore-validator": "^1.0.3"
|
|
49
48
|
},
|
|
50
49
|
"devDependencies": {
|
|
51
50
|
"@types/cors": "^2.8.18",
|