brows3r — TypeScript API
    Preparing search index...

    Interface DeleteReport

    Result of objectDeleteBatch.

    Both deleted and failed may be non-empty for the same request — the backend does NOT fail the whole batch on per-key errors (AC-4). The frontend should surface "N deleted, M failed" rather than all-or-nothing.

    Mirrors src-tauri/src/s3/object.rs DeleteReport.

    interface DeleteReport {
        deleted: DeletedObject[];
        failed: DeleteFailure[];
    }
    Index

    Properties

    Properties

    deleted: DeletedObject[]
    failed: DeleteFailure[]