import { Subjects } from '../subjects'; import { SMAContentType } from '../../types/socialMediaAutomator'; export interface SMAPostPublishedEvent { subject: Subjects.SMAPostPublished; data: { topicId: string; accountId: string; userId: string; /** ID do post no Instagram */ instagramPostId: string; /** URL pública do post */ postUrl: string; contentType: SMAContentType; publishedAt: string; }; }