feature/boss-sprites-and-badges (#22)
All checks were successful
CI / backend-lint (push) Successful in 8s
CI / frontend-lint (push) Successful in 32s

Reviewed-on: TheFurya/nuzlocke-tracker#22
Co-authored-by: Julian Tabel <juliantabel.jt@gmail.com>
Co-committed-by: Julian Tabel <juliantabel.jt@gmail.com>
This commit was merged in pull request #22.
This commit is contained in:
2026-02-14 11:04:08 +01:00
committed by TheFurya
parent 3412d6c6fd
commit ebdc9b2f28
225 changed files with 879 additions and 130 deletions

View File

@@ -151,6 +151,7 @@ export interface CreateBossBattleInput {
location: string
section?: string | null
spriteUrl?: string | null
gameId?: number | null
}
export interface UpdateBossBattleInput {
@@ -165,6 +166,7 @@ export interface UpdateBossBattleInput {
location?: string
section?: string | null
spriteUrl?: string | null
gameId?: number | null
}
export interface BossReorderItem {

View File

@@ -188,6 +188,7 @@ export interface BossBattle {
location: string
section: string | null
spriteUrl: string | null
gameId: number | null
pokemon: BossPokemon[]
}