NotCommittedReason

type
types.ts:259

Why an event did not commit.

- vetoed - middleware returned false, or threw. - deduped - an identical event was seen inside the dedup window. - cascade - the event exceeded maxReduceDepth or the per-drain transition ceiling, so the store refused it rather than letting a cycle run away.

Definition

type
type NotCommittedReason = "vetoed" | "deduped" | "cascade"

"vetoed" | "deduped" | "cascade"