@andrewcaires/express 2.0.4 → 2.0.5
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.js +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.esm.js +1 -1
- package/package.json +5 -5
package/dist/index.cjs.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* @andrewcaires/express v2.0.
|
|
2
|
+
* @andrewcaires/express v2.0.5
|
|
3
3
|
* Decorators for express
|
|
4
4
|
* (c) 2026 Andrew Caires
|
|
5
5
|
* @license: MIT
|
|
@@ -402,7 +402,7 @@ interface OpenAPIObject {
|
|
|
402
402
|
|
|
403
403
|
type ParseFunction = (_$: typeof Validation) => TypeObject<ValidationBase>;
|
|
404
404
|
|
|
405
|
-
declare class Application extends EventEmitter {
|
|
405
|
+
declare class Application<T extends TypeAnyObject = TypeAnyObject> extends EventEmitter<T> {
|
|
406
406
|
private readonly _app;
|
|
407
407
|
private _server?;
|
|
408
408
|
private readonly _options;
|
package/dist/index.esm.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@andrewcaires/express",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.5",
|
|
4
4
|
"description": "Decorators for express",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs.js",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@andrewcaires/decorator": "^1.1.1",
|
|
40
40
|
"@andrewcaires/node": "^1.2.10",
|
|
41
|
-
"@andrewcaires/utils.js": "^0.4.
|
|
41
|
+
"@andrewcaires/utils.js": "^0.4.29",
|
|
42
42
|
"compression": "^1.8.1",
|
|
43
43
|
"cookie-parser": "^1.4.7",
|
|
44
44
|
"cors": "^2.8.6",
|
|
@@ -51,20 +51,20 @@
|
|
|
51
51
|
"@rollup/plugin-commonjs": "^29.0.0",
|
|
52
52
|
"@rollup/plugin-terser": "^0.4.4",
|
|
53
53
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
54
|
-
"@rollup/rollup-darwin-arm64": "^4.
|
|
54
|
+
"@rollup/rollup-darwin-arm64": "^4.57.1",
|
|
55
55
|
"@types/compression": "^1.8.1",
|
|
56
56
|
"@types/cookie-parser": "^1.4.10",
|
|
57
57
|
"@types/cors": "^2.8.19",
|
|
58
58
|
"@types/express": "^5.0.6",
|
|
59
59
|
"@types/express-session": "^1.18.2",
|
|
60
60
|
"@types/multer": "^2.0.0",
|
|
61
|
-
"@types/node": "^25.
|
|
61
|
+
"@types/node": "^25.2.3",
|
|
62
62
|
"@types/request-ip": "^0.0.41",
|
|
63
63
|
"@types/swagger-ui-express": "^4.1.8",
|
|
64
64
|
"eslint": "^9.39.2",
|
|
65
65
|
"rollup-plugin-dts": "^6.3.0",
|
|
66
66
|
"swagger-ui-express": "^5.0.1",
|
|
67
67
|
"tslib": "^2.8.1",
|
|
68
|
-
"typescript-eslint": "^8.
|
|
68
|
+
"typescript-eslint": "^8.55.0"
|
|
69
69
|
}
|
|
70
70
|
}
|