Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/api/functional/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
* @nestia Generated by Nestia - https://github.com/samchon/nestia
*/
//================================================================
export * as monitors from "./monitors";
export * as monitors from "./monitors/index";
3 changes: 2 additions & 1 deletion src/api/functional/monitors/health/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";

/**
Expand All @@ -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<void> {
Expand Down
6 changes: 3 additions & 3 deletions src/api/functional/monitors/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
3 changes: 2 additions & 1 deletion src/api/functional/monitors/performance/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand All @@ -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<get.Output> {
Expand Down
5 changes: 4 additions & 1 deletion src/api/functional/monitors/system/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand All @@ -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<get.Output> {
Expand Down Expand Up @@ -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(
Expand Down Expand Up @@ -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(
Expand Down
Loading