import type { MutationIntent, MutationSource } from '../core/index.js'; export interface AdapterContext { actorId?: string; environment?: string; owner?: string; metadata?: Record; } export interface ConsequenceAdapter { source: MutationSource; parse(input: Input, context?: AdapterContext): MutationIntent[] | Promise; } //# sourceMappingURL=types.d.ts.map