drupflare/worker - v1.0.0
    Preparing search index...

    Type Alias HandleReplayResult

    what a handle replay did, reported per handle so a partial failure names itself

    type HandleReplayResult = {
        failed: { error: string; id: number; name: string }[];
        nextId: number;
        replayed: HandleRecord[];
    }
    Index
    failed: { error: string; id: number; name: string }[]
    nextId: number

    the highest id now issued, so a later add() cannot alias a restored handle

    replayed: HandleRecord[]