@nestia/core 12.0.0-rc.3 → 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.
- package/lib/decorators/TypedException.d.ts +1 -1
- package/native/go.mod +1 -1
- package/native/go.sum +2 -2
- package/package.json +10 -10
- package/src/decorators/TypedException.ts +1 -1
|
@@ -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/native/go.mod
CHANGED
|
@@ -10,7 +10,7 @@ require (
|
|
|
10
10
|
github.com/microsoft/typescript-go/shim/printer v0.0.0
|
|
11
11
|
github.com/microsoft/typescript-go/shim/scanner v0.0.0
|
|
12
12
|
github.com/samchon/ttsc/packages/ttsc v0.0.0
|
|
13
|
-
github.com/samchon/typia/packages/typia/native v0.0.0-
|
|
13
|
+
github.com/samchon/typia/packages/typia/native v0.0.0-20260709134626-fd1c6686950f
|
|
14
14
|
)
|
|
15
15
|
|
|
16
16
|
require (
|
package/native/go.sum
CHANGED
|
@@ -38,8 +38,8 @@ github.com/samchon/ttsc/packages/ttsc/shim/vfs/cachedvfs v0.0.0-20260709053824-8
|
|
|
38
38
|
github.com/samchon/ttsc/packages/ttsc/shim/vfs/cachedvfs v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:XS3LhXkn5xadyRe3tW+9+suW/7gh7dPdL43Q+s/lUDo=
|
|
39
39
|
github.com/samchon/ttsc/packages/ttsc/shim/vfs/osvfs v0.0.0-20260709053824-84bdc4acccb0 h1:LXPQxe57qlWiHG5s8pQOKZD4nZRnRkrKIDsdJVfh2ws=
|
|
40
40
|
github.com/samchon/ttsc/packages/ttsc/shim/vfs/osvfs v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:otX+qw8aZLNCoBmCwMAn53Nw0RQTPzSoId3DxmE67So=
|
|
41
|
-
github.com/samchon/typia/packages/typia/native v0.0.0-
|
|
42
|
-
github.com/samchon/typia/packages/typia/native v0.0.0-
|
|
41
|
+
github.com/samchon/typia/packages/typia/native v0.0.0-20260709134626-fd1c6686950f h1:8axuxtT7YdYhJy7so6SDxVK2oJPDkq8vl55K+nTudtw=
|
|
42
|
+
github.com/samchon/typia/packages/typia/native v0.0.0-20260709134626-fd1c6686950f/go.mod h1:SJDrfiCEK5dtObhJeAl0iqelqmmFm/JIjfJ6z0kID60=
|
|
43
43
|
github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ=
|
|
44
44
|
github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0=
|
|
45
45
|
github.com/zeebo/xxh3 v1.1.0 h1:s7DLGDK45Dyfg7++yxI0khrfwq9661w9EN78eP/UZVs=
|
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
|