refactor: remove unused subscription plans and router files

This commit is contained in:
2026-06-29 10:56:08 +08:00
parent b7779878cf
commit 1ebd29d1ed
6 changed files with 3 additions and 190 deletions
@@ -30,12 +30,14 @@ export interface IChatRepository {
/** 获取聊天历史,分页参数默认 limit=50, offset=0。 */
getHistory(limit?: number, offset?: number): Promise<Result<ChatHistoryResponse>>;
//TODO remove
/** 解锁私密消息。 */
unlockPrivateMessage(messageId: string): Promise<Result<UnlockPrivateResponse>>;
/** 一键解锁历史锁定消息。 */
unlockHistory(): Promise<Result<UnlockHistoryResponse>>;
//TODO remove
/** 把本地缓存中的私密消息标记为已解锁。 */
markPrivateMessageUnlockedInLocal(
messageId: string,