@eggjs/controller-decorator 3.22.0 → 3.23.0
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.
|
@@ -34,7 +34,7 @@ export declare class HTTPMethodMeta implements MethodMeta {
|
|
|
34
34
|
readonly contextParamIndex: number | undefined;
|
|
35
35
|
readonly paramMap: Map<number, ParamMeta>;
|
|
36
36
|
readonly priority: number;
|
|
37
|
-
readonly
|
|
37
|
+
readonly needAcl: boolean;
|
|
38
38
|
readonly aclCode: string | undefined;
|
|
39
39
|
readonly hosts: string[] | undefined;
|
|
40
40
|
constructor(name: string, path: string, method: HTTPMethodEnum, middlewares: MiddlewareFunc[], contextParamIndex: number | undefined, paramTypeMap: Map<number, ParamMeta>, priority: number, needAcl: boolean, aclCode: string | undefined, hosts: string[] | undefined);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eggjs/controller-decorator",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.23.0",
|
|
4
4
|
"description": "tegg controller decorator",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"egg",
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"node": ">=14.0.0"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@eggjs/core-decorator": "^3.
|
|
41
|
-
"@eggjs/tegg-common-util": "^3.
|
|
42
|
-
"@eggjs/tegg-metadata": "^3.
|
|
40
|
+
"@eggjs/core-decorator": "^3.23.0",
|
|
41
|
+
"@eggjs/tegg-common-util": "^3.23.0",
|
|
42
|
+
"@eggjs/tegg-metadata": "^3.23.0",
|
|
43
43
|
"path-to-regexp": "^1.8.0",
|
|
44
44
|
"reflect-metadata": "^0.1.13"
|
|
45
45
|
},
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"publishConfig": {
|
|
56
56
|
"access": "public"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "83fd5503668e12ec996ec4d4e46da9b1f559d03d"
|
|
59
59
|
}
|