import { type ObjectRecordDiff } from '@/database-events/object-record-diff'; type Properties = { updatedFields?: string[]; before?: T; after?: T; diff?: Partial>; }; export class ObjectRecordBaseEvent { recordId: string; userId?: string; userWorkspaceId?: string; workspaceMemberId?: string; properties: Properties; }