@backblaze-labs/b2-sdk - v0.1.0
    Preparing search index...

    Interface DeleteAllErrorEvent

    Emitted by Bucket.deleteAll when a single delete call fails (other versions keep streaming).

    interface DeleteAllErrorEvent {
        fileId: FileId;
        fileName: string;
        message: string;
        type: "error";
    }
    Index

    Properties

    fileId: FileId

    Unique identifier of the version that failed to delete.

    fileName: string

    File name of the version that failed to delete.

    message: string

    Human-readable failure reason taken from the underlying error.

    type: "error"

    Discriminant identifying a per-version delete failure.