interface GitChange {
    changeId?: number;
    changeType?: VersionControlChangeType;
    item?: GitItem;
    newContent?: ItemContent;
    newContentTemplate?: GitTemplate;
    originalPath?: string;
    sourceServerItem?: string;
    url?: string;
}

Hierarchy (View Summary)

Properties

changeId?: number

ID of the change within the group of changes.

The type of change that was made to the item.

item?: GitItem

Current version.

newContent?: ItemContent

Content of the item after the change.

newContentTemplate?: GitTemplate

New Content template to be used when pushing new changes.

originalPath?: string

Original path of item if different from current path.

sourceServerItem?: string

Path of the item on the server.

url?: string

URL to retrieve the item.