mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
✨ Renamed and added interfaces
This commit is contained in:
16
packages/nodes-base/nodes/Jira/IssueInterface.ts
Normal file
16
packages/nodes-base/nodes/Jira/IssueInterface.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import { IDataObject } from "n8n-workflow";
|
||||
|
||||
export interface IFields {
|
||||
summary: string;
|
||||
project?: IDataObject;
|
||||
issuetype?: IDataObject;
|
||||
labels?: string[];
|
||||
priority?: IDataObject;
|
||||
assignee?: IDataObject;
|
||||
description?: string;
|
||||
parent?: IDataObject;
|
||||
}
|
||||
|
||||
export interface IIssue {
|
||||
fields?: IFields;
|
||||
}
|
||||
Reference in New Issue
Block a user