export function createInternalHookEventPayload( type: string, action: string, sessionKey: string, context: Record, ) { return { type, action, sessionKey, context, timestamp: new Date(), messages: [], }; }