import { Subjects } from '../subjects'; import { Language } from '../../types/country'; export interface LinkedinPostPublishedEvent { subject: Subjects.LinkedinPostPublished; data: { userId: string; email: string; postId: string; postTitle: string; postText: string; publishedAt: string; language: Language; }; }