Viktorani API - v0.0.8
    Preparing search index...

    Interface DatabaseSnapshot

    Full database snapshot used for backup and restore.

    Version history:

    • v1: Included a categories array (now ignored on import).
    • v2: Categories removed; tags are the sole classifier.

    Runtime-only collections (players, teams, buzzEvents, timers, gameQuestions, layouts, widgets) are intentionally excluded — they represent transient session state that is not meaningful to restore.

    interface DatabaseSnapshot {
        difficulties: DifficultyLevel[];
        exportedAt: number;
        games: Game[];
        notes: Note[];
        questions: Question[];
        rounds: Round[];
        tags: Tag[];
        version: number;
    }
    Index

    Properties

    difficulties: DifficultyLevel[]
    exportedAt: number
    games: Game[]
    notes: Note[]
    questions: Question[]
    rounds: Round[]
    tags: Tag[]
    version: number