UNPKG

@fabric-es/fabric-cqrs

Version:

Hyperledger Fabric middleware for event sourcing and cqrs pattern

14 lines (13 loc) 318 B
import type { Commit } from '../../types'; export interface OutputCommit extends Commit { id: string; entityId: string; commitId?: string; entityName: string; ts: number; version: number; events: Record<string, unknown>[]; event: string; mspId: string; signedRequest: string; }