mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 23:54:07 -08:00
46fe96b72c
* ⚡ Add Issue Attachment resource * ⚡ Add custom fields to issue:create and issue:update * ⚡ Filter custom fields by the project selected * ⚡ Change the logo to SVG * ⚡ Small improvement * ⚡ Minor improvements to Jira Node * ⚡ Add download field to issueAttachment get and getAll Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
41 lines
763 B
TypeScript
41 lines
763 B
TypeScript
import {
|
|
IDataObject,
|
|
} from 'n8n-workflow';
|
|
|
|
export interface IFields {
|
|
assignee?: IDataObject;
|
|
description?: string;
|
|
issuetype?: IDataObject;
|
|
labels?: string[];
|
|
parent?: IDataObject;
|
|
priority?: IDataObject;
|
|
project?: IDataObject;
|
|
summary?: string;
|
|
}
|
|
|
|
export interface IIssue {
|
|
fields?: IFields;
|
|
transition?: IDataObject;
|
|
}
|
|
|
|
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[];
|
|
}
|