feat: Introduce TimerKey enum and refactor timer key usage across services with new tests.

This commit is contained in:
syntaxbullet
2026-02-13 13:11:16 +01:00
parent 570cdc69c1
commit 2d35a5eabb
5 changed files with 57 additions and 7 deletions

View File

@@ -10,6 +10,12 @@ export enum TimerType {
TRIVIA_COOLDOWN = 'TRIVIA_COOLDOWN',
}
export enum TimerKey {
CHAT_XP = 'chat_xp',
DAILY = 'daily',
WEEKLY = 'weekly',
}
export enum EffectType {
ADD_XP = 'ADD_XP',
ADD_BALANCE = 'ADD_BALANCE',