2019-11-27 22:10:41 -08:00
|
|
|
import { IDataObject } from "n8n-workflow";
|
|
|
|
|
|
|
|
export interface IFields {
|
2019-12-01 13:47:53 -08:00
|
|
|
summary?: string;
|
2019-11-27 22:10:41 -08:00
|
|
|
project?: IDataObject;
|
|
|
|
issuetype?: IDataObject;
|
|
|
|
labels?: string[];
|
|
|
|
priority?: IDataObject;
|
|
|
|
assignee?: IDataObject;
|
|
|
|
description?: string;
|
|
|
|
parent?: IDataObject;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IIssue {
|
|
|
|
fields?: IFields;
|
|
|
|
}
|
2019-11-29 14:30:00 -08:00
|
|
|
|
|
|
|
export interface INotify {
|
|
|
|
subject?: string;
|
|
|
|
textBody?: string;
|
|
|
|
htmlBody?: string;
|
|
|
|
to?: INotificationRecipients;
|
|
|
|
restrict?: NotificationRecipientsRestrictions;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface INotificationRecipients {
|
|
|
|
reporter?: boolean;
|
|
|
|
assignee?: boolean;
|
|
|
|
watchers?: boolean;
|
|
|
|
voters?: boolean;
|
|
|
|
users?: IDataObject[];
|
|
|
|
groups?: IDataObject[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface NotificationRecipientsRestrictions {
|
|
|
|
groups?: IDataObject[];
|
|
|
|
}
|