A single field change within a changelog entry.

interface JiraChangelogItem {
    field: string;
    fieldId?: string;
    fieldtype: "jira" | "custom";
    from?: null | string;
    fromString?: null | string;
    to?: null | string;
    toString?: null | string;
}

Properties

field: string

The field that was changed

fieldId?: string

Field ID

fieldtype: "jira" | "custom"

Whether the change was to a jira or custom field

from?: null | string

Previous string value

fromString?: null | string

Previous display value

to?: null | string

New string value

toString?: null | string

New display value