accounting.transaction.reversed.v1
Constant
import { EVENT_NAMES } from "@platform/contracts";
EVENT_NAMES.ACCOUNTING_TRANSACTION_REVERSED_V1;Publishers
Subscribers
No service currently subscribes to this event.
Payload schema
z.object({
original_transaction_id: z.string(),
reversal_transaction_id: z.string(),
reason: z.string().nullable(),
entries: z.array(
z.object({
account_id: z.string(),
amount_cents: z.number().int(),
memo: z.string().nullable(),
}Delivery semantics
- At-least-once delivery. Consumers must dedupe by event ID.
- Fanned out to both NATS (in-cluster) and EventBridge (durable). See Events concept.