cypress-xray-plugin
Version:
A Cypress plugin for uploading test results to Xray (test management for Jira)
26 lines (25 loc) • 590 B
TypeScript
import type { ChangeItem } from "./change-item";
import type { HistoryMetadata } from "./history-metadata";
import type { User } from "./user";
export interface ChangeHistory {
/**
* The user who made the change.
*/
author?: User;
/**
* The date on which the change took place.
*/
created?: string;
/**
* The history metadata associated with the changed.
*/
historyMetadata?: HistoryMetadata;
/**
* The ID of the changelog.
*/
id?: string;
/**
* The list of items changed.
*/
items?: ChangeItem[];
}