Interface EditResult

Canonical edit response. Buckets mirror EditEnvelope.

interface EditResult {
    added: readonly EditOutcome[];
    degraded?: readonly DegradedReason[];
    deleted: readonly EditOutcome[];
    updated: readonly EditOutcome[];
}

Properties

added: readonly EditOutcome[]
degraded?: readonly DegradedReason[]

Degradation flags for partial-success or fallback paths.

deleted: readonly EditOutcome[]
updated: readonly EditOutcome[]