Skip to content

Commit 0d5736c

Browse files
authored
Merge pull request #461 from samchon/next
next typia
2 parents acbc625 + fe430ea commit 0d5736c

6 files changed

Lines changed: 20 additions & 15 deletions

File tree

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"dev": "npm run build:test -- --watch",
1717
"eslint": "eslint src && eslint test",
1818
"eslint:fix": "eslint src --fix && eslint test --fix",
19-
"prepare": "ts-patch install && typia patch && npm run build:prisma",
19+
"prepare": "ts-patch install && npm run build:prisma",
2020
"prettier": "prettier src --write && prettier test --write",
2121
"------------------------WEBPACK------------------------": "",
2222
"webpack": "rimraf dist && npm run build:prisma && webpack",
@@ -40,9 +40,9 @@
4040
},
4141
"homepage": "https://github.com/samchon/backend",
4242
"devDependencies": {
43-
"@nestia/benchmark": "^10.0.2",
44-
"@nestia/e2e": "^10.0.2",
45-
"@nestia/sdk": "^10.0.2",
43+
"@nestia/benchmark": "^11.0.0",
44+
"@nestia/e2e": "^11.0.0",
45+
"@nestia/sdk": "^11.0.0",
4646
"@nestjs/cli": "^11.0.16",
4747
"@rollup/plugin-terser": "^0.4.4",
4848
"@rollup/plugin-typescript": "^11.1.6",
@@ -64,7 +64,7 @@
6464
"copy-webpack-plugin": "^12.0.2",
6565
"eslint-plugin-deprecation": "^3.0.0",
6666
"inquirer": "^8.2.5",
67-
"nestia": "^10.0.2",
67+
"nestia": "^11.0.0",
6868
"prettier": "^3.2.5",
6969
"prettier-plugin-prisma": "^5.0.0",
7070
"prisma-markdown": "^4.0.0",
@@ -82,8 +82,8 @@
8282
"write-file-webpack-plugin": "^4.5.1"
8383
},
8484
"dependencies": {
85-
"@nestia/core": "^10.0.2",
86-
"@nestia/fetcher": "^10.0.2",
85+
"@nestia/core": "^11.0.0",
86+
"@nestia/fetcher": "^11.0.0",
8787
"@nestjs/common": "^11.1.12",
8888
"@nestjs/core": "^11.1.12",
8989
"@nestjs/platform-express": "^11.1.12",
@@ -99,7 +99,7 @@
9999
"source-map-support": "^0.5.19",
100100
"tgrid": "^1.2.1",
101101
"tstl": "^3.0.0",
102-
"typia": "^11.0.3",
102+
"typia": "^12.0.0",
103103
"uuid": "^10.0.0"
104104
},
105105
"private": true

src/api/functional/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
* @nestia Generated by Nestia - https://github.com/samchon/nestia
55
*/
66
//================================================================
7-
export * as monitors from "./monitors";
7+
export * as monitors from "./monitors/index";

src/api/functional/monitors/health/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
//================================================================
77
import type { IConnection } from "@nestia/fetcher";
8-
import { PlainFetcher } from "@nestia/fetcher/lib/PlainFetcher";
8+
import { PlainFetcher } from "@nestia/fetcher";
99
import typia from "typia";
1010

1111
/**
@@ -16,6 +16,7 @@ import typia from "typia";
1616
*
1717
* @controller MonitorHealthController.get
1818
* @path GET /monitors/health
19+
* @accessor api.functional.monitors.health.get
1920
* @nestia Generated by Nestia - https://github.com/samchon/nestia
2021
*/
2122
export async function get(connection: IConnection): Promise<void> {

src/api/functional/monitors/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
* @nestia Generated by Nestia - https://github.com/samchon/nestia
55
*/
66
//================================================================
7-
export * as health from "./health";
8-
export * as performance from "./performance";
9-
export * as system from "./system";
7+
export * as health from "./health/index";
8+
export * as performance from "./performance/index";
9+
export * as system from "./system/index";

src/api/functional/monitors/performance/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
//================================================================
77
import type { IConnection } from "@nestia/fetcher";
8-
import { PlainFetcher } from "@nestia/fetcher/lib/PlainFetcher";
8+
import { PlainFetcher } from "@nestia/fetcher";
99
import typia from "typia";
1010

1111
import type { IPerformance } from "../../../structures/monitors/IPerformance";
@@ -21,6 +21,7 @@ import type { IPerformance } from "../../../structures/monitors/IPerformance";
2121
*
2222
* @controller MonitorPerformanceController.get
2323
* @path GET /monitors/performance
24+
* @accessor api.functional.monitors.performance.get
2425
* @nestia Generated by Nestia - https://github.com/samchon/nestia
2526
*/
2627
export async function get(connection: IConnection): Promise<get.Output> {

src/api/functional/monitors/system/index.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
//================================================================
77
import type { IConnection } from "@nestia/fetcher";
8-
import { PlainFetcher } from "@nestia/fetcher/lib/PlainFetcher";
8+
import { PlainFetcher } from "@nestia/fetcher";
99
import typia from "typia";
1010

1111
import type { ISystem } from "../../../structures/monitors/ISystem";
@@ -21,6 +21,7 @@ import type { ISystem } from "../../../structures/monitors/ISystem";
2121
*
2222
* @controller MonitorSystemController.get
2323
* @path GET /monitors/system
24+
* @accessor api.functional.monitors.system.get
2425
* @nestia Generated by Nestia - https://github.com/samchon/nestia
2526
*/
2627
export async function get(connection: IConnection): Promise<get.Output> {
@@ -57,6 +58,7 @@ export namespace get {
5758
* @internal
5859
* @controller MonitorSystemController.internal_server_error
5960
* @path GET /monitors/system/internal_server_error
61+
* @accessor api.functional.monitors.system.internal_server_error
6062
* @nestia Generated by Nestia - https://github.com/samchon/nestia
6163
*/
6264
export async function internal_server_error(
@@ -93,6 +95,7 @@ export namespace internal_server_error {
9395
* @internal
9496
* @controller MonitorSystemController.uncaught_exception
9597
* @path GET /monitors/system/uncaught_exception
98+
* @accessor api.functional.monitors.system.uncaught_exception
9699
* @nestia Generated by Nestia - https://github.com/samchon/nestia
97100
*/
98101
export async function uncaught_exception(

0 commit comments

Comments
 (0)