Encrypted Pouch - v0.2.1
    Preparing search index...

    Interface WriteErrorEvent

    Information about a write error from a bulk operation (e.g. putAll).

    Surfaced when an individual document in a batch fails to write, for example because of a revision conflict on update.

    interface WriteErrorEvent {
        kind: "write";
        docId: string;
        table: string;
        id: string;
        error: Error;
        doc: NewDoc;
    }
    Index

    Properties

    Properties

    kind: "write"

    Discriminator for the error event kind

    docId: string

    Full PouchDB document ID (table_id format)

    table: string

    Document table name

    id: string

    Document ID within the table

    error: Error

    The error reported by PouchDB

    doc: NewDoc

    The input document that failed to write