export const MONEY_SCALE = 6; export type EntityStatus = 'enabled' | 'disabled'; export interface AuditedEntity { id: string; createdAt: Date; updatedAt: Date; createdBy: string | null; updatedBy: string | null; version: number; }