import { AptlyEmailType } from '../enums/index.js'; import { AptlyMarkdown } from '../core'; export type AptlyEmail = AptlyEmailSchema; export interface AptlyEmailSchema { _id: ID; name: string; type: AptlyEmailType; subject: string; content: AptlyMarkdown; actionLabel?: string; organization: ID; project?: ID; archived: boolean; createdAt: DATE; updatedAt: DATE; }