Interface TemplateHistoryEntry

Full template history entry with content

interface TemplateHistoryEntry {
    at: string | Date;
    author: string;
    id: string;
    value: Omit<Template, "id">;
}

Hierarchy (View Summary)

Properties

Properties

at: string | Date

Timestamp when the change was made

author: string

User ID who made the change

id: string

MongoDB ObjectId as string

value: Omit<Template, "id">

The template data at this point in history