@vercube/core 0.0.7 → 0.0.8
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.d.mts +2 -6
- package/dist/index.mjs +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -46,10 +46,6 @@ declare namespace ConfigTypes {
|
|
|
46
46
|
*/
|
|
47
47
|
duration?: number;
|
|
48
48
|
};
|
|
49
|
-
/**
|
|
50
|
-
* Additional user configuration
|
|
51
|
-
*/
|
|
52
|
-
[key: string]: unknown;
|
|
53
49
|
}
|
|
54
50
|
/**
|
|
55
51
|
* Configuration options for experimental features.
|
|
@@ -132,7 +128,7 @@ declare namespace ConfigTypes {
|
|
|
132
128
|
/**
|
|
133
129
|
* Main configuration interface for the Vercube application.
|
|
134
130
|
*/
|
|
135
|
-
interface Config {
|
|
131
|
+
interface Config<RuntimeUserConfig = Record<string, unknown>> {
|
|
136
132
|
/**
|
|
137
133
|
* Flag indicating if the application is running in production mode.
|
|
138
134
|
*/
|
|
@@ -152,7 +148,7 @@ declare namespace ConfigTypes {
|
|
|
152
148
|
/**
|
|
153
149
|
* Runtime configuration for the application.
|
|
154
150
|
*/
|
|
155
|
-
runtime?: RuntimeConfig;
|
|
151
|
+
runtime?: RuntimeConfig & RuntimeUserConfig;
|
|
156
152
|
/**
|
|
157
153
|
* Experimental features configuration.
|
|
158
154
|
*/
|
package/dist/index.mjs
CHANGED
|
@@ -2080,7 +2080,7 @@ function Response$1() {
|
|
|
2080
2080
|
|
|
2081
2081
|
//#endregion
|
|
2082
2082
|
//#region src/Decorators/Http/Trace.ts
|
|
2083
|
-
var import_decorate$2 = __toESM(require_decorate()
|
|
2083
|
+
var import_decorate$2 = __toESM(require_decorate());
|
|
2084
2084
|
/**
|
|
2085
2085
|
* A decorator class for handling HTTP TRACE requests.
|
|
2086
2086
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercube/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"description": "Core module for Vercube framework",
|
|
5
5
|
"repository": "@vercube/core",
|
|
6
6
|
"license": "MIT",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"pathe": "2.0.3",
|
|
25
25
|
"rou3": "0.6.3",
|
|
26
26
|
"srvx": "0.7.5",
|
|
27
|
-
"@vercube/di": "0.0.
|
|
28
|
-
"@vercube/logger": "0.0.
|
|
27
|
+
"@vercube/di": "0.0.8",
|
|
28
|
+
"@vercube/logger": "0.0.8"
|
|
29
29
|
},
|
|
30
30
|
"publishConfig": {
|
|
31
31
|
"access": "public"
|