feat: add in-game social test lab

This commit is contained in:
ANG-Server
2026-07-22 12:16:31 +08:00
parent fe52ab1696
commit a3341b6a3b
19 changed files with 827 additions and 14 deletions

View File

@@ -38,5 +38,6 @@ export interface SocialStore {
markNotificationRead(userId: bigint, id: bigint): Promise<SocialNotification | null>;
markAllNotificationsRead(userId: bigint): Promise<number>;
countUnreadNotifications(userId: bigint): Promise<number>;
purgeUsers(userIds: bigint[]): Promise<void>;
cleanupExpired(now: Date): Promise<void>;
}