issue # Schedule/HttpResponse 수정

This commit is contained in:
geonhee-min
2025-12-12 14:56:56 +09:00
parent c7e6d91dfe
commit 64376e1b9b
2 changed files with 18 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@baekyangdan/core-utils",
"version": "1.0.1",
"version": "1.0.2",
"description": "Common Repo",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View File

@@ -1,6 +1,17 @@
export enum BadRequestCode {
BAD_REQUEST='BadRequest',
INVALID_FORMAT='InvalidFormat'
};
export enum BadRequestMessage {
BAD_REQUEST='Bad Request',
INVALID_FORMAT='Invalid Format'
BAD_REQUEST='BadRequest',
INVALID_FORMAT='InvalidFormat'
};
export enum UnauthorizedCode {
INVALID_TOKEN='InvalidToken',
ACCESS_TOKEN_EXPIRED='AccessTokenExpired',
REFRESH_TOKEN_EXPIRED='RefreshTokenExpired'
};
export enum UnauthorizedMessage {
@@ -9,6 +20,10 @@ export enum UnauthorizedMessage {
REFRESH_TOKEN_EXPIRED='Refresh Token Expired'
};
export enum InternalServierErrorCode {
INTERNAL_SERVER_ERROR='InternalServerError'
};
export enum InternalServerErrorMessage {
INTERNAL_SERVER_ERROR='Internal Server Error'
};