fase(15): reporting module with pdf generation

This commit is contained in:
debian
2026-03-06 05:57:05 -05:00
parent 3ff36f0b6a
commit cffa1aeea9
64 changed files with 3462 additions and 87 deletions

View File

@@ -0,0 +1,9 @@
import { randomUUID } from 'crypto';
import { DomainEvent } from '../../../../shared/domain/DomainEvent';
export class ReportFailed implements DomainEvent {
readonly eventId = randomUUID();
readonly eventName = 'reporting.report_failed';
readonly occurredOn = new Date();
constructor(readonly aggregateId: string, readonly payload: Record<string, unknown>) {}
}