Game Prize

This commit is contained in:
efrilm 2025-09-18 01:07:39 +07:00
parent 7252c05569
commit 6d2e436b09

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
}