diff --git a/package.json b/package.json index cac8dbe..dd1261e 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "dev": "npm run build:test -- --watch", "eslint": "eslint src && eslint test", "eslint:fix": "eslint src --fix && eslint test --fix", - "prepare": "ts-patch install && typia patch && npm run build:prisma", + "prepare": "ts-patch install && npm run build:prisma", "prettier": "prettier src --write && prettier test --write", "------------------------WEBPACK------------------------": "", "webpack": "rimraf dist && npm run build:prisma && webpack", @@ -40,9 +40,9 @@ }, "homepage": "https://github.com/samchon/backend", "devDependencies": { - "@nestia/benchmark": "^10.0.2", - "@nestia/e2e": "^10.0.2", - "@nestia/sdk": "^10.0.2", + "@nestia/benchmark": "^11.0.0", + "@nestia/e2e": "^11.0.0", + "@nestia/sdk": "^11.0.0", "@nestjs/cli": "^11.0.16", "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^11.1.6", @@ -64,7 +64,7 @@ "copy-webpack-plugin": "^12.0.2", "eslint-plugin-deprecation": "^3.0.0", "inquirer": "^8.2.5", - "nestia": "^10.0.2", + "nestia": "^11.0.0", "prettier": "^3.2.5", "prettier-plugin-prisma": "^5.0.0", "prisma-markdown": "^4.0.0", @@ -82,8 +82,8 @@ "write-file-webpack-plugin": "^4.5.1" }, "dependencies": { - "@nestia/core": "^10.0.2", - "@nestia/fetcher": "^10.0.2", + "@nestia/core": "^11.0.0", + "@nestia/fetcher": "^11.0.0", "@nestjs/common": "^11.1.12", "@nestjs/core": "^11.1.12", "@nestjs/platform-express": "^11.1.12", @@ -99,7 +99,7 @@ "source-map-support": "^0.5.19", "tgrid": "^1.2.1", "tstl": "^3.0.0", - "typia": "^11.0.3", + "typia": "^12.0.0", "uuid": "^10.0.0" }, "private": true diff --git a/src/api/functional/index.ts b/src/api/functional/index.ts index 1b324a6..370ea8c 100644 --- a/src/api/functional/index.ts +++ b/src/api/functional/index.ts @@ -4,4 +4,4 @@ * @nestia Generated by Nestia - https://github.com/samchon/nestia */ //================================================================ -export * as monitors from "./monitors"; +export * as monitors from "./monitors/index"; diff --git a/src/api/functional/monitors/health/index.ts b/src/api/functional/monitors/health/index.ts index b1079b7..866911b 100644 --- a/src/api/functional/monitors/health/index.ts +++ b/src/api/functional/monitors/health/index.ts @@ -5,7 +5,7 @@ */ //================================================================ import type { IConnection } from "@nestia/fetcher"; -import { PlainFetcher } from "@nestia/fetcher/lib/PlainFetcher"; +import { PlainFetcher } from "@nestia/fetcher"; import typia from "typia"; /** @@ -16,6 +16,7 @@ import typia from "typia"; * * @controller MonitorHealthController.get * @path GET /monitors/health + * @accessor api.functional.monitors.health.get * @nestia Generated by Nestia - https://github.com/samchon/nestia */ export async function get(connection: IConnection): Promise { diff --git a/src/api/functional/monitors/index.ts b/src/api/functional/monitors/index.ts index 08a73f9..e80545c 100644 --- a/src/api/functional/monitors/index.ts +++ b/src/api/functional/monitors/index.ts @@ -4,6 +4,6 @@ * @nestia Generated by Nestia - https://github.com/samchon/nestia */ //================================================================ -export * as health from "./health"; -export * as performance from "./performance"; -export * as system from "./system"; +export * as health from "./health/index"; +export * as performance from "./performance/index"; +export * as system from "./system/index"; diff --git a/src/api/functional/monitors/performance/index.ts b/src/api/functional/monitors/performance/index.ts index aa2d979..d7d0b45 100644 --- a/src/api/functional/monitors/performance/index.ts +++ b/src/api/functional/monitors/performance/index.ts @@ -5,7 +5,7 @@ */ //================================================================ import type { IConnection } from "@nestia/fetcher"; -import { PlainFetcher } from "@nestia/fetcher/lib/PlainFetcher"; +import { PlainFetcher } from "@nestia/fetcher"; import typia from "typia"; import type { IPerformance } from "../../../structures/monitors/IPerformance"; @@ -21,6 +21,7 @@ import type { IPerformance } from "../../../structures/monitors/IPerformance"; * * @controller MonitorPerformanceController.get * @path GET /monitors/performance + * @accessor api.functional.monitors.performance.get * @nestia Generated by Nestia - https://github.com/samchon/nestia */ export async function get(connection: IConnection): Promise { diff --git a/src/api/functional/monitors/system/index.ts b/src/api/functional/monitors/system/index.ts index fd455eb..02532ee 100644 --- a/src/api/functional/monitors/system/index.ts +++ b/src/api/functional/monitors/system/index.ts @@ -5,7 +5,7 @@ */ //================================================================ import type { IConnection } from "@nestia/fetcher"; -import { PlainFetcher } from "@nestia/fetcher/lib/PlainFetcher"; +import { PlainFetcher } from "@nestia/fetcher"; import typia from "typia"; import type { ISystem } from "../../../structures/monitors/ISystem"; @@ -21,6 +21,7 @@ import type { ISystem } from "../../../structures/monitors/ISystem"; * * @controller MonitorSystemController.get * @path GET /monitors/system + * @accessor api.functional.monitors.system.get * @nestia Generated by Nestia - https://github.com/samchon/nestia */ export async function get(connection: IConnection): Promise { @@ -57,6 +58,7 @@ export namespace get { * @internal * @controller MonitorSystemController.internal_server_error * @path GET /monitors/system/internal_server_error + * @accessor api.functional.monitors.system.internal_server_error * @nestia Generated by Nestia - https://github.com/samchon/nestia */ export async function internal_server_error( @@ -93,6 +95,7 @@ export namespace internal_server_error { * @internal * @controller MonitorSystemController.uncaught_exception * @path GET /monitors/system/uncaught_exception + * @accessor api.functional.monitors.system.uncaught_exception * @nestia Generated by Nestia - https://github.com/samchon/nestia */ export async function uncaught_exception(