@nestia/core 12.0.0-rc.4 → 12.0.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.
|
@@ -68,7 +68,7 @@ export declare function TypedException<T>(props: TypedException.IProps<T>): Meth
|
|
|
68
68
|
* @author Jeongho Nam - https://github.com/samchon
|
|
69
69
|
* @deprecated Use {@link TypedException.IProps} typed function instead. This
|
|
70
70
|
* typed function is deprecated and will be removed in the next major update.
|
|
71
|
-
* @template T Type of the exception
|
|
71
|
+
* @template T Type of the exception, consumed by the transformer only
|
|
72
72
|
* @param status Status number or pattern like "2XX", "3XX", "4XX", "5XX"
|
|
73
73
|
* @param description Description about the exception
|
|
74
74
|
* @returns Method decorator
|
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nestia/core",
|
|
3
|
-
"version": "12.0.0
|
|
3
|
+
"version": "12.0.0",
|
|
4
4
|
"description": "Super-fast validation decorators of NestJS",
|
|
5
|
-
"types": "lib/index.d.ts",
|
|
6
5
|
"main": "lib/index.js",
|
|
7
6
|
"exports": {
|
|
8
7
|
".": {
|
|
@@ -46,8 +45,8 @@
|
|
|
46
45
|
},
|
|
47
46
|
"homepage": "https://nestia.io",
|
|
48
47
|
"dependencies": {
|
|
49
|
-
"@typia/interface": "^13.0.
|
|
50
|
-
"@typia/utils": "^13.0.
|
|
48
|
+
"@typia/interface": "^13.0.2",
|
|
49
|
+
"@typia/utils": "^13.0.2",
|
|
51
50
|
"get-function-location": "^2.0.0",
|
|
52
51
|
"glob": "^11.0.3",
|
|
53
52
|
"path-parser": "^6.1.0",
|
|
@@ -55,9 +54,9 @@
|
|
|
55
54
|
"reflect-metadata": ">=0.1.12",
|
|
56
55
|
"rxjs": ">=6.0.3",
|
|
57
56
|
"tgrid": "^1.1.0",
|
|
58
|
-
"typia": "^13.0.
|
|
57
|
+
"typia": "^13.0.2",
|
|
59
58
|
"ws": "^7.5.3",
|
|
60
|
-
"@nestia/fetcher": "^12.0.0
|
|
59
|
+
"@nestia/fetcher": "^12.0.0"
|
|
61
60
|
},
|
|
62
61
|
"peerDependencies": {
|
|
63
62
|
"@modelcontextprotocol/sdk": "^1.18.0",
|
|
@@ -65,8 +64,8 @@
|
|
|
65
64
|
"@nestjs/core": ">=7.0.1",
|
|
66
65
|
"reflect-metadata": ">=0.1.12",
|
|
67
66
|
"rxjs": ">=6.0.3",
|
|
68
|
-
"typia": "^13.0.
|
|
69
|
-
"@nestia/fetcher": "^12.0.0
|
|
67
|
+
"typia": "^13.0.2",
|
|
68
|
+
"@nestia/fetcher": "^12.0.0"
|
|
70
69
|
},
|
|
71
70
|
"peerDependenciesMeta": {
|
|
72
71
|
"@modelcontextprotocol/sdk": {
|
|
@@ -83,7 +82,7 @@
|
|
|
83
82
|
"@types/ws": "^8.5.10",
|
|
84
83
|
"fastify": "^4.28.1",
|
|
85
84
|
"rimraf": "^6.1.3",
|
|
86
|
-
"ttsc": "^0.18.
|
|
85
|
+
"ttsc": "^0.18.4",
|
|
87
86
|
"tstl": "^3.0.0",
|
|
88
87
|
"typescript": "^7.0.2"
|
|
89
88
|
},
|
|
@@ -108,5 +107,6 @@
|
|
|
108
107
|
"build": "rimraf lib && ttsc",
|
|
109
108
|
"dev": "ttsc --watch",
|
|
110
109
|
"test:go": "cd test && go test ./..."
|
|
111
|
-
}
|
|
110
|
+
},
|
|
111
|
+
"types": "lib/index.d.ts"
|
|
112
112
|
}
|
|
@@ -76,7 +76,7 @@ export function TypedException<T>(
|
|
|
76
76
|
* @author Jeongho Nam - https://github.com/samchon
|
|
77
77
|
* @deprecated Use {@link TypedException.IProps} typed function instead. This
|
|
78
78
|
* typed function is deprecated and will be removed in the next major update.
|
|
79
|
-
* @template T Type of the exception
|
|
79
|
+
* @template T Type of the exception, consumed by the transformer only
|
|
80
80
|
* @param status Status number or pattern like "2XX", "3XX", "4XX", "5XX"
|
|
81
81
|
* @param description Description about the exception
|
|
82
82
|
* @returns Method decorator
|