efril #13

Merged
aefril merged 19 commits from efril into main 2025-09-18 04:01:33 +00:00
Showing only changes of commit 6d2e436b09 - Show all commits

View File

@ -33,3 +33,13 @@ export interface GamePrizeRequest {
threshold?: number // optional (int64 → number in TS)
fallback_prize_id?: string // optional uuid
}
export interface GamePrizeRequest {
game_id: string // uuid
name: string
weight: number // min 1
stock: number // min 0
max_stock?: number // optional
threshold?: number // optional (int64 → number in TS)
fallback_prize_id?: string // optional uuid
}