From 30b7a85ab019b85ede7038af2c1c6415505092f0 Mon Sep 17 00:00:00 2001 From: kappa Date: Thu, 5 Feb 2026 18:34:39 +0900 Subject: [PATCH] refactor: remove SERVER_CONSULTATION_STATUS from constants Co-Authored-By: Claude Opus 4.5 --- src/constants/index.ts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/constants/index.ts b/src/constants/index.ts index bd628ec..8b1d982 100644 --- a/src/constants/index.ts +++ b/src/constants/index.ts @@ -151,15 +151,6 @@ export const TROUBLESHOOT_STATUS = { SOLVING: 'solving', } as const; -/** - * Server consultation session statuses - */ -export const SERVER_CONSULTATION_STATUS = { - GATHERING: 'gathering', - RECOMMENDING: 'recommending', - SELECTING: 'selecting', - COMPLETED: 'completed', -} as const; /** * Language codes for multi-language support @@ -217,7 +208,6 @@ export type DomainAction = typeof DOMAIN_ACTION[keyof typeof DOMAIN_ACTION]; export type DepositAction = typeof DEPOSIT_ACTION[keyof typeof DEPOSIT_ACTION]; export type NotificationType = typeof NOTIFICATION_TYPE[keyof typeof NOTIFICATION_TYPE]; export type TroubleshootStatus = typeof TROUBLESHOOT_STATUS[keyof typeof TROUBLESHOOT_STATUS]; -export type ServerConsultationStatus = typeof SERVER_CONSULTATION_STATUS[keyof typeof SERVER_CONSULTATION_STATUS]; export type LanguageCode = typeof LANGUAGE_CODE[keyof typeof LANGUAGE_CODE]; /**