2019-11-27 14:42:28 -08:00
|
|
|
import { INodeProperties } from "n8n-workflow";
|
|
|
|
|
|
|
|
export const issueOpeations = [
|
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'issue',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Create',
|
|
|
|
value: 'create',
|
|
|
|
description: 'Create a new issue',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'create',
|
|
|
|
description: 'The operation to perform.',
|
|
|
|
},
|
|
|
|
] as INodeProperties[];
|
|
|
|
|
|
|
|
export const issueFields = [
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* issue:create */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'Project',
|
|
|
|
name: 'project',
|
|
|
|
type: 'options',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'issue',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create'
|
|
|
|
]
|
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getProjects',
|
|
|
|
},
|
|
|
|
description: 'Project',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Issue Type',
|
|
|
|
name: 'issueType',
|
|
|
|
type: 'options',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'issue',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create'
|
|
|
|
]
|
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getIssueTypes',
|
|
|
|
},
|
|
|
|
description: 'Issue Types',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Summary',
|
|
|
|
name: 'summary',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'issue',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
description: 'Summary',
|
|
|
|
},
|
|
|
|
{
|
2019-11-27 22:10:41 -08:00
|
|
|
displayName: 'Has Parent Issue?',
|
|
|
|
name: 'hasParentIssue',
|
|
|
|
type: 'boolean',
|
2019-11-27 14:42:28 -08:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'issue',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2019-11-27 22:10:41 -08:00
|
|
|
default: false,
|
|
|
|
description: 'Weather The Issue Has A Parent Issue ID/Key or Not',
|
2019-11-27 14:42:28 -08:00
|
|
|
},
|
|
|
|
{
|
2019-11-27 22:10:41 -08:00
|
|
|
displayName: 'Parent Issue Key',
|
|
|
|
name: 'parentIssueKey',
|
2019-11-27 14:42:28 -08:00
|
|
|
type: 'string',
|
|
|
|
required: false,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'issue',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
2019-11-27 22:10:41 -08:00
|
|
|
hasParentIssue: [
|
|
|
|
true,
|
|
|
|
],
|
2019-11-27 14:42:28 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
2019-11-27 22:10:41 -08:00
|
|
|
description: 'Parent Issue Key',
|
2019-11-27 14:42:28 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
name: 'additionalFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'issue',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Labels',
|
|
|
|
name: 'labels',
|
|
|
|
type: 'multiOptions',
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getLabels',
|
|
|
|
},
|
|
|
|
default: [],
|
|
|
|
required : false,
|
|
|
|
description: 'Labels',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Priority',
|
|
|
|
name: 'priority',
|
|
|
|
type: 'options',
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getPriorities',
|
|
|
|
},
|
|
|
|
default: [],
|
|
|
|
required : false,
|
|
|
|
description: 'Priority',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Assignee',
|
|
|
|
name: 'assignee',
|
|
|
|
type: 'options',
|
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getUsers',
|
|
|
|
},
|
|
|
|
default: [],
|
|
|
|
required : false,
|
|
|
|
description: 'Assignee',
|
|
|
|
},
|
2019-11-27 22:10:41 -08:00
|
|
|
{
|
|
|
|
displayName: 'Description',
|
|
|
|
name: 'description',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required : false,
|
|
|
|
description: 'Description',
|
|
|
|
},
|
2019-11-27 14:42:28 -08:00
|
|
|
],
|
|
|
|
},
|
|
|
|
] as INodeProperties[];
|